Class: Google::Apis::MigrationcenterV1alpha1::OutputFile
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::OutputFile
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Contains a single output file.
Instance Attribute Summary collapse
-
#csv_output_file ⇒ Google::Apis::MigrationcenterV1alpha1::CsvOutputFile
Contains a single output file of type CSV.
-
#file_size_bytes ⇒ Fixnum
Output only.
-
#xlsx_output_file ⇒ Google::Apis::MigrationcenterV1alpha1::XlsxOutputFile
Contains a single output file of type XLSX.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OutputFile
constructor
A new instance of OutputFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OutputFile
Returns a new instance of OutputFile.
5116 5117 5118 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5116 def initialize(**args) update!(**args) end |
Instance Attribute Details
#csv_output_file ⇒ Google::Apis::MigrationcenterV1alpha1::CsvOutputFile
Contains a single output file of type CSV.
Corresponds to the JSON property csvOutputFile
5104 5105 5106 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5104 def csv_output_file @csv_output_file end |
#file_size_bytes ⇒ Fixnum
Output only. File size in bytes.
Corresponds to the JSON property fileSizeBytes
5109 5110 5111 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5109 def file_size_bytes @file_size_bytes end |
#xlsx_output_file ⇒ Google::Apis::MigrationcenterV1alpha1::XlsxOutputFile
Contains a single output file of type XLSX.
Corresponds to the JSON property xlsxOutputFile
5114 5115 5116 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5114 def xlsx_output_file @xlsx_output_file end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5121 5122 5123 5124 5125 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5121 def update!(**args) @csv_output_file = args[:csv_output_file] if args.key?(:csv_output_file) @file_size_bytes = args[:file_size_bytes] if args.key?(:file_size_bytes) @xlsx_output_file = args[:xlsx_output_file] if args.key?(:xlsx_output_file) end |