Class: Google::Cloud::GkeHub::V1::ScopeLifecycleState
- Inherits:
-
Object
- Object
- Google::Cloud::GkeHub::V1::ScopeLifecycleState
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkehub/v1/fleet.rb
Overview
ScopeLifecycleState describes the state of a Scope resource.
Defined Under Namespace
Modules: Code
Instance Attribute Summary collapse
-
#code ⇒ ::Google::Cloud::GkeHub::V1::ScopeLifecycleState::Code
readonly
Output only.
Instance Attribute Details
#code ⇒ ::Google::Cloud::GkeHub::V1::ScopeLifecycleState::Code (readonly)
Returns Output only. The current state of the scope resource.
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
# File 'proto_docs/google/cloud/gkehub/v1/fleet.rb', line 493 class ScopeLifecycleState include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Code describes the state of a Scope resource. module Code # The code is not set. CODE_UNSPECIFIED = 0 # The scope is being created. CREATING = 1 # The scope active. READY = 2 # The scope is being deleted. DELETING = 3 # The scope is being updated. UPDATING = 4 end end |