Class: Google::Apis::RunV1::RouteSpec
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::RouteSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
RouteSpec holds the desired state of the Route (from the client).
Instance Attribute Summary collapse
-
#traffic ⇒ Array<Google::Apis::RunV1::TrafficTarget>
Traffic specifies how to distribute traffic over a collection of Knative Revisions and Configurations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouteSpec
constructor
A new instance of RouteSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouteSpec
Returns a new instance of RouteSpec.
2275 2276 2277 |
# File 'lib/google/apis/run_v1/classes.rb', line 2275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#traffic ⇒ Array<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
2273 2274 2275 |
# File 'lib/google/apis/run_v1/classes.rb', line 2273 def traffic @traffic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2280 2281 2282 |
# File 'lib/google/apis/run_v1/classes.rb', line 2280 def update!(**args) @traffic = args[:traffic] if args.key?(:traffic) end |