Class: Google::Apis::ConnectorsV1::RuntimeEntitySchema
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::RuntimeEntitySchema
- 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
Schema of a runtime entity.
Instance Attribute Summary collapse
-
#entity ⇒ String
Output only.
-
#fields ⇒ Array<Google::Apis::ConnectorsV1::Field>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuntimeEntitySchema
constructor
A new instance of RuntimeEntitySchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RuntimeEntitySchema
Returns a new instance of RuntimeEntitySchema.
3250 3251 3252 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity ⇒ String
Output only. Name of the entity.
Corresponds to the JSON property entity
3243 3244 3245 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3243 def entity @entity end |
#fields ⇒ Array<Google::Apis::ConnectorsV1::Field>
Output only. List of fields in the entity.
Corresponds to the JSON property fields
3248 3249 3250 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3248 def fields @fields end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3255 3256 3257 3258 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3255 def update!(**args) @entity = args[:entity] if args.key?(:entity) @fields = args[:fields] if args.key?(:fields) end |