Class: Google::Apis::OsconfigV1::ListPatchJobInstanceDetailsResponse
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::ListPatchJobInstanceDetailsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/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.
1119 1120 1121 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1119 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
1112 1113 1114 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1112 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
1117 1118 1119 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1117 def patch_job_instance_details @patch_job_instance_details end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1124 1125 1126 1127 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1124 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 |