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.
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.
-
#identityservice ⇒ Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
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.
1734 1735 1736 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 1734 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
1716 1717 1718 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 1716 def anthosobservability @anthosobservability end |
#cloudbuild ⇒ Google::Apis::GkehubV1beta::MembershipSpec
Cloud Build: Configurations for each Cloud Build enabled cluster.
Corresponds to the JSON property cloudbuild
1721 1722 1723 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 1721 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
1727 1728 1729 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 1727 def configmanagement @configmanagement end |
#identityservice ⇒ Google::Apis::GkehubV1beta::IdentityServiceMembershipSpec
Anthos Identity Service: Configuration for a single Membership.
Corresponds to the JSON property identityservice
1732 1733 1734 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 1732 def identityservice @identityservice end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1739 1740 1741 1742 1743 1744 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 1739 def update!(**args) @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability) @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild) @configmanagement = args[:configmanagement] if args.key?(:configmanagement) @identityservice = args[:identityservice] if args.key?(:identityservice) end |