Enum DataSourceType
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
데이터소스유형
데이터 소스 유형의 열거형입니다.
enum을 호출하려면 상위 클래스, 이름, 속성을 호출합니다. 예를 들면
SpreadsheetApp.DataSourceType.BIGQUERY
입니다.
속성
속성 | 유형 | 설명 |
DATA_SOURCE_TYPE_UNSUPPORTED | Enum | Apps Script에서 지원되지 않는 데이터 소스 유형입니다. |
BIGQUERY | Enum | BigQuery 데이터 소스입니다. |
LOOKER | Enum | Looker 데이터 소스 |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(UTC)"],[[["\u003cp\u003e\u003ccode\u003eDataSourceType\u003c/code\u003e is used to specify the type of data source used within Google Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eThe enum includes options for unsupported data sources, BigQuery, and Looker.\u003c/p\u003e\n"],["\u003cp\u003eTo reference a specific data source type, use the syntax: \u003ccode\u003eSpreadsheetApp.DataSourceType.[DataSourceType]\u003c/code\u003e.\u003c/p\u003e\n"]]],["The document defines `DataSourceType`, an enumeration of data source types used in Apps Script. It lists three properties: `DATA_SOURCE_TYPE_UNSUPPORTED` (a type not supported), `BIGQUERY` (a BigQuery data source), and `LOOKER` (a Looker data source). To use an enum, you must call it through its parent class, for example: `SpreadsheetApp.DataSourceType.BIGQUERY`. The property's `type` is `Enum`, and a short description is given for each property.\n"],null,["# Enum DataSourceType\n\nDataSourceType\n\nAn enumeration of data source types.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.DataSourceType.BIGQUERY`. \n\n### Properties\n\n| Property | Type | Description |\n|--------------------------------|--------|----------------------------------------------------------|\n| `DATA_SOURCE_TYPE_UNSUPPORTED` | `Enum` | A data source type that is not supported in Apps Script. |\n| `BIGQUERY` | `Enum` | A BigQuery data source. |\n| `LOOKER` | `Enum` | A Looker data source. |"]]