Class: Google::Apis::GkehubV1::ServiceMeshMembershipState
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1::ServiceMeshMembershipState
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb
Overview
Service Mesh: State for a single Membership, as analyzed by the Service Mesh Hub Controller.
Instance Attribute Summary collapse
-
#conditions ⇒ Array<Google::Apis::GkehubV1::ServiceMeshCondition>
Output only.
-
#control_plane_management ⇒ Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement
Status of control plane management.
-
#data_plane_management ⇒ Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement
Status of data plane management.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceMeshMembershipState
constructor
A new instance of ServiceMeshMembershipState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceMeshMembershipState
Returns a new instance of ServiceMeshMembershipState.
5502 5503 5504 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5502 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conditions ⇒ Array<Google::Apis::GkehubV1::ServiceMeshCondition>
Output only. List of conditions reported for this membership.
Corresponds to the JSON property conditions
5490 5491 5492 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5490 def conditions @conditions end |
#control_plane_management ⇒ Google::Apis::GkehubV1::ServiceMeshControlPlaneManagement
Status of control plane management.
Corresponds to the JSON property controlPlaneManagement
5495 5496 5497 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5495 def control_plane_management @control_plane_management end |
#data_plane_management ⇒ Google::Apis::GkehubV1::ServiceMeshDataPlaneManagement
Status of data plane management. Only reported per-member.
Corresponds to the JSON property dataPlaneManagement
5500 5501 5502 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5500 def data_plane_management @data_plane_management end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5507 5508 5509 5510 5511 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5507 def update!(**args) @conditions = args[:conditions] if args.key?(:conditions) @control_plane_management = args[:control_plane_management] if args.key?(:control_plane_management) @data_plane_management = args[:data_plane_management] if args.key?(:data_plane_management) end |