既存の BigQuery データソース仕様にアクセスします。新しいデータソースを作成するには
SpreadsheetApp.newDataSourceSpec()
を使用します。
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
copy() | DataSourceSpecBuilder | このデータソースの設定に基づいて DataSourceSpecBuilder を作成します。 |
getDatasetId() | String | BigQuery データセット ID を取得します。 |
getParameters() | DataSourceParameter[] | データソースのパラメータを取得します。 |
getProjectId() | String | 課金プロジェクト ID を取得します。 |
getRawQuery() | String | 未加工のクエリ文字列を取得します。 |
getTableId() | String | BigQuery テーブル ID を取得します。 |
getTableProjectId() | String | テーブルの BigQuery プロジェクト ID を取得します。 |
getType() | DataSourceType | データソースのタイプを取得します。 |
詳細なドキュメント
copy()
このデータソースの設定に基づいて DataSourceSpecBuilder
を作成します。
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl('https://docs.google.com/spreadsheets/d/abc123456/edit'); var spec = ss.getDataSources()[0].getSpec(); var 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'); var spec = ss.getDataSources()[0].getSpec(); var 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'); var spec = ss.getDataSources()[0].getSpec(); var type = spec.getType();
戻る
DataSourceType
- データソースのタイプ。