Class: Google::Apis::BigqueryconnectionV1::ConnectorConfiguration

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigqueryconnection_v1/classes.rb,
lib/google/apis/bigqueryconnection_v1/representations.rb,
lib/google/apis/bigqueryconnection_v1/representations.rb

Overview

Represents concrete parameter values for Connector Configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConnectorConfiguration

Returns a new instance of ConnectorConfiguration.



603
604
605
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 603

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

Instance Attribute Details

#assetGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationAsset

Data Asset - a resource within instance of the system, reachable under specified endpoint. For example a database name in a SQL DB. Corresponds to the JSON property asset



580
581
582
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 580

def asset
  @asset
end

#authenticationGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication

Client authentication. Corresponds to the JSON property authentication



585
586
587
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 585

def authentication
  @authentication
end

#connector_idString

Required. Immutable. The ID of the Connector these parameters are configured for. Corresponds to the JSON property connectorId

Returns:

  • (String)


591
592
593
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 591

def connector_id
  @connector_id
end

#endpointGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint

Remote endpoint specification. Corresponds to the JSON property endpoint



596
597
598
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 596

def endpoint
  @endpoint
end

#networkGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork

Network related configuration. Corresponds to the JSON property network



601
602
603
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 601

def network
  @network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



608
609
610
611
612
613
614
# File 'lib/google/apis/bigqueryconnection_v1/classes.rb', line 608

def update!(**args)
  @asset = args[:asset] if args.key?(:asset)
  @authentication = args[:authentication] if args.key?(:authentication)
  @connector_id = args[:connector_id] if args.key?(:connector_id)
  @endpoint = args[:endpoint] if args.key?(:endpoint)
  @network = args[:network] if args.key?(:network)
end