1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. clouddeploy
  5. DeliveryPipeline
Google Cloud Classic v6.67.0 published on Wednesday, Sep 27, 2023 by Pulumi

gcp.clouddeploy.DeliveryPipeline

Explore with Pulumi AI

gcp logo
Google Cloud Classic v6.67.0 published on Wednesday, Sep 27, 2023 by Pulumi

    The Cloud Deploy DeliveryPipeline resource

    Example Usage

    Canary_delivery_pipeline

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = new Gcp.CloudDeploy.DeliveryPipeline("primary", new()
        {
            Location = "us-west1",
            Annotations = 
            {
                { "my_first_annotation", "example-annotation-1" },
                { "my_second_annotation", "example-annotation-2" },
            },
            Description = "basic description",
            Labels = 
            {
                { "my_first_label", "example-label-1" },
                { "my_second_label", "example-label-2" },
            },
            Project = "my-project-name",
            SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
            {
                Stages = new[]
                {
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        DeployParameters = new[]
                        {
                            new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageDeployParameterArgs
                            {
                                Values = 
                                {
                                    { "deployParameterKey", "deployParameterValue" },
                                },
                                MatchTargetLabels = null,
                            },
                        },
                        Profiles = new[]
                        {
                            "example-profile-one",
                            "example-profile-two",
                        },
                        TargetId = "example-target-one",
                    },
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        Profiles = new[] {},
                        TargetId = "example-target-two",
                    },
                },
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/clouddeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := clouddeploy.NewDeliveryPipeline(ctx, "primary", &clouddeploy.DeliveryPipelineArgs{
    			Location: pulumi.String("us-west1"),
    			Annotations: pulumi.StringMap{
    				"my_first_annotation":  pulumi.String("example-annotation-1"),
    				"my_second_annotation": pulumi.String("example-annotation-2"),
    			},
    			Description: pulumi.String("basic description"),
    			Labels: pulumi.StringMap{
    				"my_first_label":  pulumi.String("example-label-1"),
    				"my_second_label": pulumi.String("example-label-2"),
    			},
    			Project: pulumi.String("my-project-name"),
    			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
    				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						DeployParameters: clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArray{
    							&clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs{
    								Values: pulumi.StringMap{
    									"deployParameterKey": pulumi.String("deployParameterValue"),
    								},
    								MatchTargetLabels: nil,
    							},
    						},
    						Profiles: pulumi.StringArray{
    							pulumi.String("example-profile-one"),
    							pulumi.String("example-profile-two"),
    						},
    						TargetId: pulumi.String("example-target-one"),
    					},
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						Profiles: pulumi.StringArray{},
    						TargetId: pulumi.String("example-target-two"),
    					},
    				},
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.clouddeploy.DeliveryPipeline;
    import com.pulumi.gcp.clouddeploy.DeliveryPipelineArgs;
    import com.pulumi.gcp.clouddeploy.inputs.DeliveryPipelineSerialPipelineArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var primary = new DeliveryPipeline("primary", DeliveryPipelineArgs.builder()        
                .location("us-west1")
                .annotations(Map.ofEntries(
                    Map.entry("my_first_annotation", "example-annotation-1"),
                    Map.entry("my_second_annotation", "example-annotation-2")
                ))
                .description("basic description")
                .labels(Map.ofEntries(
                    Map.entry("my_first_label", "example-label-1"),
                    Map.entry("my_second_label", "example-label-2")
                ))
                .project("my-project-name")
                .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                    .stages(                
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .deployParameters(DeliveryPipelineSerialPipelineStageDeployParameterArgs.builder()
                                .values(Map.of("deployParameterKey", "deployParameterValue"))
                                .matchTargetLabels()
                                .build())
                            .profiles(                        
                                "example-profile-one",
                                "example-profile-two")
                            .targetId("example-target-one")
                            .build(),
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .profiles()
                            .targetId("example-target-two")
                            .build())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    primary = gcp.clouddeploy.DeliveryPipeline("primary",
        location="us-west1",
        annotations={
            "my_first_annotation": "example-annotation-1",
            "my_second_annotation": "example-annotation-2",
        },
        description="basic description",
        labels={
            "my_first_label": "example-label-1",
            "my_second_label": "example-label-2",
        },
        project="my-project-name",
        serial_pipeline=gcp.clouddeploy.DeliveryPipelineSerialPipelineArgs(
            stages=[
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    deploy_parameters=[gcp.clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs(
                        values={
                            "deployParameterKey": "deployParameterValue",
                        },
                        match_target_labels={},
                    )],
                    profiles=[
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    target_id="example-target-one",
                ),
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    profiles=[],
                    target_id="example-target-two",
                ),
            ],
        ),
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const primary = new gcp.clouddeploy.DeliveryPipeline("primary", {
        location: "us-west1",
        annotations: {
            my_first_annotation: "example-annotation-1",
            my_second_annotation: "example-annotation-2",
        },
        description: "basic description",
        labels: {
            my_first_label: "example-label-1",
            my_second_label: "example-label-2",
        },
        project: "my-project-name",
        serialPipeline: {
            stages: [
                {
                    deployParameters: [{
                        values: {
                            deployParameterKey: "deployParameterValue",
                        },
                        matchTargetLabels: {},
                    }],
                    profiles: [
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    targetId: "example-target-one",
                },
                {
                    profiles: [],
                    targetId: "example-target-two",
                },
            ],
        },
    }, {
        provider: google_beta,
    });
    
    resources:
      primary:
        type: gcp:clouddeploy:DeliveryPipeline
        properties:
          location: us-west1
          annotations:
            my_first_annotation: example-annotation-1
            my_second_annotation: example-annotation-2
          description: basic description
          labels:
            my_first_label: example-label-1
            my_second_label: example-label-2
          project: my-project-name
          serialPipeline:
            stages:
              - deployParameters:
                  - values:
                      deployParameterKey: deployParameterValue
                    matchTargetLabels: {}
                profiles:
                  - example-profile-one
                  - example-profile-two
                targetId: example-target-one
              - profiles: []
                targetId: example-target-two
        options:
          provider: ${["google-beta"]}
    

    Canary_service_networking_delivery_pipeline

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = new Gcp.CloudDeploy.DeliveryPipeline("primary", new()
        {
            Location = "us-west1",
            Annotations = 
            {
                { "my_first_annotation", "example-annotation-1" },
                { "my_second_annotation", "example-annotation-2" },
            },
            Description = "basic description",
            Labels = 
            {
                { "my_first_label", "example-label-1" },
                { "my_second_label", "example-label-2" },
            },
            Project = "my-project-name",
            SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
            {
                Stages = new[]
                {
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        DeployParameters = new[]
                        {
                            new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageDeployParameterArgs
                            {
                                Values = 
                                {
                                    { "deployParameterKey", "deployParameterValue" },
                                },
                                MatchTargetLabels = null,
                            },
                        },
                        Profiles = new[]
                        {
                            "example-profile-one",
                            "example-profile-two",
                        },
                        TargetId = "example-target-one",
                    },
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        Profiles = new[] {},
                        TargetId = "example-target-two",
                    },
                },
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/clouddeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := clouddeploy.NewDeliveryPipeline(ctx, "primary", &clouddeploy.DeliveryPipelineArgs{
    			Location: pulumi.String("us-west1"),
    			Annotations: pulumi.StringMap{
    				"my_first_annotation":  pulumi.String("example-annotation-1"),
    				"my_second_annotation": pulumi.String("example-annotation-2"),
    			},
    			Description: pulumi.String("basic description"),
    			Labels: pulumi.StringMap{
    				"my_first_label":  pulumi.String("example-label-1"),
    				"my_second_label": pulumi.String("example-label-2"),
    			},
    			Project: pulumi.String("my-project-name"),
    			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
    				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						DeployParameters: clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArray{
    							&clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs{
    								Values: pulumi.StringMap{
    									"deployParameterKey": pulumi.String("deployParameterValue"),
    								},
    								MatchTargetLabels: nil,
    							},
    						},
    						Profiles: pulumi.StringArray{
    							pulumi.String("example-profile-one"),
    							pulumi.String("example-profile-two"),
    						},
    						TargetId: pulumi.String("example-target-one"),
    					},
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						Profiles: pulumi.StringArray{},
    						TargetId: pulumi.String("example-target-two"),
    					},
    				},
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.clouddeploy.DeliveryPipeline;
    import com.pulumi.gcp.clouddeploy.DeliveryPipelineArgs;
    import com.pulumi.gcp.clouddeploy.inputs.DeliveryPipelineSerialPipelineArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var primary = new DeliveryPipeline("primary", DeliveryPipelineArgs.builder()        
                .location("us-west1")
                .annotations(Map.ofEntries(
                    Map.entry("my_first_annotation", "example-annotation-1"),
                    Map.entry("my_second_annotation", "example-annotation-2")
                ))
                .description("basic description")
                .labels(Map.ofEntries(
                    Map.entry("my_first_label", "example-label-1"),
                    Map.entry("my_second_label", "example-label-2")
                ))
                .project("my-project-name")
                .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                    .stages(                
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .deployParameters(DeliveryPipelineSerialPipelineStageDeployParameterArgs.builder()
                                .values(Map.of("deployParameterKey", "deployParameterValue"))
                                .matchTargetLabels()
                                .build())
                            .profiles(                        
                                "example-profile-one",
                                "example-profile-two")
                            .targetId("example-target-one")
                            .build(),
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .profiles()
                            .targetId("example-target-two")
                            .build())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    primary = gcp.clouddeploy.DeliveryPipeline("primary",
        location="us-west1",
        annotations={
            "my_first_annotation": "example-annotation-1",
            "my_second_annotation": "example-annotation-2",
        },
        description="basic description",
        labels={
            "my_first_label": "example-label-1",
            "my_second_label": "example-label-2",
        },
        project="my-project-name",
        serial_pipeline=gcp.clouddeploy.DeliveryPipelineSerialPipelineArgs(
            stages=[
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    deploy_parameters=[gcp.clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs(
                        values={
                            "deployParameterKey": "deployParameterValue",
                        },
                        match_target_labels={},
                    )],
                    profiles=[
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    target_id="example-target-one",
                ),
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    profiles=[],
                    target_id="example-target-two",
                ),
            ],
        ),
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const primary = new gcp.clouddeploy.DeliveryPipeline("primary", {
        location: "us-west1",
        annotations: {
            my_first_annotation: "example-annotation-1",
            my_second_annotation: "example-annotation-2",
        },
        description: "basic description",
        labels: {
            my_first_label: "example-label-1",
            my_second_label: "example-label-2",
        },
        project: "my-project-name",
        serialPipeline: {
            stages: [
                {
                    deployParameters: [{
                        values: {
                            deployParameterKey: "deployParameterValue",
                        },
                        matchTargetLabels: {},
                    }],
                    profiles: [
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    targetId: "example-target-one",
                },
                {
                    profiles: [],
                    targetId: "example-target-two",
                },
            ],
        },
    }, {
        provider: google_beta,
    });
    
    resources:
      primary:
        type: gcp:clouddeploy:DeliveryPipeline
        properties:
          location: us-west1
          annotations:
            my_first_annotation: example-annotation-1
            my_second_annotation: example-annotation-2
          description: basic description
          labels:
            my_first_label: example-label-1
            my_second_label: example-label-2
          project: my-project-name
          serialPipeline:
            stages:
              - deployParameters:
                  - values:
                      deployParameterKey: deployParameterValue
                    matchTargetLabels: {}
                profiles:
                  - example-profile-one
                  - example-profile-two
                targetId: example-target-one
              - profiles: []
                targetId: example-target-two
        options:
          provider: ${["google-beta"]}
    

    Canaryrun_delivery_pipeline

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = new Gcp.CloudDeploy.DeliveryPipeline("primary", new()
        {
            Location = "us-west1",
            Annotations = 
            {
                { "my_first_annotation", "example-annotation-1" },
                { "my_second_annotation", "example-annotation-2" },
            },
            Description = "basic description",
            Labels = 
            {
                { "my_first_label", "example-label-1" },
                { "my_second_label", "example-label-2" },
            },
            Project = "my-project-name",
            SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
            {
                Stages = new[]
                {
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        DeployParameters = new[]
                        {
                            new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageDeployParameterArgs
                            {
                                Values = 
                                {
                                    { "deployParameterKey", "deployParameterValue" },
                                },
                                MatchTargetLabels = null,
                            },
                        },
                        Profiles = new[]
                        {
                            "example-profile-one",
                            "example-profile-two",
                        },
                        TargetId = "example-target-one",
                    },
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        Profiles = new[] {},
                        TargetId = "example-target-two",
                    },
                },
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/clouddeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := clouddeploy.NewDeliveryPipeline(ctx, "primary", &clouddeploy.DeliveryPipelineArgs{
    			Location: pulumi.String("us-west1"),
    			Annotations: pulumi.StringMap{
    				"my_first_annotation":  pulumi.String("example-annotation-1"),
    				"my_second_annotation": pulumi.String("example-annotation-2"),
    			},
    			Description: pulumi.String("basic description"),
    			Labels: pulumi.StringMap{
    				"my_first_label":  pulumi.String("example-label-1"),
    				"my_second_label": pulumi.String("example-label-2"),
    			},
    			Project: pulumi.String("my-project-name"),
    			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
    				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						DeployParameters: clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArray{
    							&clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs{
    								Values: pulumi.StringMap{
    									"deployParameterKey": pulumi.String("deployParameterValue"),
    								},
    								MatchTargetLabels: nil,
    							},
    						},
    						Profiles: pulumi.StringArray{
    							pulumi.String("example-profile-one"),
    							pulumi.String("example-profile-two"),
    						},
    						TargetId: pulumi.String("example-target-one"),
    					},
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						Profiles: pulumi.StringArray{},
    						TargetId: pulumi.String("example-target-two"),
    					},
    				},
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.clouddeploy.DeliveryPipeline;
    import com.pulumi.gcp.clouddeploy.DeliveryPipelineArgs;
    import com.pulumi.gcp.clouddeploy.inputs.DeliveryPipelineSerialPipelineArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var primary = new DeliveryPipeline("primary", DeliveryPipelineArgs.builder()        
                .location("us-west1")
                .annotations(Map.ofEntries(
                    Map.entry("my_first_annotation", "example-annotation-1"),
                    Map.entry("my_second_annotation", "example-annotation-2")
                ))
                .description("basic description")
                .labels(Map.ofEntries(
                    Map.entry("my_first_label", "example-label-1"),
                    Map.entry("my_second_label", "example-label-2")
                ))
                .project("my-project-name")
                .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                    .stages(                
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .deployParameters(DeliveryPipelineSerialPipelineStageDeployParameterArgs.builder()
                                .values(Map.of("deployParameterKey", "deployParameterValue"))
                                .matchTargetLabels()
                                .build())
                            .profiles(                        
                                "example-profile-one",
                                "example-profile-two")
                            .targetId("example-target-one")
                            .build(),
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .profiles()
                            .targetId("example-target-two")
                            .build())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    primary = gcp.clouddeploy.DeliveryPipeline("primary",
        location="us-west1",
        annotations={
            "my_first_annotation": "example-annotation-1",
            "my_second_annotation": "example-annotation-2",
        },
        description="basic description",
        labels={
            "my_first_label": "example-label-1",
            "my_second_label": "example-label-2",
        },
        project="my-project-name",
        serial_pipeline=gcp.clouddeploy.DeliveryPipelineSerialPipelineArgs(
            stages=[
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    deploy_parameters=[gcp.clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs(
                        values={
                            "deployParameterKey": "deployParameterValue",
                        },
                        match_target_labels={},
                    )],
                    profiles=[
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    target_id="example-target-one",
                ),
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    profiles=[],
                    target_id="example-target-two",
                ),
            ],
        ),
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const primary = new gcp.clouddeploy.DeliveryPipeline("primary", {
        location: "us-west1",
        annotations: {
            my_first_annotation: "example-annotation-1",
            my_second_annotation: "example-annotation-2",
        },
        description: "basic description",
        labels: {
            my_first_label: "example-label-1",
            my_second_label: "example-label-2",
        },
        project: "my-project-name",
        serialPipeline: {
            stages: [
                {
                    deployParameters: [{
                        values: {
                            deployParameterKey: "deployParameterValue",
                        },
                        matchTargetLabels: {},
                    }],
                    profiles: [
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    targetId: "example-target-one",
                },
                {
                    profiles: [],
                    targetId: "example-target-two",
                },
            ],
        },
    }, {
        provider: google_beta,
    });
    
    resources:
      primary:
        type: gcp:clouddeploy:DeliveryPipeline
        properties:
          location: us-west1
          annotations:
            my_first_annotation: example-annotation-1
            my_second_annotation: example-annotation-2
          description: basic description
          labels:
            my_first_label: example-label-1
            my_second_label: example-label-2
          project: my-project-name
          serialPipeline:
            stages:
              - deployParameters:
                  - values:
                      deployParameterKey: deployParameterValue
                    matchTargetLabels: {}
                profiles:
                  - example-profile-one
                  - example-profile-two
                targetId: example-target-one
              - profiles: []
                targetId: example-target-two
        options:
          provider: ${["google-beta"]}
    

    Delivery_pipeline

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = new Gcp.CloudDeploy.DeliveryPipeline("primary", new()
        {
            Annotations = 
            {
                { "my_first_annotation", "example-annotation-1" },
                { "my_second_annotation", "example-annotation-2" },
            },
            Description = "basic description",
            Labels = 
            {
                { "my_first_label", "example-label-1" },
                { "my_second_label", "example-label-2" },
            },
            Location = "us-west1",
            Project = "my-project-name",
            SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
            {
                Stages = new[]
                {
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        DeployParameters = new[]
                        {
                            new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageDeployParameterArgs
                            {
                                MatchTargetLabels = null,
                                Values = 
                                {
                                    { "deployParameterKey", "deployParameterValue" },
                                },
                            },
                        },
                        Profiles = new[]
                        {
                            "example-profile-one",
                            "example-profile-two",
                        },
                        TargetId = "example-target-one",
                    },
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        Profiles = new[] {},
                        TargetId = "example-target-two",
                    },
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/clouddeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := clouddeploy.NewDeliveryPipeline(ctx, "primary", &clouddeploy.DeliveryPipelineArgs{
    			Annotations: pulumi.StringMap{
    				"my_first_annotation":  pulumi.String("example-annotation-1"),
    				"my_second_annotation": pulumi.String("example-annotation-2"),
    			},
    			Description: pulumi.String("basic description"),
    			Labels: pulumi.StringMap{
    				"my_first_label":  pulumi.String("example-label-1"),
    				"my_second_label": pulumi.String("example-label-2"),
    			},
    			Location: pulumi.String("us-west1"),
    			Project:  pulumi.String("my-project-name"),
    			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
    				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						DeployParameters: clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArray{
    							&clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs{
    								MatchTargetLabels: nil,
    								Values: pulumi.StringMap{
    									"deployParameterKey": pulumi.String("deployParameterValue"),
    								},
    							},
    						},
    						Profiles: pulumi.StringArray{
    							pulumi.String("example-profile-one"),
    							pulumi.String("example-profile-two"),
    						},
    						TargetId: pulumi.String("example-target-one"),
    					},
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						Profiles: pulumi.StringArray{},
    						TargetId: pulumi.String("example-target-two"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.clouddeploy.DeliveryPipeline;
    import com.pulumi.gcp.clouddeploy.DeliveryPipelineArgs;
    import com.pulumi.gcp.clouddeploy.inputs.DeliveryPipelineSerialPipelineArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var primary = new DeliveryPipeline("primary", DeliveryPipelineArgs.builder()        
                .annotations(Map.ofEntries(
                    Map.entry("my_first_annotation", "example-annotation-1"),
                    Map.entry("my_second_annotation", "example-annotation-2")
                ))
                .description("basic description")
                .labels(Map.ofEntries(
                    Map.entry("my_first_label", "example-label-1"),
                    Map.entry("my_second_label", "example-label-2")
                ))
                .location("us-west1")
                .project("my-project-name")
                .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                    .stages(                
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .deployParameters(DeliveryPipelineSerialPipelineStageDeployParameterArgs.builder()
                                .matchTargetLabels()
                                .values(Map.of("deployParameterKey", "deployParameterValue"))
                                .build())
                            .profiles(                        
                                "example-profile-one",
                                "example-profile-two")
                            .targetId("example-target-one")
                            .build(),
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .profiles()
                            .targetId("example-target-two")
                            .build())
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    primary = gcp.clouddeploy.DeliveryPipeline("primary",
        annotations={
            "my_first_annotation": "example-annotation-1",
            "my_second_annotation": "example-annotation-2",
        },
        description="basic description",
        labels={
            "my_first_label": "example-label-1",
            "my_second_label": "example-label-2",
        },
        location="us-west1",
        project="my-project-name",
        serial_pipeline=gcp.clouddeploy.DeliveryPipelineSerialPipelineArgs(
            stages=[
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    deploy_parameters=[gcp.clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs(
                        match_target_labels={},
                        values={
                            "deployParameterKey": "deployParameterValue",
                        },
                    )],
                    profiles=[
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    target_id="example-target-one",
                ),
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    profiles=[],
                    target_id="example-target-two",
                ),
            ],
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const primary = new gcp.clouddeploy.DeliveryPipeline("primary", {
        annotations: {
            my_first_annotation: "example-annotation-1",
            my_second_annotation: "example-annotation-2",
        },
        description: "basic description",
        labels: {
            my_first_label: "example-label-1",
            my_second_label: "example-label-2",
        },
        location: "us-west1",
        project: "my-project-name",
        serialPipeline: {
            stages: [
                {
                    deployParameters: [{
                        matchTargetLabels: {},
                        values: {
                            deployParameterKey: "deployParameterValue",
                        },
                    }],
                    profiles: [
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    targetId: "example-target-one",
                },
                {
                    profiles: [],
                    targetId: "example-target-two",
                },
            ],
        },
    });
    
    resources:
      primary:
        type: gcp:clouddeploy:DeliveryPipeline
        properties:
          annotations:
            my_first_annotation: example-annotation-1
            my_second_annotation: example-annotation-2
          description: basic description
          labels:
            my_first_label: example-label-1
            my_second_label: example-label-2
          location: us-west1
          project: my-project-name
          serialPipeline:
            stages:
              - deployParameters:
                  - matchTargetLabels: {}
                    values:
                      deployParameterKey: deployParameterValue
                profiles:
                  - example-profile-one
                  - example-profile-two
                targetId: example-target-one
              - profiles: []
                targetId: example-target-two
    

    Verify_delivery_pipeline

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = new Gcp.CloudDeploy.DeliveryPipeline("primary", new()
        {
            Location = "us-west1",
            Annotations = 
            {
                { "my_first_annotation", "example-annotation-1" },
                { "my_second_annotation", "example-annotation-2" },
            },
            Description = "basic description",
            Labels = 
            {
                { "my_first_label", "example-label-1" },
                { "my_second_label", "example-label-2" },
            },
            Project = "my-project-name",
            SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
            {
                Stages = new[]
                {
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        DeployParameters = new[]
                        {
                            new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageDeployParameterArgs
                            {
                                Values = 
                                {
                                    { "deployParameterKey", "deployParameterValue" },
                                },
                                MatchTargetLabels = null,
                            },
                        },
                        Profiles = new[]
                        {
                            "example-profile-one",
                            "example-profile-two",
                        },
                        TargetId = "example-target-one",
                    },
                    new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                    {
                        Profiles = new[] {},
                        TargetId = "example-target-two",
                    },
                },
            },
        }, new CustomResourceOptions
        {
            Provider = google_beta,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/clouddeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := clouddeploy.NewDeliveryPipeline(ctx, "primary", &clouddeploy.DeliveryPipelineArgs{
    			Location: pulumi.String("us-west1"),
    			Annotations: pulumi.StringMap{
    				"my_first_annotation":  pulumi.String("example-annotation-1"),
    				"my_second_annotation": pulumi.String("example-annotation-2"),
    			},
    			Description: pulumi.String("basic description"),
    			Labels: pulumi.StringMap{
    				"my_first_label":  pulumi.String("example-label-1"),
    				"my_second_label": pulumi.String("example-label-2"),
    			},
    			Project: pulumi.String("my-project-name"),
    			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
    				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						DeployParameters: clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArray{
    							&clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs{
    								Values: pulumi.StringMap{
    									"deployParameterKey": pulumi.String("deployParameterValue"),
    								},
    								MatchTargetLabels: nil,
    							},
    						},
    						Profiles: pulumi.StringArray{
    							pulumi.String("example-profile-one"),
    							pulumi.String("example-profile-two"),
    						},
    						TargetId: pulumi.String("example-target-one"),
    					},
    					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
    						Profiles: pulumi.StringArray{},
    						TargetId: pulumi.String("example-target-two"),
    					},
    				},
    			},
    		}, pulumi.Provider(google_beta))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.clouddeploy.DeliveryPipeline;
    import com.pulumi.gcp.clouddeploy.DeliveryPipelineArgs;
    import com.pulumi.gcp.clouddeploy.inputs.DeliveryPipelineSerialPipelineArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var primary = new DeliveryPipeline("primary", DeliveryPipelineArgs.builder()        
                .location("us-west1")
                .annotations(Map.ofEntries(
                    Map.entry("my_first_annotation", "example-annotation-1"),
                    Map.entry("my_second_annotation", "example-annotation-2")
                ))
                .description("basic description")
                .labels(Map.ofEntries(
                    Map.entry("my_first_label", "example-label-1"),
                    Map.entry("my_second_label", "example-label-2")
                ))
                .project("my-project-name")
                .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                    .stages(                
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .deployParameters(DeliveryPipelineSerialPipelineStageDeployParameterArgs.builder()
                                .values(Map.of("deployParameterKey", "deployParameterValue"))
                                .matchTargetLabels()
                                .build())
                            .profiles(                        
                                "example-profile-one",
                                "example-profile-two")
                            .targetId("example-target-one")
                            .build(),
                        DeliveryPipelineSerialPipelineStageArgs.builder()
                            .profiles()
                            .targetId("example-target-two")
                            .build())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .provider(google_beta)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    primary = gcp.clouddeploy.DeliveryPipeline("primary",
        location="us-west1",
        annotations={
            "my_first_annotation": "example-annotation-1",
            "my_second_annotation": "example-annotation-2",
        },
        description="basic description",
        labels={
            "my_first_label": "example-label-1",
            "my_second_label": "example-label-2",
        },
        project="my-project-name",
        serial_pipeline=gcp.clouddeploy.DeliveryPipelineSerialPipelineArgs(
            stages=[
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    deploy_parameters=[gcp.clouddeploy.DeliveryPipelineSerialPipelineStageDeployParameterArgs(
                        values={
                            "deployParameterKey": "deployParameterValue",
                        },
                        match_target_labels={},
                    )],
                    profiles=[
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    target_id="example-target-one",
                ),
                gcp.clouddeploy.DeliveryPipelineSerialPipelineStageArgs(
                    profiles=[],
                    target_id="example-target-two",
                ),
            ],
        ),
        opts=pulumi.ResourceOptions(provider=google_beta))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const primary = new gcp.clouddeploy.DeliveryPipeline("primary", {
        location: "us-west1",
        annotations: {
            my_first_annotation: "example-annotation-1",
            my_second_annotation: "example-annotation-2",
        },
        description: "basic description",
        labels: {
            my_first_label: "example-label-1",
            my_second_label: "example-label-2",
        },
        project: "my-project-name",
        serialPipeline: {
            stages: [
                {
                    deployParameters: [{
                        values: {
                            deployParameterKey: "deployParameterValue",
                        },
                        matchTargetLabels: {},
                    }],
                    profiles: [
                        "example-profile-one",
                        "example-profile-two",
                    ],
                    targetId: "example-target-one",
                },
                {
                    profiles: [],
                    targetId: "example-target-two",
                },
            ],
        },
    }, {
        provider: google_beta,
    });
    
    resources:
      primary:
        type: gcp:clouddeploy:DeliveryPipeline
        properties:
          location: us-west1
          annotations:
            my_first_annotation: example-annotation-1
            my_second_annotation: example-annotation-2
          description: basic description
          labels:
            my_first_label: example-label-1
            my_second_label: example-label-2
          project: my-project-name
          serialPipeline:
            stages:
              - deployParameters:
                  - values:
                      deployParameterKey: deployParameterValue
                    matchTargetLabels: {}
                profiles:
                  - example-profile-one
                  - example-profile-two
                targetId: example-target-one
              - profiles: []
                targetId: example-target-two
        options:
          provider: ${["google-beta"]}
    

    Create DeliveryPipeline Resource

    new DeliveryPipeline(name: string, args: DeliveryPipelineArgs, opts?: CustomResourceOptions);
    @overload
    def DeliveryPipeline(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         annotations: Optional[Mapping[str, str]] = None,
                         description: Optional[str] = None,
                         labels: Optional[Mapping[str, str]] = None,
                         location: Optional[str] = None,
                         name: Optional[str] = None,
                         project: Optional[str] = None,
                         serial_pipeline: Optional[DeliveryPipelineSerialPipelineArgs] = None,
                         suspended: Optional[bool] = None)
    @overload
    def DeliveryPipeline(resource_name: str,
                         args: DeliveryPipelineArgs,
                         opts: Optional[ResourceOptions] = None)
    func NewDeliveryPipeline(ctx *Context, name string, args DeliveryPipelineArgs, opts ...ResourceOption) (*DeliveryPipeline, error)
    public DeliveryPipeline(string name, DeliveryPipelineArgs args, CustomResourceOptions? opts = null)
    public DeliveryPipeline(String name, DeliveryPipelineArgs args)
    public DeliveryPipeline(String name, DeliveryPipelineArgs args, CustomResourceOptions options)
    
    type: gcp:clouddeploy:DeliveryPipeline
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args DeliveryPipelineArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DeliveryPipelineArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DeliveryPipelineArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DeliveryPipelineArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DeliveryPipelineArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    DeliveryPipeline Resource Properties

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

    Inputs

    The DeliveryPipeline resource accepts the following input properties:

    Location string

    The location for the resource

    Annotations Dictionary<string, string>

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    Description string

    Description of the DeliveryPipeline. Max length is 255 characters.

    Labels Dictionary<string, string>

    Labels are attributes that can be set and used by both the user and by Google 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 string

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    Project string

    The project for the resource

    SerialPipeline DeliveryPipelineSerialPipeline

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    Suspended bool

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    Location string

    The location for the resource

    Annotations map[string]string

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    Description string

    Description of the DeliveryPipeline. Max length is 255 characters.

    Labels map[string]string

    Labels are attributes that can be set and used by both the user and by Google 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 string

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    Project string

    The project for the resource

    SerialPipeline DeliveryPipelineSerialPipelineArgs

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    Suspended bool

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    location String

    The location for the resource

    annotations Map<String,String>

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    description String

    Description of the DeliveryPipeline. Max length is 255 characters.

    labels Map<String,String>

    Labels are attributes that can be set and used by both the user and by Google 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 String

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project String

    The project for the resource

    serialPipeline DeliveryPipelineSerialPipeline

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended Boolean

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    location string

    The location for the resource

    annotations {[key: string]: string}

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    description string

    Description of the DeliveryPipeline. Max length is 255 characters.

    labels {[key: string]: string}

    Labels are attributes that can be set and used by both the user and by Google 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 string

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project string

    The project for the resource

    serialPipeline DeliveryPipelineSerialPipeline

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended boolean

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    location str

    The location for the resource

    annotations Mapping[str, str]

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    description str

    Description of the DeliveryPipeline. Max length is 255 characters.

    labels Mapping[str, str]

    Labels are attributes that can be set and used by both the user and by Google 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 str

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project str

    The project for the resource

    serial_pipeline DeliveryPipelineSerialPipelineArgs

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended bool

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    location String

    The location for the resource

    annotations Map<String>

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    description String

    Description of the DeliveryPipeline. Max length is 255 characters.

    labels Map<String>

    Labels are attributes that can be set and used by both the user and by Google 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 String

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project String

    The project for the resource

    serialPipeline Property Map

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended Boolean

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    Outputs

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

    Conditions List<DeliveryPipelineCondition>

    Output only. Information around the state of the Delivery Pipeline.

    CreateTime string

    Output only. Time at which the pipeline was created.

    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.

    Id string

    The provider-assigned unique ID for this managed resource.

    Uid string

    Output only. Unique identifier of the DeliveryPipeline.

    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    Conditions []DeliveryPipelineCondition

    Output only. Information around the state of the Delivery Pipeline.

    CreateTime string

    Output only. Time at which the pipeline was created.

    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.

    Id string

    The provider-assigned unique ID for this managed resource.

    Uid string

    Output only. Unique identifier of the DeliveryPipeline.

    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    conditions List<DeliveryPipelineCondition>

    Output only. Information around the state of the Delivery Pipeline.

    createTime String

    Output only. Time at which the pipeline was created.

    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.

    id String

    The provider-assigned unique ID for this managed resource.

    uid String

    Output only. Unique identifier of the DeliveryPipeline.

    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    conditions DeliveryPipelineCondition[]

    Output only. Information around the state of the Delivery Pipeline.

    createTime string

    Output only. Time at which the pipeline was created.

    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.

    id string

    The provider-assigned unique ID for this managed resource.

    uid string

    Output only. Unique identifier of the DeliveryPipeline.

    updateTime string

    Output only. Most recent time at which the pipeline was updated.

    conditions Sequence[DeliveryPipelineCondition]

    Output only. Information around the state of the Delivery Pipeline.

    create_time str

    Output only. Time at which the pipeline was created.

    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.

    id str

    The provider-assigned unique ID for this managed resource.

    uid str

    Output only. Unique identifier of the DeliveryPipeline.

    update_time str

    Output only. Most recent time at which the pipeline was updated.

    conditions List<Property Map>

    Output only. Information around the state of the Delivery Pipeline.

    createTime String

    Output only. Time at which the pipeline was created.

    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.

    id String

    The provider-assigned unique ID for this managed resource.

    uid String

    Output only. Unique identifier of the DeliveryPipeline.

    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    Look up Existing DeliveryPipeline Resource

    Get an existing DeliveryPipeline resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DeliveryPipelineState, opts?: CustomResourceOptions): DeliveryPipeline
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            annotations: Optional[Mapping[str, str]] = None,
            conditions: Optional[Sequence[DeliveryPipelineConditionArgs]] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            etag: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            serial_pipeline: Optional[DeliveryPipelineSerialPipelineArgs] = None,
            suspended: Optional[bool] = None,
            uid: Optional[str] = None,
            update_time: Optional[str] = None) -> DeliveryPipeline
    func GetDeliveryPipeline(ctx *Context, name string, id IDInput, state *DeliveryPipelineState, opts ...ResourceOption) (*DeliveryPipeline, error)
    public static DeliveryPipeline Get(string name, Input<string> id, DeliveryPipelineState? state, CustomResourceOptions? opts = null)
    public static DeliveryPipeline get(String name, Output<String> id, DeliveryPipelineState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Annotations Dictionary<string, string>

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    Conditions List<DeliveryPipelineCondition>

    Output only. Information around the state of the Delivery Pipeline.

    CreateTime string

    Output only. Time at which the pipeline was created.

    Description string

    Description of the DeliveryPipeline. 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 Google 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 string

    The location for the resource

    Name string

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    Project string

    The project for the resource

    SerialPipeline DeliveryPipelineSerialPipeline

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    Suspended bool

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    Uid string

    Output only. Unique identifier of the DeliveryPipeline.

    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    Annotations map[string]string

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    Conditions []DeliveryPipelineConditionArgs

    Output only. Information around the state of the Delivery Pipeline.

    CreateTime string

    Output only. Time at which the pipeline was created.

    Description string

    Description of the DeliveryPipeline. 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 Google 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 string

    The location for the resource

    Name string

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    Project string

    The project for the resource

    SerialPipeline DeliveryPipelineSerialPipelineArgs

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    Suspended bool

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    Uid string

    Output only. Unique identifier of the DeliveryPipeline.

    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    annotations Map<String,String>

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    conditions List<DeliveryPipelineCondition>

    Output only. Information around the state of the Delivery Pipeline.

    createTime String

    Output only. Time at which the pipeline was created.

    description String

    Description of the DeliveryPipeline. 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 Google 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 String

    The location for the resource

    name String

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project String

    The project for the resource

    serialPipeline DeliveryPipelineSerialPipeline

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended Boolean

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    uid String

    Output only. Unique identifier of the DeliveryPipeline.

    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    annotations {[key: string]: string}

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    conditions DeliveryPipelineCondition[]

    Output only. Information around the state of the Delivery Pipeline.

    createTime string

    Output only. Time at which the pipeline was created.

    description string

    Description of the DeliveryPipeline. 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 Google 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 string

    The location for the resource

    name string

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project string

    The project for the resource

    serialPipeline DeliveryPipelineSerialPipeline

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended boolean

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    uid string

    Output only. Unique identifier of the DeliveryPipeline.

    updateTime string

    Output only. Most recent time at which the pipeline was updated.

    annotations Mapping[str, str]

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    conditions Sequence[DeliveryPipelineConditionArgs]

    Output only. Information around the state of the Delivery Pipeline.

    create_time str

    Output only. Time at which the pipeline was created.

    description str

    Description of the DeliveryPipeline. 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 Google 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 str

    The location for the resource

    name str

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project str

    The project for the resource

    serial_pipeline DeliveryPipelineSerialPipelineArgs

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended bool

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    uid str

    Output only. Unique identifier of the DeliveryPipeline.

    update_time str

    Output only. Most recent time at which the pipeline was updated.

    annotations Map<String>

    User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations.

    conditions List<Property Map>

    Output only. Information around the state of the Delivery Pipeline.

    createTime String

    Output only. Time at which the pipeline was created.

    description String

    Description of the DeliveryPipeline. 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 Google 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 String

    The location for the resource

    name String

    Name of the DeliveryPipeline. Format is [a-z][a-z0-9-]{0,62}.

    project String

    The project for the resource

    serialPipeline Property Map

    SerialPipeline defines a sequential set of stages for a DeliveryPipeline.

    suspended Boolean

    When suspended, no new releases or rollouts can be created, but in-progress ones will complete.

    uid String

    Output only. Unique identifier of the DeliveryPipeline.

    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    Supporting Types

    DeliveryPipelineCondition, DeliveryPipelineConditionArgs

    DeliveryPipelineConditionPipelineReadyCondition, DeliveryPipelineConditionPipelineReadyConditionArgs

    Status bool
    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    Status bool
    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    status Boolean
    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    status boolean
    updateTime string

    Output only. Most recent time at which the pipeline was updated.

    status bool
    update_time str

    Output only. Most recent time at which the pipeline was updated.

    status Boolean
    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    DeliveryPipelineConditionTargetsPresentCondition, DeliveryPipelineConditionTargetsPresentConditionArgs

    MissingTargets List<string>
    Status bool
    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    MissingTargets []string
    Status bool
    UpdateTime string

    Output only. Most recent time at which the pipeline was updated.

    missingTargets List<String>
    status Boolean
    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    missingTargets string[]
    status boolean
    updateTime string

    Output only. Most recent time at which the pipeline was updated.

    missing_targets Sequence[str]
    status bool
    update_time str

    Output only. Most recent time at which the pipeline was updated.

    missingTargets List<String>
    status Boolean
    updateTime String

    Output only. Most recent time at which the pipeline was updated.

    DeliveryPipelineConditionTargetsTypeCondition, DeliveryPipelineConditionTargetsTypeConditionArgs

    ErrorDetails string
    Status bool
    ErrorDetails string
    Status bool
    errorDetails String
    status Boolean
    errorDetails string
    status boolean
    errorDetails String
    status Boolean

    DeliveryPipelineSerialPipeline, DeliveryPipelineSerialPipelineArgs

    Stages List<DeliveryPipelineSerialPipelineStage>

    Each stage specifies configuration for a Target. The ordering of this list defines the promotion flow.

    Stages []DeliveryPipelineSerialPipelineStage

    Each stage specifies configuration for a Target. The ordering of this list defines the promotion flow.

    stages List<DeliveryPipelineSerialPipelineStage>

    Each stage specifies configuration for a Target. The ordering of this list defines the promotion flow.

    stages DeliveryPipelineSerialPipelineStage[]

    Each stage specifies configuration for a Target. The ordering of this list defines the promotion flow.

    stages Sequence[DeliveryPipelineSerialPipelineStage]

    Each stage specifies configuration for a Target. The ordering of this list defines the promotion flow.

    stages List<Property Map>

    Each stage specifies configuration for a Target. The ordering of this list defines the promotion flow.

    DeliveryPipelineSerialPipelineStage, DeliveryPipelineSerialPipelineStageArgs

    DeployParameters List<DeliveryPipelineSerialPipelineStageDeployParameter>

    Optional. The deploy parameters to use for the target in this stage.

    Profiles List<string>

    Skaffold profiles to use when rendering the manifest for this stage's Target.

    Strategy DeliveryPipelineSerialPipelineStageStrategy

    Optional. The strategy to use for a Rollout to this stage.

    TargetId 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 than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.

    DeployParameters []DeliveryPipelineSerialPipelineStageDeployParameter

    Optional. The deploy parameters to use for the target in this stage.

    Profiles []string

    Skaffold profiles to use when rendering the manifest for this stage's Target.

    Strategy DeliveryPipelineSerialPipelineStageStrategy

    Optional. The strategy to use for a Rollout to this stage.

    TargetId 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 than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.

    deployParameters List<DeliveryPipelineSerialPipelineStageDeployParameter>

    Optional. The deploy parameters to use for the target in this stage.

    profiles List<String>

    Skaffold profiles to use when rendering the manifest for this stage's Target.

    strategy DeliveryPipelineSerialPipelineStageStrategy

    Optional. The strategy to use for a Rollout to this stage.

    targetId 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 than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.

    deployParameters DeliveryPipelineSerialPipelineStageDeployParameter[]

    Optional. The deploy parameters to use for the target in this stage.

    profiles string[]

    Skaffold profiles to use when rendering the manifest for this stage's Target.

    strategy DeliveryPipelineSerialPipelineStageStrategy

    Optional. The strategy to use for a Rollout to this stage.

    targetId 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 than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.

    deploy_parameters Sequence[DeliveryPipelineSerialPipelineStageDeployParameter]

    Optional. The deploy parameters to use for the target in this stage.

    profiles Sequence[str]

    Skaffold profiles to use when rendering the manifest for this stage's Target.

    strategy DeliveryPipelineSerialPipelineStageStrategy

    Optional. The strategy to use for a Rollout to this stage.

    target_id 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 than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.

    deployParameters List<Property Map>

    Optional. The deploy parameters to use for the target in this stage.

    profiles List<String>

    Skaffold profiles to use when rendering the manifest for this stage's Target.

    strategy Property Map

    Optional. The strategy to use for a Rollout to this stage.

    targetId 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 than projects/project/locations/location/targets/my-target). The location of the Target is inferred to be the same as the location of the DeliveryPipeline that contains this Stage.

    DeliveryPipelineSerialPipelineStageDeployParameter, DeliveryPipelineSerialPipelineStageDeployParameterArgs

    Values Dictionary<string, string>

    Required. Values are deploy parameters in key-value pairs.

    MatchTargetLabels 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 map[string]string

    Required. Values are deploy parameters in key-value pairs.

    MatchTargetLabels 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 Map<String,String>

    Required. Values are deploy parameters in key-value pairs.

    matchTargetLabels 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 {[key: string]: string}

    Required. Values are deploy parameters in key-value pairs.

    matchTargetLabels {[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 Mapping[str, str]

    Required. Values are deploy parameters in key-value pairs.

    match_target_labels 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 Map<String>

    Required. Values are deploy parameters in key-value pairs.

    matchTargetLabels 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).

    DeliveryPipelineSerialPipelineStageStrategy, DeliveryPipelineSerialPipelineStageStrategyArgs

    Canary DeliveryPipelineSerialPipelineStageStrategyCanary

    Canary deployment strategy provides progressive percentage based deployments to a Target.

    Standard DeliveryPipelineSerialPipelineStageStrategyStandard

    Standard deployment strategy executes a single deploy and allows verifying the deployment.

    Canary DeliveryPipelineSerialPipelineStageStrategyCanary

    Canary deployment strategy provides progressive percentage based deployments to a Target.

    Standard DeliveryPipelineSerialPipelineStageStrategyStandard

    Standard deployment strategy executes a single deploy and allows verifying the deployment.

    canary DeliveryPipelineSerialPipelineStageStrategyCanary

    Canary deployment strategy provides progressive percentage based deployments to a Target.

    standard DeliveryPipelineSerialPipelineStageStrategyStandard

    Standard deployment strategy executes a single deploy and allows verifying the deployment.

    canary DeliveryPipelineSerialPipelineStageStrategyCanary

    Canary deployment strategy provides progressive percentage based deployments to a Target.

    standard DeliveryPipelineSerialPipelineStageStrategyStandard

    Standard deployment strategy executes a single deploy and allows verifying the deployment.

    canary DeliveryPipelineSerialPipelineStageStrategyCanary

    Canary deployment strategy provides progressive percentage based deployments to a Target.

    standard DeliveryPipelineSerialPipelineStageStrategyStandard

    Standard deployment strategy executes a single deploy and allows verifying the deployment.

    canary Property Map

    Canary deployment strategy provides progressive percentage based deployments to a Target.

    standard Property Map

    Standard deployment strategy executes a single deploy and allows verifying the deployment.

    DeliveryPipelineSerialPipelineStageStrategyCanary, DeliveryPipelineSerialPipelineStageStrategyCanaryArgs

    CanaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeployment

    Configures the progressive based deployment for a Target.

    CustomCanaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeployment

    Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.

    RuntimeConfig DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfig

    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.

    CanaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeployment

    Configures the progressive based deployment for a Target.

    CustomCanaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeployment

    Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.

    RuntimeConfig DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfig

    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.

    canaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeployment

    Configures the progressive based deployment for a Target.

    customCanaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeployment

    Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.

    runtimeConfig DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfig

    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.

    canaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeployment

    Configures the progressive based deployment for a Target.

    customCanaryDeployment DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeployment

    Configures the progressive based deployment for a Target, but allows customizing at the phase level where a phase represents each of the percentage deployments.

    runtimeConfig DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfig

    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 DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeployment

    Configures the progressive based deployment for a Target.

    custom_canary_deployment DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeployment

    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 DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfig

    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.

    canaryDeployment Property Map

    Configures the progressive based deployment for a Target.

    customCanaryDeployment 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.

    runtimeConfig 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.

    DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeployment, DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentArgs

    Percentages List<int>

    Required. 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 DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of the last phase. If this is not configured, postdeploy job will not be present.

    Predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeploy

    (Beta only) Optional. Configuration for the predeploy job of the first phase. If this is not configured, predeploy job will not be present.

    Verify bool

    Whether to run verify tests after each percentage deployment.

    Percentages []int

    Required. 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 DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of the last phase. If this is not configured, postdeploy job will not be present.

    Predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeploy

    (Beta only) Optional. Configuration for the predeploy job of the first phase. If this is not configured, predeploy job will not be present.

    Verify bool

    Whether to run verify tests after each percentage deployment.

    percentages List<Integer>

    Required. 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 DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of the last phase. If this is not configured, postdeploy job will not be present.

    predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeploy

    (Beta only) Optional. Configuration for the predeploy job of the first phase. If this is not configured, predeploy job will not be present.

    verify Boolean

    Whether to run verify tests after each percentage deployment.

    percentages number[]

    Required. 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 DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of the last phase. If this is not configured, postdeploy job will not be present.

    predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeploy

    (Beta only) Optional. Configuration for the predeploy job of the first phase. If this is not configured, predeploy job will not be present.

    verify boolean

    Whether to run verify tests after each percentage deployment.

    percentages Sequence[int]

    Required. 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 DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of the last phase. If this is not configured, postdeploy job will not be present.

    predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeploy

    (Beta only) Optional. Configuration for the predeploy job of the first phase. If this is not configured, predeploy job will not be present.

    verify bool

    Whether to run verify tests after each percentage deployment.

    percentages List<Number>

    Required. 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 Property Map

    (Beta only) Optional. Configuration for the postdeploy job of the last phase. If this is not configured, postdeploy job will not be present.

    predeploy Property Map

    (Beta only) Optional. Configuration for the predeploy job of the first phase. If this is not configured, predeploy job will not be present.

    verify Boolean

    Whether to run verify tests after each percentage deployment.

    DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeploy, DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPostdeployArgs

    Actions List<string>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    Actions []string

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions string[]

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions Sequence[str]

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeploy, DeliveryPipelineSerialPipelineStageStrategyCanaryCanaryDeploymentPredeployArgs

    Actions List<string>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    Actions []string

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions string[]

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions Sequence[str]

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeployment, DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentArgs

    PhaseConfigs List<DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfig>

    Required. Configuration for each phase in the canary deployment in the order executed.

    PhaseConfigs []DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfig

    Required. Configuration for each phase in the canary deployment in the order executed.

    phaseConfigs List<DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfig>

    Required. Configuration for each phase in the canary deployment in the order executed.

    phaseConfigs DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfig[]

    Required. Configuration for each phase in the canary deployment in the order executed.

    phase_configs Sequence[DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfig]

    Required. Configuration for each phase in the canary deployment in the order executed.

    phaseConfigs List<Property Map>

    Required. Configuration for each phase in the canary deployment in the order executed.

    DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfig, DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigArgs

    Percentage int

    Required. Percentage deployment for the phase.

    PhaseId string

    Required. 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?$.

    Postdeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of this phase. If this is not configured, postdeploy job will not be present for this phase.

    Predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeploy

    (Beta only) Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.

    Profiles 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 bool

    Whether to run verify tests after the deployment.


    Percentage int

    Required. Percentage deployment for the phase.

    PhaseId string

    Required. 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?$.

    Postdeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of this phase. If this is not configured, postdeploy job will not be present for this phase.

    Predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeploy

    (Beta only) Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.

    Profiles []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 bool

    Whether to run verify tests after the deployment.


    percentage Integer

    Required. Percentage deployment for the phase.

    phaseId String

    Required. 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?$.

    postdeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of this phase. If this is not configured, postdeploy job will not be present for this phase.

    predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeploy

    (Beta only) Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.

    profiles 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 Boolean

    Whether to run verify tests after the deployment.


    percentage number

    Required. Percentage deployment for the phase.

    phaseId string

    Required. 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?$.

    postdeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of this phase. If this is not configured, postdeploy job will not be present for this phase.

    predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeploy

    (Beta only) Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.

    profiles 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 boolean

    Whether to run verify tests after the deployment.


    percentage int

    Required. Percentage deployment for the phase.

    phase_id str

    Required. 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?$.

    postdeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job of this phase. If this is not configured, postdeploy job will not be present for this phase.

    predeploy DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeploy

    (Beta only) Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.

    profiles 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 bool

    Whether to run verify tests after the deployment.


    percentage Number

    Required. Percentage deployment for the phase.

    phaseId String

    Required. 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?$.

    postdeploy Property Map

    (Beta only) Optional. Configuration for the postdeploy job of this phase. If this is not configured, postdeploy job will not be present for this phase.

    predeploy Property Map

    (Beta only) Optional. Configuration for the predeploy job of this phase. If this is not configured, predeploy job will not be present for this phase.

    profiles 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 Boolean

    Whether to run verify tests after the deployment.


    DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeploy, DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPostdeployArgs

    Actions List<string>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    Actions []string

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions string[]

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions Sequence[str]

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeploy, DeliveryPipelineSerialPipelineStageStrategyCanaryCustomCanaryDeploymentPhaseConfigPredeployArgs

    Actions List<string>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    Actions []string

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions string[]

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions Sequence[str]

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfig, DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigArgs

    cloudRun Property Map

    Cloud Run runtime configuration.

    kubernetes Property Map

    Kubernetes runtime configuration.

    DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigCloudRun, DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigCloudRunArgs

    AutomaticTrafficControl 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.

    AutomaticTrafficControl 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.

    automaticTrafficControl 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.

    automaticTrafficControl 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 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.

    automaticTrafficControl 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.

    DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetes, DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesArgs

    gatewayServiceMesh Property Map

    Kubernetes Gateway API service mesh configuration.

    serviceNetworking Property Map

    Kubernetes Service networking configuration.

    DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMesh, DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesGatewayServiceMeshArgs

    Deployment string

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

    HttpRoute string

    Required. Name of the Gateway API HTTPRoute.

    Service string

    Required. Name of the Kubernetes Service.

    RouteUpdateWaitTime 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.

    Deployment string

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

    HttpRoute string

    Required. Name of the Gateway API HTTPRoute.

    Service string

    Required. Name of the Kubernetes Service.

    RouteUpdateWaitTime 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.

    deployment String

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

    httpRoute String

    Required. Name of the Gateway API HTTPRoute.

    service String

    Required. Name of the Kubernetes Service.

    routeUpdateWaitTime 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.

    deployment string

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

    httpRoute string

    Required. Name of the Gateway API HTTPRoute.

    service string

    Required. Name of the Kubernetes Service.

    routeUpdateWaitTime 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.

    deployment str

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

    http_route str

    Required. Name of the Gateway API HTTPRoute.

    service str

    Required. Name of the Kubernetes Service.

    route_update_wait_time 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.

    deployment String

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

    httpRoute String

    Required. Name of the Gateway API HTTPRoute.

    service String

    Required. Name of the Kubernetes Service.

    routeUpdateWaitTime 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.

    DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesServiceNetworking, DeliveryPipelineSerialPipelineStageStrategyCanaryRuntimeConfigKubernetesServiceNetworkingArgs

    Deployment string

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified Service.

    Service string

    Required. Name of the Kubernetes Service.

    DisablePodOverprovisioning 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.

    Deployment string

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified Service.

    Service string

    Required. Name of the Kubernetes Service.

    DisablePodOverprovisioning 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.

    deployment String

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified Service.

    service String

    Required. Name of the Kubernetes Service.

    disablePodOverprovisioning 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.

    deployment string

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified Service.

    service string

    Required. Name of the Kubernetes Service.

    disablePodOverprovisioning 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.

    deployment str

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified Service.

    service str

    Required. Name of the Kubernetes Service.

    disable_pod_overprovisioning 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.

    deployment String

    Required. Name of the Kubernetes Deployment whose traffic is managed by the specified Service.

    service String

    Required. Name of the Kubernetes Service.

    disablePodOverprovisioning 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.

    DeliveryPipelineSerialPipelineStageStrategyStandard, DeliveryPipelineSerialPipelineStageStrategyStandardArgs

    Postdeploy DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.

    Predeploy DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy

    (Beta only) Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.

    Verify bool

    Whether to verify a deployment.

    Postdeploy DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.

    Predeploy DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy

    (Beta only) Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.

    Verify bool

    Whether to verify a deployment.

    postdeploy DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.

    predeploy DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy

    (Beta only) Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.

    verify Boolean

    Whether to verify a deployment.

    postdeploy DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.

    predeploy DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy

    (Beta only) Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.

    verify boolean

    Whether to verify a deployment.

    postdeploy DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy

    (Beta only) Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.

    predeploy DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy

    (Beta only) Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.

    verify bool

    Whether to verify a deployment.

    postdeploy Property Map

    (Beta only) Optional. Configuration for the postdeploy job. If this is not configured, postdeploy job will not be present.

    predeploy Property Map

    (Beta only) Optional. Configuration for the predeploy job. If this is not configured, predeploy job will not be present.

    verify Boolean

    Whether to verify a deployment.

    DeliveryPipelineSerialPipelineStageStrategyStandardPostdeploy, DeliveryPipelineSerialPipelineStageStrategyStandardPostdeployArgs

    Actions List<string>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    Actions []string

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions string[]

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions Sequence[str]

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the postdeploy job.

    DeliveryPipelineSerialPipelineStageStrategyStandardPredeploy, DeliveryPipelineSerialPipelineStageStrategyStandardPredeployArgs

    Actions List<string>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    Actions []string

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions string[]

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions Sequence[str]

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    actions List<String>

    Optional. A sequence of skaffold custom actions to invoke during execution of the predeploy job.

    Import

    DeliveryPipeline can be imported using any of these accepted formats

     $ pulumi import gcp:clouddeploy/deliveryPipeline:DeliveryPipeline default projects/{{project}}/locations/{{location}}/deliveryPipelines/{{name}}
    
     $ pulumi import gcp:clouddeploy/deliveryPipeline:DeliveryPipeline default {{project}}/{{location}}/{{name}}
    
     $ pulumi import gcp:clouddeploy/deliveryPipeline:DeliveryPipeline default {{location}}/{{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the google-beta Terraform Provider.

    gcp logo
    Google Cloud Classic v6.67.0 published on Wednesday, Sep 27, 2023 by Pulumi