class Google::Apis::ConnectorsV1::RuntimeEntitySchema

Schema of a runtime entity.

Attributes

entity[RW]

Output only. Name of the entity. Corresponds to the JSON property ‘entity` @return [String]

fields[RW]

Output only. List of fields in the entity. Corresponds to the JSON property ‘fields` @return [Array<Google::Apis::ConnectorsV1::Field>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1870
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 1875
def update!(**args)
  @entity = args[:entity] if args.key?(:entity)
  @fields = args[:fields] if args.key?(:fields)
end