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.



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

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

Instance Attribute Details

#bucketString

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

Returns:

  • (String)


372
373
374
# File 'lib/google/apis/datastream_v1/classes.rb', line 372

def bucket
  @bucket
end

#connection_nameString

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

Returns:

  • (String)


377
378
379
# File 'lib/google/apis/datastream_v1/classes.rb', line 377

def connection_name
  @connection_name
end

#file_formatString

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

Returns:

  • (String)


382
383
384
# File 'lib/google/apis/datastream_v1/classes.rb', line 382

def file_format
  @file_format
end

#root_pathString

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

Returns:

  • (String)


387
388
389
# File 'lib/google/apis/datastream_v1/classes.rb', line 387

def root_path
  @root_path
end

#table_formatString

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

Returns:

  • (String)


392
393
394
# File 'lib/google/apis/datastream_v1/classes.rb', line 392

def table_format
  @table_format
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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