方法
內容詳盡的說明文件
build()
根據這個建構工具中的設定,建構資料來源規格。必須使用 as...()
指定資料來源類型,才能進行建構。
以下程式碼範例會建構 BigQuery 資料來源規格。
const bigQueryDataSourceSpec = SpreadsheetApp.newDataSourceSpec().asBigQuery(); // TODO(developer): Replace with the required dataset, project and table IDs. bigQueryDataSourceSpec.setDatasetId('my data set id'); bigQueryDataSourceSpec.setProjectId('my project id'); bigQueryDataSourceSpec.setTableId('my table id'); bigQueryDataSourceSpec.build();
下列程式碼範例會建構 Looker 資料來源規格。
const lookerDataSourceSpecBuilder = SpreadsheetApp.newDataSourceSpec().asLooker(); const lookerSpec = lookerDataSourceSpecBuilder.setExploreName('my explore name') .setInstanceUrl('my instance url') .setModelName('my model name') .build();
回攻員
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
:資料來源類型。
remove All Parameters()
移除所有參數。
const specBuilder = SpreadsheetApp.newDataSourceSpec(); specBuilder.removeAllParameters();
回攻員
Big
:用於鏈結的建構工具。
remove Parameter(parameterName)
移除指定的參數。
const specBuilder = SpreadsheetApp.newDataSourceSpec(); specBuilder.removeParameter('x');
參數
名稱 | 類型 | 說明 |
---|---|---|
parameter | String | 要移除的參數名稱。 |
回攻員
Big
:用於鏈結的建構工具。
set Dataset Id(datasetId)
set Parameter From Cell(parameterName, sourceCell)
新增參數,或如果有同名參數,則更新資料來源規格建構工具 (類型為 Data
) 的來源儲存格。
這個方法僅適用於 BigQuery 資料來源。
const specBuilder = SpreadsheetApp.newDataSourceSpec().asBigQuery(); specBuilder.setParameterFromCell('x', 'A1'); const bigQuerySpec = specBuilder.build();
參數
名稱 | 類型 | 說明 |
---|---|---|
parameter | String | 參數名稱。 |
source | String | 來源儲存格,如 A1 符號所示。 |
回攻員
Big
:用於鏈結的建構工具。
set Project Id(projectId)
設定 BigQuery 帳單專案 ID。
參數
名稱 | 類型 | 說明 |
---|---|---|
project | String | 報帳專案的 ID。 |
回攻員
Big
:用於鏈結的建構工具。
set Raw Query(rawQuery)
set Table Id(tableId)
set Table Project Id(projectId)
設定資料表的 BigQuery 專案 ID。
參數
名稱 | 類型 | 說明 |
---|---|---|
project | String | BigQuery 資料表的專案 ID。 |
回攻員
Big
:用於鏈結的建構工具。