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
-
#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.
797 798 799 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 797 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anthosobservability ⇒ Google::Apis::GkehubV1beta::AnthosObservabilityFeatureSpec
Anthos Observability: Spec
Corresponds to the JSON property anthosobservability
768 769 770 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 768 def anthosobservability @anthosobservability end |
#appdevexperience ⇒ Google::Apis::GkehubV1beta::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
Corresponds to the JSON property appdevexperience
773 774 775 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 773 def appdevexperience @appdevexperience end |
#clusterupgrade ⇒ Google::Apis::GkehubV1beta::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade
feature.
Corresponds to the JSON property clusterupgrade
779 780 781 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 779 def clusterupgrade @clusterupgrade end |
#dataplanev2 ⇒ Google::Apis::GkehubV1beta::DataplaneV2FeatureSpec
Dataplane V2: Spec
Corresponds to the JSON property dataplanev2
784 785 786 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 784 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
789 790 791 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 789 def fleetobservability @fleetobservability end |
#multiclusteringress ⇒ Google::Apis::GkehubV1beta::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress
feature.
Corresponds to the JSON property multiclusteringress
795 796 797 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 795 def multiclusteringress @multiclusteringress end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
802 803 804 805 806 807 808 809 |
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 802 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 |