1. Packages
  2. Google Cloud Native
  3. API Docs
  4. clouddeploy
  5. clouddeploy/v1
  6. Target

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.clouddeploy/v1.Target

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates a new Target in a given project and location.

Create Target Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Target(name: string, args: TargetArgs, opts?: CustomResourceOptions);
@overload
def Target(resource_name: str,
           args: TargetArgs,
           opts: Optional[ResourceOptions] = None)

@overload
def Target(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           target_id: Optional[str] = None,
           location: Optional[str] = None,
           project: Optional[str] = None,
           description: Optional[str] = None,
           etag: Optional[str] = None,
           execution_configs: Optional[Sequence[ExecutionConfigArgs]] = None,
           gke: Optional[GkeClusterArgs] = None,
           deploy_parameters: Optional[Mapping[str, str]] = None,
           multi_target: Optional[MultiTargetArgs] = None,
           labels: Optional[Mapping[str, str]] = None,
           name: Optional[str] = None,
           annotations: Optional[Mapping[str, str]] = None,
           request_id: Optional[str] = None,
           require_approval: Optional[bool] = None,
           run: Optional[CloudRunLocationArgs] = None,
           anthos_cluster: Optional[AnthosClusterArgs] = None)
func NewTarget(ctx *Context, name string, args TargetArgs, opts ...ResourceOption) (*Target, error)
public Target(string name, TargetArgs args, CustomResourceOptions? opts = null)
public Target(String name, TargetArgs args)
public Target(String name, TargetArgs args, CustomResourceOptions options)
type: google-native:clouddeploy/v1:Target
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. TargetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. TargetArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. TargetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. TargetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. TargetArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var targetResource = new GoogleNative.CloudDeploy.V1.Target("targetResource", new()
{
    TargetId = "string",
    Location = "string",
    Project = "string",
    Description = "string",
    Etag = "string",
    ExecutionConfigs = new[]
    {
        new GoogleNative.CloudDeploy.V1.Inputs.ExecutionConfigArgs
        {
            Usages = new[]
            {
                GoogleNative.CloudDeploy.V1.ExecutionConfigUsagesItem.ExecutionEnvironmentUsageUnspecified,
            },
            ArtifactStorage = "string",
            DefaultPool = new GoogleNative.CloudDeploy.V1.Inputs.DefaultPoolArgs
            {
                ArtifactStorage = "string",
                ServiceAccount = "string",
            },
            ExecutionTimeout = "string",
            PrivatePool = new GoogleNative.CloudDeploy.V1.Inputs.PrivatePoolArgs
            {
                WorkerPool = "string",
                ArtifactStorage = "string",
                ServiceAccount = "string",
            },
            ServiceAccount = "string",
            WorkerPool = "string",
        },
    },
    Gke = new GoogleNative.CloudDeploy.V1.Inputs.GkeClusterArgs
    {
        Cluster = "string",
        InternalIp = false,
    },
    DeployParameters = 
    {
        { "string", "string" },
    },
    MultiTarget = new GoogleNative.CloudDeploy.V1.Inputs.MultiTargetArgs
    {
        TargetIds = new[]
        {
            "string",
        },
    },
    Labels = 
    {
        { "string", "string" },
    },
    Name = "string",
    Annotations = 
    {
        { "string", "string" },
    },
    RequestId = "string",
    RequireApproval = false,
    Run = new GoogleNative.CloudDeploy.V1.Inputs.CloudRunLocationArgs
    {
        Location = "string",
    },
    AnthosCluster = new GoogleNative.CloudDeploy.V1.Inputs.AnthosClusterArgs
    {
        Membership = "string",
    },
});
Copy
example, err := clouddeploy.NewTarget(ctx, "targetResource", &clouddeploy.TargetArgs{
	TargetId:    pulumi.String("string"),
	Location:    pulumi.String("string"),
	Project:     pulumi.String("string"),
	Description: pulumi.String("string"),
	Etag:        pulumi.String("string"),
	ExecutionConfigs: clouddeploy.ExecutionConfigArray{
		&clouddeploy.ExecutionConfigArgs{
			Usages: clouddeploy.ExecutionConfigUsagesItemArray{
				clouddeploy.ExecutionConfigUsagesItemExecutionEnvironmentUsageUnspecified,
			},
			ArtifactStorage: pulumi.String("string"),
			DefaultPool: &clouddeploy.DefaultPoolArgs{
				ArtifactStorage: pulumi.String("string"),
				ServiceAccount:  pulumi.String("string"),
			},
			ExecutionTimeout: pulumi.String("string"),
			PrivatePool: &clouddeploy.PrivatePoolArgs{
				WorkerPool:      pulumi.String("string"),
				ArtifactStorage: pulumi.String("string"),
				ServiceAccount:  pulumi.String("string"),
			},
			ServiceAccount: pulumi.String("string"),
			WorkerPool:     pulumi.String("string"),
		},
	},
	Gke: &clouddeploy.GkeClusterArgs{
		Cluster:    pulumi.String("string"),
		InternalIp: pulumi.Bool(false),
	},
	DeployParameters: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	MultiTarget: &clouddeploy.MultiTargetArgs{
		TargetIds: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	RequestId:       pulumi.String("string"),
	RequireApproval: pulumi.Bool(false),
	Run: &clouddeploy.CloudRunLocationArgs{
		Location: pulumi.String("string"),
	},
	AnthosCluster: &clouddeploy.AnthosClusterArgs{
		Membership: pulumi.String("string"),
	},
})
Copy
var targetResource = new Target("targetResource", TargetArgs.builder()
    .targetId("string")
    .location("string")
    .project("string")
    .description("string")
    .etag("string")
    .executionConfigs(ExecutionConfigArgs.builder()
        .usages("EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED")
        .artifactStorage("string")
        .defaultPool(DefaultPoolArgs.builder()
            .artifactStorage("string")
            .serviceAccount("string")
            .build())
        .executionTimeout("string")
        .privatePool(PrivatePoolArgs.builder()
            .workerPool("string")
            .artifactStorage("string")
            .serviceAccount("string")
            .build())
        .serviceAccount("string")
        .workerPool("string")
        .build())
    .gke(GkeClusterArgs.builder()
        .cluster("string")
        .internalIp(false)
        .build())
    .deployParameters(Map.of("string", "string"))
    .multiTarget(MultiTargetArgs.builder()
        .targetIds("string")
        .build())
    .labels(Map.of("string", "string"))
    .name("string")
    .annotations(Map.of("string", "string"))
    .requestId("string")
    .requireApproval(false)
    .run(CloudRunLocationArgs.builder()
        .location("string")
        .build())
    .anthosCluster(AnthosClusterArgs.builder()
        .membership("string")
        .build())
    .build());
Copy
target_resource = google_native.clouddeploy.v1.Target("targetResource",
    target_id="string",
    location="string",
    project="string",
    description="string",
    etag="string",
    execution_configs=[{
        "usages": [google_native.clouddeploy.v1.ExecutionConfigUsagesItem.EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED],
        "artifact_storage": "string",
        "default_pool": {
            "artifact_storage": "string",
            "service_account": "string",
        },
        "execution_timeout": "string",
        "private_pool": {
            "worker_pool": "string",
            "artifact_storage": "string",
            "service_account": "string",
        },
        "service_account": "string",
        "worker_pool": "string",
    }],
    gke={
        "cluster": "string",
        "internal_ip": False,
    },
    deploy_parameters={
        "string": "string",
    },
    multi_target={
        "target_ids": ["string"],
    },
    labels={
        "string": "string",
    },
    name="string",
    annotations={
        "string": "string",
    },
    request_id="string",
    require_approval=False,
    run={
        "location": "string",
    },
    anthos_cluster={
        "membership": "string",
    })
Copy
const targetResource = new google_native.clouddeploy.v1.Target("targetResource", {
    targetId: "string",
    location: "string",
    project: "string",
    description: "string",
    etag: "string",
    executionConfigs: [{
        usages: [google_native.clouddeploy.v1.ExecutionConfigUsagesItem.ExecutionEnvironmentUsageUnspecified],
        artifactStorage: "string",
        defaultPool: {
            artifactStorage: "string",
            serviceAccount: "string",
        },
        executionTimeout: "string",
        privatePool: {
            workerPool: "string",
            artifactStorage: "string",
            serviceAccount: "string",
        },
        serviceAccount: "string",
        workerPool: "string",
    }],
    gke: {
        cluster: "string",
        internalIp: false,
    },
    deployParameters: {
        string: "string",
    },
    multiTarget: {
        targetIds: ["string"],
    },
    labels: {
        string: "string",
    },
    name: "string",
    annotations: {
        string: "string",
    },
    requestId: "string",
    requireApproval: false,
    run: {
        location: "string",
    },
    anthosCluster: {
        membership: "string",
    },
});
Copy
type: google-native:clouddeploy/v1:Target
properties:
    annotations:
        string: string
    anthosCluster:
        membership: string
    deployParameters:
        string: string
    description: string
    etag: string
    executionConfigs:
        - artifactStorage: string
          defaultPool:
            artifactStorage: string
            serviceAccount: string
          executionTimeout: string
          privatePool:
            artifactStorage: string
            serviceAccount: string
            workerPool: string
          serviceAccount: string
          usages:
            - EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED
          workerPool: string
    gke:
        cluster: string
        internalIp: false
    labels:
        string: string
    location: string
    multiTarget:
        targetIds:
            - string
    name: string
    project: string
    requestId: string
    requireApproval: false
    run:
        location: string
    targetId: string
Copy

Target Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Target resource accepts the following input properties:

TargetId
This property is required.
Changes to this property will trigger replacement.
string
Required. ID of the Target.
Annotations Dictionary<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.
AnthosCluster Pulumi.GoogleNative.CloudDeploy.V1.Inputs.AnthosCluster
Optional. Information specifying an Anthos Cluster.
DeployParameters Dictionary<string, string>
Optional. The deploy parameters to use for this target.
Description string
Optional. Description of the Target. Max length is 255 characters.
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.
ExecutionConfigs List<Pulumi.GoogleNative.CloudDeploy.V1.Inputs.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.
Gke Pulumi.GoogleNative.CloudDeploy.V1.Inputs.GkeCluster
Optional. Information specifying a GKE Cluster.
Labels Dictionary<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.
Location Changes to this property will trigger replacement. string
MultiTarget Pulumi.GoogleNative.CloudDeploy.V1.Inputs.MultiTarget
Optional. Information specifying a multiTarget.
Name string
Optional. Name of the Target. Format is projects/{project}/locations/{location}/targets/a-z{0,62}.
Project Changes to this property will trigger replacement. string
RequestId string
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
RequireApproval bool
Optional. Whether or not the Target requires approval.
Run Pulumi.GoogleNative.CloudDeploy.V1.Inputs.CloudRunLocation
Optional. Information specifying a Cloud Run deployment target.
TargetId
This property is required.
Changes to this property will trigger replacement.
string
Required. ID of the Target.
Annotations map[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.
AnthosCluster AnthosClusterArgs
Optional. Information specifying an Anthos Cluster.
DeployParameters map[string]string
Optional. The deploy parameters to use for this target.
Description string
Optional. Description of the Target. Max length is 255 characters.
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.
ExecutionConfigs []ExecutionConfigArgs
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.
Gke GkeClusterArgs
Optional. Information specifying a GKE Cluster.
Labels map[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.
Location Changes to this property will trigger replacement. string
MultiTarget MultiTargetArgs
Optional. Information specifying a multiTarget.
Name string
Optional. Name of the Target. Format is projects/{project}/locations/{location}/targets/a-z{0,62}.
Project Changes to this property will trigger replacement. string
RequestId string
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
RequireApproval bool
Optional. Whether or not the Target requires approval.
Run CloudRunLocationArgs
Optional. Information specifying a Cloud Run deployment target.
targetId
This property is required.
Changes to this property will trigger replacement.
String
Required. ID of the Target.
annotations Map<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.
anthosCluster AnthosCluster
Optional. Information specifying an Anthos Cluster.
deployParameters Map<String,String>
Optional. The deploy parameters to use for this target.
description String
Optional. Description of the Target. Max length is 255 characters.
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.
executionConfigs List<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.
gke GkeCluster
Optional. Information specifying a GKE Cluster.
labels Map<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.
location Changes to this property will trigger replacement. String
multiTarget MultiTarget
Optional. Information specifying a multiTarget.
name String
Optional. Name of the Target. Format is projects/{project}/locations/{location}/targets/a-z{0,62}.
project Changes to this property will trigger replacement. String
requestId String
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
requireApproval Boolean
Optional. Whether or not the Target requires approval.
run CloudRunLocation
Optional. Information specifying a Cloud Run deployment target.
targetId
This property is required.
Changes to this property will trigger replacement.
string
Required. ID of the Target.
annotations {[key: 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.
anthosCluster AnthosCluster
Optional. Information specifying an Anthos Cluster.
deployParameters {[key: string]: string}
Optional. The deploy parameters to use for this target.
description string
Optional. Description of the Target. Max length is 255 characters.
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.
executionConfigs 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.
gke GkeCluster
Optional. Information specifying a GKE Cluster.
labels {[key: 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.
location Changes to this property will trigger replacement. string
multiTarget MultiTarget
Optional. Information specifying a multiTarget.
name string
Optional. Name of the Target. Format is projects/{project}/locations/{location}/targets/a-z{0,62}.
project Changes to this property will trigger replacement. string
requestId string
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
requireApproval boolean
Optional. Whether or not the Target requires approval.
run CloudRunLocation
Optional. Information specifying a Cloud Run deployment target.
target_id
This property is required.
Changes to this property will trigger replacement.
str
Required. ID of the Target.
annotations Mapping[str, str]
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.
anthos_cluster AnthosClusterArgs
Optional. Information specifying an Anthos Cluster.
deploy_parameters Mapping[str, str]
Optional. The deploy parameters to use for this target.
description str
Optional. Description of the Target. Max length is 255 characters.
etag str
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.
execution_configs Sequence[ExecutionConfigArgs]
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.
gke GkeClusterArgs
Optional. Information specifying a GKE Cluster.
labels Mapping[str, str]
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.
location Changes to this property will trigger replacement. str
multi_target MultiTargetArgs
Optional. Information specifying a multiTarget.
name str
Optional. Name of the Target. Format is projects/{project}/locations/{location}/targets/a-z{0,62}.
project Changes to this property will trigger replacement. str
request_id str
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
require_approval bool
Optional. Whether or not the Target requires approval.
run CloudRunLocationArgs
Optional. Information specifying a Cloud Run deployment target.
targetId
This property is required.
Changes to this property will trigger replacement.
String
Required. ID of the Target.
annotations Map<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.
anthosCluster Property Map
Optional. Information specifying an Anthos Cluster.
deployParameters Map<String>
Optional. The deploy parameters to use for this target.
description String
Optional. Description of the Target. Max length is 255 characters.
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.
executionConfigs List<Property Map>
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.
gke Property Map
Optional. Information specifying a GKE Cluster.
labels Map<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.
location Changes to this property will trigger replacement. String
multiTarget Property Map
Optional. Information specifying a multiTarget.
name String
Optional. Name of the Target. Format is projects/{project}/locations/{location}/targets/a-z{0,62}.
project Changes to this property will trigger replacement. String
requestId String
Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
requireApproval Boolean
Optional. Whether or not the Target requires approval.
run Property Map
Optional. Information specifying a Cloud Run deployment target.

Outputs

All input properties are implicitly available as output properties. Additionally, the Target resource produces the following output properties:

CreateTime string
Time at which the Target was created.
Id string
The provider-assigned unique ID for this managed resource.
Uid string
Unique identifier of the Target.
UpdateTime string
Most recent time at which the Target was updated.
CreateTime string
Time at which the Target was created.
Id string
The provider-assigned unique ID for this managed resource.
Uid string
Unique identifier of the Target.
UpdateTime string
Most recent time at which the Target was updated.
createTime String
Time at which the Target was created.
id String
The provider-assigned unique ID for this managed resource.
uid String
Unique identifier of the Target.
updateTime String
Most recent time at which the Target was updated.
createTime string
Time at which the Target was created.
id string
The provider-assigned unique ID for this managed resource.
uid string
Unique identifier of the Target.
updateTime string
Most recent time at which the Target was updated.
create_time str
Time at which the Target was created.
id str
The provider-assigned unique ID for this managed resource.
uid str
Unique identifier of the Target.
update_time str
Most recent time at which the Target was updated.
createTime String
Time at which the Target was created.
id String
The provider-assigned unique ID for this managed resource.
uid String
Unique identifier of the Target.
updateTime String
Most recent time at which the Target was updated.

Supporting Types

AnthosCluster
, AnthosClusterArgs

Membership string
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
Membership string
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership String
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership string
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership str
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership String
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.

AnthosClusterResponse
, AnthosClusterResponseArgs

Membership This property is required. string
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
Membership This property is required. string
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership This property is required. String
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership This property is required. string
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership This property is required. str
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.
membership This property is required. String
Membership of the GKE Hub-registered cluster to which to apply the Skaffold configuration. Format is projects/{project}/locations/{location}/memberships/{membership_name}.

CloudRunLocation
, CloudRunLocationArgs

Location This property is required. string
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
Location This property is required. string
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. String
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. string
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. str
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. String
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.

CloudRunLocationResponse
, CloudRunLocationResponseArgs

Location This property is required. string
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
Location This property is required. string
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. String
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. string
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. str
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.
location This property is required. String
The location for the Cloud Run Service. Format must be projects/{project}/locations/{location}.

DefaultPool
, DefaultPoolArgs

ArtifactStorage string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
ArtifactStorage string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifactStorage String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifactStorage string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifact_storage str
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
service_account str
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifactStorage String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.

DefaultPoolResponse
, DefaultPoolResponseArgs

ArtifactStorage This property is required. string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
ArtifactStorage This property is required. string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifactStorage This property is required. String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount This property is required. String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifactStorage This property is required. string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifact_storage This property is required. str
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
service_account This property is required. str
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
artifactStorage This property is required. String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount This property is required. String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.

ExecutionConfig
, ExecutionConfigArgs

Usages This property is required. List<Pulumi.GoogleNative.CloudDeploy.V1.ExecutionConfigUsagesItem>
Usages when this configuration should be applied.
ArtifactStorage string
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
DefaultPool Pulumi.GoogleNative.CloudDeploy.V1.Inputs.DefaultPool
Optional. Use default Cloud Build pool.
ExecutionTimeout string
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
PrivatePool Pulumi.GoogleNative.CloudDeploy.V1.Inputs.PrivatePool
Optional. Use private Cloud Build pool.
ServiceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
WorkerPool string
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
Usages This property is required. []ExecutionConfigUsagesItem
Usages when this configuration should be applied.
ArtifactStorage string
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
DefaultPool DefaultPool
Optional. Use default Cloud Build pool.
ExecutionTimeout string
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
PrivatePool PrivatePool
Optional. Use private Cloud Build pool.
ServiceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
WorkerPool string
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
usages This property is required. List<ExecutionConfigUsagesItem>
Usages when this configuration should be applied.
artifactStorage String
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
defaultPool DefaultPool
Optional. Use default Cloud Build pool.
executionTimeout String
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
privatePool PrivatePool
Optional. Use private Cloud Build pool.
serviceAccount String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
workerPool String
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
usages This property is required. ExecutionConfigUsagesItem[]
Usages when this configuration should be applied.
artifactStorage string
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
defaultPool DefaultPool
Optional. Use default Cloud Build pool.
executionTimeout string
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
privatePool PrivatePool
Optional. Use private Cloud Build pool.
serviceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
workerPool string
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
usages This property is required. Sequence[ExecutionConfigUsagesItem]
Usages when this configuration should be applied.
artifact_storage str
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
default_pool DefaultPool
Optional. Use default Cloud Build pool.
execution_timeout str
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
private_pool PrivatePool
Optional. Use private Cloud Build pool.
service_account str
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
worker_pool str
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
usages This property is required. List<"EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED" | "RENDER" | "DEPLOY" | "VERIFY" | "PREDEPLOY" | "POSTDEPLOY">
Usages when this configuration should be applied.
artifactStorage String
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
defaultPool Property Map
Optional. Use default Cloud Build pool.
executionTimeout String
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
privatePool Property Map
Optional. Use private Cloud Build pool.
serviceAccount String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
workerPool String
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.

ExecutionConfigResponse
, ExecutionConfigResponseArgs

ArtifactStorage This property is required. string
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
DefaultPool This property is required. Pulumi.GoogleNative.CloudDeploy.V1.Inputs.DefaultPoolResponse
Optional. Use default Cloud Build pool.
ExecutionTimeout This property is required. string
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
PrivatePool This property is required. Pulumi.GoogleNative.CloudDeploy.V1.Inputs.PrivatePoolResponse
Optional. Use private Cloud Build pool.
ServiceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
Usages This property is required. List<string>
Usages when this configuration should be applied.
WorkerPool This property is required. string
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
ArtifactStorage This property is required. string
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
DefaultPool This property is required. DefaultPoolResponse
Optional. Use default Cloud Build pool.
ExecutionTimeout This property is required. string
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
PrivatePool This property is required. PrivatePoolResponse
Optional. Use private Cloud Build pool.
ServiceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
Usages This property is required. []string
Usages when this configuration should be applied.
WorkerPool This property is required. string
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
artifactStorage This property is required. String
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
defaultPool This property is required. DefaultPoolResponse
Optional. Use default Cloud Build pool.
executionTimeout This property is required. String
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
privatePool This property is required. PrivatePoolResponse
Optional. Use private Cloud Build pool.
serviceAccount This property is required. String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
usages This property is required. List<String>
Usages when this configuration should be applied.
workerPool This property is required. String
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
artifactStorage This property is required. string
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
defaultPool This property is required. DefaultPoolResponse
Optional. Use default Cloud Build pool.
executionTimeout This property is required. string
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
privatePool This property is required. PrivatePoolResponse
Optional. Use private Cloud Build pool.
serviceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
usages This property is required. string[]
Usages when this configuration should be applied.
workerPool This property is required. string
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
artifact_storage This property is required. str
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
default_pool This property is required. DefaultPoolResponse
Optional. Use default Cloud Build pool.
execution_timeout This property is required. str
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
private_pool This property is required. PrivatePoolResponse
Optional. Use private Cloud Build pool.
service_account This property is required. str
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
usages This property is required. Sequence[str]
Usages when this configuration should be applied.
worker_pool This property is required. str
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.
artifactStorage This property is required. String
Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
defaultPool This property is required. Property Map
Optional. Use default Cloud Build pool.
executionTimeout This property is required. String
Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
privatePool This property is required. Property Map
Optional. Use private Cloud Build pool.
serviceAccount This property is required. String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
usages This property is required. List<String>
Usages when this configuration should be applied.
workerPool This property is required. String
Optional. The resource name of the WorkerPool, with the format projects/{project}/locations/{location}/workerPools/{worker_pool}. If this optional field is unspecified, the default Cloud Build pool will be used.

ExecutionConfigUsagesItem
, ExecutionConfigUsagesItemArgs

ExecutionEnvironmentUsageUnspecified
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIEDDefault value. This value is unused.
Render
RENDERUse for rendering.
Deploy
DEPLOYUse for deploying and deployment hooks.
Verify
VERIFYUse for deployment verification.
Predeploy
PREDEPLOYUse for predeploy job execution.
Postdeploy
POSTDEPLOYUse for postdeploy job execution.
ExecutionConfigUsagesItemExecutionEnvironmentUsageUnspecified
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIEDDefault value. This value is unused.
ExecutionConfigUsagesItemRender
RENDERUse for rendering.
ExecutionConfigUsagesItemDeploy
DEPLOYUse for deploying and deployment hooks.
ExecutionConfigUsagesItemVerify
VERIFYUse for deployment verification.
ExecutionConfigUsagesItemPredeploy
PREDEPLOYUse for predeploy job execution.
ExecutionConfigUsagesItemPostdeploy
POSTDEPLOYUse for postdeploy job execution.
ExecutionEnvironmentUsageUnspecified
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIEDDefault value. This value is unused.
Render
RENDERUse for rendering.
Deploy
DEPLOYUse for deploying and deployment hooks.
Verify
VERIFYUse for deployment verification.
Predeploy
PREDEPLOYUse for predeploy job execution.
Postdeploy
POSTDEPLOYUse for postdeploy job execution.
ExecutionEnvironmentUsageUnspecified
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIEDDefault value. This value is unused.
Render
RENDERUse for rendering.
Deploy
DEPLOYUse for deploying and deployment hooks.
Verify
VERIFYUse for deployment verification.
Predeploy
PREDEPLOYUse for predeploy job execution.
Postdeploy
POSTDEPLOYUse for postdeploy job execution.
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIEDDefault value. This value is unused.
RENDER
RENDERUse for rendering.
DEPLOY
DEPLOYUse for deploying and deployment hooks.
VERIFY
VERIFYUse for deployment verification.
PREDEPLOY
PREDEPLOYUse for predeploy job execution.
POSTDEPLOY
POSTDEPLOYUse for postdeploy job execution.
"EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED"
EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIEDDefault value. This value is unused.
"RENDER"
RENDERUse for rendering.
"DEPLOY"
DEPLOYUse for deploying and deployment hooks.
"VERIFY"
VERIFYUse for deployment verification.
"PREDEPLOY"
PREDEPLOYUse for predeploy job execution.
"POSTDEPLOY"
POSTDEPLOYUse for postdeploy job execution.

GkeCluster
, GkeClusterArgs

Cluster string
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
InternalIp bool
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
Cluster string
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
InternalIp bool
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster String
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internalIp Boolean
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster string
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internalIp boolean
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster str
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internal_ip bool
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster String
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internalIp Boolean
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.

GkeClusterResponse
, GkeClusterResponseArgs

Cluster This property is required. string
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
InternalIp This property is required. bool
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
Cluster This property is required. string
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
InternalIp This property is required. bool
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster This property is required. String
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internalIp This property is required. Boolean
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster This property is required. string
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internalIp This property is required. boolean
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster This property is required. str
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internal_ip This property is required. bool
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.
cluster This property is required. String
Information specifying a GKE Cluster. Format is projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
internalIp This property is required. Boolean
Optional. If true, cluster is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster is a private GKE cluster.

MultiTarget
, MultiTargetArgs

TargetIds This property is required. List<string>
The target_ids of this multiTarget.
TargetIds This property is required. []string
The target_ids of this multiTarget.
targetIds This property is required. List<String>
The target_ids of this multiTarget.
targetIds This property is required. string[]
The target_ids of this multiTarget.
target_ids This property is required. Sequence[str]
The target_ids of this multiTarget.
targetIds This property is required. List<String>
The target_ids of this multiTarget.

MultiTargetResponse
, MultiTargetResponseArgs

TargetIds This property is required. List<string>
The target_ids of this multiTarget.
TargetIds This property is required. []string
The target_ids of this multiTarget.
targetIds This property is required. List<String>
The target_ids of this multiTarget.
targetIds This property is required. string[]
The target_ids of this multiTarget.
target_ids This property is required. Sequence[str]
The target_ids of this multiTarget.
targetIds This property is required. List<String>
The target_ids of this multiTarget.

PrivatePool
, PrivatePoolArgs

WorkerPool This property is required. string
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
ArtifactStorage string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
WorkerPool This property is required. string
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
ArtifactStorage string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
workerPool This property is required. String
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifactStorage String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
workerPool This property is required. string
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifactStorage string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
worker_pool This property is required. str
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifact_storage str
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
service_account str
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
workerPool This property is required. String
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifactStorage String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.

PrivatePoolResponse
, PrivatePoolResponseArgs

ArtifactStorage This property is required. string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
WorkerPool This property is required. string
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
ArtifactStorage This property is required. string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
ServiceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
WorkerPool This property is required. string
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifactStorage This property is required. String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount This property is required. String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
workerPool This property is required. String
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifactStorage This property is required. string
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount This property is required. string
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
workerPool This property is required. string
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifact_storage This property is required. str
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
service_account This property is required. str
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
worker_pool This property is required. str
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.
artifactStorage This property is required. String
Optional. Cloud Storage location where execution outputs should be stored. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
serviceAccount This property is required. String
Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) will be used.
workerPool This property is required. String
Resource name of the Cloud Build worker pool to use. The format is projects/{project}/locations/{location}/workerPools/{pool}.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi