Class: Google::Apis::GkehubV1beta::CommonFeatureSpec
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1beta::CommonFeatureSpec
- 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
CommonFeatureSpec contains Fleet-wide configuration information
Instance Attribute Summary collapse
-
#appdevexperience ⇒ Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
-
#clusterupgrade ⇒ Google::Apis::GkehubV1beta::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade feature.
-
#dataplanev2 ⇒ Google::Apis::GkehubV1beta::DataplaneV2FeatureSpec
Dataplane V2: Spec Corresponds to the JSON property
dataplanev2. -
#fleetobservability ⇒ Google::Apis::GkehubV1beta::FleetObservabilityFeatureSpec
Fleet Observability: The Hub-wide input for the FleetObservability feature.
-
#multiclusteringress ⇒ Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress feature.
-
#rbacrolebindingactuation ⇒ Google::Apis::GkehubV1beta::RbacRoleBindingActuationFeatureSpec
RBAC RoleBinding Actuation: The Hub-wide input for the RBACRoleBindingActuation feature.
-
#workloadidentity ⇒ Google::Apis::GkehubV1beta::WorkloadIdentityFeatureSpec
WorkloadIdentity: Global feature specification.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CommonFeatureSpec
constructor
A new instance of CommonFeatureSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CommonFeatureSpec
Returns a new instance of CommonFeatureSpec.
801 802 803 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 801 def initialize(**args) update!(**args) end |
Instance Attribute Details
#appdevexperience ⇒ Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
Corresponds to the JSON property appdevexperience
766 767 768 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 766 def appdevexperience @appdevexperience end |
#clusterupgrade ⇒ Google::Apis::GkehubV1beta::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade
feature.
Corresponds to the JSON property clusterupgrade
772 773 774 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 772 def clusterupgrade @clusterupgrade end |
#dataplanev2 ⇒ Google::Apis::GkehubV1beta::DataplaneV2FeatureSpec
Dataplane V2: Spec
Corresponds to the JSON property dataplanev2
777 778 779 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 777 def dataplanev2 @dataplanev2 end |
#fleetobservability ⇒ Google::Apis::GkehubV1beta::FleetObservabilityFeatureSpec
Fleet Observability: The Hub-wide input for the FleetObservability feature.
Corresponds to the JSON property fleetobservability
782 783 784 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 782 def fleetobservability @fleetobservability end |
#multiclusteringress ⇒ Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress
feature.
Corresponds to the JSON property multiclusteringress
788 789 790 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 788 def multiclusteringress @multiclusteringress end |
#rbacrolebindingactuation ⇒ Google::Apis::GkehubV1beta::RbacRoleBindingActuationFeatureSpec
RBAC RoleBinding Actuation: The Hub-wide input for the
RBACRoleBindingActuation feature.
Corresponds to the JSON property rbacrolebindingactuation
794 795 796 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 794 def rbacrolebindingactuation @rbacrolebindingactuation end |
#workloadidentity ⇒ Google::Apis::GkehubV1beta::WorkloadIdentityFeatureSpec
WorkloadIdentity: Global feature specification.
Corresponds to the JSON property workloadidentity
799 800 801 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 799 def workloadidentity @workloadidentity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
806 807 808 809 810 811 812 813 814 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 806 def update!(**args) @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience) @clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade) @dataplanev2 = args[:dataplanev2] if args.key?(:dataplanev2) @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability) @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress) @rbacrolebindingactuation = args[:rbacrolebindingactuation] if args.key?(:rbacrolebindingactuation) @workloadidentity = args[:workloadidentity] if args.key?(:workloadidentity) end |