Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationParameter
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationParameter
- 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
Integration Parameter is defined in the integration config and are used to provide information about data types of the expected parameters and provide any default values if needed. They can also be used to add custom attributes. These are static in nature and should not be used for dynamic event definition.
Instance Attribute Summary collapse
-
#data_type ⇒ String
Type of the parameter.
-
#default_value ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType
The type of the parameter.
-
#display_name ⇒ String
The name (without prefix) to be displayed in the UI for this parameter.
-
#input_output_type ⇒ String
Specifies the input/output type for the parameter.
-
#is_transient ⇒ Boolean
(also: #is_transient?)
Whether this parameter is a transient parameter.
-
#json_schema ⇒ String
This schema will be used to validate runtime JSON-typed values of this parameter.
-
#key ⇒ String
Key is used to retrieve the corresponding parameter value.
-
#producer ⇒ String
The identifier of the node (TaskConfig/TriggerConfig) this parameter was produced by, if it is a transient param or a copy of an input param.
-
#searchable ⇒ Boolean
(also: #searchable?)
Searchable in the execution log or not.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaIntegrationParameter
constructor
A new instance of GoogleCloudIntegrationsV1alphaIntegrationParameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaIntegrationParameter
Returns a new instance of GoogleCloudIntegrationsV1alphaIntegrationParameter.
6766 6767 6768 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6766 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_type ⇒ String
Type of the parameter.
Corresponds to the JSON property dataType
6717 6718 6719 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6717 def data_type @data_type end |
#default_value ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType
The type of the parameter.
Corresponds to the JSON property defaultValue
6722 6723 6724 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6722 def default_value @default_value end |
#display_name ⇒ String
The name (without prefix) to be displayed in the UI for this parameter. E.g.
if the key is "foo.bar.myName", then the name would be "myName".
Corresponds to the JSON property displayName
6728 6729 6730 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6728 def display_name @display_name end |
#input_output_type ⇒ String
Specifies the input/output type for the parameter.
Corresponds to the JSON property inputOutputType
6733 6734 6735 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6733 def input_output_type @input_output_type end |
#is_transient ⇒ Boolean Also known as: is_transient?
Whether this parameter is a transient parameter.
Corresponds to the JSON property isTransient
6738 6739 6740 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6738 def is_transient @is_transient end |
#json_schema ⇒ String
This schema will be used to validate runtime JSON-typed values of this
parameter.
Corresponds to the JSON property jsonSchema
6745 6746 6747 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6745 def json_schema @json_schema end |
#key ⇒ String
Key is used to retrieve the corresponding parameter value. This should be
unique for a given fired event. These parameters must be predefined in the
integration definition.
Corresponds to the JSON property key
6752 6753 6754 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6752 def key @key end |
#producer ⇒ String
The identifier of the node (TaskConfig/TriggerConfig) this parameter was
produced by, if it is a transient param or a copy of an input param.
Corresponds to the JSON property producer
6758 6759 6760 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6758 def producer @producer end |
#searchable ⇒ Boolean Also known as: searchable?
Searchable in the execution log or not.
Corresponds to the JSON property searchable
6763 6764 6765 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6763 def searchable @searchable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6771 def update!(**args) @data_type = args[:data_type] if args.key?(:data_type) @default_value = args[:default_value] if args.key?(:default_value) @display_name = args[:display_name] if args.key?(:display_name) @input_output_type = args[:input_output_type] if args.key?(:input_output_type) @is_transient = args[:is_transient] if args.key?(:is_transient) @json_schema = args[:json_schema] if args.key?(:json_schema) @key = args[:key] if args.key?(:key) @producer = args[:producer] if args.key?(:producer) @searchable = args[:searchable] if args.key?(:searchable) end |