class Google::Apis::DataprocV1beta2::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_v1beta2/classes.rb, line 2257
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 2262
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