Class: Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1beta::ServiceMeshControlPlaneManagement
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1beta/classes.rb,
lib/google/apis/gkehub_v1beta/representations.rb,
lib/google/apis/gkehub_v1beta/representations.rb
Overview
Status of control plane management.
Instance Attribute Summary collapse
-
#details ⇒ Array<Google::Apis::GkehubV1beta::ServiceMeshStatusDetails>
Explanation of state.
-
#implementation ⇒ String
Output only.
-
#state ⇒ String
LifecycleState of control plane management.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceMeshControlPlaneManagement
constructor
A new instance of ServiceMeshControlPlaneManagement.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceMeshControlPlaneManagement
Returns a new instance of ServiceMeshControlPlaneManagement.
5759 5760 5761 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 5759 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ Array<Google::Apis::GkehubV1beta::ServiceMeshStatusDetails>
Explanation of state.
Corresponds to the JSON property details
5747 5748 5749 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 5747 def details @details end |
#implementation ⇒ String
Output only. Implementation of managed control plane.
Corresponds to the JSON property implementation
5752 5753 5754 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 5752 def implementation @implementation end |
#state ⇒ String
LifecycleState of control plane management.
Corresponds to the JSON property state
5757 5758 5759 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 5757 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5764 5765 5766 5767 5768 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 5764 def update!(**args) @details = args[:details] if args.key?(:details) @implementation = args[:implementation] if args.key?(:implementation) @state = args[:state] if args.key?(:state) end |