Class: Google::Apis::ClouddeployV1::GatewayServiceMesh

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GatewayServiceMesh

Returns a new instance of GatewayServiceMesh.



2021
2022
2023
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2021

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#deploymentString

Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service. Corresponds to the JSON property deployment

Returns:

  • (String)


1995
1996
1997
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1995

def deployment
  @deployment
end

#http_routeString

Required. Name of the Gateway API HTTPRoute. Corresponds to the JSON property httpRoute

Returns:

  • (String)


2000
2001
2002
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2000

def http_route
  @http_route
end

#route_update_wait_timeString

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

Returns:

  • (String)


2007
2008
2009
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2007

def route_update_wait_time
  @route_update_wait_time
end

#serviceString

Required. Name of the Kubernetes Service. Corresponds to the JSON property service

Returns:

  • (String)


2012
2013
2014
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2012

def service
  @service
end

#stable_cutback_durationString

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

Returns:

  • (String)


2019
2020
2021
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2019

def stable_cutback_duration
  @stable_cutback_duration
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2026
2027
2028
2029
2030
2031
2032
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 2026

def update!(**args)
  @deployment = args[:deployment] if args.key?(:deployment)
  @http_route = args[:http_route] if args.key?(:http_route)
  @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