Class: Google::Apis::CloudkmsV1::ListImportJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::ListImportJobsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudkms_v1/classes.rb,
lib/google/apis/cloudkms_v1/representations.rb,
lib/google/apis/cloudkms_v1/representations.rb
Overview
Response message for KeyManagementService.ListImportJobs.
Instance Attribute Summary collapse
-
#import_jobs ⇒ Array<Google::Apis::CloudkmsV1::ImportJob>
The list of ImportJobs.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#total_size ⇒ Fixnum
The total number of ImportJobs that matched the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListImportJobsResponse
constructor
A new instance of ListImportJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListImportJobsResponse
Returns a new instance of ListImportJobsResponse.
1784 1785 1786 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#import_jobs ⇒ Array<Google::Apis::CloudkmsV1::ImportJob>
The list of ImportJobs.
Corresponds to the JSON property importJobs
1771 1772 1773 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1771 def import_jobs @import_jobs end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in
ListImportJobsRequest.page_token to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
1777 1778 1779 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1777 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total number of ImportJobs that matched the query.
Corresponds to the JSON property totalSize
1782 1783 1784 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1782 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1789 1790 1791 1792 1793 |
# File 'lib/google/apis/cloudkms_v1/classes.rb', line 1789 def update!(**args) @import_jobs = args[:import_jobs] if args.key?(:import_jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) end |