class Google::Apis::OsconfigV1beta::ListPatchDeploymentsResponse
A response message for listing patch deployments.
Attributes
next_page_token[RW]
A pagination token that can be used to get the next page of patch deployments. Corresponds to the JSON property `nextPageToken` @return [String]
patch_deployments[RW]
The list of patch deployments. Corresponds to the JSON property `patchDeployments` @return [Array<Google::Apis::OsconfigV1beta::PatchDeployment>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1beta/classes.rb, line 720 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 725 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @patch_deployments = args[:patch_deployments] if args.key?(:patch_deployments) end