Class: Google::Apis::ConnectorsV1::MultipleSelectConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::MultipleSelectConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
MultipleSelectConfig represents the multiple options for a config variable.
Instance Attribute Summary collapse
-
#allow_custom_values ⇒ Boolean
(also: #allow_custom_values?)
Optional.
-
#multiple_select_options ⇒ Array<Google::Apis::ConnectorsV1::MultipleSelectOption>
Required.
-
#value_separator ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MultipleSelectConfig
constructor
A new instance of MultipleSelectConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MultipleSelectConfig
Returns a new instance of MultipleSelectConfig.
3879 3880 3881 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3879 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allow_custom_values ⇒ Boolean Also known as: allow_custom_values?
Optional. Allow custom values.
Corresponds to the JSON property allowCustomValues
3865 3866 3867 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3865 def allow_custom_values @allow_custom_values end |
#multiple_select_options ⇒ Array<Google::Apis::ConnectorsV1::MultipleSelectOption>
Required. Multiple select options.
Corresponds to the JSON property multipleSelectOptions
3871 3872 3873 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3871 def @multiple_select_options end |
#value_separator ⇒ String
Required. Value separator. Only "," can be used for OAuth auth code flow scope
field.
Corresponds to the JSON property valueSeparator
3877 3878 3879 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3877 def value_separator @value_separator end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3884 3885 3886 3887 3888 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3884 def update!(**args) @allow_custom_values = args[:allow_custom_values] if args.key?(:allow_custom_values) @multiple_select_options = args[:multiple_select_options] if args.key?(:multiple_select_options) @value_separator = args[:value_separator] if args.key?(:value_separator) end |