存取現有的 BigQuery 資料來源規格。如要建立新的資料來源規格,請使用 Spreadsheet
。
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
copy() | Data | 根據這個資料來源的設定,建立 Data 。 |
get | String | 取得 BigQuery 資料集 ID。 |
get | Data | 取得資料來源的參數。 |
get | String | 取得帳單專案 ID。 |
get | String | 取得原始查詢字串。 |
get | String | 取得 BigQuery 資料表 ID。 |
get | String | 取得資料表的 BigQuery 專案 ID。 |
get | Data | 取得資料來源的類型。 |
內容詳盡的說明文件
copy()
根據這個資料來源的設定,建立 Data
。
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const spec = ss.getDataSources()[0].getSpec(); const newSpec = spec.copy();
回攻員
Data
:建構工具。
get Dataset Id()
取得 BigQuery 資料集 ID。
回攻員
String
:資料集 ID,如果資料來源規格是由原始查詢定義,則為空字串。
get Parameters()
取得資料來源的參數。
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const spec = ss.getDataSources()[0].getSpec(); const parameters = spec.getParameters();
這個方法僅適用於 BigQuery 資料來源。
回攻員
Data
:參數清單。
get Project Id()
取得帳單專案 ID。
回攻員
String
:專案 ID。
get Raw Query()
取得原始查詢字串。
回攻員
String
:原始查詢字串。
get Table Id()
取得 BigQuery 資料表 ID。
回攻員
String
:資料表 ID,如果資料來源規格是由原始查詢定義,則為空字串。
get Table Project Id()
取得資料表的 BigQuery 專案 ID。
回攻員
String
:資料表專案 ID,如果資料來源規格是由原始查詢定義,則為空字串。
get Type()
取得資料來源的類型。
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const spec = ss.getDataSources()[0].getSpec(); const type = spec.getType();
回攻員
Data
:資料來源類型。