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.
8248 8249 8250 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8248 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Name of the action.
Corresponds to the JSON property action
8236 8237 8238 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8236 def action @action end |
#input_schema ⇒ String
Input parameter schema for the action.
Corresponds to the JSON property inputSchema
8241 8242 8243 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8241 def input_schema @input_schema end |
#output_schema ⇒ String
Output parameter schema for the action.
Corresponds to the JSON property outputSchema
8246 8247 8248 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8246 def output_schema @output_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8253 8254 8255 8256 8257 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8253 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 |