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.
7502 7503 7504 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7502 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
7495 7496 7497 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7495 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
7500 7501 7502 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7500 def runtime_action_schemas @runtime_action_schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7507 7508 7509 7510 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7507 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 |