Class: Google::Apis::OsconfigV1::ListPatchDeploymentsResponse

Inherits:
Object
  • Object
show all
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 patch deployments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListPatchDeploymentsResponse

Returns a new instance of ListPatchDeploymentsResponse.



1212
1213
1214
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1212

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 patch deployments. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1205
1206
1207
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1205

def next_page_token
  @next_page_token
end

#patch_deploymentsArray<Google::Apis::OsconfigV1::PatchDeployment>

The list of patch deployments. Corresponds to the JSON property patchDeployments



1210
1211
1212
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1210

def patch_deployments
  @patch_deployments
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1217
1218
1219
1220
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1217

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