Class: Google::Apis::RunV1::RouteSpec
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::RouteSpec
- 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
-
#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.
2264 2265 2266 |
# File 'generated/google/apis/run_v1/classes.rb', line 2264 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
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 |