class Google::Apis::OsconfigV1beta::ListPatchJobsResponse
A response message for listing patch jobs.
Attributes
next_page_token[RW]
A pagination token that can be used to get the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
patch_jobs[RW]
The list of patch jobs. Corresponds to the JSON property `patchJobs` @return [Array<Google::Apis::OsconfigV1beta::PatchJob>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1beta/classes.rb, line 770 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/osconfig_v1beta/classes.rb, line 775 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @patch_jobs = args[:patch_jobs] if args.key?(:patch_jobs) end