class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryConnectionSpec

Specification for the BigQuery connection.

Attributes

cloud_sql[RW]

Specification for the BigQuery connection to a Cloud SQL instance. Corresponds to the JSON property `cloudSql` @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec]

connection_type[RW]

The type of the BigQuery connection. Corresponds to the JSON property `connectionType` @return [String]

has_credential[RW]

True if there are credentials attached to the BigQuery connection; false otherwise. Corresponds to the JSON property `hasCredential` @return [Boolean]

has_credential?[RW]

True if there are credentials attached to the BigQuery connection; false otherwise. Corresponds to the JSON property `hasCredential` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datacatalog_v1/classes.rb, line 232
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datacatalog_v1/classes.rb, line 237
def update!(**args)
  @cloud_sql = args[:cloud_sql] if args.key?(:cloud_sql)
  @connection_type = args[:connection_type] if args.key?(:connection_type)
  @has_credential = args[:has_credential] if args.key?(:has_credential)
end