Class: Google::Apis::GkehubV1::ServiceMeshMembershipState

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceMeshMembershipState

Returns a new instance of ServiceMeshMembershipState.



5419
5420
5421
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5419

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#conditionsArray<Google::Apis::GkehubV1::ServiceMeshCondition>

Output only. List of conditions reported for this membership. Corresponds to the JSON property conditions



5407
5408
5409
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5407

def conditions
  @conditions
end

#control_plane_managementGoogle::Apis::GkehubV1::ServiceMeshControlPlaneManagement

Status of control plane management. Corresponds to the JSON property controlPlaneManagement



5412
5413
5414
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5412

def control_plane_management
  @control_plane_management
end

#data_plane_managementGoogle::Apis::GkehubV1::ServiceMeshDataPlaneManagement

Status of data plane management. Only reported per-member. Corresponds to the JSON property dataPlaneManagement



5417
5418
5419
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5417

def data_plane_management
  @data_plane_management
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5424
5425
5426
5427
5428
# File 'lib/google/apis/gkehub_v1/classes.rb', line 5424

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