Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse
- 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
Response for listing RuntimeEntitySchemas for a specific Connection.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Next page token.
-
#runtime_entity_schemas ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaRuntimeEntitySchema>
Runtime entity schemas.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaListRuntimeEntitySchemasResponse.
9178 9179 9180 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9178 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Next page token.
Corresponds to the JSON property nextPageToken
9171 9172 9173 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9171 def next_page_token @next_page_token end |
#runtime_entity_schemas ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaRuntimeEntitySchema>
Runtime entity schemas.
Corresponds to the JSON property runtimeEntitySchemas
9176 9177 9178 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9176 def runtime_entity_schemas @runtime_entity_schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9183 9184 9185 9186 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 9183 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @runtime_entity_schemas = args[:runtime_entity_schemas] if args.key?(:runtime_entity_schemas) end |