Class: Google::Apis::ConnectorsV1::RuntimeEntitySchema

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RuntimeEntitySchema

Returns a new instance of RuntimeEntitySchema.



6438
6439
6440
# File 'lib/google/apis/connectors_v1/classes.rb', line 6438

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#entityString

Output only. Name of the entity. Corresponds to the JSON property entity

Returns:

  • (String)


6421
6422
6423
# File 'lib/google/apis/connectors_v1/classes.rb', line 6421

def entity
  @entity
end

#fieldsArray<Google::Apis::ConnectorsV1::Field>

Output only. List of fields in the entity. Corresponds to the JSON property fields



6426
6427
6428
# File 'lib/google/apis/connectors_v1/classes.rb', line 6426

def fields
  @fields
end

#json_schemaGoogle::Apis::ConnectorsV1::JsonSchema

JsonSchema representation of schema metadata Corresponds to the JSON property jsonSchema



6431
6432
6433
# File 'lib/google/apis/connectors_v1/classes.rb', line 6431

def json_schema
  @json_schema
end

#operationsArray<String>

List of operations supported by this entity Corresponds to the JSON property operations

Returns:

  • (Array<String>)


6436
6437
6438
# File 'lib/google/apis/connectors_v1/classes.rb', line 6436

def operations
  @operations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6443
6444
6445
6446
6447
6448
# File 'lib/google/apis/connectors_v1/classes.rb', line 6443

def update!(**args)
  @entity = args[:entity] if args.key?(:entity)
  @fields = args[:fields] if args.key?(:fields)
  @json_schema = args[:json_schema] if args.key?(:json_schema)
  @operations = args[:operations] if args.key?(:operations)
end