class Google::Apis::DataprocV1::NamespacedGkeDeploymentTarget
A full, namespace-isolated deployment target for an existing GKE cluster.
Attributes
cluster_namespace[RW]
Optional. A namespace within the GKE cluster to deploy into. Corresponds to the JSON property `clusterNamespace` @return [String]
target_gke_cluster[RW]
Optional. The target GKE cluster to deploy to. Format: 'projects/`project`/ locations/`location`/clusters/`cluster_id`' Corresponds to the JSON property `targetGkeCluster` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataproc_v1/classes.rb, line 2362 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_v1/classes.rb, line 2367 def update!(**args) @cluster_namespace = args[:cluster_namespace] if args.key?(:cluster_namespace) @target_gke_cluster = args[:target_gke_cluster] if args.key?(:target_gke_cluster) end