Class: Google::Apis::ClouddeployV1::KubernetesConfig
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::KubernetesConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
KubernetesConfig contains the Kubernetes runtime configuration.
Instance Attribute Summary collapse
-
#gateway_service_mesh ⇒ Google::Apis::ClouddeployV1::GatewayServiceMesh
Information about the Kubernetes Gateway API service mesh configuration.
-
#service_networking ⇒ Google::Apis::ClouddeployV1::ServiceNetworking
Information about the Kubernetes Service networking configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ KubernetesConfig
constructor
A new instance of KubernetesConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ KubernetesConfig
Returns a new instance of KubernetesConfig.
2467 2468 2469 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2467 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gateway_service_mesh ⇒ Google::Apis::ClouddeployV1::GatewayServiceMesh
Information about the Kubernetes Gateway API service mesh configuration.
Corresponds to the JSON property gatewayServiceMesh
2460 2461 2462 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2460 def gateway_service_mesh @gateway_service_mesh end |
#service_networking ⇒ Google::Apis::ClouddeployV1::ServiceNetworking
Information about the Kubernetes Service networking configuration.
Corresponds to the JSON property serviceNetworking
2465 2466 2467 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2465 def service_networking @service_networking end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2472 2473 2474 2475 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2472 def update!(**args) @gateway_service_mesh = args[:gateway_service_mesh] if args.key?(:gateway_service_mesh) @service_networking = args[:service_networking] if args.key?(:service_networking) end |