Class: Google::Cloud::GkeHub::V1::FleetLifecycleState
- Inherits:
-
Object
- Object
- Google::Cloud::GkeHub::V1::FleetLifecycleState
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkehub/v1/fleet.rb
Overview
FleetLifecycleState describes the state of a Fleet resource.
Defined Under Namespace
Modules: Code
Instance Attribute Summary collapse
-
#code ⇒ ::Google::Cloud::GkeHub::V1::FleetLifecycleState::Code
readonly
Output only.
Instance Attribute Details
#code ⇒ ::Google::Cloud::GkeHub::V1::FleetLifecycleState::Code (readonly)
Returns Output only. The current state of the Fleet resource.
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'proto_docs/google/cloud/gkehub/v1/fleet.rb', line 211 class FleetLifecycleState include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Code describes the state of a Fleet resource. module Code # The code is not set. CODE_UNSPECIFIED = 0 # The fleet is being created. CREATING = 1 # The fleet active. READY = 2 # The fleet is being deleted. DELETING = 3 # The fleet is being updated. UPDATING = 4 end end |