Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
- 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 runtime connection schema.
Instance Attribute Summary collapse
-
#actions ⇒ Array<String>
List of actions.
-
#entities ⇒ Array<String>
List of entity names.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
constructor
A new instance of GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
Returns a new instance of GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata.
7126 7127 7128 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7126 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<String>
List of actions.
Corresponds to the JSON property actions
7119 7120 7121 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7119 def actions @actions end |
#entities ⇒ Array<String>
List of entity names.
Corresponds to the JSON property entities
7124 7125 7126 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7124 def entities @entities end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7131 7132 7133 7134 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7131 def update!(**args) @actions = args[:actions] if args.key?(:actions) @entities = args[:entities] if args.key?(:entities) end |