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.
7408 7409 7410 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7408 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
7401 7402 7403 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7401 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
7406 7407 7408 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7406 def runtime_action_schemas @runtime_action_schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7413 7414 7415 7416 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7413 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 |