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.



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

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



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

def asset
  @asset
end

#authenticationGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationAuthentication

Client authentication. Corresponds to the JSON property authentication



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

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)


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

def connector_id
  @connector_id
end

#endpointGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationEndpoint

Remote endpoint specification. Corresponds to the JSON property endpoint



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

def endpoint
  @endpoint
end

#networkGoogle::Apis::BigqueryconnectionV1::ConnectorConfigurationNetwork

Network related configuration. Corresponds to the JSON property network



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

def network
  @network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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