Class: Google::Apis::GkehubV1alpha::MembershipFeatureSpec
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1alpha::MembershipFeatureSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1alpha/classes.rb,
lib/google/apis/gkehub_v1alpha/representations.rb,
lib/google/apis/gkehub_v1alpha/representations.rb
Overview
MembershipFeatureSpec contains configuration information for a single Membership.
Instance Attribute Summary collapse
-
#anthosobservability ⇒ Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec
Anthosobservability: Per-Membership Feature spec.
-
#anthosvm ⇒ Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec
AnthosVMMembershipSpec contains the AnthosVM feature configuration for a membership/cluster.
-
#cloudbuild ⇒ Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec
Cloud Build: Configurations for each Cloud Build enabled cluster.
-
#configmanagement ⇒ Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec
Anthos Config Management: Configuration for a single cluster.
-
#identityservice ⇒ Google::Apis::GkehubV1alpha::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
-
#mesh ⇒ Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec
Service Mesh: Spec for a single Membership for the servicemesh feature Corresponds to the JSON property
mesh. -
#policycontroller ⇒ Google::Apis::GkehubV1alpha::PolicyControllerMembershipSpec
Policy Controller: Configuration for a single cluster.
-
#workloadcertificate ⇒ Google::Apis::GkehubV1alpha::MembershipSpec
Workload Certificate: The membership-specific input for WorkloadCertificate feature.
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.
2772 2773 2774 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2772 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anthosobservability ⇒ Google::Apis::GkehubV1alpha::AnthosObservabilityMembershipSpec
Anthosobservability: Per-Membership Feature spec.
Corresponds to the JSON property anthosobservability
2731 2732 2733 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2731 def anthosobservability @anthosobservability end |
#anthosvm ⇒ Google::Apis::GkehubV1alpha::AnthosVmMembershipSpec
AnthosVMMembershipSpec contains the AnthosVM feature configuration for a
membership/cluster.
Corresponds to the JSON property anthosvm
2737 2738 2739 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2737 def anthosvm @anthosvm end |
#cloudbuild ⇒ Google::Apis::GkehubV1alpha::CloudBuildMembershipSpec
Cloud Build: Configurations for each Cloud Build enabled cluster.
Corresponds to the JSON property cloudbuild
2742 2743 2744 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2742 def cloudbuild @cloudbuild end |
#configmanagement ⇒ Google::Apis::GkehubV1alpha::ConfigManagementMembershipSpec
Anthos Config Management: Configuration for a single cluster. Intended to
parallel the ConfigManagement CR.
Corresponds to the JSON property configmanagement
2748 2749 2750 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2748 def configmanagement @configmanagement end |
#identityservice ⇒ Google::Apis::GkehubV1alpha::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
Corresponds to the JSON property identityservice
2753 2754 2755 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2753 def identityservice @identityservice end |
#mesh ⇒ Google::Apis::GkehubV1alpha::ServiceMeshMembershipSpec
Service Mesh: Spec for a single Membership for the servicemesh feature
Corresponds to the JSON property mesh
2758 2759 2760 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2758 def mesh @mesh end |
#policycontroller ⇒ Google::Apis::GkehubV1alpha::PolicyControllerMembershipSpec
Policy Controller: Configuration for a single cluster. Intended to
parallel the PolicyController CR.
Corresponds to the JSON property policycontroller
2764 2765 2766 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2764 def policycontroller @policycontroller end |
#workloadcertificate ⇒ Google::Apis::GkehubV1alpha::MembershipSpec
Workload Certificate: The membership-specific input for
WorkloadCertificate feature.
Corresponds to the JSON property workloadcertificate
2770 2771 2772 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2770 def workloadcertificate @workloadcertificate end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2777 def update!(**args) @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability) @anthosvm = args[:anthosvm] if args.key?(:anthosvm) @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild) @configmanagement = args[:configmanagement] if args.key?(:configmanagement) @identityservice = args[:identityservice] if args.key?(:identityservice) @mesh = args[:mesh] if args.key?(:mesh) @policycontroller = args[:policycontroller] if args.key?(:policycontroller) @workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate) end |