Class: Google::Apis::GkehubV1alpha::CommonFeatureSpec
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1alpha::CommonFeatureSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1alpha/classes.rb,
lib/google/apis/gkehub_v1alpha/representations.rb,
lib/google/apis/gkehub_v1alpha/representations.rb
Overview
CommonFeatureSpec contains Hub-wide configuration information
Instance Attribute Summary collapse
-
#anthosobservability ⇒ Google::Apis::GkehubV1alpha::AnthosObservabilityFeatureSpec
Anthos Observability: Spec Corresponds to the JSON property
anthosobservability. -
#appdevexperience ⇒ Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
-
#cloudauditlogging ⇒ Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec
Cloud Audit Logging: Spec for Audit Logging Allowlisting.
-
#multiclusteringress ⇒ Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress feature.
-
#workloadcertificate ⇒ Google::Apis::GkehubV1alpha::FeatureSpec
Workload Certificate: The Hub-wide input for the WorkloadCertificate 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.
547 548 549 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 547 def initialize(**args) update!(**args) end |
Instance Attribute Details
#anthosobservability ⇒ Google::Apis::GkehubV1alpha::AnthosObservabilityFeatureSpec
Anthos Observability: Spec
Corresponds to the JSON property anthosobservability
523 524 525 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 523 def anthosobservability @anthosobservability end |
#appdevexperience ⇒ Google::Apis::GkehubV1alpha::AppDevExperienceFeatureSpec
Spec for App Dev Experience Feature.
Corresponds to the JSON property appdevexperience
528 529 530 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 528 def appdevexperience @appdevexperience end |
#cloudauditlogging ⇒ Google::Apis::GkehubV1alpha::CloudAuditLoggingFeatureSpec
Cloud Audit Logging: Spec for Audit Logging Allowlisting.
Corresponds to the JSON property cloudauditlogging
533 534 535 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 533 def cloudauditlogging @cloudauditlogging end |
#multiclusteringress ⇒ Google::Apis::GkehubV1alpha::MultiClusterIngressFeatureSpec
Multi-cluster Ingress: The configuration for the MultiClusterIngress
feature.
Corresponds to the JSON property multiclusteringress
539 540 541 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 539 def multiclusteringress @multiclusteringress end |
#workloadcertificate ⇒ Google::Apis::GkehubV1alpha::FeatureSpec
Workload Certificate: The Hub-wide input for the WorkloadCertificate
feature.
Corresponds to the JSON property workloadcertificate
545 546 547 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 545 def workloadcertificate @workloadcertificate end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
552 553 554 555 556 557 558 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 552 def update!(**args) @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability) @appdevexperience = args[:appdevexperience] if args.key?(:appdevexperience) @cloudauditlogging = args[:cloudauditlogging] if args.key?(:cloudauditlogging) @multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress) @workloadcertificate = args[:workloadcertificate] if args.key?(:workloadcertificate) end |