AI-generated Key Takeaways
-
SelectMultiple contains information for the config and determines how the select multiple is displayed in Data Studio.
-
Key methods include adding options, setting override capabilities, help text, unique IDs, dynamic status, and display names.
-
The
addOptionmethod adds a new select option using anOptionBuilder. -
The
setAllowOverridemethod enables or disables overriding for the config entry. -
The
setIdmethod sets the unique identifier for the configuration entry. -
The
setIsDynamicmethod sets the dynamic status, clearing subsequent entries if modified.
Contains select multiple information for the config. Its properties determine how the select multiple is displayed in Data Studio.
Usage:
const cc = DataStudioApp.createCommunityConnector(); const config = cc.getConfig(); const option1 = config.newOptionBuilder().setLabel('option label').setValue('option_value'); const option2 = config.newOptionBuilder() .setLabel('second option label') .setValue('option_value_2'); const info1 = config.newSelectMultiple() .setId('api_endpoint') .setName('Data Type') .setHelpText('Select the data type you\'re interested in.') .setAllowOverride(true) .addOption(option1) .addOption(option2);
Methods
| Method | Return type | Brief description |
|---|---|---|
add | Select | Adds a new select option. |
set | Select | Enables overriding for this config entry. |
set | Select | Sets the help text for this configuration entry. |
set | Select | Sets the unique ID for this configuration entry. |
set | Select | Sets the dynamic status for this configuration entry. |
set | Select | Sets the display name for this configuration entry. |
Detailed documentation
addOption(optionBuilder)
Adds a new select option.
Parameters
| Name | Type | Description |
|---|---|---|
option | Option | A builder for an option. |
Return
Select — This builder, for chaining.
setAllowOverride(allowOverride)
Enables overriding for this config entry. If set to true, data source creators have the
option to enable this for report editors.
Parameters
| Name | Type | Description |
|---|---|---|
allow | Boolean | Whether or not this config entry can be overridden in reports. |
Return
Select — This builder, for chaining.
setHelpText(helpText)
Sets the help text for this configuration entry.
Parameters
| Name | Type | Description |
|---|---|---|
help | String | The help text to set. |
Return
Select — This builder, for chaining.
setId(id)
Sets the unique ID for this configuration entry.
Parameters
| Name | Type | Description |
|---|---|---|
id | String | The ID to set. |
Return
Select — This builder, for chaining.
setIsDynamic(isDynamic)
Sets the dynamic status for this configuration entry.
If a dynamic configuration entry is modified, subsequent configuration entries are cleared.
Parameters
| Name | Type | Description |
|---|---|---|
is | Boolean | The dynamic status to set. |
Return
Select — This builder, for chaining.
setName(name)
Sets the display name for this configuration entry.
Parameters
| Name | Type | Description |
|---|---|---|
name | String | The name to set. |
Return
Select — This builder, for chaining.