class Google::Apis::DatastreamV1::JsonFileFormat

JSON file format configuration.

Attributes

compression[RW]

Compression of the loaded JSON file. Corresponds to the JSON property ‘compression` @return [String]

schema_file_format[RW]

The schema file format along JSON data files. Corresponds to the JSON property ‘schemaFileFormat` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datastream_v1/classes.rb, line 541
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datastream_v1/classes.rb, line 546
def update!(**args)
  @compression = args[:compression] if args.key?(:compression)
  @schema_file_format = args[:schema_file_format] if args.key?(:schema_file_format)
end