gcp.clouddeploy.Automation
Explore with Pulumi AI
An Automation enables the automation of manually driven actions for a Delivery Pipeline, which includes Release promotion amongst Targets, Rollout repair and Rollout deployment strategy advancement.
To get more information about Automation, see:
- API documentation
- How-to Guides
Example Usage
Clouddeploy Automation Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const pipeline = new gcp.clouddeploy.DeliveryPipeline("pipeline", {
    name: "cd-pipeline",
    location: "us-central1",
    serialPipeline: {
        stages: [{
            targetId: "test",
            profiles: [],
        }],
    },
});
const b_automation = new gcp.clouddeploy.Automation("b-automation", {
    name: "cd-automation",
    project: pipeline.project,
    location: pipeline.location,
    deliveryPipeline: pipeline.name,
    serviceAccount: "my@service-account.com",
    selector: {
        targets: [{
            id: "*",
        }],
    },
    suspended: false,
    rules: [{
        promoteReleaseRule: {
            id: "promote-release",
        },
    }],
});
import pulumi
import pulumi_gcp as gcp
pipeline = gcp.clouddeploy.DeliveryPipeline("pipeline",
    name="cd-pipeline",
    location="us-central1",
    serial_pipeline={
        "stages": [{
            "target_id": "test",
            "profiles": [],
        }],
    })
b_automation = gcp.clouddeploy.Automation("b-automation",
    name="cd-automation",
    project=pipeline.project,
    location=pipeline.location,
    delivery_pipeline=pipeline.name,
    service_account="my@service-account.com",
    selector={
        "targets": [{
            "id": "*",
        }],
    },
    suspended=False,
    rules=[{
        "promote_release_rule": {
            "id": "promote-release",
        },
    }])
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/clouddeploy"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		pipeline, err := clouddeploy.NewDeliveryPipeline(ctx, "pipeline", &clouddeploy.DeliveryPipelineArgs{
			Name:     pulumi.String("cd-pipeline"),
			Location: pulumi.String("us-central1"),
			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
						TargetId: pulumi.String("test"),
						Profiles: pulumi.StringArray{},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = clouddeploy.NewAutomation(ctx, "b-automation", &clouddeploy.AutomationArgs{
			Name:             pulumi.String("cd-automation"),
			Project:          pipeline.Project,
			Location:         pipeline.Location,
			DeliveryPipeline: pipeline.Name,
			ServiceAccount:   pulumi.String("my@service-account.com"),
			Selector: &clouddeploy.AutomationSelectorArgs{
				Targets: clouddeploy.AutomationSelectorTargetArray{
					&clouddeploy.AutomationSelectorTargetArgs{
						Id: pulumi.String("*"),
					},
				},
			},
			Suspended: pulumi.Bool(false),
			Rules: clouddeploy.AutomationRuleArray{
				&clouddeploy.AutomationRuleArgs{
					PromoteReleaseRule: &clouddeploy.AutomationRulePromoteReleaseRuleArgs{
						Id: pulumi.String("promote-release"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var pipeline = new Gcp.CloudDeploy.DeliveryPipeline("pipeline", new()
    {
        Name = "cd-pipeline",
        Location = "us-central1",
        SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
        {
            Stages = new[]
            {
                new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                {
                    TargetId = "test",
                    Profiles = new() { },
                },
            },
        },
    });
    var b_automation = new Gcp.CloudDeploy.Automation("b-automation", new()
    {
        Name = "cd-automation",
        Project = pipeline.Project,
        Location = pipeline.Location,
        DeliveryPipeline = pipeline.Name,
        ServiceAccount = "my@service-account.com",
        Selector = new Gcp.CloudDeploy.Inputs.AutomationSelectorArgs
        {
            Targets = new[]
            {
                new Gcp.CloudDeploy.Inputs.AutomationSelectorTargetArgs
                {
                    Id = "*",
                },
            },
        },
        Suspended = false,
        Rules = new[]
        {
            new Gcp.CloudDeploy.Inputs.AutomationRuleArgs
            {
                PromoteReleaseRule = new Gcp.CloudDeploy.Inputs.AutomationRulePromoteReleaseRuleArgs
                {
                    Id = "promote-release",
                },
            },
        },
    });
});
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.gcp.clouddeploy.Automation;
import com.pulumi.gcp.clouddeploy.AutomationArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationSelectorArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationRuleArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationRulePromoteReleaseRuleArgs;
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 pipeline = new DeliveryPipeline("pipeline", DeliveryPipelineArgs.builder()
            .name("cd-pipeline")
            .location("us-central1")
            .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                .stages(DeliveryPipelineSerialPipelineStageArgs.builder()
                    .targetId("test")
                    .profiles()
                    .build())
                .build())
            .build());
        var b_automation = new Automation("b-automation", AutomationArgs.builder()
            .name("cd-automation")
            .project(pipeline.project())
            .location(pipeline.location())
            .deliveryPipeline(pipeline.name())
            .serviceAccount("my@service-account.com")
            .selector(AutomationSelectorArgs.builder()
                .targets(AutomationSelectorTargetArgs.builder()
                    .id("*")
                    .build())
                .build())
            .suspended(false)
            .rules(AutomationRuleArgs.builder()
                .promoteReleaseRule(AutomationRulePromoteReleaseRuleArgs.builder()
                    .id("promote-release")
                    .build())
                .build())
            .build());
    }
}
resources:
  b-automation:
    type: gcp:clouddeploy:Automation
    properties:
      name: cd-automation
      project: ${pipeline.project}
      location: ${pipeline.location}
      deliveryPipeline: ${pipeline.name}
      serviceAccount: my@service-account.com
      selector:
        targets:
          - id: '*'
      suspended: false
      rules:
        - promoteReleaseRule:
            id: promote-release
  pipeline:
    type: gcp:clouddeploy:DeliveryPipeline
    properties:
      name: cd-pipeline
      location: us-central1
      serialPipeline:
        stages:
          - targetId: test
            profiles: []
Clouddeploy Automation Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const pipeline = new gcp.clouddeploy.DeliveryPipeline("pipeline", {
    name: "cd-pipeline",
    location: "us-central1",
    serialPipeline: {
        stages: [{
            targetId: "test",
            profiles: ["test-profile"],
        }],
    },
});
const f_automation = new gcp.clouddeploy.Automation("f-automation", {
    name: "cd-automation",
    location: "us-central1",
    deliveryPipeline: pipeline.name,
    serviceAccount: "my@service-account.com",
    annotations: {
        my_first_annotation: "example-annotation-1",
        my_second_annotation: "example-annotation-2",
    },
    labels: {
        my_first_label: "example-label-1",
        my_second_label: "example-label-2",
    },
    description: "automation resource",
    selector: {
        targets: [{
            id: "test",
            labels: {
                foo: "bar",
            },
        }],
    },
    suspended: true,
    rules: [
        {
            promoteReleaseRule: {
                id: "promote-release",
                wait: "200s",
                destinationTargetId: "@next",
                destinationPhase: "stable",
            },
        },
        {
            advanceRolloutRule: {
                id: "advance-rollout",
                sourcePhases: ["deploy"],
                wait: "200s",
            },
        },
    ],
});
import pulumi
import pulumi_gcp as gcp
pipeline = gcp.clouddeploy.DeliveryPipeline("pipeline",
    name="cd-pipeline",
    location="us-central1",
    serial_pipeline={
        "stages": [{
            "target_id": "test",
            "profiles": ["test-profile"],
        }],
    })
f_automation = gcp.clouddeploy.Automation("f-automation",
    name="cd-automation",
    location="us-central1",
    delivery_pipeline=pipeline.name,
    service_account="my@service-account.com",
    annotations={
        "my_first_annotation": "example-annotation-1",
        "my_second_annotation": "example-annotation-2",
    },
    labels={
        "my_first_label": "example-label-1",
        "my_second_label": "example-label-2",
    },
    description="automation resource",
    selector={
        "targets": [{
            "id": "test",
            "labels": {
                "foo": "bar",
            },
        }],
    },
    suspended=True,
    rules=[
        {
            "promote_release_rule": {
                "id": "promote-release",
                "wait": "200s",
                "destination_target_id": "@next",
                "destination_phase": "stable",
            },
        },
        {
            "advance_rollout_rule": {
                "id": "advance-rollout",
                "source_phases": ["deploy"],
                "wait": "200s",
            },
        },
    ])
package main
import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/clouddeploy"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		pipeline, err := clouddeploy.NewDeliveryPipeline(ctx, "pipeline", &clouddeploy.DeliveryPipelineArgs{
			Name:     pulumi.String("cd-pipeline"),
			Location: pulumi.String("us-central1"),
			SerialPipeline: &clouddeploy.DeliveryPipelineSerialPipelineArgs{
				Stages: clouddeploy.DeliveryPipelineSerialPipelineStageArray{
					&clouddeploy.DeliveryPipelineSerialPipelineStageArgs{
						TargetId: pulumi.String("test"),
						Profiles: pulumi.StringArray{
							pulumi.String("test-profile"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		_, err = clouddeploy.NewAutomation(ctx, "f-automation", &clouddeploy.AutomationArgs{
			Name:             pulumi.String("cd-automation"),
			Location:         pulumi.String("us-central1"),
			DeliveryPipeline: pipeline.Name,
			ServiceAccount:   pulumi.String("my@service-account.com"),
			Annotations: pulumi.StringMap{
				"my_first_annotation":  pulumi.String("example-annotation-1"),
				"my_second_annotation": pulumi.String("example-annotation-2"),
			},
			Labels: pulumi.StringMap{
				"my_first_label":  pulumi.String("example-label-1"),
				"my_second_label": pulumi.String("example-label-2"),
			},
			Description: pulumi.String("automation resource"),
			Selector: &clouddeploy.AutomationSelectorArgs{
				Targets: clouddeploy.AutomationSelectorTargetArray{
					&clouddeploy.AutomationSelectorTargetArgs{
						Id: pulumi.String("test"),
						Labels: pulumi.StringMap{
							"foo": pulumi.String("bar"),
						},
					},
				},
			},
			Suspended: pulumi.Bool(true),
			Rules: clouddeploy.AutomationRuleArray{
				&clouddeploy.AutomationRuleArgs{
					PromoteReleaseRule: &clouddeploy.AutomationRulePromoteReleaseRuleArgs{
						Id:                  pulumi.String("promote-release"),
						Wait:                pulumi.String("200s"),
						DestinationTargetId: pulumi.String("@next"),
						DestinationPhase:    pulumi.String("stable"),
					},
				},
				&clouddeploy.AutomationRuleArgs{
					AdvanceRolloutRule: &clouddeploy.AutomationRuleAdvanceRolloutRuleArgs{
						Id: pulumi.String("advance-rollout"),
						SourcePhases: pulumi.StringArray{
							pulumi.String("deploy"),
						},
						Wait: pulumi.String("200s"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() => 
{
    var pipeline = new Gcp.CloudDeploy.DeliveryPipeline("pipeline", new()
    {
        Name = "cd-pipeline",
        Location = "us-central1",
        SerialPipeline = new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineArgs
        {
            Stages = new[]
            {
                new Gcp.CloudDeploy.Inputs.DeliveryPipelineSerialPipelineStageArgs
                {
                    TargetId = "test",
                    Profiles = new[]
                    {
                        "test-profile",
                    },
                },
            },
        },
    });
    var f_automation = new Gcp.CloudDeploy.Automation("f-automation", new()
    {
        Name = "cd-automation",
        Location = "us-central1",
        DeliveryPipeline = pipeline.Name,
        ServiceAccount = "my@service-account.com",
        Annotations = 
        {
            { "my_first_annotation", "example-annotation-1" },
            { "my_second_annotation", "example-annotation-2" },
        },
        Labels = 
        {
            { "my_first_label", "example-label-1" },
            { "my_second_label", "example-label-2" },
        },
        Description = "automation resource",
        Selector = new Gcp.CloudDeploy.Inputs.AutomationSelectorArgs
        {
            Targets = new[]
            {
                new Gcp.CloudDeploy.Inputs.AutomationSelectorTargetArgs
                {
                    Id = "test",
                    Labels = 
                    {
                        { "foo", "bar" },
                    },
                },
            },
        },
        Suspended = true,
        Rules = new[]
        {
            new Gcp.CloudDeploy.Inputs.AutomationRuleArgs
            {
                PromoteReleaseRule = new Gcp.CloudDeploy.Inputs.AutomationRulePromoteReleaseRuleArgs
                {
                    Id = "promote-release",
                    Wait = "200s",
                    DestinationTargetId = "@next",
                    DestinationPhase = "stable",
                },
            },
            new Gcp.CloudDeploy.Inputs.AutomationRuleArgs
            {
                AdvanceRolloutRule = new Gcp.CloudDeploy.Inputs.AutomationRuleAdvanceRolloutRuleArgs
                {
                    Id = "advance-rollout",
                    SourcePhases = new[]
                    {
                        "deploy",
                    },
                    Wait = "200s",
                },
            },
        },
    });
});
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.gcp.clouddeploy.Automation;
import com.pulumi.gcp.clouddeploy.AutomationArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationSelectorArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationRuleArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationRulePromoteReleaseRuleArgs;
import com.pulumi.gcp.clouddeploy.inputs.AutomationRuleAdvanceRolloutRuleArgs;
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 pipeline = new DeliveryPipeline("pipeline", DeliveryPipelineArgs.builder()
            .name("cd-pipeline")
            .location("us-central1")
            .serialPipeline(DeliveryPipelineSerialPipelineArgs.builder()
                .stages(DeliveryPipelineSerialPipelineStageArgs.builder()
                    .targetId("test")
                    .profiles("test-profile")
                    .build())
                .build())
            .build());
        var f_automation = new Automation("f-automation", AutomationArgs.builder()
            .name("cd-automation")
            .location("us-central1")
            .deliveryPipeline(pipeline.name())
            .serviceAccount("my@service-account.com")
            .annotations(Map.ofEntries(
                Map.entry("my_first_annotation", "example-annotation-1"),
                Map.entry("my_second_annotation", "example-annotation-2")
            ))
            .labels(Map.ofEntries(
                Map.entry("my_first_label", "example-label-1"),
                Map.entry("my_second_label", "example-label-2")
            ))
            .description("automation resource")
            .selector(AutomationSelectorArgs.builder()
                .targets(AutomationSelectorTargetArgs.builder()
                    .id("test")
                    .labels(Map.of("foo", "bar"))
                    .build())
                .build())
            .suspended(true)
            .rules(            
                AutomationRuleArgs.builder()
                    .promoteReleaseRule(AutomationRulePromoteReleaseRuleArgs.builder()
                        .id("promote-release")
                        .wait("200s")
                        .destinationTargetId("@next")
                        .destinationPhase("stable")
                        .build())
                    .build(),
                AutomationRuleArgs.builder()
                    .advanceRolloutRule(AutomationRuleAdvanceRolloutRuleArgs.builder()
                        .id("advance-rollout")
                        .sourcePhases("deploy")
                        .wait("200s")
                        .build())
                    .build())
            .build());
    }
}
resources:
  f-automation:
    type: gcp:clouddeploy:Automation
    properties:
      name: cd-automation
      location: us-central1
      deliveryPipeline: ${pipeline.name}
      serviceAccount: my@service-account.com
      annotations:
        my_first_annotation: example-annotation-1
        my_second_annotation: example-annotation-2
      labels:
        my_first_label: example-label-1
        my_second_label: example-label-2
      description: automation resource
      selector:
        targets:
          - id: test
            labels:
              foo: bar
      suspended: true
      rules:
        - promoteReleaseRule:
            id: promote-release
            wait: 200s
            destinationTargetId: '@next'
            destinationPhase: stable
        - advanceRolloutRule:
            id: advance-rollout
            sourcePhases:
              - deploy
            wait: 200s
  pipeline:
    type: gcp:clouddeploy:DeliveryPipeline
    properties:
      name: cd-pipeline
      location: us-central1
      serialPipeline:
        stages:
          - targetId: test
            profiles:
              - test-profile
Create Automation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Automation(name: string, args: AutomationArgs, opts?: CustomResourceOptions);@overload
def Automation(resource_name: str,
               args: AutomationArgs,
               opts: Optional[ResourceOptions] = None)
@overload
def Automation(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               delivery_pipeline: Optional[str] = None,
               location: Optional[str] = None,
               rules: Optional[Sequence[AutomationRuleArgs]] = None,
               selector: Optional[AutomationSelectorArgs] = None,
               service_account: Optional[str] = None,
               annotations: Optional[Mapping[str, str]] = None,
               description: Optional[str] = None,
               labels: Optional[Mapping[str, str]] = None,
               name: Optional[str] = None,
               project: Optional[str] = None,
               suspended: Optional[bool] = None)func NewAutomation(ctx *Context, name string, args AutomationArgs, opts ...ResourceOption) (*Automation, error)public Automation(string name, AutomationArgs args, CustomResourceOptions? opts = null)
public Automation(String name, AutomationArgs args)
public Automation(String name, AutomationArgs args, CustomResourceOptions options)
type: gcp:clouddeploy:Automation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AutomationArgs
- 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 AutomationArgs
- 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 AutomationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutomationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutomationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var automationResource = new Gcp.CloudDeploy.Automation("automationResource", new()
{
    DeliveryPipeline = "string",
    Location = "string",
    Rules = new[]
    {
        new Gcp.CloudDeploy.Inputs.AutomationRuleArgs
        {
            AdvanceRolloutRule = new Gcp.CloudDeploy.Inputs.AutomationRuleAdvanceRolloutRuleArgs
            {
                Id = "string",
                SourcePhases = new[]
                {
                    "string",
                },
                Wait = "string",
            },
            PromoteReleaseRule = new Gcp.CloudDeploy.Inputs.AutomationRulePromoteReleaseRuleArgs
            {
                Id = "string",
                DestinationPhase = "string",
                DestinationTargetId = "string",
                Wait = "string",
            },
        },
    },
    Selector = new Gcp.CloudDeploy.Inputs.AutomationSelectorArgs
    {
        Targets = new[]
        {
            new Gcp.CloudDeploy.Inputs.AutomationSelectorTargetArgs
            {
                Id = "string",
                Labels = 
                {
                    { "string", "string" },
                },
            },
        },
    },
    ServiceAccount = "string",
    Annotations = 
    {
        { "string", "string" },
    },
    Description = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Name = "string",
    Project = "string",
    Suspended = false,
});
example, err := clouddeploy.NewAutomation(ctx, "automationResource", &clouddeploy.AutomationArgs{
	DeliveryPipeline: pulumi.String("string"),
	Location:         pulumi.String("string"),
	Rules: clouddeploy.AutomationRuleArray{
		&clouddeploy.AutomationRuleArgs{
			AdvanceRolloutRule: &clouddeploy.AutomationRuleAdvanceRolloutRuleArgs{
				Id: pulumi.String("string"),
				SourcePhases: pulumi.StringArray{
					pulumi.String("string"),
				},
				Wait: pulumi.String("string"),
			},
			PromoteReleaseRule: &clouddeploy.AutomationRulePromoteReleaseRuleArgs{
				Id:                  pulumi.String("string"),
				DestinationPhase:    pulumi.String("string"),
				DestinationTargetId: pulumi.String("string"),
				Wait:                pulumi.String("string"),
			},
		},
	},
	Selector: &clouddeploy.AutomationSelectorArgs{
		Targets: clouddeploy.AutomationSelectorTargetArray{
			&clouddeploy.AutomationSelectorTargetArgs{
				Id: pulumi.String("string"),
				Labels: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
		},
	},
	ServiceAccount: pulumi.String("string"),
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name:      pulumi.String("string"),
	Project:   pulumi.String("string"),
	Suspended: pulumi.Bool(false),
})
var automationResource = new Automation("automationResource", AutomationArgs.builder()
    .deliveryPipeline("string")
    .location("string")
    .rules(AutomationRuleArgs.builder()
        .advanceRolloutRule(AutomationRuleAdvanceRolloutRuleArgs.builder()
            .id("string")
            .sourcePhases("string")
            .wait("string")
            .build())
        .promoteReleaseRule(AutomationRulePromoteReleaseRuleArgs.builder()
            .id("string")
            .destinationPhase("string")
            .destinationTargetId("string")
            .wait("string")
            .build())
        .build())
    .selector(AutomationSelectorArgs.builder()
        .targets(AutomationSelectorTargetArgs.builder()
            .id("string")
            .labels(Map.of("string", "string"))
            .build())
        .build())
    .serviceAccount("string")
    .annotations(Map.of("string", "string"))
    .description("string")
    .labels(Map.of("string", "string"))
    .name("string")
    .project("string")
    .suspended(false)
    .build());
automation_resource = gcp.clouddeploy.Automation("automationResource",
    delivery_pipeline="string",
    location="string",
    rules=[{
        "advance_rollout_rule": {
            "id": "string",
            "source_phases": ["string"],
            "wait": "string",
        },
        "promote_release_rule": {
            "id": "string",
            "destination_phase": "string",
            "destination_target_id": "string",
            "wait": "string",
        },
    }],
    selector={
        "targets": [{
            "id": "string",
            "labels": {
                "string": "string",
            },
        }],
    },
    service_account="string",
    annotations={
        "string": "string",
    },
    description="string",
    labels={
        "string": "string",
    },
    name="string",
    project="string",
    suspended=False)
const automationResource = new gcp.clouddeploy.Automation("automationResource", {
    deliveryPipeline: "string",
    location: "string",
    rules: [{
        advanceRolloutRule: {
            id: "string",
            sourcePhases: ["string"],
            wait: "string",
        },
        promoteReleaseRule: {
            id: "string",
            destinationPhase: "string",
            destinationTargetId: "string",
            wait: "string",
        },
    }],
    selector: {
        targets: [{
            id: "string",
            labels: {
                string: "string",
            },
        }],
    },
    serviceAccount: "string",
    annotations: {
        string: "string",
    },
    description: "string",
    labels: {
        string: "string",
    },
    name: "string",
    project: "string",
    suspended: false,
});
type: gcp:clouddeploy:Automation
properties:
    annotations:
        string: string
    deliveryPipeline: string
    description: string
    labels:
        string: string
    location: string
    name: string
    project: string
    rules:
        - advanceRolloutRule:
            id: string
            sourcePhases:
                - string
            wait: string
          promoteReleaseRule:
            destinationPhase: string
            destinationTargetId: string
            id: string
            wait: string
    selector:
        targets:
            - id: string
              labels:
                string: string
    serviceAccount: string
    suspended: false
Automation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Automation resource accepts the following input properties:
- DeliveryPipeline string
- The delivery_pipeline for the resource
- Location string
- The location for the resource
- Rules
List<AutomationRule> 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- Selector
AutomationSelector 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- ServiceAccount string
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- Annotations Dictionary<string, string>
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- Description string
- Optional. Description of the 'Automation'. Max length is 255 characters.
- Labels Dictionary<string, string>
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- Name string
- Name of the Automation.
- Project string
- Suspended bool
- Optional. When Suspended, automation is deactivated from execution.
- DeliveryPipeline string
- The delivery_pipeline for the resource
- Location string
- The location for the resource
- Rules
[]AutomationRule Args 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- Selector
AutomationSelector Args 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- ServiceAccount string
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- Annotations map[string]string
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- Description string
- Optional. Description of the 'Automation'. Max length is 255 characters.
- Labels map[string]string
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- Name string
- Name of the Automation.
- Project string
- Suspended bool
- Optional. When Suspended, automation is deactivated from execution.
- deliveryPipeline String
- The delivery_pipeline for the resource
- location String
- The location for the resource
- rules
List<AutomationRule> 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector
AutomationSelector 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- serviceAccount String
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- annotations Map<String,String>
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- description String
- Optional. Description of the 'Automation'. Max length is 255 characters.
- labels Map<String,String>
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- name String
- Name of the Automation.
- project String
- suspended Boolean
- Optional. When Suspended, automation is deactivated from execution.
- deliveryPipeline string
- The delivery_pipeline for the resource
- location string
- The location for the resource
- rules
AutomationRule[] 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector
AutomationSelector 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- serviceAccount string
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- annotations {[key: string]: string}
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- description string
- Optional. Description of the 'Automation'. Max length is 255 characters.
- labels {[key: string]: string}
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- name string
- Name of the Automation.
- project string
- suspended boolean
- Optional. When Suspended, automation is deactivated from execution.
- delivery_pipeline str
- The delivery_pipeline for the resource
- location str
- The location for the resource
- rules
Sequence[AutomationRule Args] 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector
AutomationSelector Args 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- service_account str
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- annotations Mapping[str, str]
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- description str
- Optional. Description of the 'Automation'. Max length is 255 characters.
- labels Mapping[str, str]
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- name str
- Name of the Automation.
- project str
- suspended bool
- Optional. When Suspended, automation is deactivated from execution.
- deliveryPipeline String
- The delivery_pipeline for the resource
- location String
- The location for the resource
- rules List<Property Map>
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector Property Map
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- serviceAccount String
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- annotations Map<String>
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- description String
- Optional. Description of the 'Automation'. Max length is 255 characters.
- labels Map<String>
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- name String
- Name of the Automation.
- project String
- suspended Boolean
- Optional. When Suspended, automation is deactivated from execution.
Outputs
All input properties are implicitly available as output properties. Additionally, the Automation resource produces the following output properties:
- CreateTime string
- Output only. Time at which the automation was created.
- EffectiveAnnotations Dictionary<string, string>
- EffectiveLabels Dictionary<string, string>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Etag string
- Optional. The weak etag of the Automationresource. 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.
- PulumiLabels Dictionary<string, string>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- Uid string
- Output only. Unique identifier of the Automation.
- UpdateTime string
- Output only. Time at which the automation was updated.
- CreateTime string
- Output only. Time at which the automation was created.
- EffectiveAnnotations map[string]string
- EffectiveLabels map[string]string
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Etag string
- Optional. The weak etag of the Automationresource. 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.
- PulumiLabels map[string]string
- The combination of labels configured directly on the resource and default labels configured on the provider.
- Uid string
- Output only. Unique identifier of the Automation.
- UpdateTime string
- Output only. Time at which the automation was updated.
- createTime String
- Output only. Time at which the automation was created.
- effectiveAnnotations Map<String,String>
- effectiveLabels Map<String,String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag String
- Optional. The weak etag of the Automationresource. 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.
- pulumiLabels Map<String,String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- uid String
- Output only. Unique identifier of the Automation.
- updateTime String
- Output only. Time at which the automation was updated.
- createTime string
- Output only. Time at which the automation was created.
- effectiveAnnotations {[key: string]: string}
- effectiveLabels {[key: string]: string}
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag string
- Optional. The weak etag of the Automationresource. 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.
- pulumiLabels {[key: string]: string}
- The combination of labels configured directly on the resource and default labels configured on the provider.
- uid string
- Output only. Unique identifier of the Automation.
- updateTime string
- Output only. Time at which the automation was updated.
- create_time str
- Output only. Time at which the automation was created.
- effective_annotations Mapping[str, str]
- effective_labels Mapping[str, str]
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag str
- Optional. The weak etag of the Automationresource. 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.
- pulumi_labels Mapping[str, str]
- The combination of labels configured directly on the resource and default labels configured on the provider.
- uid str
- Output only. Unique identifier of the Automation.
- update_time str
- Output only. Time at which the automation was updated.
- createTime String
- Output only. Time at which the automation was created.
- effectiveAnnotations Map<String>
- effectiveLabels Map<String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag String
- Optional. The weak etag of the Automationresource. 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.
- pulumiLabels Map<String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- uid String
- Output only. Unique identifier of the Automation.
- updateTime String
- Output only. Time at which the automation was updated.
Look up Existing Automation Resource
Get an existing Automation 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?: AutomationState, opts?: CustomResourceOptions): Automation@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        annotations: Optional[Mapping[str, str]] = None,
        create_time: Optional[str] = None,
        delivery_pipeline: Optional[str] = None,
        description: Optional[str] = None,
        effective_annotations: Optional[Mapping[str, str]] = None,
        effective_labels: Optional[Mapping[str, str]] = None,
        etag: Optional[str] = None,
        labels: Optional[Mapping[str, str]] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        project: Optional[str] = None,
        pulumi_labels: Optional[Mapping[str, str]] = None,
        rules: Optional[Sequence[AutomationRuleArgs]] = None,
        selector: Optional[AutomationSelectorArgs] = None,
        service_account: Optional[str] = None,
        suspended: Optional[bool] = None,
        uid: Optional[str] = None,
        update_time: Optional[str] = None) -> Automationfunc GetAutomation(ctx *Context, name string, id IDInput, state *AutomationState, opts ...ResourceOption) (*Automation, error)public static Automation Get(string name, Input<string> id, AutomationState? state, CustomResourceOptions? opts = null)public static Automation get(String name, Output<String> id, AutomationState state, CustomResourceOptions options)resources:  _:    type: gcp:clouddeploy:Automation    get:      id: ${id}- 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.
- Annotations Dictionary<string, string>
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- CreateTime string
- Output only. Time at which the automation was created.
- DeliveryPipeline string
- The delivery_pipeline for the resource
- Description string
- Optional. Description of the 'Automation'. Max length is 255 characters.
- EffectiveAnnotations Dictionary<string, string>
- EffectiveLabels Dictionary<string, string>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Etag string
- Optional. The weak etag of the Automationresource. 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>
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- Location string
- The location for the resource
- Name string
- Name of the Automation.
- Project string
- PulumiLabels Dictionary<string, string>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- Rules
List<AutomationRule> 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- Selector
AutomationSelector 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- ServiceAccount string
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- Suspended bool
- Optional. When Suspended, automation is deactivated from execution.
- Uid string
- Output only. Unique identifier of the Automation.
- UpdateTime string
- Output only. Time at which the automation was updated.
- Annotations map[string]string
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- CreateTime string
- Output only. Time at which the automation was created.
- DeliveryPipeline string
- The delivery_pipeline for the resource
- Description string
- Optional. Description of the 'Automation'. Max length is 255 characters.
- EffectiveAnnotations map[string]string
- EffectiveLabels map[string]string
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Etag string
- Optional. The weak etag of the Automationresource. 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
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- Location string
- The location for the resource
- Name string
- Name of the Automation.
- Project string
- PulumiLabels map[string]string
- The combination of labels configured directly on the resource and default labels configured on the provider.
- Rules
[]AutomationRule Args 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- Selector
AutomationSelector Args 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- ServiceAccount string
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- Suspended bool
- Optional. When Suspended, automation is deactivated from execution.
- Uid string
- Output only. Unique identifier of the Automation.
- UpdateTime string
- Output only. Time at which the automation was updated.
- annotations Map<String,String>
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- createTime String
- Output only. Time at which the automation was created.
- deliveryPipeline String
- The delivery_pipeline for the resource
- description String
- Optional. Description of the 'Automation'. Max length is 255 characters.
- effectiveAnnotations Map<String,String>
- effectiveLabels Map<String,String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag String
- Optional. The weak etag of the Automationresource. 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>
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- location String
- The location for the resource
- name String
- Name of the Automation.
- project String
- pulumiLabels Map<String,String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- rules
List<AutomationRule> 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector
AutomationSelector 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- serviceAccount String
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- suspended Boolean
- Optional. When Suspended, automation is deactivated from execution.
- uid String
- Output only. Unique identifier of the Automation.
- updateTime String
- Output only. Time at which the automation was updated.
- annotations {[key: string]: string}
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- createTime string
- Output only. Time at which the automation was created.
- deliveryPipeline string
- The delivery_pipeline for the resource
- description string
- Optional. Description of the 'Automation'. Max length is 255 characters.
- effectiveAnnotations {[key: string]: string}
- effectiveLabels {[key: string]: string}
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag string
- Optional. The weak etag of the Automationresource. 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}
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- location string
- The location for the resource
- name string
- Name of the Automation.
- project string
- pulumiLabels {[key: string]: string}
- The combination of labels configured directly on the resource and default labels configured on the provider.
- rules
AutomationRule[] 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector
AutomationSelector 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- serviceAccount string
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- suspended boolean
- Optional. When Suspended, automation is deactivated from execution.
- uid string
- Output only. Unique identifier of the Automation.
- updateTime string
- Output only. Time at which the automation was updated.
- annotations Mapping[str, str]
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- create_time str
- Output only. Time at which the automation was created.
- delivery_pipeline str
- The delivery_pipeline for the resource
- description str
- Optional. Description of the 'Automation'. Max length is 255 characters.
- effective_annotations Mapping[str, str]
- effective_labels Mapping[str, str]
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag str
- Optional. The weak etag of the Automationresource. 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]
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- location str
- The location for the resource
- name str
- Name of the Automation.
- project str
- pulumi_labels Mapping[str, str]
- The combination of labels configured directly on the resource and default labels configured on the provider.
- rules
Sequence[AutomationRule Args] 
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector
AutomationSelector Args 
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- service_account str
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- suspended bool
- Optional. When Suspended, automation is deactivated from execution.
- uid str
- Output only. Unique identifier of the Automation.
- update_time str
- Output only. Time at which the automation was updated.
- annotations Map<String>
- Optional. User annotations. These attributes can only be set and used by the user, and not by Cloud Deploy. Annotations must meet the following constraints: * Annotations are key/value pairs. * Valid annotation keys have two segments: an optional prefix and name, separated by a slash ('/'). * The name segment is required and must be 63 characters or less, beginning and ending with an alphanumeric character ('[a-z0-9A-Z]') with dashes ('-'), underscores ('_'), dots ('.'), and alphanumerics between. * The prefix is optional. If specified, the prefix must be a DNS subdomain: a series of DNS labels separated by dots('.'), not longer than 253 characters in total, followed by a slash ('/'). See https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/#syntax-and-character-set for more details. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field 'effective_annotations' for all of the annotations present on the resource.
- createTime String
- Output only. Time at which the automation was created.
- deliveryPipeline String
- The delivery_pipeline for the resource
- description String
- Optional. Description of the 'Automation'. Max length is 255 characters.
- effectiveAnnotations Map<String>
- effectiveLabels Map<String>
- All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- etag String
- Optional. The weak etag of the Automationresource. 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>
- Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 63 characters. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
- location String
- The location for the resource
- name String
- Name of the Automation.
- project String
- pulumiLabels Map<String>
- The combination of labels configured directly on the resource and default labels configured on the provider.
- rules List<Property Map>
- Required. List of Automation rules associated with the Automation resource. Must have at least one rule and limited to 250 rules per Delivery Pipeline. Note: the order of the rules here is not the same as the order of execution. Structure is documented below.
- selector Property Map
- Required. Selected resources to which the automation will be applied. Structure is documented below.
- serviceAccount String
- Required. Email address of the user-managed IAM service account that creates Cloud Deploy release and rollout resources.
- suspended Boolean
- Optional. When Suspended, automation is deactivated from execution.
- uid String
- Output only. Unique identifier of the Automation.
- updateTime String
- Output only. Time at which the automation was updated.
Supporting Types
AutomationRule, AutomationRuleArgs    
- AdvanceRollout AutomationRule Rule Advance Rollout Rule 
- Optional. The AdvanceRolloutRulewill automatically advance a successful Rollout. Structure is documented below.
- PromoteRelease AutomationRule Rule Promote Release Rule 
- Optional. PromoteReleaseRulewill automatically promote a release from the current target to a specified target. Structure is documented below.
- AdvanceRollout AutomationRule Rule Advance Rollout Rule 
- Optional. The AdvanceRolloutRulewill automatically advance a successful Rollout. Structure is documented below.
- PromoteRelease AutomationRule Rule Promote Release Rule 
- Optional. PromoteReleaseRulewill automatically promote a release from the current target to a specified target. Structure is documented below.
- advanceRollout AutomationRule Rule Advance Rollout Rule 
- Optional. The AdvanceRolloutRulewill automatically advance a successful Rollout. Structure is documented below.
- promoteRelease AutomationRule Rule Promote Release Rule 
- Optional. PromoteReleaseRulewill automatically promote a release from the current target to a specified target. Structure is documented below.
- advanceRollout AutomationRule Rule Advance Rollout Rule 
- Optional. The AdvanceRolloutRulewill automatically advance a successful Rollout. Structure is documented below.
- promoteRelease AutomationRule Rule Promote Release Rule 
- Optional. PromoteReleaseRulewill automatically promote a release from the current target to a specified target. Structure is documented below.
- advance_rollout_ Automationrule Rule Advance Rollout Rule 
- Optional. The AdvanceRolloutRulewill automatically advance a successful Rollout. Structure is documented below.
- promote_release_ Automationrule Rule Promote Release Rule 
- Optional. PromoteReleaseRulewill automatically promote a release from the current target to a specified target. Structure is documented below.
- advanceRollout Property MapRule 
- Optional. The AdvanceRolloutRulewill automatically advance a successful Rollout. Structure is documented below.
- promoteRelease Property MapRule 
- Optional. PromoteReleaseRulewill automatically promote a release from the current target to a specified target. Structure is documented below.
AutomationRuleAdvanceRolloutRule, AutomationRuleAdvanceRolloutRuleArgs          
- Id string
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- SourcePhases List<string>
- Optional. Proceeds only after phase name matched any one in the list. 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?$.
- Wait string
- Optional. How long to wait after a rollout is finished.
- Id string
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- SourcePhases []string
- Optional. Proceeds only after phase name matched any one in the list. 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?$.
- Wait string
- Optional. How long to wait after a rollout is finished.
- id String
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- sourcePhases List<String>
- Optional. Proceeds only after phase name matched any one in the list. 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?$.
- wait_ String
- Optional. How long to wait after a rollout is finished.
- id string
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- sourcePhases string[]
- Optional. Proceeds only after phase name matched any one in the list. 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?$.
- wait string
- Optional. How long to wait after a rollout is finished.
- id str
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- source_phases Sequence[str]
- Optional. Proceeds only after phase name matched any one in the list. 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?$.
- wait str
- Optional. How long to wait after a rollout is finished.
- id String
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- sourcePhases List<String>
- Optional. Proceeds only after phase name matched any one in the list. 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?$.
- wait String
- Optional. How long to wait after a rollout is finished.
AutomationRulePromoteReleaseRule, AutomationRulePromoteReleaseRuleArgs          
- Id string
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- DestinationPhase string
- Optional. The starting phase of the rollout created by this operation. Default to the first phase.
- DestinationTarget stringId 
- Optional. The ID of the stage in the pipeline to which this Releaseis deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
- Wait string
- Optional. How long the release need to be paused until being promoted to the next target.
- Id string
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- DestinationPhase string
- Optional. The starting phase of the rollout created by this operation. Default to the first phase.
- DestinationTarget stringId 
- Optional. The ID of the stage in the pipeline to which this Releaseis deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
- Wait string
- Optional. How long the release need to be paused until being promoted to the next target.
- id String
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- destinationPhase String
- Optional. The starting phase of the rollout created by this operation. Default to the first phase.
- destinationTarget StringId 
- Optional. The ID of the stage in the pipeline to which this Releaseis deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
- wait_ String
- Optional. How long the release need to be paused until being promoted to the next target.
- id string
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- destinationPhase string
- Optional. The starting phase of the rollout created by this operation. Default to the first phase.
- destinationTarget stringId 
- Optional. The ID of the stage in the pipeline to which this Releaseis deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
- wait string
- Optional. How long the release need to be paused until being promoted to the next target.
- id str
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- destination_phase str
- Optional. The starting phase of the rollout created by this operation. Default to the first phase.
- destination_target_ strid 
- Optional. The ID of the stage in the pipeline to which this Releaseis deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
- wait str
- Optional. How long the release need to be paused until being promoted to the next target.
- id String
- Required. ID of the rule. This id must be unique in the Automationresource to which this rule belongs. The format isa-z{0,62}.
- destinationPhase String
- Optional. The starting phase of the rollout created by this operation. Default to the first phase.
- destinationTarget StringId 
- Optional. The ID of the stage in the pipeline to which this Releaseis deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
- wait String
- Optional. How long the release need to be paused until being promoted to the next target.
AutomationSelector, AutomationSelectorArgs    
- Targets
List<AutomationSelector Target> 
- Contains attributes about a target. Structure is documented below.
- Targets
[]AutomationSelector Target 
- Contains attributes about a target. Structure is documented below.
- targets
List<AutomationSelector Target> 
- Contains attributes about a target. Structure is documented below.
- targets
AutomationSelector Target[] 
- Contains attributes about a target. Structure is documented below.
- targets
Sequence[AutomationSelector Target] 
- Contains attributes about a target. Structure is documented below.
- targets List<Property Map>
- Contains attributes about a target. Structure is documented below.
AutomationSelectorTarget, AutomationSelectorTargetArgs      
Import
Automation can be imported using any of these accepted formats:
- projects/{{project}}/locations/{{location}}/deliveryPipelines/{{delivery_pipeline}}/automations/{{name}}
- {{project}}/{{location}}/{{delivery_pipeline}}/{{name}}
- {{location}}/{{delivery_pipeline}}/{{name}}
When using the pulumi import command, Automation can be imported using one of the formats above. For example:
$ pulumi import gcp:clouddeploy/automation:Automation default projects/{{project}}/locations/{{location}}/deliveryPipelines/{{delivery_pipeline}}/automations/{{name}}
$ pulumi import gcp:clouddeploy/automation:Automation default {{project}}/{{location}}/{{delivery_pipeline}}/{{name}}
$ pulumi import gcp:clouddeploy/automation:Automation default {{location}}/{{delivery_pipeline}}/{{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the google-betaTerraform Provider.