Class: Google::Apis::OsconfigV1beta::ListPatchJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1beta::ListPatchJobsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1beta/classes.rb,
lib/google/apis/osconfig_v1beta/representations.rb,
lib/google/apis/osconfig_v1beta/representations.rb
Overview
A response message for listing patch jobs.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A pagination token that can be used to get the next page of results.
-
#patch_jobs ⇒ Array<Google::Apis::OsconfigV1beta::PatchJob>
The list of patch jobs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPatchJobsResponse
constructor
A new instance of ListPatchJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPatchJobsResponse
Returns a new instance of ListPatchJobsResponse.
815 816 817 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 815 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A pagination token that can be used to get the next page of results.
Corresponds to the JSON property nextPageToken
808 809 810 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 808 def next_page_token @next_page_token end |
#patch_jobs ⇒ Array<Google::Apis::OsconfigV1beta::PatchJob>
The list of patch jobs.
Corresponds to the JSON property patchJobs
813 814 815 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 813 def patch_jobs @patch_jobs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
820 821 822 823 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 820 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 |