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 Fleet-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.
-
#dataplanev2 ⇒ Google::Apis::GkehubV1::DataplaneV2FeatureSpec
Dataplane V2: Spec Corresponds to the JSON property
dataplanev2. -
#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.
-
#rbacrolebindingactuation ⇒ Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec
RBAC RoleBinding Actuation: The Hub-wide input for the RBACRoleBindingActuation feature.
-
#workloadidentity ⇒ Google::Apis::GkehubV1::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.
809 810 811 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 809 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
774 775 776 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 774 def appdevexperience @appdevexperience end |
#clusterupgrade ⇒ Google::Apis::GkehubV1::ClusterUpgradeFleetSpec
ClusterUpgrade: The configuration for the fleet-level ClusterUpgrade
feature.
Corresponds to the JSON property clusterupgrade
780 781 782 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 780 def clusterupgrade @clusterupgrade end |
#dataplanev2 ⇒ Google::Apis::GkehubV1::DataplaneV2FeatureSpec
Dataplane V2: Spec
Corresponds to the JSON property dataplanev2
785 786 787 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 785 def dataplanev2 @dataplanev2 end |
#fleetobservability ⇒ Google::Apis::GkehubV1::FleetObservabilityFeatureSpec
Fleet Observability: The Hub-wide input for the FleetObservability feature.
Corresponds to the JSON property fleetobservability
790 791 792 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 790 def fleetobservability @fleetobservability end |
#multiclusteringress ⇒ Google::Apis::GkehubV1::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress
feature.
Corresponds to the JSON property multiclusteringress
796 797 798 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 796 def multiclusteringress @multiclusteringress end |
#rbacrolebindingactuation ⇒ Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec
RBAC RoleBinding Actuation: The Hub-wide input for the
RBACRoleBindingActuation feature.
Corresponds to the JSON property rbacrolebindingactuation
802 803 804 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 802 def rbacrolebindingactuation @rbacrolebindingactuation end |
#workloadidentity ⇒ Google::Apis::GkehubV1::WorkloadIdentityFeatureSpec
WorkloadIdentity: Global feature specification.
Corresponds to the JSON property workloadidentity
807 808 809 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 807 def workloadidentity @workloadidentity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
814 815 816 817 818 819 820 821 822 |
# File 'lib/google/apis/gkehub_v1/classes.rb', line 814 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 |