Packages
google_api_run
0.3.0
0.40.0
0.39.0
0.38.2
0.38.1
0.38.0
0.37.0
0.36.1
0.36.0
0.35.1
0.35.0
0.34.0
0.33.0
0.32.2
0.32.1
0.32.0
0.31.0
0.30.0
0.29.0
0.28.0
0.27.2
0.27.1
0.27.0
0.26.1
0.26.0
0.25.2
0.25.1
0.25.0
0.24.9
0.24.8
0.24.7
0.24.6
0.24.5
0.24.4
0.24.3
0.24.2
0.24.1
0.24.0
0.23.2
0.23.1
0.23.0
0.22.1
0.22.0
0.21.0
0.20.0
0.19.2
0.19.1
0.19.0
0.18.1
0.18.0
0.17.0
0.16.0
0.15.0
0.14.1
0.14.0
0.13.0
0.12.0
0.11.0
0.10.0
0.9.1
0.9.0
0.8.1
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
Cloud Run Admin API client library.
Current section
Files
Jump to
Current section
Files
lib/google_api/run/v1/model/traffic_target.ex
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.
defmodule GoogleApi.Run.V1.Model.TrafficTarget do
@moduledoc """
TrafficTarget holds a single entry of the routing table for a Route.
## Attributes
* `configurationName` (*type:* `String.t`, *default:* `nil`) - 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.
* `latestRevision` (*type:* `boolean()`, *default:* `nil`) - 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
* `percent` (*type:* `integer()`, *default:* `nil`) - 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.
* `revisionName` (*type:* `String.t`, *default:* `nil`) - 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.
* `tag` (*type:* `String.t`, *default:* `nil`) - Tag is optionally used to expose a dedicated url for referencing
this target exclusively.
Not currently supported in Cloud Run.
+optional
* `url` (*type:* `String.t`, *default:* `nil`) - Output only. URL displays the URL for accessing tagged 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.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:configurationName => String.t(),
:latestRevision => boolean(),
:percent => integer(),
:revisionName => String.t(),
:tag => String.t(),
:url => String.t()
}
field(:configurationName)
field(:latestRevision)
field(:percent)
field(:revisionName)
field(:tag)
field(:url)
end
defimpl Poison.Decoder, for: GoogleApi.Run.V1.Model.TrafficTarget do
def decode(value, options) do
GoogleApi.Run.V1.Model.TrafficTarget.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Run.V1.Model.TrafficTarget do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end