Class: Google::Apis::ClouddeployV1::Target
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::Target
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
A Target
resource in the Cloud Deploy API. A Target
defines a location to
which a Skaffold configuration can be deployed.
Instance Attribute Summary collapse
-
#annotations ⇒ Hash<String,String>
Optional.
-
#anthos_cluster ⇒ Google::Apis::ClouddeployV1::AnthosCluster
Information specifying an Anthos Cluster.
-
#create_time ⇒ String
Output only.
-
#custom_target ⇒ Google::Apis::ClouddeployV1::CustomTarget
Information specifying a Custom Target.
-
#deploy_parameters ⇒ Hash<String,String>
Optional.
-
#description ⇒ String
Optional.
-
#etag ⇒ String
Optional.
-
#execution_configs ⇒ Array<Google::Apis::ClouddeployV1::ExecutionConfig>
Configurations for all execution that relates to this
Target
. -
#gke ⇒ Google::Apis::ClouddeployV1::GkeCluster
Information specifying a GKE Cluster.
-
#labels ⇒ Hash<String,String>
Optional.
-
#multi_target ⇒ Google::Apis::ClouddeployV1::MultiTarget
Information specifying a multiTarget.
-
#name ⇒ String
Optional.
-
#require_approval ⇒ Boolean
(also: #require_approval?)
Optional.
-
#run ⇒ Google::Apis::ClouddeployV1::CloudRunLocation
Information specifying where to deploy a Cloud Run Service.
-
#target_id ⇒ String
Output only.
-
#uid ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Target
constructor
A new instance of Target.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Target
Returns a new instance of Target.
5045 5046 5047 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5045 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Hash<String,String>
Optional. User annotations. These attributes can only be set and used by the
user, and not by Cloud Deploy. See https://google.aip.dev/128#annotations for
more details such as format and size limitations.
Corresponds to the JSON property annotations
4947 4948 4949 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4947 def annotations @annotations end |
#anthos_cluster ⇒ Google::Apis::ClouddeployV1::AnthosCluster
Information specifying an Anthos Cluster.
Corresponds to the JSON property anthosCluster
4952 4953 4954 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4952 def anthos_cluster @anthos_cluster end |
#create_time ⇒ String
Output only. Time at which the Target
was created.
Corresponds to the JSON property createTime
4957 4958 4959 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4957 def create_time @create_time end |
#custom_target ⇒ Google::Apis::ClouddeployV1::CustomTarget
Information specifying a Custom Target.
Corresponds to the JSON property customTarget
4962 4963 4964 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4962 def custom_target @custom_target end |
#deploy_parameters ⇒ Hash<String,String>
Optional. The deploy parameters to use for this target.
Corresponds to the JSON property deployParameters
4967 4968 4969 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4967 def deploy_parameters @deploy_parameters end |
#description ⇒ String
Optional. Description of the Target
. Max length is 255 characters.
Corresponds to the JSON property description
4972 4973 4974 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4972 def description @description end |
#etag ⇒ String
Optional. 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.
Corresponds to the JSON property etag
4979 4980 4981 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4979 def etag @etag end |
#execution_configs ⇒ Array<Google::Apis::ClouddeployV1::ExecutionConfig>
Configurations for all execution that relates to this Target
. Each
ExecutionEnvironmentUsage
value may only be used in a single configuration;
using the same value multiple times is an error. When one or more
configurations are specified, they must include the RENDER
and DEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified,
execution will use the default specified in DefaultPool
.
Corresponds to the JSON property executionConfigs
4989 4990 4991 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4989 def execution_configs @execution_configs end |
#gke ⇒ Google::Apis::ClouddeployV1::GkeCluster
Information specifying a GKE Cluster.
Corresponds to the JSON property gke
4994 4995 4996 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 4994 def gke @gke end |
#labels ⇒ Hash<String,String>
Optional. 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.
Corresponds to the JSON property labels
5005 5006 5007 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5005 def labels @labels end |
#multi_target ⇒ Google::Apis::ClouddeployV1::MultiTarget
Information specifying a multiTarget.
Corresponds to the JSON property multiTarget
5010 5011 5012 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5010 def multi_target @multi_target end |
#name ⇒ String
Optional. Name of the Target
. Format is projects/
project/locations/
location/targets/
target`. The
targetcomponent must match
a-z?
Corresponds to the JSON property
name`
5017 5018 5019 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5017 def name @name end |
#require_approval ⇒ Boolean Also known as: require_approval?
Optional. Whether or not the Target
requires approval.
Corresponds to the JSON property requireApproval
5022 5023 5024 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5022 def require_approval @require_approval end |
#run ⇒ Google::Apis::ClouddeployV1::CloudRunLocation
Information specifying where to deploy a Cloud Run Service.
Corresponds to the JSON property run
5028 5029 5030 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5028 def run @run end |
#target_id ⇒ String
Output only. Resource id of the Target
.
Corresponds to the JSON property targetId
5033 5034 5035 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5033 def target_id @target_id end |
#uid ⇒ String
Output only. Unique identifier of the Target
.
Corresponds to the JSON property uid
5038 5039 5040 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5038 def uid @uid end |
#update_time ⇒ String
Output only. Most recent time at which the Target
was updated.
Corresponds to the JSON property updateTime
5043 5044 5045 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5043 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 5050 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @anthos_cluster = args[:anthos_cluster] if args.key?(:anthos_cluster) @create_time = args[:create_time] if args.key?(:create_time) @custom_target = args[:custom_target] if args.key?(:custom_target) @deploy_parameters = args[:deploy_parameters] if args.key?(:deploy_parameters) @description = args[:description] if args.key?(:description) @etag = args[:etag] if args.key?(:etag) @execution_configs = args[:execution_configs] if args.key?(:execution_configs) @gke = args[:gke] if args.key?(:gke) @labels = args[:labels] if args.key?(:labels) @multi_target = args[:multi_target] if args.key?(:multi_target) @name = args[:name] if args.key?(:name) @require_approval = args[:require_approval] if args.key?(:require_approval) @run = args[:run] if args.key?(:run) @target_id = args[:target_id] if args.key?(:target_id) @uid = args[:uid] if args.key?(:uid) @update_time = args[:update_time] if args.key?(:update_time) end |