Class: Google::Apis::MigrationcenterV1alpha1::ListImportDataFilesResponse

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

Response for listing payload files of an import job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListImportDataFilesResponse

Returns a new instance of ListImportDataFilesResponse.



2419
2420
2421
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2419

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

Instance Attribute Details

#import_data_filesArray<Google::Apis::MigrationcenterV1alpha1::ImportDataFile>

The list of import data files. Corresponds to the JSON property importDataFiles



2406
2407
2408
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2406

def import_data_files
  @import_data_files
end

#next_page_tokenString

A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2412
2413
2414
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2412

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


2417
2418
2419
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2417

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2424
2425
2426
2427
2428
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2424

def update!(**args)
  @import_data_files = args[:import_data_files] if args.key?(:import_data_files)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end