CommunityConnector consente agli script di accedere a builder e utilità per aiutare nello sviluppo di
Connettori della community per Data Studio. Utilizza questa classe per ottenere un riferimento a Fields
e le enum FieldType
e AggregationType
in modo che possano essere utilizzati nell'oggetto
costruzione di 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);
Proprietà
Proprietà | Tipo | Descrizione |
---|---|---|
AggregationType | AggregationType | L'enumerazione AggregationType . |
AuthType | AuthType | L'enumerazione AuthType . |
BigQueryParameterType | BigQueryParameterType | L'enumerazione BigQueryParameterType . |
FieldType | FieldType | L'enumerazione FieldType . |
Metodi
Metodo | Tipo restituito | Breve descrizione |
---|---|---|
getConfig() | Config | Restituisce un oggetto Config . |
getFields() | Fields | Restituisce un oggetto Fields . |
newAuthTypeResponse() | GetAuthTypeResponse | Restituisce un nuovo oggetto GetAuthTypeResponse . |
newBigQueryConfig() | BigQueryConfig | Restituisce un nuovo oggetto BigQueryConfig . |
newDebugError() | DebugError | Restituisce un nuovo oggetto DebugError . |
newGetDataResponse() | GetDataResponse | Restituisce un nuovo oggetto GetDataResponse . |
newGetSchemaResponse() | GetSchemaResponse | Restituisce un nuovo oggetto GetSchemaResponse . |
newSetCredentialsResponse() | SetCredentialsResponse | Restituisce un nuovo oggetto SetCredentialsResponse . |
newUserError() | UserError | Restituisce un nuovo oggetto UserError . |
Documentazione dettagliata
getConfig()
getFields()
newAuthTypeResponse()
Restituisce un nuovo oggetto GetAuthTypeResponse
. Utilizza questo oggetto per creare una risposta per l'oggetto
Funzione getAuthType()
implementata nel progetto di script.
Invio
GetAuthTypeResponse
: un nuovo oggetto GetAuthTypeResponse
.
newBigQueryConfig()
Restituisce un nuovo oggetto BigQueryConfig
. Utilizza questo oggetto per creare una risposta per l'oggetto
Funzione getData()
implementata nel progetto di script.
Invio
BigQueryConfig
: un nuovo oggetto BigQueryConfig
.
newDebugError()
Restituisce un nuovo oggetto DebugError
. Utilizza questo oggetto per creare errori di debug.
Invio
DebugError
: un nuovo oggetto DebugError
.
newGetDataResponse()
Restituisce un nuovo oggetto GetDataResponse
. Utilizza questo oggetto per creare una risposta per l'oggetto
Funzione getData()
implementata nel progetto di script.
Invio
GetDataResponse
: un nuovo oggetto GetDataResponse
.
newGetSchemaResponse()
Restituisce un nuovo oggetto GetSchemaResponse
. Utilizza questo oggetto per creare una risposta per l'oggetto
Funzione getSchema()
implementata nel progetto di script.
Invio
GetSchemaResponse
: un nuovo oggetto GetSchemaResponse
.
newSetCredentialsResponse()
Restituisce un nuovo oggetto SetCredentialsResponse
. Utilizza questo oggetto per creare una risposta per
la funzione setCredentials()
implementata nel progetto di script.
Invio
SetCredentialsResponse
: un nuovo oggetto SetCredentialsResponse
.