Class: Google::Apis::MigrationcenterV1alpha1::ListImportDataFilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ListImportDataFilesResponse
- 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
-
#import_data_files ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ImportDataFile>
The list of import data files.
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListImportDataFilesResponse
constructor
A new instance of ListImportDataFilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListImportDataFilesResponse
Returns a new instance of ListImportDataFilesResponse.
4664 4665 4666 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4664 def initialize(**args) update!(**args) end |
Instance Attribute Details
#import_data_files ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ImportDataFile>
The list of import data files.
Corresponds to the JSON property importDataFiles
4651 4652 4653 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4651 def import_data_files @import_data_files end |
#next_page_token ⇒ String
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
4657 4658 4659 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4657 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
4662 4663 4664 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4662 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4669 4670 4671 4672 4673 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4669 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 |