class Google::Apis::CloudkmsV1::ListImportJobsResponse

Response message for KeyManagementService.ListImportJobs.

Attributes

import_jobs[RW]

The list of ImportJobs. Corresponds to the JSON property `importJobs` @return [Array<Google::Apis::CloudkmsV1::ImportJob>]

next_page_token[RW]

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` @return [String]

total_size[RW]

The total number of ImportJobs that matched the query. Corresponds to the JSON property `totalSize` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudkms_v1/classes.rb, line 1367
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudkms_v1/classes.rb, line 1372
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