Method: Google::Cloud::Container::V1::SetMasterAuthRequest#name
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
#name ⇒ ::String
Returns The name (project, location, cluster) of the cluster to set auth.
Specified in the format projects/*/locations/*/clusters/*
.
3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 3229 class SetMasterAuthRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Operation type: what type update to perform. module Action # Operation is unknown and will error out. UNKNOWN = 0 # Set the password to a user generated value. SET_PASSWORD = 1 # Generate a new password and set it to that. GENERATE_PASSWORD = 2 # Set the username. If an empty username is provided, basic authentication # is disabled for the cluster. If a non-empty username is provided, basic # authentication is enabled, with either a provided password or a generated # one. SET_USERNAME = 3 end end |