既存のデータソース仕様の一般設定にアクセスします。特定のタイプのデータソース仕様にアクセスするには、as...()
メソッドを使用します。新しいデータソース仕様を作成するには、Spreadsheet
を使用します。
このクラスは、データベースに接続されているデータでのみ使用してください。
この例は、BigQuery データソース仕様から情報を取得する方法を示しています。
const dataSourceTable = SpreadsheetApp.getActive() .getSheetByName('Data Sheet 1') .getDataSourceTables()[0]; const spec = dataSourceTable.getDataSource().getSpec(); if (spec.getType() === SpreadsheetApp.DataSourceType.BIGQUERY) { const bqSpec = spec.asBigQuery(); Logger.log('Project ID: %s\n', bqSpec.getProjectId()); Logger.log('Raw query string: %s\n', bqSpec.getRawQuery()); }
この例は、Looker データソース仕様から情報を取得する方法を示しています。as
を使用すると、Looker
オブジェクトが返されます。
// 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().asLooker(); if (spec.getType() === SpreadsheetApp.DataSourceType.LOOKER) { const lookerSpec = spec.asLooker(); Logger.log('Looker instance URL: %s\n', lookerSpec.getInstanceUrl()); }
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
as | Big | BigQuery データソースの仕様を取得します。 |
as | Looker | Looker データソースの仕様を取得します。 |
copy() | Data | このデータソースの設定に基づいて Data を作成します。 |
get | Data | データソースのパラメータを取得します。 |
get | Data | データソースのタイプを取得します。 |
詳細なドキュメント
as Big Query()
as Looker()
Looker データソースの仕様を取得します。
// 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().asLooker();
戻る
Looker
- Looker データソースの仕様。
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 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 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
- データソースのタイプ。