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.
3068 3069 3070 |
# File 'lib/google/apis/run_v1/classes.rb', line 3068 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
3066 3067 3068 |
# File 'lib/google/apis/run_v1/classes.rb', line 3066 def traffic @traffic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3073 3074 3075 |
# File 'lib/google/apis/run_v1/classes.rb', line 3073 def update!(**args) @traffic = args[:traffic] if args.key?(:traffic) end |