Class: Google::Apis::ConnectorsV1::ConnectionSchemaMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::ConnectionSchemaMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Metadata of connection schema.
Instance Attribute Summary collapse
-
#actions ⇒ Array<String>
Output only.
-
#entities ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConnectionSchemaMetadata
constructor
A new instance of ConnectionSchemaMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConnectionSchemaMetadata
Returns a new instance of ConnectionSchemaMetadata.
570 571 572 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<String>
Output only. List of actions.
Corresponds to the JSON property actions
563 564 565 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 563 def actions @actions end |
#entities ⇒ Array<String>
Output only. List of entity names.
Corresponds to the JSON property entities
568 569 570 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 568 def entities @entities end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
575 576 577 578 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 575 def update!(**args) @actions = args[:actions] if args.key?(:actions) @entities = args[:entities] if args.key?(:entities) end |