CommunityConnector 可让脚本访问构建器和实用程序,以帮助开发
适用于数据洞察的社区连接器。使用此类获取对 Fields
的引用
对象以及 FieldType
和 AggregationType
枚举,以便在
Field
的构造。
var cc = DataStudioApp.createCommunityConnector(); var fieldType = cc.FieldType; var aggregationType = cc.AggregationType; var fields = cc.getFields(); fields.newMetric() .setAggregation(aggregationType.AVG) .setType(fieldType.CURRENCY_USD);
属性
属性 | 类型 | 说明 |
---|---|---|
AggregationType | AggregationType | AggregationType 枚举。 |
AuthType | AuthType | AuthType 枚举。 |
BigQueryParameterType | BigQueryParameterType | BigQueryParameterType 枚举。 |
FieldType | FieldType | FieldType 枚举。 |
方法
详细文档
newAuthTypeResponse()
返回新的 GetAuthTypeResponse
对象。使用此对象为
您在脚本项目中实现的 getAuthType()
函数。
返回
GetAuthTypeResponse
- 一个新的 GetAuthTypeResponse
对象。
newBigQueryConfig()
newDebugError()
newGetDataResponse()
返回新的 GetDataResponse
对象。使用此对象为
您在脚本项目中实现的 getData()
函数。
返回
GetDataResponse
- 一个新的 GetDataResponse
对象。
newGetSchemaResponse()
返回新的 GetSchemaResponse
对象。使用此对象为
您在脚本项目中实现的 getSchema()
函数。
返回
GetSchemaResponse
- 一个新的 GetSchemaResponse
对象。
newSetCredentialsResponse()
返回新的 SetCredentialsResponse
对象。使用此对象为以下对象创建响应:
您在脚本项目中实现的 setCredentials()
函数。
返回
SetCredentialsResponse
- 一个新的 SetCredentialsResponse
对象。