Class CommunityConnector

CommunityConnector

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);

プロパティ

プロパティタイプ説明
AggregationTypeAggregationTypeAggregationType 列挙値。
AuthTypeAuthTypeAuthType 列挙値。
BigQueryParameterTypeBigQueryParameterTypeBigQueryParameterType 列挙値。
FieldTypeFieldTypeFieldType 列挙値。

メソッド

メソッド戻り値の型概要
getConfig()ConfigConfig オブジェクトを返します。
getFields()FieldsFields オブジェクトを返します。
newAuthTypeResponse()GetAuthTypeResponse新しい GetAuthTypeResponse オブジェクトを返します。
newBigQueryConfig()BigQueryConfig新しい BigQueryConfig オブジェクトを返します。
newDebugError()DebugError新しい DebugError オブジェクトを返します。
newGetDataResponse()GetDataResponse新しい GetDataResponse オブジェクトを返します。
newGetSchemaResponse()GetSchemaResponse新しい GetSchemaResponse オブジェクトを返します。
newSetCredentialsResponse()SetCredentialsResponse新しい SetCredentialsResponse オブジェクトを返します。
newUserError()UserError新しい UserError オブジェクトを返します。

詳細なドキュメント

getConfig()

Config オブジェクトを返します。このオブジェクトを使用して構成エントリを追加します。

戻る

Config - Config オブジェクト。


getFields()

Fields オブジェクトを返します。このオブジェクトを使用して、指標とディメンションの Field を追加します。

戻る

Fields - Fields オブジェクト。


newAuthTypeResponse()

新しい GetAuthTypeResponse オブジェクトを返します。このオブジェクトを使用して、メッセージの スクリプト プロジェクトに実装する getAuthType() 関数。

戻る

GetAuthTypeResponse - 新しい GetAuthTypeResponse オブジェクト。


newBigQueryConfig()

新しい BigQueryConfig オブジェクトを返します。このオブジェクトを使用して、メッセージの スクリプト プロジェクトに実装する getData() 関数。

戻る

BigQueryConfig - 新しい BigQueryConfig オブジェクト。


newDebugError()

新しい DebugError オブジェクトを返します。このオブジェクトを使用してデバッグエラーを作成します。

戻る

DebugError - 新しい DebugError オブジェクト。


newGetDataResponse()

新しい GetDataResponse オブジェクトを返します。このオブジェクトを使用して、メッセージの スクリプト プロジェクトに実装する getData() 関数。

戻る

GetDataResponse - 新しい GetDataResponse オブジェクト。


newGetSchemaResponse()

新しい GetSchemaResponse オブジェクトを返します。このオブジェクトを使用して、メッセージの スクリプト プロジェクトに実装する getSchema() 関数。

戻る

GetSchemaResponse - 新しい GetSchemaResponse オブジェクト。


newSetCredentialsResponse()

新しい SetCredentialsResponse オブジェクトを返します。このオブジェクトを使用して、 スクリプト プロジェクトに実装する setCredentials() 関数。

戻る

SetCredentialsResponse - 新しい SetCredentialsResponse オブジェクト。


newUserError()

新しい UserError オブジェクトを返します。このオブジェクトを使用して、ユーザーエラーを作成します。

戻る

UserError - 新しい UserError オブジェクト。