Class: Google::Apis::MigrationcenterV1alpha1::ListReportExportJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::ListReportExportJobsResponse
- 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 message for listing report export jobs.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Output only.
-
#report_export_jobs ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportExportJob>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListReportExportJobsResponse
constructor
A new instance of ListReportExportJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListReportExportJobsResponse
Returns a new instance of ListReportExportJobsResponse.
5123 5124 5125 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5123 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Output only. A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
5116 5117 5118 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5116 def next_page_token @next_page_token end |
#report_export_jobs ⇒ Array<Google::Apis::MigrationcenterV1alpha1::ReportExportJob>
Output only. The list of report export jobs.
Corresponds to the JSON property reportExportJobs
5121 5122 5123 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5121 def report_export_jobs @report_export_jobs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5128 5129 5130 5131 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 5128 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @report_export_jobs = args[:report_export_jobs] if args.key?(:report_export_jobs) end |