class Google::Apis::DataprocV1beta2::ListAutoscalingPoliciesResponse
A response to a request to list autoscaling policies in a project.
Attributes
next_page_token[RW]
Output only. This token is included in the response if there are more results to fetch. Corresponds to the JSON property `nextPageToken` @return [String]
policies[RW]
Output only. Autoscaling policies list. Corresponds to the JSON property `policies` @return [Array<Google::Apis::DataprocV1beta2::AutoscalingPolicy>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 2020 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 2025 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @policies = args[:policies] if args.key?(:policies) end