Class: Google::Apis::GkehubV1::CommonFeatureSpec
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1::CommonFeatureSpec
- 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
CommonFeatureSpec contains Hub-wide configuration information
Instance Attribute Summary collapse
-
#appdevexperience ⇒ Google::Apis::GkehubV1::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
-
#clusterupgrade ⇒ Google::Apis::GkehubV1::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade feature.
-
#fleetobservability ⇒ Google::Apis::GkehubV1::FleetObservabilityFeatureSpec
Fleet Observability: The Hub-wide input for the FleetObservability feature.
-
#multiclusteringress ⇒ Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress feature.
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.
694 695 696 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 694 def initialize(**args) update!(**args) end |
Instance Attribute Details
#appdevexperience ⇒ Google::Apis::GkehubV1::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
Corresponds to the JSON property appdevexperience
675 676 677 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 675 def appdevexperience @appdevexperience end |
#clusterupgrade ⇒ Google::Apis::GkehubV1::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade
feature.
Corresponds to the JSON property clusterupgrade
681 682 683 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 681 def clusterupgrade @clusterupgrade end |
#fleetobservability ⇒ Google::Apis::GkehubV1::FleetObservabilityFeatureSpec
Fleet Observability: The Hub-wide input for the FleetObservability feature.
Corresponds to the JSON property fleetobservability
686 687 688 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 686 def fleetobservability @fleetobservability end |
#multiclusteringress ⇒ Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress
feature.
Corresponds to the JSON property multiclusteringress
692 693 694 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 692 def multiclusteringress @multiclusteringress end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
699 700 701 702 703 704 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 699 def update!(**args) @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience) @clusterupgrade = args[:clusterupgrade] if args.key?(:clusterupgrade) @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability) @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress) end |