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.
-
#latest_revision ⇒ Boolean
(also: #latest_revision?)
LatestRevision may be optionally provided to indicate that the latest ready Revision of the Configuration should be used for this traffic target.
-
#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.
-
#tag ⇒ String
Tag is optionally used to expose a dedicated url for referencing this target exclusively.
-
#url ⇒ String
Output only.
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
4176 4177 4178 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4176 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
4124 4125 4126 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4124 def configuration_name @configuration_name end |
#latest_revision ⇒ Boolean Also known as: latest_revision?
LatestRevision may be optionally provided to indicate that the latest
ready Revision of the Configuration should be used for this traffic
target. When provided LatestRevision must be true if RevisionName is
empty; it must be false when RevisionName is non-empty.
+optional
Corresponds to the JSON property latestRevision
4133 4134 4135 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4133 def latest_revision @latest_revision 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
4142 4143 4144 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4142 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
4150 4151 4152 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4150 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
4157 4158 4159 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4157 def revision_name @revision_name end |
#tag ⇒ String
Tag is optionally used to expose a dedicated url for referencing
this target exclusively.
Not currently supported in Cloud Run.
+optional
Corresponds to the JSON property tag
4165 4166 4167 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4165 def tag @tag end |
#url ⇒ String
Output only. URL displays the URL for accessing named traffic targets. URL
is displayed in status, and is disallowed on spec. URL must contain a
scheme (e.g. http://) and a hostname, but may not contain anything else
(e.g. basic auth, url path, etc.
Not currently supported in Cloud Run.
Corresponds to the JSON property url
4174 4175 4176 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4174 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4181 4182 4183 4184 4185 4186 4187 4188 4189 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 4181 def update!(**args) @configuration_name = args[:configuration_name] if args.key?(:configuration_name) @latest_revision = args[:latest_revision] if args.key?(:latest_revision) @name = args[:name] if args.key?(:name) @percent = args[:percent] if args.key?(:percent) @revision_name = args[:revision_name] if args.key?(:revision_name) @tag = args[:tag] if args.key?(:tag) @url = args[:url] if args.key?(:url) end |