Class: Google::Cloud::GkeHub::V1::MembershipBindingLifecycleState
- Inherits:
-
Object
- Object
- Google::Cloud::GkeHub::V1::MembershipBindingLifecycleState
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkehub/v1/fleet.rb
Overview
MembershipBindingLifecycleState describes the state of a Binding resource.
Defined Under Namespace
Modules: Code
Instance Attribute Summary collapse
-
#code ⇒ ::Google::Cloud::GkeHub::V1::MembershipBindingLifecycleState::Code
readonly
Output only.
Instance Attribute Details
#code ⇒ ::Google::Cloud::GkeHub::V1::MembershipBindingLifecycleState::Code (readonly)
Returns Output only. The current state of the MembershipBinding resource.
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 |
# File 'proto_docs/google/cloud/gkehub/v1/fleet.rb', line 566 class MembershipBindingLifecycleState include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Code describes the state of a MembershipBinding resource. module Code # The code is not set. CODE_UNSPECIFIED = 0 # The membershipbinding is being created. CREATING = 1 # The membershipbinding active. READY = 2 # The membershipbinding is being deleted. DELETING = 3 # The membershipbinding is being updated. UPDATING = 4 end end |