특히 기존 Looker 데이터 소스 사양에 액세스하는 데 사용되는 Data
입니다. 새 데이터 소스 사양을 만들려면 Spreadsheet
를 사용하세요.
이 예에서는 Looker 연결이 하나만 있는 시트에서 Looker 데이터 소스 사양을 가져오는 방법을 보여줍니다.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker();
메서드
메서드 | 반환 유형 | 간략한 설명 |
---|---|---|
copy() | Data | 이 데이터 소스의 설정을 기반으로 Data 를 만듭니다. |
get | String | 모델에서 Looker Explore의 이름을 가져옵니다. |
get | String | Looker 인스턴스의 URL을 가져옵니다. |
get | String | 인스턴스의 Looker 모델 이름을 가져옵니다. |
get | Data | 데이터 소스의 매개변수를 가져옵니다. |
get | 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 Explore Name()
모델에서 Looker Explore의 이름을 가져옵니다.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker(); const exploreName = lookerDataSourceSpec.getExploreName(); Logger.log(exploreName);
리턴
String
: Looker 탐색 분석의 이름입니다.
get Instance Url()
Looker 인스턴스의 URL을 가져옵니다.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker(); const instanceUrl = lookerDataSourceSpec.getInstanceUrl(); Logger.log(instanceUrl);
리턴
String
: Looker 인스턴스의 URL입니다.
get Model Name()
인스턴스의 Looker 모델 이름을 가져옵니다.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker(); const modelName = lookerDataSourceSpec.getModelName(); Logger.log(modelName);
리턴
String
- Looker 모델의 이름입니다.
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
: 데이터 소스 유형입니다.