Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig

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

Overview

Describes BigQuery publishing configurations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig

Returns a new instance of GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig.



1646
1647
1648
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1646

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

Instance Attribute Details

#connectionString

Optional. The BigQuery connection used to create BigLake tables. Must be in the form projects/project_id/locations/location_id/connections/ connection_id Corresponds to the JSON property connection

Returns:

  • (String)


1638
1639
1640
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1638

def connection
  @connection
end

#table_typeString

Optional. Determines whether to publish discovered tables as BigLake external tables or non-BigLake external tables. Corresponds to the JSON property tableType

Returns:

  • (String)


1644
1645
1646
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1644

def table_type
  @table_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1651
1652
1653
1654
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1651

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