Class: Google::Apis::RunV1::RouteSpec

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1/classes.rb,
generated/google/apis/run_v1/representations.rb,
generated/google/apis/run_v1/representations.rb

Overview

RouteSpec holds the desired state of the Route (from the client).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RouteSpec

Returns a new instance of RouteSpec.



2264
2265
2266
# File 'generated/google/apis/run_v1/classes.rb', line 2264

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

Instance Attribute Details

#trafficArray<Google::Apis::RunV1::TrafficTarget>

Traffic specifies how to distribute traffic over a collection of Knative Revisions and Configurations. Cloud Run currently supports a single configurationName. Corresponds to the JSON property traffic



2262
2263
2264
# File 'generated/google/apis/run_v1/classes.rb', line 2262

def traffic
  @traffic
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2269
2270
2271
# File 'generated/google/apis/run_v1/classes.rb', line 2269

def update!(**args)
  @traffic = args[:traffic] if args.key?(:traffic)
end