Class: Google::Apis::ConnectorsV1::SearchConnectionInstance

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

SearchConnectionInstance represents an instance of connector with specific fields

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchConnectionInstance

Returns a new instance of SearchConnectionInstance.



4961
4962
4963
# File 'lib/google/apis/connectors_v1/classes.rb', line 4961

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

Instance Attribute Details

#action_schemaGoogle::Apis::ConnectorsV1::RuntimeActionSchema

Schema of a runtime action. Corresponds to the JSON property actionSchema



4949
4950
4951
# File 'lib/google/apis/connectors_v1/classes.rb', line 4949

def action_schema
  @action_schema
end

#connectionGoogle::Apis::ConnectorsV1::Connection

Connection represents an instance of connector. Corresponds to the JSON property connection



4954
4955
4956
# File 'lib/google/apis/connectors_v1/classes.rb', line 4954

def connection
  @connection
end

#entity_schemaGoogle::Apis::ConnectorsV1::RuntimeEntitySchema

Schema of a runtime entity. Corresponds to the JSON property entitySchema



4959
4960
4961
# File 'lib/google/apis/connectors_v1/classes.rb', line 4959

def entity_schema
  @entity_schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4966
4967
4968
4969
4970
# File 'lib/google/apis/connectors_v1/classes.rb', line 4966

def update!(**args)
  @action_schema = args[:action_schema] if args.key?(:action_schema)
  @connection = args[:connection] if args.key?(:connection)
  @entity_schema = args[:entity_schema] if args.key?(:entity_schema)
end