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 Hub-wide configuration information
Instance Attribute Summary collapse
-
#anthosobservability ⇒ Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec
Anthos Observability: Spec Corresponds to the JSON property
anthosobservability. -
#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.
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.
783 784 785 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 783 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anthosobservability ⇒ Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec
Anthos Observability: Spec
Corresponds to the JSON property anthosobservability
754 755 756 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 754 def anthosobservability @anthosobservability end |
#appdevexperience ⇒ Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
Corresponds to the JSON property appdevexperience
759 760 761 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 759 def appdevexperience @appdevexperience end |
#clusterupgrade ⇒ Google::Apis::GkehubV1beta::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade
feature.
Corresponds to the JSON property clusterupgrade
765 766 767 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 765 def clusterupgrade @clusterupgrade end |
#dataplanev2 ⇒ Google::Apis::GkehubV1beta::DataplaneV2FeatureSpec
Dataplane V2: Spec
Corresponds to the JSON property dataplanev2
770 771 772 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 770 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
775 776 777 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 775 def fleetobservability @fleetobservability end |
#multiclusteringress ⇒ Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress
feature.
Corresponds to the JSON property multiclusteringress
781 782 783 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 781 def multiclusteringress @multiclusteringress end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
788 789 790 791 792 793 794 795 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 788 def update!(**args) @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability) @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) end |