|
| 1 | +# Copyright 2019 Google LLC |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +# NOTE: This file is auto generated by the elixir code generator program. |
| 16 | +# Do not edit this file manually. |
| 17 | + |
| 18 | +defmodule GoogleApi.CloudDeploy.V1.Model.DeployPolicy do |
| 19 | + @moduledoc """ |
| 20 | + A `DeployPolicy` resource in the Cloud Deploy API. A `DeployPolicy` inhibits manual or automation driven actions within a Delivery Pipeline or Target. |
| 21 | +
|
| 22 | + ## Attributes |
| 23 | +
|
| 24 | + * `annotations` (*type:* `map()`, *default:* `nil`) - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash (`/`). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character (`[a-z0-9A-Z]`) with dashes (`-`), underscores (`_`), dots (`.`), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots(`.`), not longer than 253 characters in total, followed by a slash (`/`). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. |
| 25 | + * `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Time at which the deploy policy was created. |
| 26 | + * `description` (*type:* `String.t`, *default:* `nil`) - Description of the `DeployPolicy`. Max length is 255 characters. |
| 27 | + * `etag` (*type:* `String.t`, *default:* `nil`) - The weak etag of the `Automation` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. |
| 28 | + * `labels` (*type:* `map()`, *default:* `nil`) - Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes. |
| 29 | + * `name` (*type:* `String.t`, *default:* `nil`) - Output only. Name of the `DeployPolicy`. Format is `projects/{project}/locations/{location}/deployPolicies/{deployPolicy}`. The `deployPolicy` component must match `[a-z]([a-z0-9-]{0,61}[a-z0-9])?` |
| 30 | + * `rules` (*type:* `list(GoogleApi.CloudDeploy.V1.Model.PolicyRule.t)`, *default:* `nil`) - Required. Rules to apply. At least one rule must be present. |
| 31 | + * `selectors` (*type:* `list(GoogleApi.CloudDeploy.V1.Model.DeployPolicyResourceSelector.t)`, *default:* `nil`) - Required. Selected resources to which the policy will be applied. At least one selector is required. If one selector matches the resource the policy applies. For example, if there are two selectors and the action being attempted matches one of them, the policy will apply to that action. |
| 32 | + * `suspended` (*type:* `boolean()`, *default:* `nil`) - When suspended, the policy will not prevent actions from occurring, even if the action violates the policy. |
| 33 | + * `uid` (*type:* `String.t`, *default:* `nil`) - Output only. Unique identifier of the `DeployPolicy`. |
| 34 | + * `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Most recent time at which the deploy policy was updated. |
| 35 | + """ |
| 36 | + |
| 37 | + use GoogleApi.Gax.ModelBase |
| 38 | + |
| 39 | + @type t :: %__MODULE__{ |
| 40 | + :annotations => map() | nil, |
| 41 | + :createTime => DateTime.t() | nil, |
| 42 | + :description => String.t() | nil, |
| 43 | + :etag => String.t() | nil, |
| 44 | + :labels => map() | nil, |
| 45 | + :name => String.t() | nil, |
| 46 | + :rules => list(GoogleApi.CloudDeploy.V1.Model.PolicyRule.t()) | nil, |
| 47 | + :selectors => |
| 48 | + list(GoogleApi.CloudDeploy.V1.Model.DeployPolicyResourceSelector.t()) | nil, |
| 49 | + :suspended => boolean() | nil, |
| 50 | + :uid => String.t() | nil, |
| 51 | + :updateTime => DateTime.t() | nil |
| 52 | + } |
| 53 | + |
| 54 | + field(:annotations, type: :map) |
| 55 | + field(:createTime, as: DateTime) |
| 56 | + field(:description) |
| 57 | + field(:etag) |
| 58 | + field(:labels, type: :map) |
| 59 | + field(:name) |
| 60 | + field(:rules, as: GoogleApi.CloudDeploy.V1.Model.PolicyRule, type: :list) |
| 61 | + field(:selectors, as: GoogleApi.CloudDeploy.V1.Model.DeployPolicyResourceSelector, type: :list) |
| 62 | + field(:suspended) |
| 63 | + field(:uid) |
| 64 | + field(:updateTime, as: DateTime) |
| 65 | +end |
| 66 | + |
| 67 | +defimpl Poison.Decoder, for: GoogleApi.CloudDeploy.V1.Model.DeployPolicy do |
| 68 | + def decode(value, options) do |
| 69 | + GoogleApi.CloudDeploy.V1.Model.DeployPolicy.decode(value, options) |
| 70 | + end |
| 71 | +end |
| 72 | + |
| 73 | +defimpl Poison.Encoder, for: GoogleApi.CloudDeploy.V1.Model.DeployPolicy do |
| 74 | + def encode(value, options) do |
| 75 | + GoogleApi.Gax.ModelBase.encode(value, options) |
| 76 | + end |
| 77 | +end |
0 commit comments