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.



406
407
408
# File 'lib/google/apis/datastream_v1/classes.rb', line 406

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

Instance Attribute Details

#bucketString

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

Returns:

  • (String)


384
385
386
# File 'lib/google/apis/datastream_v1/classes.rb', line 384

def bucket
  @bucket
end

#connection_nameString

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

Returns:

  • (String)


389
390
391
# File 'lib/google/apis/datastream_v1/classes.rb', line 389

def connection_name
  @connection_name
end

#file_formatString

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

Returns:

  • (String)


394
395
396
# File 'lib/google/apis/datastream_v1/classes.rb', line 394

def file_format
  @file_format
end

#root_pathString

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

Returns:

  • (String)


399
400
401
# File 'lib/google/apis/datastream_v1/classes.rb', line 399

def root_path
  @root_path
end

#table_formatString

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

Returns:

  • (String)


404
405
406
# File 'lib/google/apis/datastream_v1/classes.rb', line 404

def table_format
  @table_format
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



411
412
413
414
415
416
417
# File 'lib/google/apis/datastream_v1/classes.rb', line 411

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