Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.clouddeploy/v1.Release
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new Release in a given project and location. Note - this resource’s API doesn’t support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.
Create Release Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Release(name: string, args: ReleaseArgs, opts?: CustomResourceOptions);
@overload
def Release(resource_name: str,
args: ReleaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Release(resource_name: str,
opts: Optional[ResourceOptions] = None,
delivery_pipeline_id: Optional[str] = None,
release_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
deploy_parameters: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
etag: Optional[str] = None,
annotations: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
build_artifacts: Optional[Sequence[BuildArtifactArgs]] = None,
request_id: Optional[str] = None,
skaffold_config_path: Optional[str] = None,
skaffold_config_uri: Optional[str] = None,
skaffold_version: Optional[str] = None)
func NewRelease(ctx *Context, name string, args ReleaseArgs, opts ...ResourceOption) (*Release, error)
public Release(string name, ReleaseArgs args, CustomResourceOptions? opts = null)
public Release(String name, ReleaseArgs args)
public Release(String name, ReleaseArgs args, CustomResourceOptions options)
type: google-native:clouddeploy/v1:Release
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. ReleaseArgs - 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. ReleaseArgs - 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. ReleaseArgs - 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. ReleaseArgs - 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. ReleaseArgs - 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 releaseResource = new GoogleNative.CloudDeploy.V1.Release("releaseResource", new()
{
DeliveryPipelineId = "string",
ReleaseId = "string",
Labels =
{
{ "string", "string" },
},
DeployParameters =
{
{ "string", "string" },
},
Description = "string",
Etag = "string",
Annotations =
{
{ "string", "string" },
},
Location = "string",
Name = "string",
Project = "string",
BuildArtifacts = new[]
{
new GoogleNative.CloudDeploy.V1.Inputs.BuildArtifactArgs
{
Image = "string",
Tag = "string",
},
},
RequestId = "string",
SkaffoldConfigPath = "string",
SkaffoldConfigUri = "string",
SkaffoldVersion = "string",
});
example, err := clouddeploy.NewRelease(ctx, "releaseResource", &clouddeploy.ReleaseArgs{
DeliveryPipelineId: pulumi.String("string"),
ReleaseId: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
DeployParameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
Etag: pulumi.String("string"),
Annotations: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Project: pulumi.String("string"),
BuildArtifacts: clouddeploy.BuildArtifactArray{
&clouddeploy.BuildArtifactArgs{
Image: pulumi.String("string"),
Tag: pulumi.String("string"),
},
},
RequestId: pulumi.String("string"),
SkaffoldConfigPath: pulumi.String("string"),
SkaffoldConfigUri: pulumi.String("string"),
SkaffoldVersion: pulumi.String("string"),
})
var releaseResource = new Release("releaseResource", ReleaseArgs.builder()
.deliveryPipelineId("string")
.releaseId("string")
.labels(Map.of("string", "string"))
.deployParameters(Map.of("string", "string"))
.description("string")
.etag("string")
.annotations(Map.of("string", "string"))
.location("string")
.name("string")
.project("string")
.buildArtifacts(BuildArtifactArgs.builder()
.image("string")
.tag("string")
.build())
.requestId("string")
.skaffoldConfigPath("string")
.skaffoldConfigUri("string")
.skaffoldVersion("string")
.build());
release_resource = google_native.clouddeploy.v1.Release("releaseResource",
delivery_pipeline_id="string",
release_id="string",
labels={
"string": "string",
},
deploy_parameters={
"string": "string",
},
description="string",
etag="string",
annotations={
"string": "string",
},
location="string",
name="string",
project="string",
build_artifacts=[{
"image": "string",
"tag": "string",
}],
request_id="string",
skaffold_config_path="string",
skaffold_config_uri="string",
skaffold_version="string")
const releaseResource = new google_native.clouddeploy.v1.Release("releaseResource", {
deliveryPipelineId: "string",
releaseId: "string",
labels: {
string: "string",
},
deployParameters: {
string: "string",
},
description: "string",
etag: "string",
annotations: {
string: "string",
},
location: "string",
name: "string",
project: "string",
buildArtifacts: [{
image: "string",
tag: "string",
}],
requestId: "string",
skaffoldConfigPath: "string",
skaffoldConfigUri: "string",
skaffoldVersion: "string",
});
type: google-native:clouddeploy/v1:Release
properties:
annotations:
string: string
buildArtifacts:
- image: string
tag: string
deliveryPipelineId: string
deployParameters:
string: string
description: string
etag: string
labels:
string: string
location: string
name: string
project: string
releaseId: string
requestId: string
skaffoldConfigPath: string
skaffoldConfigUri: string
skaffoldVersion: string
Release 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 Release resource accepts the following input properties:
- Delivery
Pipeline Id This property is required. Changes to this property will trigger replacement.
- Release
Id This property is required. Changes to this property will trigger replacement.
- Required. ID of the
Release
. - Annotations Dictionary<string, string>
- 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.
- Build
Artifacts List<Pulumi.Google Native. Cloud Deploy. V1. Inputs. Build Artifact> - List of artifacts to pass through to Skaffold command.
- Deploy
Parameters Dictionary<string, string> - Optional. The deploy parameters to use for all targets in this release.
- Description string
- Description of the
Release
. Max length is 255 characters. - Etag string
- 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.
- Labels Dictionary<string, string>
- 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.
- Name string
- Optional. Name of the
Release
. Format isprojects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/a-z{0,62}
. - Project
Changes to this property will trigger replacement.
- Request
Id 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).
- Skaffold
Config stringPath - Filepath of the Skaffold config inside of the config URI.
- Skaffold
Config stringUri - Cloud Storage URI of tar.gz archive containing Skaffold configuration.
- Skaffold
Version string - The Skaffold version to use when operating on this release, such as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific set of versions. If unset, the most recent supported Skaffold version will be used.
- Delivery
Pipeline Id This property is required. Changes to this property will trigger replacement.
- Release
Id This property is required. Changes to this property will trigger replacement.
- Required. ID of the
Release
. - Annotations map[string]string
- 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.
- Build
Artifacts []BuildArtifact Args - List of artifacts to pass through to Skaffold command.
- Deploy
Parameters map[string]string - Optional. The deploy parameters to use for all targets in this release.
- Description string
- Description of the
Release
. Max length is 255 characters. - Etag string
- 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.
- Labels map[string]string
- 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.
- Name string
- Optional. Name of the
Release
. Format isprojects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/a-z{0,62}
. - Project
Changes to this property will trigger replacement.
- Request
Id 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).
- Skaffold
Config stringPath - Filepath of the Skaffold config inside of the config URI.
- Skaffold
Config stringUri - Cloud Storage URI of tar.gz archive containing Skaffold configuration.
- Skaffold
Version string - The Skaffold version to use when operating on this release, such as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific set of versions. If unset, the most recent supported Skaffold version will be used.
- delivery
Pipeline Id This property is required. Changes to this property will trigger replacement.
- release
Id This property is required. Changes to this property will trigger replacement.
- Required. ID of the
Release
. - annotations Map<String,String>
- 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.
- build
Artifacts List<BuildArtifact> - List of artifacts to pass through to Skaffold command.
- deploy
Parameters Map<String,String> - Optional. The deploy parameters to use for all targets in this release.
- description String
- Description of the
Release
. Max length is 255 characters. - etag String
- 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.
- labels Map<String,String>
- 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.
- name String
- Optional. Name of the
Release
. Format isprojects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/a-z{0,62}
. - project
Changes to this property will trigger replacement.
- request
Id 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).
- skaffold
Config StringPath - Filepath of the Skaffold config inside of the config URI.
- skaffold
Config StringUri - Cloud Storage URI of tar.gz archive containing Skaffold configuration.
- skaffold
Version String - The Skaffold version to use when operating on this release, such as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific set of versions. If unset, the most recent supported Skaffold version will be used.
- delivery
Pipeline Id This property is required. Changes to this property will trigger replacement.
- release
Id This property is required. Changes to this property will trigger replacement.
- Required. ID of the
Release
. - annotations {[key: string]: string}
- 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.
- build
Artifacts BuildArtifact[] - List of artifacts to pass through to Skaffold command.
- deploy
Parameters {[key: string]: string} - Optional. The deploy parameters to use for all targets in this release.
- description string
- Description of the
Release
. Max length is 255 characters. - etag string
- 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.
- labels {[key: string]: string}
- 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.
- name string
- Optional. Name of the
Release
. Format isprojects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/a-z{0,62}
. - project
Changes to this property will trigger replacement.
- request
Id 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).
- skaffold
Config stringPath - Filepath of the Skaffold config inside of the config URI.
- skaffold
Config stringUri - Cloud Storage URI of tar.gz archive containing Skaffold configuration.
- skaffold
Version string - The Skaffold version to use when operating on this release, such as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific set of versions. If unset, the most recent supported Skaffold version will be used.
- delivery_
pipeline_ id This property is required. Changes to this property will trigger replacement.
- release_
id This property is required. Changes to this property will trigger replacement.
- Required. ID of the
Release
. - annotations Mapping[str, str]
- 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.
- build_
artifacts Sequence[BuildArtifact Args] - List of artifacts to pass through to Skaffold command.
- deploy_
parameters Mapping[str, str] - Optional. The deploy parameters to use for all targets in this release.
- description str
- Description of the
Release
. Max length is 255 characters. - etag str
- 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.
- labels Mapping[str, str]
- 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.
- name str
- Optional. Name of the
Release
. Format isprojects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/a-z{0,62}
. - project
Changes to this property will trigger replacement.
- 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).
- skaffold_
config_ strpath - Filepath of the Skaffold config inside of the config URI.
- skaffold_
config_ struri - Cloud Storage URI of tar.gz archive containing Skaffold configuration.
- skaffold_
version str - The Skaffold version to use when operating on this release, such as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific set of versions. If unset, the most recent supported Skaffold version will be used.
- delivery
Pipeline Id This property is required. Changes to this property will trigger replacement.
- release
Id This property is required. Changes to this property will trigger replacement.
- Required. ID of the
Release
. - annotations Map<String>
- 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.
- build
Artifacts List<Property Map> - List of artifacts to pass through to Skaffold command.
- deploy
Parameters Map<String> - Optional. The deploy parameters to use for all targets in this release.
- description String
- Description of the
Release
. Max length is 255 characters. - etag String
- 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.
- labels Map<String>
- 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.
- name String
- Optional. Name of the
Release
. Format isprojects/{project}/locations/{location}/deliveryPipelines/{deliveryPipeline}/releases/a-z{0,62}
. - project
Changes to this property will trigger replacement.
- request
Id 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).
- skaffold
Config StringPath - Filepath of the Skaffold config inside of the config URI.
- skaffold
Config StringUri - Cloud Storage URI of tar.gz archive containing Skaffold configuration.
- skaffold
Version String - The Skaffold version to use when operating on this release, such as "1.20.0". Not all versions are valid; Cloud Deploy supports a specific set of versions. If unset, the most recent supported Skaffold version will be used.
Outputs
All input properties are implicitly available as output properties. Additionally, the Release resource produces the following output properties:
- Abandoned bool
- Indicates whether this is an abandoned release.
- Condition
Pulumi.
Google Native. Cloud Deploy. V1. Outputs. Release Condition Response - Information around the state of the Release.
- Create
Time string - Time at which the
Release
was created. - Delivery
Pipeline Pulumi.Snapshot Google Native. Cloud Deploy. V1. Outputs. Delivery Pipeline Response - Snapshot of the parent pipeline taken at release creation time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Render
End stringTime - Time at which the render completed.
- Render
Start stringTime - Time at which the render began.
- Render
State string - Current state of the render operation.
- Target
Artifacts Dictionary<string, string> - Map from target ID to the target artifacts created during the render operation.
- Target
Renders Dictionary<string, string> - Map from target ID to details of the render operation for that target.
- Target
Snapshots List<Pulumi.Google Native. Cloud Deploy. V1. Outputs. Target Response> - Snapshot of the targets taken at release creation time.
- Uid string
- Unique identifier of the
Release
.
- Abandoned bool
- Indicates whether this is an abandoned release.
- Condition
Release
Condition Response - Information around the state of the Release.
- Create
Time string - Time at which the
Release
was created. - Delivery
Pipeline DeliverySnapshot Pipeline Response - Snapshot of the parent pipeline taken at release creation time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Render
End stringTime - Time at which the render completed.
- Render
Start stringTime - Time at which the render began.
- Render
State string - Current state of the render operation.
- Target
Artifacts map[string]string - Map from target ID to the target artifacts created during the render operation.
- Target
Renders map[string]string - Map from target ID to details of the render operation for that target.
- Target
Snapshots []TargetResponse - Snapshot of the targets taken at release creation time.
- Uid string
- Unique identifier of the
Release
.
- abandoned Boolean
- Indicates whether this is an abandoned release.
- condition
Release
Condition Response - Information around the state of the Release.
- create
Time String - Time at which the
Release
was created. - delivery
Pipeline DeliverySnapshot Pipeline Response - Snapshot of the parent pipeline taken at release creation time.
- id String
- The provider-assigned unique ID for this managed resource.
- render
End StringTime - Time at which the render completed.
- render
Start StringTime - Time at which the render began.
- render
State String - Current state of the render operation.
- target
Artifacts Map<String,String> - Map from target ID to the target artifacts created during the render operation.
- target
Renders Map<String,String> - Map from target ID to details of the render operation for that target.
- target
Snapshots List<TargetResponse> - Snapshot of the targets taken at release creation time.
- uid String
- Unique identifier of the
Release
.
- abandoned boolean
- Indicates whether this is an abandoned release.
- condition
Release
Condition Response - Information around the state of the Release.
- create
Time string - Time at which the
Release
was created. - delivery
Pipeline DeliverySnapshot Pipeline Response - Snapshot of the parent pipeline taken at release creation time.
- id string
- The provider-assigned unique ID for this managed resource.
- render
End stringTime - Time at which the render completed.
- render
Start stringTime - Time at which the render began.
- render
State string - Current state of the render operation.
- target
Artifacts {[key: string]: string} - Map from target ID to the target artifacts created during the render operation.
- target
Renders {[key: string]: string} - Map from target ID to details of the render operation for that target.
- target
Snapshots TargetResponse[] - Snapshot of the targets taken at release creation time.
- uid string
- Unique identifier of the
Release
.
- abandoned bool
- Indicates whether this is an abandoned release.
- condition
Release
Condition Response - Information around the state of the Release.
- create_
time str - Time at which the
Release
was created. - delivery_
pipeline_ Deliverysnapshot Pipeline Response - Snapshot of the parent pipeline taken at release creation time.
- id str
- The provider-assigned unique ID for this managed resource.
- render_
end_ strtime - Time at which the render completed.
- render_
start_ strtime - Time at which the render began.
- render_
state str - Current state of the render operation.
- target_
artifacts Mapping[str, str] - Map from target ID to the target artifacts created during the render operation.
- target_
renders Mapping[str, str] - Map from target ID to details of the render operation for that target.
- target_
snapshots Sequence[TargetResponse] - Snapshot of the targets taken at release creation time.
- uid str
- Unique identifier of the
Release
.
- abandoned Boolean
- Indicates whether this is an abandoned release.
- condition Property Map
- Information around the state of the Release.
- create
Time String - Time at which the
Release
was created. - delivery
Pipeline Property MapSnapshot - Snapshot of the parent pipeline taken at release creation time.
- id String
- The provider-assigned unique ID for this managed resource.
- render
End StringTime - Time at which the render completed.
- render
Start StringTime - Time at which the render began.
- render
State String - Current state of the render operation.
- target
Artifacts Map<String> - Map from target ID to the target artifacts created during the render operation.
- target
Renders Map<String> - Map from target ID to details of the render operation for that target.
- target
Snapshots List<Property Map> - Snapshot of the targets taken at release creation time.
- uid String
- Unique identifier of the
Release
.
Supporting Types
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}
.
BuildArtifact, BuildArtifactArgs
BuildArtifactResponse, BuildArtifactResponseArgs
CanaryDeploymentResponse, CanaryDeploymentResponseArgs
- Percentages
This property is required. List<int> - The percentage based deployments that will occur as a part of a
Rollout
. List is expected in ascending order and each integer n is 0 <= n < 100. - Postdeploy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Postdeploy Response - Optional. Configuration for the postdeploy job of the last phase. If this is not configured, there will be no postdeploy job for this phase.
- Predeploy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Predeploy Response - Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase.
- Verify
This property is required. bool - Whether to run verify tests after each percentage deployment.
- Percentages
This property is required. []int - The percentage based deployments that will occur as a part of a
Rollout
. List is expected in ascending order and each integer n is 0 <= n < 100. - Postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of the last phase. If this is not configured, there will be no postdeploy job for this phase.
- Predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase.
- Verify
This property is required. bool - Whether to run verify tests after each percentage deployment.
- percentages
This property is required. List<Integer> - The percentage based deployments that will occur as a part of a
Rollout
. List is expected in ascending order and each integer n is 0 <= n < 100. - postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of the last phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase.
- verify
This property is required. Boolean - Whether to run verify tests after each percentage deployment.
- percentages
This property is required. number[] - The percentage based deployments that will occur as a part of a
Rollout
. List is expected in ascending order and each integer n is 0 <= n < 100. - postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of the last phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase.
- verify
This property is required. boolean - Whether to run verify tests after each percentage deployment.
- percentages
This property is required. Sequence[int] - The percentage based deployments that will occur as a part of a
Rollout
. List is expected in ascending order and each integer n is 0 <= n < 100. - postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of the last phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase.
- verify
This property is required. bool - Whether to run verify tests after each percentage deployment.
- percentages
This property is required. List<Number> - The percentage based deployments that will occur as a part of a
Rollout
. List is expected in ascending order and each integer n is 0 <= n < 100. - postdeploy
This property is required. Property Map - Optional. Configuration for the postdeploy job of the last phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. Property Map - Optional. Configuration for the predeploy job of the first phase. If this is not configured, there will be no predeploy job for this phase.
- verify
This property is required. Boolean - Whether to run verify tests after each percentage deployment.
CanaryResponse, CanaryResponseArgs
- Canary
Deployment This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Canary Deployment Response - Configures the progressive based deployment for a Target.
- Custom
Canary Deployment This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Custom Canary Deployment Response - Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.
- Runtime
Config This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Runtime Config Response - Optional. Runtime specific configurations for the deployment strategy. The runtime configuration is used to determine how Cloud Deploy will split traffic to enable a progressive deployment.
- Canary
Deployment This property is required. CanaryDeployment Response - Configures the progressive based deployment for a Target.
- Custom
Canary Deployment This property is required. CustomCanary Deployment Response - Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.
- Runtime
Config This property is required. RuntimeConfig Response - Optional. Runtime specific configurations for the deployment strategy. The runtime configuration is used to determine how Cloud Deploy will split traffic to enable a progressive deployment.
- canary
Deployment This property is required. CanaryDeployment Response - Configures the progressive based deployment for a Target.
- custom
Canary Deployment This property is required. CustomCanary Deployment Response - Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.
- runtime
Config This property is required. RuntimeConfig Response - Optional. Runtime specific configurations for the deployment strategy. The runtime configuration is used to determine how Cloud Deploy will split traffic to enable a progressive deployment.
- canary
Deployment This property is required. CanaryDeployment Response - Configures the progressive based deployment for a Target.
- custom
Canary Deployment This property is required. CustomCanary Deployment Response - Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.
- runtime
Config This property is required. RuntimeConfig Response - Optional. Runtime specific configurations for the deployment strategy. The runtime configuration is used to determine how Cloud Deploy will split traffic to enable a progressive deployment.
- canary_
deployment This property is required. CanaryDeployment Response - Configures the progressive based deployment for a Target.
- custom_
canary_ deployment This property is required. CustomCanary Deployment Response - Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.
- runtime_
config This property is required. RuntimeConfig Response - Optional. Runtime specific configurations for the deployment strategy. The runtime configuration is used to determine how Cloud Deploy will split traffic to enable a progressive deployment.
- canary
Deployment This property is required. Property Map - Configures the progressive based deployment for a Target.
- custom
Canary Deployment This property is required. Property Map - Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.
- runtime
Config This property is required. Property Map - Optional. Runtime specific configurations for the deployment strategy. The runtime configuration is used to determine how Cloud Deploy will split traffic to enable a progressive deployment.
CloudRunConfigResponse, CloudRunConfigResponseArgs
- Automatic
Traffic Control This property is required. bool - Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.
- Automatic
Traffic Control This property is required. bool - Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.
- automatic
Traffic Control This property is required. Boolean - Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.
- automatic
Traffic Control This property is required. boolean - Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.
- automatic_
traffic_ control This property is required. bool - Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.
- automatic
Traffic Control This property is required. Boolean - Whether Cloud Deploy should update the traffic stanza in a Cloud Run Service on the user's behalf to facilitate traffic splitting. This is required to be true for CanaryDeployments, but optional for CustomCanaryDeployments.
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}
.
CustomCanaryDeploymentResponse, CustomCanaryDeploymentResponseArgs
- Phase
Configs This property is required. List<Pulumi.Google Native. Cloud Deploy. V1. Inputs. Phase Config Response> - Configuration for each phase in the canary deployment in the order executed.
- Phase
Configs This property is required. []PhaseConfig Response - Configuration for each phase in the canary deployment in the order executed.
- phase
Configs This property is required. List<PhaseConfig Response> - Configuration for each phase in the canary deployment in the order executed.
- phase
Configs This property is required. PhaseConfig Response[] - Configuration for each phase in the canary deployment in the order executed.
- phase_
configs This property is required. Sequence[PhaseConfig Response] - Configuration for each phase in the canary deployment in the order executed.
- phase
Configs This property is required. List<Property Map> - Configuration for each phase in the canary deployment in the order executed.
DefaultPoolResponse, DefaultPoolResponseArgs
- Artifact
Storage 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.
- Service
Account 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. 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.
- Service
Account 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. 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.
- service
Account 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. 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.
- service
Account 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.
- artifact
Storage 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.
- service
Account 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.
DeliveryPipelineResponse, DeliveryPipelineResponseArgs
- Annotations
This property is required. Dictionary<string, string> - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy.
- Condition
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Pipeline Condition Response - Information around the state of the Delivery Pipeline.
- Create
Time This property is required. string - Time at which the pipeline was created.
- Description
This property is required. string - Description of the
DeliveryPipeline
. Max length is 255 characters. - Etag
This property is required. string - 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.
- Labels
This property is required. Dictionary<string, string> - 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.
- Name
This property is required. string - Optional. Name of the
DeliveryPipeline
. Format isprojects/{project}/locations/{location}/deliveryPipelines/a-z{0,62}
. - Serial
Pipeline This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Serial Pipeline Response - SerialPipeline defines a sequential set of stages for a
DeliveryPipeline
. - Suspended
This property is required. bool - When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
- Uid
This property is required. string - Unique identifier of the
DeliveryPipeline
. - Update
Time This property is required. string - Most recent time at which the pipeline was updated.
- Annotations
This property is required. map[string]string - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy.
- Condition
This property is required. PipelineCondition Response - Information around the state of the Delivery Pipeline.
- Create
Time This property is required. string - Time at which the pipeline was created.
- Description
This property is required. string - Description of the
DeliveryPipeline
. Max length is 255 characters. - Etag
This property is required. string - 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.
- Labels
This property is required. map[string]string - 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.
- Name
This property is required. string - Optional. Name of the
DeliveryPipeline
. Format isprojects/{project}/locations/{location}/deliveryPipelines/a-z{0,62}
. - Serial
Pipeline This property is required. SerialPipeline Response - SerialPipeline defines a sequential set of stages for a
DeliveryPipeline
. - Suspended
This property is required. bool - When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
- Uid
This property is required. string - Unique identifier of the
DeliveryPipeline
. - Update
Time This property is required. string - Most recent time at which the pipeline was updated.
- annotations
This property is required. Map<String,String> - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy.
- condition
This property is required. PipelineCondition Response - Information around the state of the Delivery Pipeline.
- create
Time This property is required. String - Time at which the pipeline was created.
- description
This property is required. String - Description of the
DeliveryPipeline
. Max length is 255 characters. - etag
This property is required. String - 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.
- labels
This property is required. Map<String,String> - 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.
- name
This property is required. String - Optional. Name of the
DeliveryPipeline
. Format isprojects/{project}/locations/{location}/deliveryPipelines/a-z{0,62}
. - serial
Pipeline This property is required. SerialPipeline Response - SerialPipeline defines a sequential set of stages for a
DeliveryPipeline
. - suspended
This property is required. Boolean - When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
- uid
This property is required. String - Unique identifier of the
DeliveryPipeline
. - update
Time This property is required. String - Most recent time at which the pipeline was updated.
- annotations
This property is required. {[key: string]: string} - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy.
- condition
This property is required. PipelineCondition Response - Information around the state of the Delivery Pipeline.
- create
Time This property is required. string - Time at which the pipeline was created.
- description
This property is required. string - Description of the
DeliveryPipeline
. Max length is 255 characters. - etag
This property is required. string - 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.
- labels
This property is required. {[key: string]: string} - 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.
- name
This property is required. string - Optional. Name of the
DeliveryPipeline
. Format isprojects/{project}/locations/{location}/deliveryPipelines/a-z{0,62}
. - serial
Pipeline This property is required. SerialPipeline Response - SerialPipeline defines a sequential set of stages for a
DeliveryPipeline
. - suspended
This property is required. boolean - When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
- uid
This property is required. string - Unique identifier of the
DeliveryPipeline
. - update
Time This property is required. string - Most recent time at which the pipeline was updated.
- annotations
This property is required. Mapping[str, str] - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy.
- condition
This property is required. PipelineCondition Response - Information around the state of the Delivery Pipeline.
- create_
time This property is required. str - Time at which the pipeline was created.
- description
This property is required. str - Description of the
DeliveryPipeline
. Max length is 255 characters. - etag
This property is required. str - 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.
- labels
This property is required. Mapping[str, str] - 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.
- name
This property is required. str - Optional. Name of the
DeliveryPipeline
. Format isprojects/{project}/locations/{location}/deliveryPipelines/a-z{0,62}
. - serial_
pipeline This property is required. SerialPipeline Response - SerialPipeline defines a sequential set of stages for a
DeliveryPipeline
. - suspended
This property is required. bool - When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
- uid
This property is required. str - Unique identifier of the
DeliveryPipeline
. - update_
time This property is required. str - Most recent time at which the pipeline was updated.
- annotations
This property is required. Map<String> - User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy.
- condition
This property is required. Property Map - Information around the state of the Delivery Pipeline.
- create
Time This property is required. String - Time at which the pipeline was created.
- description
This property is required. String - Description of the
DeliveryPipeline
. Max length is 255 characters. - etag
This property is required. String - 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.
- labels
This property is required. Map<String> - 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.
- name
This property is required. String - Optional. Name of the
DeliveryPipeline
. Format isprojects/{project}/locations/{location}/deliveryPipelines/a-z{0,62}
. - serial
Pipeline This property is required. Property Map - SerialPipeline defines a sequential set of stages for a
DeliveryPipeline
. - suspended
This property is required. Boolean - When suspended, no new releases or rollouts can be created, but in-progress ones will complete.
- uid
This property is required. String - Unique identifier of the
DeliveryPipeline
. - update
Time This property is required. String - Most recent time at which the pipeline was updated.
DeployParametersResponse, DeployParametersResponseArgs
- Match
Target Labels This property is required. Dictionary<string, string> - Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).
- Values
This property is required. Dictionary<string, string> - Values are deploy parameters in key-value pairs.
- Match
Target Labels This property is required. map[string]string - Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).
- Values
This property is required. map[string]string - Values are deploy parameters in key-value pairs.
- match
Target Labels This property is required. Map<String,String> - Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).
- values
This property is required. Map<String,String> - Values are deploy parameters in key-value pairs.
- match
Target Labels This property is required. {[key: string]: string} - Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).
- values
This property is required. {[key: string]: string} - Values are deploy parameters in key-value pairs.
- match_
target_ labels This property is required. Mapping[str, str] - Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).
- values
This property is required. Mapping[str, str] - Values are deploy parameters in key-value pairs.
- match
Target Labels This property is required. Map<String> - Optional. Deploy parameters are applied to targets with match labels. If unspecified, deploy parameters are applied to all targets (including child targets of a multi-target).
- values
This property is required. Map<String> - Values are deploy parameters in key-value pairs.
ExecutionConfigResponse, ExecutionConfigResponseArgs
- Artifact
Storage 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.
- Default
Pool This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Default Pool Response - Optional. Use default Cloud Build pool.
- Execution
Timeout 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.
- Private
Pool This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Private Pool Response - Optional. Use private Cloud Build pool.
- Service
Account 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.
- Worker
Pool This property is required. string - Optional. The resource name of the
WorkerPool
, with the formatprojects/{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. 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.
- Default
Pool This property is required. DefaultPool Response - Optional. Use default Cloud Build pool.
- Execution
Timeout 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.
- Private
Pool This property is required. PrivatePool Response - Optional. Use private Cloud Build pool.
- Service
Account 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.
- Worker
Pool This property is required. string - Optional. The resource name of the
WorkerPool
, with the formatprojects/{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. 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.
- default
Pool This property is required. DefaultPool Response - Optional. Use default Cloud Build pool.
- execution
Timeout 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.
- private
Pool This property is required. PrivatePool Response - Optional. Use private Cloud Build pool.
- service
Account 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.
- worker
Pool This property is required. String - Optional. The resource name of the
WorkerPool
, with the formatprojects/{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. 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.
- default
Pool This property is required. DefaultPool Response - Optional. Use default Cloud Build pool.
- execution
Timeout 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.
- private
Pool This property is required. PrivatePool Response - Optional. Use private Cloud Build pool.
- service
Account 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.
- worker
Pool This property is required. string - Optional. The resource name of the
WorkerPool
, with the formatprojects/{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. DefaultPool Response - 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. PrivatePool Response - 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 formatprojects/{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. 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.
- default
Pool This property is required. Property Map - Optional. Use default Cloud Build pool.
- execution
Timeout 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.
- private
Pool This property is required. Property Map - Optional. Use private Cloud Build pool.
- service
Account 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.
- worker
Pool This property is required. String - Optional. The resource name of the
WorkerPool
, with the formatprojects/{project}/locations/{location}/workerPools/{worker_pool}
. If this optional field is unspecified, the default Cloud Build pool will be used.
GatewayServiceMeshResponse, GatewayServiceMeshResponseArgs
- Deployment
This property is required. string - Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.
- Http
Route This property is required. string - Name of the Gateway API HTTPRoute.
- Route
Update Wait Time This property is required. string - Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
- Service
This property is required. string - Name of the Kubernetes Service.
- Deployment
This property is required. string - Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.
- Http
Route This property is required. string - Name of the Gateway API HTTPRoute.
- Route
Update Wait Time This property is required. string - Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
- Service
This property is required. string - Name of the Kubernetes Service.
- deployment
This property is required. String - Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.
- http
Route This property is required. String - Name of the Gateway API HTTPRoute.
- route
Update Wait Time This property is required. String - Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
- service
This property is required. String - Name of the Kubernetes Service.
- deployment
This property is required. string - Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.
- http
Route This property is required. string - Name of the Gateway API HTTPRoute.
- route
Update Wait Time This property is required. string - Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
- service
This property is required. string - Name of the Kubernetes Service.
- deployment
This property is required. str - Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.
- http_
route This property is required. str - Name of the Gateway API HTTPRoute.
- route_
update_ wait_ time This property is required. str - Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
- service
This property is required. str - Name of the Kubernetes Service.
- deployment
This property is required. String - Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.
- http
Route This property is required. String - Name of the Gateway API HTTPRoute.
- route
Update Wait Time This property is required. String - Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.
- service
This property is required. String - Name of the Kubernetes Service.
GkeClusterResponse, GkeClusterResponseArgs
- Cluster
This property is required. string - 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 whencluster
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}
. - 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 whencluster
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}
. - internal
Ip 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 whencluster
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}
. - internal
Ip 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 whencluster
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 whencluster
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}
. - internal
Ip 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 whencluster
is a private GKE cluster.
KubernetesConfigResponse, KubernetesConfigResponseArgs
- Gateway
Service Mesh This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Gateway Service Mesh Response - Kubernetes Gateway API service mesh configuration.
- Service
Networking This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Service Networking Response - Kubernetes Service networking configuration.
- Gateway
Service Mesh This property is required. GatewayService Mesh Response - Kubernetes Gateway API service mesh configuration.
- Service
Networking This property is required. ServiceNetworking Response - Kubernetes Service networking configuration.
- gateway
Service Mesh This property is required. GatewayService Mesh Response - Kubernetes Gateway API service mesh configuration.
- service
Networking This property is required. ServiceNetworking Response - Kubernetes Service networking configuration.
- gateway
Service Mesh This property is required. GatewayService Mesh Response - Kubernetes Gateway API service mesh configuration.
- service
Networking This property is required. ServiceNetworking Response - Kubernetes Service networking configuration.
- gateway_
service_ mesh This property is required. GatewayService Mesh Response - Kubernetes Gateway API service mesh configuration.
- service_
networking This property is required. ServiceNetworking Response - Kubernetes Service networking configuration.
- gateway
Service Mesh This property is required. Property Map - Kubernetes Gateway API service mesh configuration.
- service
Networking This property is required. Property Map - Kubernetes Service networking configuration.
MultiTargetResponse, MultiTargetResponseArgs
- Target
Ids This property is required. List<string> - The target_ids of this multiTarget.
- Target
Ids This property is required. []string - The target_ids of this multiTarget.
- target
Ids This property is required. List<String> - The target_ids of this multiTarget.
- target
Ids 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.
- target
Ids This property is required. List<String> - The target_ids of this multiTarget.
PhaseConfigResponse, PhaseConfigResponseArgs
- Percentage
This property is required. int - Percentage deployment for the phase.
- Phase
Id This property is required. string - The ID to assign to the
Rollout
phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex:^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$
. - Postdeploy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Postdeploy Response - Optional. Configuration for the postdeploy job of this phase. If this is not configured, there will be no postdeploy job for this phase.
- Predeploy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Predeploy Response - Optional. Configuration for the predeploy job of this phase. If this is not configured, there will be no predeploy job for this phase.
- Profiles
This property is required. List<string> - Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the
DeliveryPipeline
stage. - Verify
This property is required. bool - Whether to run verify tests after the deployment.
- Percentage
This property is required. int - Percentage deployment for the phase.
- Phase
Id This property is required. string - The ID to assign to the
Rollout
phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex:^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$
. - Postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of this phase. If this is not configured, there will be no postdeploy job for this phase.
- Predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of this phase. If this is not configured, there will be no predeploy job for this phase.
- Profiles
This property is required. []string - Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the
DeliveryPipeline
stage. - Verify
This property is required. bool - Whether to run verify tests after the deployment.
- percentage
This property is required. Integer - Percentage deployment for the phase.
- phase
Id This property is required. String - The ID to assign to the
Rollout
phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex:^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$
. - postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of this phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of this phase. If this is not configured, there will be no predeploy job for this phase.
- profiles
This property is required. List<String> - Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the
DeliveryPipeline
stage. - verify
This property is required. Boolean - Whether to run verify tests after the deployment.
- percentage
This property is required. number - Percentage deployment for the phase.
- phase
Id This property is required. string - The ID to assign to the
Rollout
phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex:^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$
. - postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of this phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of this phase. If this is not configured, there will be no predeploy job for this phase.
- profiles
This property is required. string[] - Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the
DeliveryPipeline
stage. - verify
This property is required. boolean - Whether to run verify tests after the deployment.
- percentage
This property is required. int - Percentage deployment for the phase.
- phase_
id This property is required. str - The ID to assign to the
Rollout
phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex:^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$
. - postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job of this phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job of this phase. If this is not configured, there will be no predeploy job for this phase.
- profiles
This property is required. Sequence[str] - Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the
DeliveryPipeline
stage. - verify
This property is required. bool - Whether to run verify tests after the deployment.
- percentage
This property is required. Number - Percentage deployment for the phase.
- phase
Id This property is required. String - The ID to assign to the
Rollout
phase. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex:^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$
. - postdeploy
This property is required. Property Map - Optional. Configuration for the postdeploy job of this phase. If this is not configured, there will be no postdeploy job for this phase.
- predeploy
This property is required. Property Map - Optional. Configuration for the predeploy job of this phase. If this is not configured, there will be no predeploy job for this phase.
- profiles
This property is required. List<String> - Skaffold profiles to use when rendering the manifest for this phase. These are in addition to the profiles list specified in the
DeliveryPipeline
stage. - verify
This property is required. Boolean - Whether to run verify tests after the deployment.
PipelineConditionResponse, PipelineConditionResponseArgs
- Pipeline
Ready Condition This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Pipeline Ready Condition Response - Details around the Pipeline's overall status.
- Targets
Present Condition This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Targets Present Condition Response - Details around targets enumerated in the pipeline.
- Targets
Type Condition This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Targets Type Condition Response - Details on the whether the targets enumerated in the pipeline are of the same type.
- Pipeline
Ready Condition This property is required. PipelineReady Condition Response - Details around the Pipeline's overall status.
- Targets
Present Condition This property is required. TargetsPresent Condition Response - Details around targets enumerated in the pipeline.
- Targets
Type Condition This property is required. TargetsType Condition Response - Details on the whether the targets enumerated in the pipeline are of the same type.
- pipeline
Ready Condition This property is required. PipelineReady Condition Response - Details around the Pipeline's overall status.
- targets
Present Condition This property is required. TargetsPresent Condition Response - Details around targets enumerated in the pipeline.
- targets
Type Condition This property is required. TargetsType Condition Response - Details on the whether the targets enumerated in the pipeline are of the same type.
- pipeline
Ready Condition This property is required. PipelineReady Condition Response - Details around the Pipeline's overall status.
- targets
Present Condition This property is required. TargetsPresent Condition Response - Details around targets enumerated in the pipeline.
- targets
Type Condition This property is required. TargetsType Condition Response - Details on the whether the targets enumerated in the pipeline are of the same type.
- pipeline_
ready_ condition This property is required. PipelineReady Condition Response - Details around the Pipeline's overall status.
- targets_
present_ condition This property is required. TargetsPresent Condition Response - Details around targets enumerated in the pipeline.
- targets_
type_ condition This property is required. TargetsType Condition Response - Details on the whether the targets enumerated in the pipeline are of the same type.
- pipeline
Ready Condition This property is required. Property Map - Details around the Pipeline's overall status.
- targets
Present Condition This property is required. Property Map - Details around targets enumerated in the pipeline.
- targets
Type Condition This property is required. Property Map - Details on the whether the targets enumerated in the pipeline are of the same type.
PipelineReadyConditionResponse, PipelineReadyConditionResponseArgs
- Status
This property is required. bool - True if the Pipeline is in a valid state. Otherwise at least one condition in
PipelineCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. - Update
Time This property is required. string - Last time the condition was updated.
- Status
This property is required. bool - True if the Pipeline is in a valid state. Otherwise at least one condition in
PipelineCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. - Update
Time This property is required. string - Last time the condition was updated.
- status
This property is required. Boolean - True if the Pipeline is in a valid state. Otherwise at least one condition in
PipelineCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. - update
Time This property is required. String - Last time the condition was updated.
- status
This property is required. boolean - True if the Pipeline is in a valid state. Otherwise at least one condition in
PipelineCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. - update
Time This property is required. string - Last time the condition was updated.
- status
This property is required. bool - True if the Pipeline is in a valid state. Otherwise at least one condition in
PipelineCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. - update_
time This property is required. str - Last time the condition was updated.
- status
This property is required. Boolean - True if the Pipeline is in a valid state. Otherwise at least one condition in
PipelineCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Pipeline. - update
Time This property is required. String - Last time the condition was updated.
PostdeployResponse, PostdeployResponseArgs
- Actions
This property is required. List<string> - Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.
- Actions
This property is required. []string - Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.
- actions
This property is required. List<String> - Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.
- actions
This property is required. string[] - Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.
- actions
This property is required. Sequence[str] - Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.
- actions
This property is required. List<String> - Optional. A sequence of Skaffold custom actions to invoke during execution of the postdeploy job.
PredeployResponse, PredeployResponseArgs
- Actions
This property is required. List<string> - Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job.
- Actions
This property is required. []string - Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job.
- actions
This property is required. List<String> - Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job.
- actions
This property is required. string[] - Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job.
- actions
This property is required. Sequence[str] - Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job.
- actions
This property is required. List<String> - Optional. A sequence of Skaffold custom actions to invoke during execution of the predeploy job.
PrivatePoolResponse, PrivatePoolResponseArgs
- Artifact
Storage 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.
- Service
Account 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.
- Worker
Pool 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. 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.
- Service
Account 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.
- Worker
Pool 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. 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.
- service
Account 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.
- worker
Pool 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. 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.
- service
Account 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.
- worker
Pool 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}
.
- artifact
Storage 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.
- service
Account 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.
- worker
Pool This property is required. String - Resource name of the Cloud Build worker pool to use. The format is
projects/{project}/locations/{location}/workerPools/{pool}
.
ReleaseConditionResponse, ReleaseConditionResponseArgs
- Release
Ready Condition This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Release Ready Condition Response - Details around the Releases's overall status.
- Skaffold
Supported Condition This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Skaffold Supported Condition Response - Details around the support state of the release's skaffold version.
- Release
Ready Condition This property is required. ReleaseReady Condition Response - Details around the Releases's overall status.
- Skaffold
Supported Condition This property is required. SkaffoldSupported Condition Response - Details around the support state of the release's skaffold version.
- release
Ready Condition This property is required. ReleaseReady Condition Response - Details around the Releases's overall status.
- skaffold
Supported Condition This property is required. SkaffoldSupported Condition Response - Details around the support state of the release's skaffold version.
- release
Ready Condition This property is required. ReleaseReady Condition Response - Details around the Releases's overall status.
- skaffold
Supported Condition This property is required. SkaffoldSupported Condition Response - Details around the support state of the release's skaffold version.
- release_
ready_ condition This property is required. ReleaseReady Condition Response - Details around the Releases's overall status.
- skaffold_
supported_ condition This property is required. SkaffoldSupported Condition Response - Details around the support state of the release's skaffold version.
- release
Ready Condition This property is required. Property Map - Details around the Releases's overall status.
- skaffold
Supported Condition This property is required. Property Map - Details around the support state of the release's skaffold version.
ReleaseReadyConditionResponse, ReleaseReadyConditionResponseArgs
- Status
This property is required. bool - True if the Release is in a valid state. Otherwise at least one condition in
ReleaseCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.
- Status
This property is required. bool - True if the Release is in a valid state. Otherwise at least one condition in
ReleaseCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.
- status
This property is required. Boolean - True if the Release is in a valid state. Otherwise at least one condition in
ReleaseCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.
- status
This property is required. boolean - True if the Release is in a valid state. Otherwise at least one condition in
ReleaseCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.
- status
This property is required. bool - True if the Release is in a valid state. Otherwise at least one condition in
ReleaseCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.
- status
This property is required. Boolean - True if the Release is in a valid state. Otherwise at least one condition in
ReleaseCondition
is in an invalid state. Iterate over those conditions and see which condition(s) has status = false to find out what is wrong with the Release.
RuntimeConfigResponse, RuntimeConfigResponseArgs
- Cloud
Run This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Cloud Run Config Response - Cloud Run runtime configuration.
- Kubernetes
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Kubernetes Config Response - Kubernetes runtime configuration.
- Cloud
Run This property is required. CloudRun Config Response - Cloud Run runtime configuration.
- Kubernetes
This property is required. KubernetesConfig Response - Kubernetes runtime configuration.
- cloud
Run This property is required. CloudRun Config Response - Cloud Run runtime configuration.
- kubernetes
This property is required. KubernetesConfig Response - Kubernetes runtime configuration.
- cloud
Run This property is required. CloudRun Config Response - Cloud Run runtime configuration.
- kubernetes
This property is required. KubernetesConfig Response - Kubernetes runtime configuration.
- cloud_
run This property is required. CloudRun Config Response - Cloud Run runtime configuration.
- kubernetes
This property is required. KubernetesConfig Response - Kubernetes runtime configuration.
- cloud
Run This property is required. Property Map - Cloud Run runtime configuration.
- kubernetes
This property is required. Property Map - Kubernetes runtime configuration.
SerialPipelineResponse, SerialPipelineResponseArgs
- Stages
This property is required. List<Pulumi.Google Native. Cloud Deploy. V1. Inputs. Stage Response> - Each stage specifies configuration for a
Target
. The ordering of this list defines the promotion flow.
- Stages
This property is required. []StageResponse - Each stage specifies configuration for a
Target
. The ordering of this list defines the promotion flow.
- stages
This property is required. List<StageResponse> - Each stage specifies configuration for a
Target
. The ordering of this list defines the promotion flow.
- stages
This property is required. StageResponse[] - Each stage specifies configuration for a
Target
. The ordering of this list defines the promotion flow.
- stages
This property is required. Sequence[StageResponse] - Each stage specifies configuration for a
Target
. The ordering of this list defines the promotion flow.
- stages
This property is required. List<Property Map> - Each stage specifies configuration for a
Target
. The ordering of this list defines the promotion flow.
ServiceNetworkingResponse, ServiceNetworkingResponseArgs
- Deployment
This property is required. string - Name of the Kubernetes Deployment whose traffic is managed by the specified Service.
- Disable
Pod Overprovisioning This property is required. bool - Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is disabled then Cloud Deploy will limit the number of total Pods used for the deployment strategy to the number of Pods the Deployment has on the cluster.
- Service
This property is required. string - Name of the Kubernetes Service.
- Deployment
This property is required. string - Name of the Kubernetes Deployment whose traffic is managed by the specified Service.
- Disable
Pod Overprovisioning This property is required. bool - Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is disabled then Cloud Deploy will limit the number of total Pods used for the deployment strategy to the number of Pods the Deployment has on the cluster.
- Service
This property is required. string - Name of the Kubernetes Service.
- deployment
This property is required. String - Name of the Kubernetes Deployment whose traffic is managed by the specified Service.
- disable
Pod Overprovisioning This property is required. Boolean - Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is disabled then Cloud Deploy will limit the number of total Pods used for the deployment strategy to the number of Pods the Deployment has on the cluster.
- service
This property is required. String - Name of the Kubernetes Service.
- deployment
This property is required. string - Name of the Kubernetes Deployment whose traffic is managed by the specified Service.
- disable
Pod Overprovisioning This property is required. boolean - Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is disabled then Cloud Deploy will limit the number of total Pods used for the deployment strategy to the number of Pods the Deployment has on the cluster.
- service
This property is required. string - Name of the Kubernetes Service.
- deployment
This property is required. str - Name of the Kubernetes Deployment whose traffic is managed by the specified Service.
- disable_
pod_ overprovisioning This property is required. bool - Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is disabled then Cloud Deploy will limit the number of total Pods used for the deployment strategy to the number of Pods the Deployment has on the cluster.
- service
This property is required. str - Name of the Kubernetes Service.
- deployment
This property is required. String - Name of the Kubernetes Deployment whose traffic is managed by the specified Service.
- disable
Pod Overprovisioning This property is required. Boolean - Optional. Whether to disable Pod overprovisioning. If Pod overprovisioning is disabled then Cloud Deploy will limit the number of total Pods used for the deployment strategy to the number of Pods the Deployment has on the cluster.
- service
This property is required. String - Name of the Kubernetes Service.
SkaffoldSupportedConditionResponse, SkaffoldSupportedConditionResponseArgs
- Maintenance
Mode Time This property is required. string - The time at which this release's version of skaffold will enter maintenance mode.
- Skaffold
Support State This property is required. string - The skaffold support state for this release's version of skaffold.
- Status
This property is required. bool - True if the version of skaffold used by this release is supported.
- Support
Expiration Time This property is required. string - The time at which this release's version of skaffold will no longer be supported.
- Maintenance
Mode Time This property is required. string - The time at which this release's version of skaffold will enter maintenance mode.
- Skaffold
Support State This property is required. string - The skaffold support state for this release's version of skaffold.
- Status
This property is required. bool - True if the version of skaffold used by this release is supported.
- Support
Expiration Time This property is required. string - The time at which this release's version of skaffold will no longer be supported.
- maintenance
Mode Time This property is required. String - The time at which this release's version of skaffold will enter maintenance mode.
- skaffold
Support State This property is required. String - The skaffold support state for this release's version of skaffold.
- status
This property is required. Boolean - True if the version of skaffold used by this release is supported.
- support
Expiration Time This property is required. String - The time at which this release's version of skaffold will no longer be supported.
- maintenance
Mode Time This property is required. string - The time at which this release's version of skaffold will enter maintenance mode.
- skaffold
Support State This property is required. string - The skaffold support state for this release's version of skaffold.
- status
This property is required. boolean - True if the version of skaffold used by this release is supported.
- support
Expiration Time This property is required. string - The time at which this release's version of skaffold will no longer be supported.
- maintenance_
mode_ time This property is required. str - The time at which this release's version of skaffold will enter maintenance mode.
- skaffold_
support_ state This property is required. str - The skaffold support state for this release's version of skaffold.
- status
This property is required. bool - True if the version of skaffold used by this release is supported.
- support_
expiration_ time This property is required. str - The time at which this release's version of skaffold will no longer be supported.
- maintenance
Mode Time This property is required. String - The time at which this release's version of skaffold will enter maintenance mode.
- skaffold
Support State This property is required. String - The skaffold support state for this release's version of skaffold.
- status
This property is required. Boolean - True if the version of skaffold used by this release is supported.
- support
Expiration Time This property is required. String - The time at which this release's version of skaffold will no longer be supported.
StageResponse, StageResponseArgs
- Deploy
Parameters This property is required. List<Pulumi.Google Native. Cloud Deploy. V1. Inputs. Deploy Parameters Response> - Optional. The deploy parameters to use for the target in this stage.
- Profiles
This property is required. List<string> - Skaffold profiles to use when rendering the manifest for this stage's
Target
. - Strategy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Strategy Response - Optional. The strategy to use for a
Rollout
to this stage. - Target
Id This property is required. string - The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be
my-target
(rather thanprojects/project/locations/location/targets/my-target
). The location of theTarget
is inferred to be the same as the location of theDeliveryPipeline
that contains thisStage
.
- Deploy
Parameters This property is required. []DeployParameters Response - Optional. The deploy parameters to use for the target in this stage.
- Profiles
This property is required. []string - Skaffold profiles to use when rendering the manifest for this stage's
Target
. - Strategy
This property is required. StrategyResponse - Optional. The strategy to use for a
Rollout
to this stage. - Target
Id This property is required. string - The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be
my-target
(rather thanprojects/project/locations/location/targets/my-target
). The location of theTarget
is inferred to be the same as the location of theDeliveryPipeline
that contains thisStage
.
- deploy
Parameters This property is required. List<DeployParameters Response> - Optional. The deploy parameters to use for the target in this stage.
- profiles
This property is required. List<String> - Skaffold profiles to use when rendering the manifest for this stage's
Target
. - strategy
This property is required. StrategyResponse - Optional. The strategy to use for a
Rollout
to this stage. - target
Id This property is required. String - The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be
my-target
(rather thanprojects/project/locations/location/targets/my-target
). The location of theTarget
is inferred to be the same as the location of theDeliveryPipeline
that contains thisStage
.
- deploy
Parameters This property is required. DeployParameters Response[] - Optional. The deploy parameters to use for the target in this stage.
- profiles
This property is required. string[] - Skaffold profiles to use when rendering the manifest for this stage's
Target
. - strategy
This property is required. StrategyResponse - Optional. The strategy to use for a
Rollout
to this stage. - target
Id This property is required. string - The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be
my-target
(rather thanprojects/project/locations/location/targets/my-target
). The location of theTarget
is inferred to be the same as the location of theDeliveryPipeline
that contains thisStage
.
- deploy_
parameters This property is required. Sequence[DeployParameters Response] - Optional. The deploy parameters to use for the target in this stage.
- profiles
This property is required. Sequence[str] - Skaffold profiles to use when rendering the manifest for this stage's
Target
. - strategy
This property is required. StrategyResponse - Optional. The strategy to use for a
Rollout
to this stage. - target_
id This property is required. str - The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be
my-target
(rather thanprojects/project/locations/location/targets/my-target
). The location of theTarget
is inferred to be the same as the location of theDeliveryPipeline
that contains thisStage
.
- deploy
Parameters This property is required. List<Property Map> - Optional. The deploy parameters to use for the target in this stage.
- profiles
This property is required. List<String> - Skaffold profiles to use when rendering the manifest for this stage's
Target
. - strategy
This property is required. Property Map - Optional. The strategy to use for a
Rollout
to this stage. - target
Id This property is required. String - The target_id to which this stage points. This field refers exclusively to the last segment of a target name. For example, this field would just be
my-target
(rather thanprojects/project/locations/location/targets/my-target
). The location of theTarget
is inferred to be the same as the location of theDeliveryPipeline
that contains thisStage
.
StandardResponse, StandardResponseArgs
- Postdeploy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Postdeploy Response - Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
- Predeploy
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Predeploy Response - Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
- Verify
This property is required. bool - Whether to verify a deployment.
- Postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
- Predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
- Verify
This property is required. bool - Whether to verify a deployment.
- postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
- verify
This property is required. Boolean - Whether to verify a deployment.
- postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
- verify
This property is required. boolean - Whether to verify a deployment.
- postdeploy
This property is required. PostdeployResponse - Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
- predeploy
This property is required. PredeployResponse - Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
- verify
This property is required. bool - Whether to verify a deployment.
- postdeploy
This property is required. Property Map - Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.
- predeploy
This property is required. Property Map - Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.
- verify
This property is required. Boolean - Whether to verify a deployment.
StrategyResponse, StrategyResponseArgs
- Canary
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Canary Response - Canary deployment strategy provides progressive percentage based deployments to a Target.
- Standard
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Standard Response - Standard deployment strategy executes a single deploy and allows verifying the deployment.
- Canary
This property is required. CanaryResponse - Canary deployment strategy provides progressive percentage based deployments to a Target.
- Standard
This property is required. StandardResponse - Standard deployment strategy executes a single deploy and allows verifying the deployment.
- canary
This property is required. CanaryResponse - Canary deployment strategy provides progressive percentage based deployments to a Target.
- standard
This property is required. StandardResponse - Standard deployment strategy executes a single deploy and allows verifying the deployment.
- canary
This property is required. CanaryResponse - Canary deployment strategy provides progressive percentage based deployments to a Target.
- standard
This property is required. StandardResponse - Standard deployment strategy executes a single deploy and allows verifying the deployment.
- canary
This property is required. CanaryResponse - Canary deployment strategy provides progressive percentage based deployments to a Target.
- standard
This property is required. StandardResponse - Standard deployment strategy executes a single deploy and allows verifying the deployment.
- canary
This property is required. Property Map - Canary deployment strategy provides progressive percentage based deployments to a Target.
- standard
This property is required. Property Map - Standard deployment strategy executes a single deploy and allows verifying the deployment.
TargetResponse, TargetResponseArgs
- Annotations
This property is required. 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.
- Anthos
Cluster This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Anthos Cluster Response - Optional. Information specifying an Anthos Cluster.
- Create
Time This property is required. string - Time at which the
Target
was created. - Deploy
Parameters This property is required. Dictionary<string, string> - Optional. The deploy parameters to use for this target.
- Description
This property is required. string - Optional. Description of the
Target
. Max length is 255 characters. - Etag
This property is required. 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.
- Execution
Configs This property is required. List<Pulumi.Google Native. Cloud Deploy. V1. Inputs. Execution Config Response> - Configurations for all execution that relates to this
Target
. EachExecutionEnvironmentUsage
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 theRENDER
andDEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified inDefaultPool
. - Gke
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Gke Cluster Response - Optional. Information specifying a GKE Cluster.
- Labels
This property is required. 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.
- Multi
Target This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Multi Target Response - Optional. Information specifying a multiTarget.
- Name
This property is required. string - Optional. Name of the
Target
. Format isprojects/{project}/locations/{location}/targets/a-z{0,62}
. - Require
Approval This property is required. bool - Optional. Whether or not the
Target
requires approval. - Run
This property is required. Pulumi.Google Native. Cloud Deploy. V1. Inputs. Cloud Run Location Response - Optional. Information specifying a Cloud Run deployment target.
- Target
Id This property is required. string - Resource id of the
Target
. - Uid
This property is required. string - Unique identifier of the
Target
. - Update
Time This property is required. string - Most recent time at which the
Target
was updated.
- Annotations
This property is required. 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.
- Anthos
Cluster This property is required. AnthosCluster Response - Optional. Information specifying an Anthos Cluster.
- Create
Time This property is required. string - Time at which the
Target
was created. - Deploy
Parameters This property is required. map[string]string - Optional. The deploy parameters to use for this target.
- Description
This property is required. string - Optional. Description of the
Target
. Max length is 255 characters. - Etag
This property is required. 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.
- Execution
Configs This property is required. []ExecutionConfig Response - Configurations for all execution that relates to this
Target
. EachExecutionEnvironmentUsage
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 theRENDER
andDEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified inDefaultPool
. - Gke
This property is required. GkeCluster Response - Optional. Information specifying a GKE Cluster.
- Labels
This property is required. 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.
- Multi
Target This property is required. MultiTarget Response - Optional. Information specifying a multiTarget.
- Name
This property is required. string - Optional. Name of the
Target
. Format isprojects/{project}/locations/{location}/targets/a-z{0,62}
. - Require
Approval This property is required. bool - Optional. Whether or not the
Target
requires approval. - Run
This property is required. CloudRun Location Response - Optional. Information specifying a Cloud Run deployment target.
- Target
Id This property is required. string - Resource id of the
Target
. - Uid
This property is required. string - Unique identifier of the
Target
. - Update
Time This property is required. string - Most recent time at which the
Target
was updated.
- annotations
This property is required. 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.
- anthos
Cluster This property is required. AnthosCluster Response - Optional. Information specifying an Anthos Cluster.
- create
Time This property is required. String - Time at which the
Target
was created. - deploy
Parameters This property is required. Map<String,String> - Optional. The deploy parameters to use for this target.
- description
This property is required. String - Optional. Description of the
Target
. Max length is 255 characters. - etag
This property is required. 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.
- execution
Configs This property is required. List<ExecutionConfig Response> - Configurations for all execution that relates to this
Target
. EachExecutionEnvironmentUsage
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 theRENDER
andDEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified inDefaultPool
. - gke
This property is required. GkeCluster Response - Optional. Information specifying a GKE Cluster.
- labels
This property is required. 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.
- multi
Target This property is required. MultiTarget Response - Optional. Information specifying a multiTarget.
- name
This property is required. String - Optional. Name of the
Target
. Format isprojects/{project}/locations/{location}/targets/a-z{0,62}
. - require
Approval This property is required. Boolean - Optional. Whether or not the
Target
requires approval. - run
This property is required. CloudRun Location Response - Optional. Information specifying a Cloud Run deployment target.
- target
Id This property is required. String - Resource id of the
Target
. - uid
This property is required. String - Unique identifier of the
Target
. - update
Time This property is required. String - Most recent time at which the
Target
was updated.
- annotations
This property is required. {[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.
- anthos
Cluster This property is required. AnthosCluster Response - Optional. Information specifying an Anthos Cluster.
- create
Time This property is required. string - Time at which the
Target
was created. - deploy
Parameters This property is required. {[key: string]: string} - Optional. The deploy parameters to use for this target.
- description
This property is required. string - Optional. Description of the
Target
. Max length is 255 characters. - etag
This property is required. 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.
- execution
Configs This property is required. ExecutionConfig Response[] - Configurations for all execution that relates to this
Target
. EachExecutionEnvironmentUsage
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 theRENDER
andDEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified inDefaultPool
. - gke
This property is required. GkeCluster Response - Optional. Information specifying a GKE Cluster.
- labels
This property is required. {[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.
- multi
Target This property is required. MultiTarget Response - Optional. Information specifying a multiTarget.
- name
This property is required. string - Optional. Name of the
Target
. Format isprojects/{project}/locations/{location}/targets/a-z{0,62}
. - require
Approval This property is required. boolean - Optional. Whether or not the
Target
requires approval. - run
This property is required. CloudRun Location Response - Optional. Information specifying a Cloud Run deployment target.
- target
Id This property is required. string - Resource id of the
Target
. - uid
This property is required. string - Unique identifier of the
Target
. - update
Time This property is required. string - Most recent time at which the
Target
was updated.
- annotations
This property is required. 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 This property is required. AnthosCluster Response - Optional. Information specifying an Anthos Cluster.
- create_
time This property is required. str - Time at which the
Target
was created. - deploy_
parameters This property is required. Mapping[str, str] - Optional. The deploy parameters to use for this target.
- description
This property is required. str - Optional. Description of the
Target
. Max length is 255 characters. - etag
This property is required. 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 This property is required. Sequence[ExecutionConfig Response] - Configurations for all execution that relates to this
Target
. EachExecutionEnvironmentUsage
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 theRENDER
andDEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified inDefaultPool
. - gke
This property is required. GkeCluster Response - Optional. Information specifying a GKE Cluster.
- labels
This property is required. 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.
- multi_
target This property is required. MultiTarget Response - Optional. Information specifying a multiTarget.
- name
This property is required. str - Optional. Name of the
Target
. Format isprojects/{project}/locations/{location}/targets/a-z{0,62}
. - require_
approval This property is required. bool - Optional. Whether or not the
Target
requires approval. - run
This property is required. CloudRun Location Response - Optional. Information specifying a Cloud Run deployment target.
- target_
id This property is required. str - Resource id of the
Target
. - uid
This property is required. str - Unique identifier of the
Target
. - update_
time This property is required. str - Most recent time at which the
Target
was updated.
- annotations
This property is required. 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.
- anthos
Cluster This property is required. Property Map - Optional. Information specifying an Anthos Cluster.
- create
Time This property is required. String - Time at which the
Target
was created. - deploy
Parameters This property is required. Map<String> - Optional. The deploy parameters to use for this target.
- description
This property is required. String - Optional. Description of the
Target
. Max length is 255 characters. - etag
This property is required. 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.
- execution
Configs This property is required. List<Property Map> - Configurations for all execution that relates to this
Target
. EachExecutionEnvironmentUsage
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 theRENDER
andDEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified inDefaultPool
. - gke
This property is required. Property Map - Optional. Information specifying a GKE Cluster.
- labels
This property is required. 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.
- multi
Target This property is required. Property Map - Optional. Information specifying a multiTarget.
- name
This property is required. String - Optional. Name of the
Target
. Format isprojects/{project}/locations/{location}/targets/a-z{0,62}
. - require
Approval This property is required. Boolean - Optional. Whether or not the
Target
requires approval. - run
This property is required. Property Map - Optional. Information specifying a Cloud Run deployment target.
- target
Id This property is required. String - Resource id of the
Target
. - uid
This property is required. String - Unique identifier of the
Target
. - update
Time This property is required. String - Most recent time at which the
Target
was updated.
TargetsPresentConditionResponse, TargetsPresentConditionResponseArgs
- Missing
Targets This property is required. List<string> - The list of Target names that do not exist. For example,
projects/{project_id}/locations/{location_name}/targets/{target_name}
. - Status
This property is required. bool - True if there aren't any missing Targets.
- Update
Time This property is required. string - Last time the condition was updated.
- Missing
Targets This property is required. []string - The list of Target names that do not exist. For example,
projects/{project_id}/locations/{location_name}/targets/{target_name}
. - Status
This property is required. bool - True if there aren't any missing Targets.
- Update
Time This property is required. string - Last time the condition was updated.
- missing
Targets This property is required. List<String> - The list of Target names that do not exist. For example,
projects/{project_id}/locations/{location_name}/targets/{target_name}
. - status
This property is required. Boolean - True if there aren't any missing Targets.
- update
Time This property is required. String - Last time the condition was updated.
- missing
Targets This property is required. string[] - The list of Target names that do not exist. For example,
projects/{project_id}/locations/{location_name}/targets/{target_name}
. - status
This property is required. boolean - True if there aren't any missing Targets.
- update
Time This property is required. string - Last time the condition was updated.
- missing_
targets This property is required. Sequence[str] - The list of Target names that do not exist. For example,
projects/{project_id}/locations/{location_name}/targets/{target_name}
. - status
This property is required. bool - True if there aren't any missing Targets.
- update_
time This property is required. str - Last time the condition was updated.
- missing
Targets This property is required. List<String> - The list of Target names that do not exist. For example,
projects/{project_id}/locations/{location_name}/targets/{target_name}
. - status
This property is required. Boolean - True if there aren't any missing Targets.
- update
Time This property is required. String - Last time the condition was updated.
TargetsTypeConditionResponse, TargetsTypeConditionResponseArgs
- Error
Details This property is required. string - Human readable error message.
- Status
This property is required. bool - True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.
- Error
Details This property is required. string - Human readable error message.
- Status
This property is required. bool - True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.
- error
Details This property is required. String - Human readable error message.
- status
This property is required. Boolean - True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.
- error
Details This property is required. string - Human readable error message.
- status
This property is required. boolean - True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.
- error_
details This property is required. str - Human readable error message.
- status
This property is required. bool - True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.
- error
Details This property is required. String - Human readable error message.
- status
This property is required. Boolean - True if the targets are all a comparable type. For example this is true if all targets are GKE clusters. This is false if some targets are Cloud Run targets and others are GKE clusters.
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.