Class: Google::Apis::ClouddeployV1::GatewayServiceMesh
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::GatewayServiceMesh
- 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
Information about the Kubernetes Gateway API service mesh configuration.
Instance Attribute Summary collapse
-
#deployment ⇒ String
Required.
-
#http_route ⇒ String
Required.
-
#pod_selector_label ⇒ String
Optional.
-
#route_destinations ⇒ Google::Apis::ClouddeployV1::RouteDestinations
Information about route destinations for the Gateway API service mesh.
-
#route_update_wait_time ⇒ String
Optional.
-
#service ⇒ String
Required.
-
#stable_cutback_duration ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GatewayServiceMesh
constructor
A new instance of GatewayServiceMesh.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GatewayServiceMesh
Returns a new instance of GatewayServiceMesh.
2445 2446 2447 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2445 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployment ⇒ String
Required. Name of the Kubernetes Deployment whose traffic is managed by the
specified HTTPRoute and Service.
Corresponds to the JSON property deployment
2408 2409 2410 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2408 def deployment @deployment end |
#http_route ⇒ String
Required. Name of the Gateway API HTTPRoute.
Corresponds to the JSON property httpRoute
2413 2414 2415 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2413 def http_route @http_route end |
#pod_selector_label ⇒ String
Optional. The label to use when selecting Pods for the Deployment and Service
resources. This label must already be present in both resources.
Corresponds to the JSON property podSelectorLabel
2419 2420 2421 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2419 def pod_selector_label @pod_selector_label end |
#route_destinations ⇒ Google::Apis::ClouddeployV1::RouteDestinations
Information about route destinations for the Gateway API service mesh.
Corresponds to the JSON property routeDestinations
2424 2425 2426 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2424 def route_destinations @route_destinations end |
#route_update_wait_time ⇒ String
Optional. The time to wait for route updates to propagate. The maximum
configurable time is 3 hours, in seconds format. If unspecified, there is no
wait time.
Corresponds to the JSON property routeUpdateWaitTime
2431 2432 2433 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2431 def route_update_wait_time @route_update_wait_time end |
#service ⇒ String
Required. Name of the Kubernetes Service.
Corresponds to the JSON property service
2436 2437 2438 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2436 def service @service end |
#stable_cutback_duration ⇒ String
Optional. The amount of time to migrate traffic back from the canary Service
to the original Service during the stable phase deployment. If specified, must
be between 15s and 3600s. If unspecified, there is no cutback time.
Corresponds to the JSON property stableCutbackDuration
2443 2444 2445 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2443 def stable_cutback_duration @stable_cutback_duration end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2450 2451 2452 2453 2454 2455 2456 2457 2458 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2450 def update!(**args) @deployment = args[:deployment] if args.key?(:deployment) @http_route = args[:http_route] if args.key?(:http_route) @pod_selector_label = args[:pod_selector_label] if args.key?(:pod_selector_label) @route_destinations = args[:route_destinations] if args.key?(:route_destinations) @route_update_wait_time = args[:route_update_wait_time] if args.key?(:route_update_wait_time) @service = args[:service] if args.key?(:service) @stable_cutback_duration = args[:stable_cutback_duration] if args.key?(:stable_cutback_duration) end |