Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
The type of the parameter.
Instance Attribute Summary collapse
-
#boolean_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaBooleanParameterArray
This message only contains a field of boolean array.
-
#boolean_value ⇒ Boolean
(also: #boolean_value?)
Boolean.
-
#double_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDoubleParameterArray
This message only contains a field of double number array.
-
#double_value ⇒ Float
Double Number.
-
#int_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntParameterArray
This message only contains a field of integer array.
-
#int_value ⇒ Fixnum
Integer.
-
#json_value ⇒ String
Json.
-
#string_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaStringParameterArray
This message only contains a field of string array.
-
#string_value ⇒ String
String.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaValueType
constructor
A new instance of GoogleCloudIntegrationsV1alphaValueType.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaValueType
Returns a new instance of GoogleCloudIntegrationsV1alphaValueType.
9264 9265 9266 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9264 def initialize(**args) update!(**args) end |
Instance Attribute Details
#boolean_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaBooleanParameterArray
This message only contains a field of boolean array.
Corresponds to the JSON property booleanArray
9221 9222 9223 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9221 def boolean_array @boolean_array end |
#boolean_value ⇒ Boolean Also known as: boolean_value?
Boolean.
Corresponds to the JSON property booleanValue
9226 9227 9228 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9226 def boolean_value @boolean_value end |
#double_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDoubleParameterArray
This message only contains a field of double number array.
Corresponds to the JSON property doubleArray
9232 9233 9234 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9232 def double_array @double_array end |
#double_value ⇒ Float
Double Number.
Corresponds to the JSON property doubleValue
9237 9238 9239 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9237 def double_value @double_value end |
#int_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntParameterArray
This message only contains a field of integer array.
Corresponds to the JSON property intArray
9242 9243 9244 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9242 def int_array @int_array end |
#int_value ⇒ Fixnum
Integer.
Corresponds to the JSON property intValue
9247 9248 9249 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9247 def int_value @int_value end |
#json_value ⇒ String
Json.
Corresponds to the JSON property jsonValue
9252 9253 9254 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9252 def json_value @json_value end |
#string_array ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaStringParameterArray
This message only contains a field of string array.
Corresponds to the JSON property stringArray
9257 9258 9259 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9257 def string_array @string_array end |
#string_value ⇒ String
String.
Corresponds to the JSON property stringValue
9262 9263 9264 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9262 def string_value @string_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 9269 def update!(**args) @boolean_array = args[:boolean_array] if args.key?(:boolean_array) @boolean_value = args[:boolean_value] if args.key?(:boolean_value) @double_array = args[:double_array] if args.key?(:double_array) @double_value = args[:double_value] if args.key?(:double_value) @int_array = args[:int_array] if args.key?(:int_array) @int_value = args[:int_value] if args.key?(:int_value) @json_value = args[:json_value] if args.key?(:json_value) @string_array = args[:string_array] if args.key?(:string_array) @string_value = args[:string_value] if args.key?(:string_value) end |