Class: Google::Apis::RunV1::ServiceSpec
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::ServiceSpec
- 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
ServiceSpec holds the desired state of the Route (from the client), which is used to manipulate the underlying Route and Configuration(s).
Instance Attribute Summary collapse
-
#template ⇒ Google::Apis::RunV1::RevisionTemplate
RevisionTemplateSpec describes the data a revision should have when created from a template.
-
#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) ⇒ ServiceSpec
constructor
A new instance of ServiceSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceSpec
Returns a new instance of ServiceSpec.
2565 2566 2567 |
# File 'generated/google/apis/run_v1/classes.rb', line 2565 def initialize(**args) update!(**args) end |
Instance Attribute Details
#template ⇒ Google::Apis::RunV1::RevisionTemplate
RevisionTemplateSpec describes the data a revision should have when created
from a template. Based on: https://github.com/kubernetes/api/blob/e771f807/
core/v1/types.go#L3179-L3190
Corresponds to the JSON property template
2557 2558 2559 |
# File 'generated/google/apis/run_v1/classes.rb', line 2557 def template @template end |
#traffic ⇒ Array<Google::Apis::RunV1::TrafficTarget>
Traffic specifies how to distribute traffic over a collection of Knative
Revisions and Configurations.
Corresponds to the JSON property traffic
2563 2564 2565 |
# File 'generated/google/apis/run_v1/classes.rb', line 2563 def traffic @traffic end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2570 2571 2572 2573 |
# File 'generated/google/apis/run_v1/classes.rb', line 2570 def update!(**args) @template = args[:template] if args.key?(:template) @traffic = args[:traffic] if args.key?(:traffic) end |