Class: Google::Apis::MigrationcenterV1alpha1::CsvOutputFile

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CsvOutputFile

Returns a new instance of CsvOutputFile.



2378
2379
2380
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2378

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

Instance Attribute Details

#columns_countFixnum

Output only. Number of columns in the file. Corresponds to the JSON property columnsCount

Returns:

  • (Fixnum)


2366
2367
2368
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2366

def columns_count
  @columns_count
end

#row_countFixnum

Output only. Number of rows in the file. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


2371
2372
2373
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2371

def row_count
  @row_count
end

#signed_uriGoogle::Apis::MigrationcenterV1alpha1::SignedUri

Contains a signed URI. Corresponds to the JSON property signedUri



2376
2377
2378
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2376

def signed_uri
  @signed_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2383
2384
2385
2386
2387
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2383

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