Class: Google::Apis::OsconfigV1::ListPatchJobsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/osconfig_v1/classes.rb,
generated/google/apis/osconfig_v1/representations.rb,
generated/google/apis/osconfig_v1/representations.rb

Overview

A response message for listing patch jobs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListPatchJobsResponse

Returns a new instance of ListPatchJobsResponse.



772
773
774
# File 'generated/google/apis/osconfig_v1/classes.rb', line 772

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A pagination token that can be used to get the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


765
766
767
# File 'generated/google/apis/osconfig_v1/classes.rb', line 765

def next_page_token
  @next_page_token
end

#patch_jobsArray<Google::Apis::OsconfigV1::PatchJob>

The list of patch jobs. Corresponds to the JSON property patchJobs



770
771
772
# File 'generated/google/apis/osconfig_v1/classes.rb', line 770

def patch_jobs
  @patch_jobs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



777
778
779
780
# File 'generated/google/apis/osconfig_v1/classes.rb', line 777

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