Class: Google::Apis::DatastreamV1::BlmtConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::BlmtConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_v1/representations.rb
Overview
The configuration for BLMT.
Instance Attribute Summary collapse
-
#bucket ⇒ String
Required.
-
#connection_name ⇒ String
Required.
-
#file_format ⇒ String
Required.
-
#root_path ⇒ String
The root path inside the Cloud Storage bucket.
-
#table_format ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BlmtConfig
constructor
A new instance of BlmtConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BlmtConfig
Returns a new instance of BlmtConfig.
368 369 370 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 368 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket ⇒ String
Required. The Cloud Storage bucket name.
Corresponds to the JSON property bucket
346 347 348 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 346 def bucket @bucket end |
#connection_name ⇒ String
Required. The bigquery connection. Format: project`.`location`.`name
Corresponds to the JSON property connectionName
351 352 353 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 351 def connection_name @connection_name end |
#file_format ⇒ String
Required. The file format.
Corresponds to the JSON property fileFormat
356 357 358 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 356 def file_format @file_format end |
#root_path ⇒ String
The root path inside the Cloud Storage bucket.
Corresponds to the JSON property rootPath
361 362 363 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 361 def root_path @root_path end |
#table_format ⇒ String
Required. The table format.
Corresponds to the JSON property tableFormat
366 367 368 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 366 def table_format @table_format end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
373 374 375 376 377 378 379 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 373 def update!(**args) @bucket = args[:bucket] if args.key?(:bucket) @connection_name = args[:connection_name] if args.key?(:connection_name) @file_format = args[:file_format] if args.key?(:file_format) @root_path = args[:root_path] if args.key?(:root_path) @table_format = args[:table_format] if args.key?(:table_format) end |