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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RouteSpec

Returns a new instance of RouteSpec



2693
2694
2695
# File 'generated/google/apis/run_v1/classes.rb', line 2693

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



2691
2692
2693
# File 'generated/google/apis/run_v1/classes.rb', line 2691

def traffic
  @traffic
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2698
2699
2700
# File 'generated/google/apis/run_v1/classes.rb', line 2698

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