Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaRuntimeActionSchema
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaRuntimeActionSchema
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/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.
10000 10001 10002 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 10000 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Name of the action.
Corresponds to the JSON property action
9988 9989 9990 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9988 def action @action end |
#input_schema ⇒ String
Input parameter schema for the action.
Corresponds to the JSON property inputSchema
9993 9994 9995 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9993 def input_schema @input_schema end |
#output_schema ⇒ String
Output parameter schema for the action.
Corresponds to the JSON property outputSchema
9998 9999 10000 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9998 def output_schema @output_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10005 10006 10007 10008 10009 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 10005 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 |