Class: Google::Apis::GkehubV1::MembershipFeatureSpec
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::MembershipFeatureSpec
 
 
- 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
MembershipFeatureSpec contains configuration information for a single Membership. NOTE: Please use snake case in your feature name.
Instance Attribute Summary collapse
- 
  
    
      #configmanagement  ⇒ Google::Apis::GkehubV1::ConfigManagementMembershipSpec 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Anthos Config Management: Configuration for a single cluster.
 - 
  
    
      #fleetobservability  ⇒ Google::Apis::GkehubV1::FleetObservabilityMembershipSpec 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
FleetObservability: The membership-specific input for FleetObservability feature.
 - 
  
    
      #identityservice  ⇒ Google::Apis::GkehubV1::IdentityServiceMembershipSpec 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Anthos Identity Service: Configuration for a single Membership.
 - 
  
    
      #mesh  ⇒ Google::Apis::GkehubV1::ServiceMeshMembershipSpec 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Service Mesh: Spec for a single Membership for the servicemesh feature Corresponds to the JSON property
mesh. - 
  
    
      #origin  ⇒ Google::Apis::GkehubV1::Origin 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Origin defines where this MembershipFeatureSpec originated from.
 - 
  
    
      #policycontroller  ⇒ Google::Apis::GkehubV1::PolicyControllerMembershipSpec 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Policy Controller: Configuration for a single cluster.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MembershipFeatureSpec 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MembershipFeatureSpec.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ MembershipFeatureSpec
Returns a new instance of MembershipFeatureSpec.
      4010 4011 4012  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4010 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#configmanagement ⇒ Google::Apis::GkehubV1::ConfigManagementMembershipSpec
Anthos Config Management: Configuration for a single cluster. Intended to
parallel the ConfigManagement CR.
Corresponds to the JSON property configmanagement
      3981 3982 3983  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 3981 def configmanagement @configmanagement end  | 
  
#fleetobservability ⇒ Google::Apis::GkehubV1::FleetObservabilityMembershipSpec
FleetObservability: The membership-specific input for FleetObservability
feature.
Corresponds to the JSON property fleetobservability
      3987 3988 3989  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 3987 def fleetobservability @fleetobservability end  | 
  
#identityservice ⇒ Google::Apis::GkehubV1::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
Corresponds to the JSON property identityservice
      3992 3993 3994  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 3992 def identityservice @identityservice end  | 
  
#mesh ⇒ Google::Apis::GkehubV1::ServiceMeshMembershipSpec
Service Mesh: Spec for a single Membership for the servicemesh feature
Corresponds to the JSON property mesh
      3997 3998 3999  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 3997 def mesh @mesh end  | 
  
#origin ⇒ Google::Apis::GkehubV1::Origin
Origin defines where this MembershipFeatureSpec originated from.
Corresponds to the JSON property origin
      4002 4003 4004  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4002 def origin @origin end  | 
  
#policycontroller ⇒ Google::Apis::GkehubV1::PolicyControllerMembershipSpec
Policy Controller: Configuration for a single cluster. Intended to
parallel the PolicyController CR.
Corresponds to the JSON property policycontroller
      4008 4009 4010  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4008 def policycontroller @policycontroller end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4015 4016 4017 4018 4019 4020 4021 4022  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 4015 def update!(**args) @configmanagement = args[:configmanagement] if args.key?(:configmanagement) @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability) @identityservice = args[:identityservice] if args.key?(:identityservice) @mesh = args[:mesh] if args.key?(:mesh) @origin = args[:origin] if args.key?(:origin) @policycontroller = args[:policycontroller] if args.key?(:policycontroller) end  |