Class: Google::Apis::DatastreamV1::BlmtConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#bucketString

Required. The Cloud Storage bucket name. Corresponds to the JSON property bucket

Returns:

  • (String)


346
347
348
# File 'lib/google/apis/datastream_v1/classes.rb', line 346

def bucket
  @bucket
end

#connection_nameString

Required. The bigquery connection. Format: project`.`location`.`name Corresponds to the JSON property connectionName

Returns:

  • (String)


351
352
353
# File 'lib/google/apis/datastream_v1/classes.rb', line 351

def connection_name
  @connection_name
end

#file_formatString

Required. The file format. Corresponds to the JSON property fileFormat

Returns:

  • (String)


356
357
358
# File 'lib/google/apis/datastream_v1/classes.rb', line 356

def file_format
  @file_format
end

#root_pathString

The root path inside the Cloud Storage bucket. Corresponds to the JSON property rootPath

Returns:

  • (String)


361
362
363
# File 'lib/google/apis/datastream_v1/classes.rb', line 361

def root_path
  @root_path
end

#table_formatString

Required. The table format. Corresponds to the JSON property tableFormat

Returns:

  • (String)


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