メソッド
詳細なドキュメント
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();
戻る
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)
BigQuery データセット ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
dataset | String | データセットの ID。 |
戻る
Big
- チェーン用のこのビルダー。
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)
未加工のクエリ文字列を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
raw | String | 未加工のクエリ文字列。 |
戻る
Big
- チェーン用のビルダー。
set Table Id(tableId)
BigQuery テーブル ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
table | String | テーブルの ID。 |
戻る
Big
- チェーン用のこのビルダー。
set Table Project Id(projectId)
テーブルの BigQuery プロジェクト ID を設定します。
パラメータ
名前 | 型 | 説明 |
---|---|---|
project | String | BigQuery テーブルのプロジェクト ID。 |
戻る
Big
- チェーン用のビルダー。