Class: Google::Apis::MigrationcenterV1alpha1::CsvOutputFile
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::CsvOutputFile
- 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 of type CSV.
Instance Attribute Summary collapse
-
#columns_count ⇒ Fixnum
Output only.
-
#row_count ⇒ Fixnum
Output only.
-
#signed_uri ⇒ Google::Apis::MigrationcenterV1alpha1::SignedUri
Contains a signed URI.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CsvOutputFile
constructor
A new instance of CsvOutputFile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CsvOutputFile
Returns a new instance of CsvOutputFile.
1512 1513 1514 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1512 def initialize(**args) update!(**args) end |
Instance Attribute Details
#columns_count ⇒ Fixnum
Output only. Number of columns in the file.
Corresponds to the JSON property columnsCount
1500 1501 1502 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1500 def columns_count @columns_count end |
#row_count ⇒ Fixnum
Output only. Number of rows in the file.
Corresponds to the JSON property rowCount
1505 1506 1507 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1505 def row_count @row_count end |
#signed_uri ⇒ Google::Apis::MigrationcenterV1alpha1::SignedUri
Contains a signed URI.
Corresponds to the JSON property signedUri
1510 1511 1512 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1510 def signed_uri @signed_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1517 1518 1519 1520 1521 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1517 def update!(**args) @columns_count = args[:columns_count] if args.key?(:columns_count) @row_count = args[:row_count] if args.key?(:row_count) @signed_uri = args[:signed_uri] if args.key?(:signed_uri) end |