Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaRuntimeActionSchema
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaRuntimeActionSchema
- 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
Metadata of an action, including schemas for its inputs and outputs.
Instance Attribute Summary collapse
-
#action ⇒ String
Name of the action.
-
#input_schema ⇒ String
Input parameter schema for the action.
-
#output_schema ⇒ String
Output parameter schema for the action.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaRuntimeActionSchema
constructor
A new instance of GoogleCloudIntegrationsV1alphaRuntimeActionSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaRuntimeActionSchema
Returns a new instance of GoogleCloudIntegrationsV1alphaRuntimeActionSchema.
8028 8029 8030 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8028 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Name of the action.
Corresponds to the JSON property action
8016 8017 8018 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8016 def action @action end |
#input_schema ⇒ String
Input parameter schema for the action.
Corresponds to the JSON property inputSchema
8021 8022 8023 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8021 def input_schema @input_schema end |
#output_schema ⇒ String
Output parameter schema for the action.
Corresponds to the JSON property outputSchema
8026 8027 8028 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8026 def output_schema @output_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8033 8034 8035 8036 8037 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8033 def update!(**args) @action = args[:action] if args.key?(:action) @input_schema = args[:input_schema] if args.key?(:input_schema) @output_schema = args[:output_schema] if args.key?(:output_schema) end |