Class: Google::Cloud::GkeHub::V1::RBACRoleBindingLifecycleState

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/gkehub/v1/fleet.rb

Overview

RBACRoleBindingLifecycleState describes the state of a RbacRoleBinding resource.

Defined Under Namespace

Modules: Code

Instance Attribute Summary collapse

Instance Attribute Details

#code::Google::Cloud::GkeHub::V1::RBACRoleBindingLifecycleState::Code (readonly)

Returns Output only. The current state of the rbacrolebinding resource.

Returns:



411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
# File 'proto_docs/google/cloud/gkehub/v1/fleet.rb', line 411

class RBACRoleBindingLifecycleState
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Code describes the state of a rbacrolebinding resource.
  module Code
    # The code is not set.
    CODE_UNSPECIFIED = 0

    # The rbacrolebinding is being created.
    CREATING = 1

    # The rbacrolebinding active.
    READY = 2

    # The rbacrolebinding is being deleted.
    DELETING = 3

    # The rbacrolebinding is being updated.
    UPDATING = 4
  end
end