Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaValueType

Returns a new instance of GoogleCloudIntegrationsV1alphaValueType.



8809
8810
8811
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8809

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#boolean_arrayGoogle::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaBooleanParameterArray

This message only contains a field of boolean array. Corresponds to the JSON property booleanArray



8766
8767
8768
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8766

def boolean_array
  @boolean_array
end

#boolean_valueBoolean Also known as: boolean_value?

Boolean. Corresponds to the JSON property booleanValue

Returns:

  • (Boolean)


8771
8772
8773
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8771

def boolean_value
  @boolean_value
end

#double_arrayGoogle::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaDoubleParameterArray

This message only contains a field of double number array. Corresponds to the JSON property doubleArray



8777
8778
8779
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8777

def double_array
  @double_array
end

#double_valueFloat

Double Number. Corresponds to the JSON property doubleValue

Returns:

  • (Float)


8782
8783
8784
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8782

def double_value
  @double_value
end

#int_arrayGoogle::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntParameterArray

This message only contains a field of integer array. Corresponds to the JSON property intArray



8787
8788
8789
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8787

def int_array
  @int_array
end

#int_valueFixnum

Integer. Corresponds to the JSON property intValue

Returns:

  • (Fixnum)


8792
8793
8794
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8792

def int_value
  @int_value
end

#json_valueString

Json. Corresponds to the JSON property jsonValue

Returns:

  • (String)


8797
8798
8799
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8797

def json_value
  @json_value
end

#string_arrayGoogle::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaStringParameterArray

This message only contains a field of string array. Corresponds to the JSON property stringArray



8802
8803
8804
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8802

def string_array
  @string_array
end

#string_valueString

String. Corresponds to the JSON property stringValue

Returns:

  • (String)


8807
8808
8809
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8807

def string_value
  @string_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8814
8815
8816
8817
8818
8819
8820
8821
8822
8823
8824
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8814

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