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.



2253
2254
2255
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2253

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)


2241
2242
2243
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2241

def columns_count
  @columns_count
end

#row_countFixnum

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

Returns:

  • (Fixnum)


2246
2247
2248
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2246

def row_count
  @row_count
end

#signed_uriGoogle::Apis::MigrationcenterV1alpha1::SignedUri

Contains a signed URI. Corresponds to the JSON property signedUri



2251
2252
2253
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2251

def signed_uri
  @signed_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2258
2259
2260
2261
2262
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2258

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