Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse
- 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
Response for listing RuntimeActionSchemas for a specific Connection.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Next page token.
-
#runtime_action_schemas ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaRuntimeActionSchema>
Runtime action schemas.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListRuntimeActionSchemasResponse.
7180 7181 7182 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7180 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
7173 7174 7175 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7173 def next_page_token @next_page_token end |
#runtime_action_schemas ⇒ Array<Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaRuntimeActionSchema>
Runtime action schemas.
Corresponds to the JSON property runtimeActionSchemas
7178 7179 7180 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7178 def runtime_action_schemas @runtime_action_schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7185 7186 7187 7188 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7185 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @runtime_action_schemas = args[:runtime_action_schemas] if args.key?(:runtime_action_schemas) end |