Class: Google::Apis::DataprocV1::AutoscalingConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1/classes.rb,
generated/google/apis/dataproc_v1/representations.rb,
generated/google/apis/dataproc_v1/representations.rb

Overview

Autoscaling Policy config associated with the cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutoscalingConfig

Returns a new instance of AutoscalingConfig.



75
76
77
# File 'generated/google/apis/dataproc_v1/classes.rb', line 75

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#policy_uriString

Optional. The autoscaling policy used by the cluster.Only resource names including projectid and location (region) are valid. Examples: https://www. googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/ autoscalingPolicies/[policy_id] projects/[project_id]/locations/[ dataproc_region]/autoscalingPolicies/[policy_id]Note that the policy must be in the same project and Dataproc region. Corresponds to the JSON property policyUri

Returns:

  • (String)


73
74
75
# File 'generated/google/apis/dataproc_v1/classes.rb', line 73

def policy_uri
  @policy_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



80
81
82
# File 'generated/google/apis/dataproc_v1/classes.rb', line 80

def update!(**args)
  @policy_uri = args[:policy_uri] if args.key?(:policy_uri)
end