Class: Google::Apis::BiglakeV1::StorageDescriptor
- Inherits:
-
Object
- Object
- Google::Apis::BiglakeV1::StorageDescriptor
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/biglake_v1/classes.rb,
lib/google/apis/biglake_v1/representations.rb,
lib/google/apis/biglake_v1/representations.rb
Overview
Stores physical storage information of the data.
Instance Attribute Summary collapse
-
#input_format ⇒ String
The fully qualified Java class name of the input format.
-
#location_uri ⇒ String
Cloud Storage folder URI where the table data is stored, starting with "gs://".
-
#output_format ⇒ String
The fully qualified Java class name of the output format.
-
#serde_info ⇒ Google::Apis::BiglakeV1::SerDeInfo
Serializer and deserializer information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StorageDescriptor
constructor
A new instance of StorageDescriptor.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StorageDescriptor
Returns a new instance of StorageDescriptor.
328 329 330 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 328 def initialize(**args) update!(**args) end |
Instance Attribute Details
#input_format ⇒ String
The fully qualified Java class name of the input format.
Corresponds to the JSON property inputFormat
311 312 313 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 311 def input_format @input_format end |
#location_uri ⇒ String
Cloud Storage folder URI where the table data is stored, starting with "gs://".
Corresponds to the JSON property locationUri
316 317 318 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 316 def location_uri @location_uri end |
#output_format ⇒ String
The fully qualified Java class name of the output format.
Corresponds to the JSON property outputFormat
321 322 323 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 321 def output_format @output_format end |
#serde_info ⇒ Google::Apis::BiglakeV1::SerDeInfo
Serializer and deserializer information.
Corresponds to the JSON property serdeInfo
326 327 328 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 326 def serde_info @serde_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
333 334 335 336 337 338 |
# File 'lib/google/apis/biglake_v1/classes.rb', line 333 def update!(**args) @input_format = args[:input_format] if args.key?(:input_format) @location_uri = args[:location_uri] if args.key?(:location_uri) @output_format = args[:output_format] if args.key?(:output_format) @serde_info = args[:serde_info] if args.key?(:serde_info) end |