Class: Google::Apis::BigqueryconnectionV1beta1::Connection

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

Overview

Configuration parameters to establish connection with an external data source, except the credential attributes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Connection

Returns a new instance of Connection.



277
278
279
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 277

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

Instance Attribute Details

#cloud_sqlGoogle::Apis::BigqueryconnectionV1beta1::CloudSqlProperties

Connection properties specific to the Cloud SQL. Corresponds to the JSON property cloudSql



243
244
245
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 243

def cloud_sql
  @cloud_sql
end

#creation_timeFixnum

Output only. The creation timestamp of the connection. Corresponds to the JSON property creationTime

Returns:

  • (Fixnum)


248
249
250
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 248

def creation_time
  @creation_time
end

#descriptionString

User provided description. Corresponds to the JSON property description

Returns:

  • (String)


253
254
255
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 253

def description
  @description
end

#friendly_nameString

User provided display name for the connection. Corresponds to the JSON property friendlyName

Returns:

  • (String)


258
259
260
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 258

def friendly_name
  @friendly_name
end

#has_credentialBoolean Also known as: has_credential?

Output only. True, if credential is configured for this connection. Corresponds to the JSON property hasCredential

Returns:

  • (Boolean)


263
264
265
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 263

def has_credential
  @has_credential
end

#last_modified_timeFixnum

Output only. The last update timestamp of the connection. Corresponds to the JSON property lastModifiedTime

Returns:

  • (Fixnum)


269
270
271
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 269

def last_modified_time
  @last_modified_time
end

#nameString

The resource name of the connection in the form of: projects/project_id/ locations/location_id/connections/connection_id` Corresponds to the JSON propertyname`

Returns:

  • (String)


275
276
277
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 275

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



282
283
284
285
286
287
288
289
290
# File 'generated/google/apis/bigqueryconnection_v1beta1/classes.rb', line 282

def update!(**args)
  @cloud_sql = args[:cloud_sql] if args.key?(:cloud_sql)
  @creation_time = args[:creation_time] if args.key?(:creation_time)
  @description = args[:description] if args.key?(:description)
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
  @has_credential = args[:has_credential] if args.key?(:has_credential)
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
  @name = args[:name] if args.key?(:name)
end