Class: Google::Apis::RunV1alpha1::TrafficTarget
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::TrafficTarget
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb
Overview
TrafficTarget holds a single entry of the routing table for a Route.
Instance Attribute Summary collapse
-
#configuration_name ⇒ String
ConfigurationName of a configuration to whose latest revision we will send this portion of traffic.
-
#name ⇒ String
Name is optionally used to expose a dedicated hostname for referencing this target exclusively.
-
#percent ⇒ Fixnum
Percent specifies percent of the traffic to this Revision or Configuration.
-
#revision_name ⇒ String
RevisionName of a specific revision to which to send this portion of traffic.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TrafficTarget
constructor
A new instance of TrafficTarget.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TrafficTarget
Returns a new instance of TrafficTarget
3362 3363 3364 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3362 def initialize(**args) update!(**args) end |
Instance Attribute Details
#configuration_name ⇒ String
ConfigurationName of a configuration to whose latest revision we will
send this portion of traffic. When the "status.latestReadyRevisionName"
of the referenced configuration changes, we will automatically migrate
traffic from the prior "latest ready" revision to the new one. This field
is never set in Route's status, only its spec. This is mutually exclusive
with RevisionName.
Cloud Run currently supports a single ConfigurationName.
Corresponds to the JSON property configurationName
3337 3338 3339 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3337 def configuration_name @configuration_name end |
#name ⇒ String
Name is optionally used to expose a dedicated hostname for referencing this
target exclusively.
Not currently supported by Cloud Run.
+optional
Corresponds to the JSON property name
3345 3346 3347 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3345 def name @name end |
#percent ⇒ Fixnum
Percent specifies percent of the traffic to this Revision or Configuration.
This defaults to zero if unspecified.
Cloud Run currently requires 100 percent for a single ConfigurationName
TrafficTarget entry.
Corresponds to the JSON property percent
3353 3354 3355 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3353 def percent @percent end |
#revision_name ⇒ String
RevisionName of a specific revision to which to send this portion of
traffic. This is mutually exclusive with ConfigurationName.
Providing RevisionName in spec is not currently supported by Cloud Run.
Corresponds to the JSON property revisionName
3360 3361 3362 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3360 def revision_name @revision_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3367 3368 3369 3370 3371 3372 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 3367 def update!(**args) @configuration_name = args[:configuration_name] if args.key?(:configuration_name) @name = args[:name] if args.key?(:name) @percent = args[:percent] if args.key?(:percent) @revision_name = args[:revision_name] if args.key?(:revision_name) end |