Class: Google::Apis::BigqueryV2::BigLakeConfiguration

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

Overview

Configuration for BigLake managed tables.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BigLakeConfiguration

Returns a new instance of BigLakeConfiguration.



693
694
695
# File 'lib/google/apis/bigquery_v2/classes.rb', line 693

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

Instance Attribute Details

#connection_idString

Required. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form ".." or "projects//locations//connections/". Corresponds to the JSON property connectionId

Returns:

  • (String)


674
675
676
# File 'lib/google/apis/bigquery_v2/classes.rb', line 674

def connection_id
  @connection_id
end

#file_formatString

Required. The file format the table data is stored in. Corresponds to the JSON property fileFormat

Returns:

  • (String)


679
680
681
# File 'lib/google/apis/bigquery_v2/classes.rb', line 679

def file_format
  @file_format
end

#storage_uriString

Required. The fully qualified location prefix of the external folder where table data is stored. The '*' wildcard character is not allowed. The URI should be in the format "gs://bucket/path_to_table/" Corresponds to the JSON property storageUri

Returns:

  • (String)


686
687
688
# File 'lib/google/apis/bigquery_v2/classes.rb', line 686

def storage_uri
  @storage_uri
end

#table_formatString

Required. The table format the metadata only snapshots are stored in. Corresponds to the JSON property tableFormat

Returns:

  • (String)


691
692
693
# File 'lib/google/apis/bigquery_v2/classes.rb', line 691

def table_format
  @table_format
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



698
699
700
701
702
703
# File 'lib/google/apis/bigquery_v2/classes.rb', line 698

def update!(**args)
  @connection_id = args[:connection_id] if args.key?(:connection_id)
  @file_format = args[:file_format] if args.key?(:file_format)
  @storage_uri = args[:storage_uri] if args.key?(:storage_uri)
  @table_format = args[:table_format] if args.key?(:table_format)
end