メソッド
詳細なドキュメント
build()
このビルダーの設定からデータソース仕様を作成します。ビルド前に as...()
を使用してデータソースのタイプを指定する必要があります。
次のコードサンプルは、BigQuery DataSource 仕様をビルドします。
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 DataSource Spec をビルドします。
const lookerDataSourceSpecBuilder = SpreadsheetApp.newDataSourceSpec().asLooker(); const lookerSpec = lookerDataSourceSpecBuilder.setExploreName('my explore name') .setInstanceUrl('my instance url') .setModelName('my model name') .build();
戻る
DataSourceSpec
- データソースの仕様。
copy()
このデータソースの設定に基づいて DataSourceSpecBuilder
を作成します。
// 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();
戻る
DataSourceSpecBuilder
- ビルダー。
getDatasetId()
BigQuery データセット ID を取得します。
戻る
String
- データセット ID。データソース仕様が未加工クエリで定義されている場合は空の文字列。
getParameters()
データソースのパラメータを取得します。
// 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 データソースでのみ使用できます。
戻る
DataSourceParameter[]
- パラメータ リスト。
getProjectId()
課金プロジェクト ID を取得します。
戻る
String
- プロジェクト ID。
getRawQuery()
生のクエリ文字列を取得します。
戻る
String
- 生のクエリ文字列。
getTableId()
BigQuery テーブル ID を取得します。
戻る
String
- テーブル ID。データソース仕様が未加工クエリで定義されている場合は空の文字列。
getTableProjectId()
テーブルの BigQuery プロジェクト ID を取得します。
戻る
String
- テーブルのプロジェクト ID。データソース仕様が未加工クエリで定義されている場合は空の文字列。
getType()
データソースのタイプを取得します。
// 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();
戻る
DataSourceType
- データソースのタイプ。
removeAllParameters()
すべてのパラメータを削除します。
const specBuilder = SpreadsheetApp.newDataSourceSpec(); specBuilder.removeAllParameters();
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のビルダー。
removeParameter(parameterName)
指定されたパラメータを削除します。
const specBuilder = SpreadsheetApp.newDataSourceSpec(); specBuilder.removeParameter('x');
パラメータ
名前 | 型 | 説明 |
---|---|---|
parameterName | String | 削除するパラメータの名前。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のビルダー。
setDatasetId(datasetId)
BigQuery データセット ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
datasetId | String | データセットの ID。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のこのビルダー。
setParameterFromCell(parameterName, sourceCell)
パラメータを追加します。名前が同じパラメータが存在する場合は、DataSourceType.BIGQUERY
タイプのデータソース仕様ビルダーのソースセルを更新します。
この方法は、BigQuery データソースでのみ使用できます。
const specBuilder = SpreadsheetApp.newDataSourceSpec().asBigQuery(); specBuilder.setParameterFromCell('x', 'A1'); const bigQuerySpec = specBuilder.build();
パラメータ
名前 | 型 | 説明 |
---|---|---|
parameterName | String | パラメータ名。 |
sourceCell | String | A1 表記で指定されたソースセル。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のビルダー。
setProjectId(projectId)
課金対象の BigQuery プロジェクト ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
projectId | String | 課金プロジェクトの ID。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のビルダー。
setRawQuery(rawQuery)
未加工のクエリ文字列を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
rawQuery | String | 未加工のクエリ文字列。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のビルダー。
setTableId(tableId)
BigQuery テーブル ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
tableId | String | テーブルの ID。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のこのビルダー。
setTableProjectId(projectId)
テーブルの BigQuery プロジェクト ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
projectId | String | BigQuery テーブルのプロジェクト ID。 |
戻る
BigQueryDataSourceSpecBuilder
- チェーン用のビルダー。