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.
7919 7920 7921 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7919 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Name of the action.
Corresponds to the JSON property action
7907 7908 7909 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7907 def action @action end |
#input_schema ⇒ String
Input parameter schema for the action.
Corresponds to the JSON property inputSchema
7912 7913 7914 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7912 def input_schema @input_schema end |
#output_schema ⇒ String
Output parameter schema for the action.
Corresponds to the JSON property outputSchema
7917 7918 7919 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7917 def output_schema @output_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7924 7925 7926 7927 7928 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7924 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 |