Class: Google::Apis::GkehubV1beta::MembershipFeatureSpec
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1beta::MembershipFeatureSpec
- 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
MembershipFeatureSpec contains configuration information for a single Membership. NOTE: Please use snake case in your feature name.
Instance Attribute Summary collapse
-
#anthosobservability ⇒ Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec
Anthosobservability: Per-Membership Feature spec.
-
#cloudbuild ⇒ Google::Apis::GkehubV1beta::MembershipSpec
Cloud Build: Configurations for each Cloud Build enabled cluster.
-
#configmanagement ⇒ Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec
Anthos Config Management: Configuration for a single cluster.
-
#fleet_inherited ⇒ Boolean
(also: #fleet_inherited?)
True if value of
feature_specwas inherited from a fleet-level default. -
#fleetobservability ⇒ Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec
FleetObservability: The membership-specific input for FleetObservability feature.
-
#identityservice ⇒ Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
-
#mesh ⇒ Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec
Service Mesh: Spec for a single Membership for the servicemesh feature Corresponds to the JSON property
mesh. -
#policycontroller ⇒ Google::Apis::GkehubV1beta::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.
2570 2571 2572 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anthosobservability ⇒ Google::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec
Anthosobservability: Per-Membership Feature spec.
Corresponds to the JSON property anthosobservability
2529 2530 2531 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2529 def anthosobservability @anthosobservability end |
#cloudbuild ⇒ Google::Apis::GkehubV1beta::MembershipSpec
Cloud Build: Configurations for each Cloud Build enabled cluster.
Corresponds to the JSON property cloudbuild
2534 2535 2536 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2534 def cloudbuild @cloudbuild end |
#configmanagement ⇒ Google::Apis::GkehubV1beta::ConfigManagementMembershipSpec
Anthos Config Management: Configuration for a single cluster. Intended to
parallel the ConfigManagement CR.
Corresponds to the JSON property configmanagement
2540 2541 2542 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2540 def configmanagement @configmanagement end |
#fleet_inherited ⇒ Boolean Also known as: fleet_inherited?
True if value of feature_spec was inherited from a fleet-level default.
Corresponds to the JSON property fleetInherited
2545 2546 2547 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2545 def fleet_inherited @fleet_inherited end |
#fleetobservability ⇒ Google::Apis::GkehubV1beta::FleetObservabilityMembershipSpec
FleetObservability: The membership-specific input for FleetObservability
feature.
Corresponds to the JSON property fleetobservability
2552 2553 2554 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2552 def fleetobservability @fleetobservability end |
#identityservice ⇒ Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
Corresponds to the JSON property identityservice
2557 2558 2559 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2557 def identityservice @identityservice end |
#mesh ⇒ Google::Apis::GkehubV1beta::ServiceMeshMembershipSpec
Service Mesh: Spec for a single Membership for the servicemesh feature
Corresponds to the JSON property mesh
2562 2563 2564 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2562 def mesh @mesh end |
#policycontroller ⇒ Google::Apis::GkehubV1beta::PolicyControllerMembershipSpec
Policy Controller: Configuration for a single cluster. Intended to
parallel the PolicyController CR.
Corresponds to the JSON property policycontroller
2568 2569 2570 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2568 def policycontroller @policycontroller end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2575 def update!(**args) @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability) @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild) @configmanagement = args[:configmanagement] if args.key?(:configmanagement) @fleet_inherited = args[:fleet_inherited] if args.key?(:fleet_inherited) @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability) @identityservice = args[:identityservice] if args.key?(:identityservice) @mesh = args[:mesh] if args.key?(:mesh) @policycontroller = args[:policycontroller] if args.key?(:policycontroller) end |