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.



2403
2404
2405
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2403

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)


2391
2392
2393
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2391

def columns_count
  @columns_count
end

#row_countFixnum

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

Returns:

  • (Fixnum)


2396
2397
2398
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2396

def row_count
  @row_count
end

#signed_uriGoogle::Apis::MigrationcenterV1alpha1::SignedUri

Contains a signed URI. Corresponds to the JSON property signedUri



2401
2402
2403
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2401

def signed_uri
  @signed_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2408
2409
2410
2411
2412
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2408

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