Class: Google::Cloud::GkeHub::V1::NamespaceLifecycleState
- Inherits:
-
Object
- Object
- Google::Cloud::GkeHub::V1::NamespaceLifecycleState
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkehub/v1/fleet.rb
Overview
NamespaceLifecycleState describes the state of a Namespace resource.
Defined Under Namespace
Modules: Code
Instance Attribute Summary collapse
-
#code ⇒ ::Google::Cloud::GkeHub::V1::NamespaceLifecycleState::Code
readonly
Output only.
Instance Attribute Details
#code ⇒ ::Google::Cloud::GkeHub::V1::NamespaceLifecycleState::Code (readonly)
Returns Output only. The current state of the Namespace resource.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
# File 'proto_docs/google/cloud/gkehub/v1/fleet.rb', line 296 class NamespaceLifecycleState include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Code describes the state of a Namespace resource. module Code # The code is not set. CODE_UNSPECIFIED = 0 # The namespace is being created. CREATING = 1 # The namespace active. READY = 2 # The namespace is being deleted. DELETING = 3 # The namespace is being updated. UPDATING = 4 end end |