Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaConnectionSchemaMetadata
- 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
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.
5801 5802 5803 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5801 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<String>
List of actions.
Corresponds to the JSON property actions
5794 5795 5796 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5794 def actions @actions end |
#entities ⇒ Array<String>
List of entity names.
Corresponds to the JSON property entities
5799 5800 5801 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5799 def entities @entities end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5806 5807 5808 5809 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5806 def update!(**args) @actions = args[:actions] if args.key?(:actions) @entities = args[:entities] if args.key?(:entities) end |