Class: Google::Apis::OsconfigV1::ListPatchJobInstanceDetailsResponse
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::ListPatchJobInstanceDetailsResponse
- 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 the instances details for a patch job.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A pagination token that can be used to get the next page of results.
-
#patch_job_instance_details ⇒ Array<Google::Apis::OsconfigV1::PatchJobInstanceDetails>
A list of instance status.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPatchJobInstanceDetailsResponse
constructor
A new instance of ListPatchJobInstanceDetailsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPatchJobInstanceDetailsResponse
Returns a new instance of ListPatchJobInstanceDetailsResponse.
747 748 749 |
# File 'generated/google/apis/osconfig_v1/classes.rb', line 747 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
740 741 742 |
# File 'generated/google/apis/osconfig_v1/classes.rb', line 740 def next_page_token @next_page_token end |
#patch_job_instance_details ⇒ Array<Google::Apis::OsconfigV1::PatchJobInstanceDetails>
A list of instance status.
Corresponds to the JSON property patchJobInstanceDetails
745 746 747 |
# File 'generated/google/apis/osconfig_v1/classes.rb', line 745 def patch_job_instance_details @patch_job_instance_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
752 753 754 755 |
# File 'generated/google/apis/osconfig_v1/classes.rb', line 752 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @patch_job_instance_details = args[:patch_job_instance_details] if args.key?(:patch_job_instance_details) end |