1. Packages
  2. Azure Native v1
  3. API Docs
  4. deploymentmanager
  5. Rollout
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.deploymentmanager.Rollout

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Defines the PUT rollout request body. API Version: 2019-11-01-preview.

    Example Usage

    Create or update rollout

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var rollout = new AzureNative.DeploymentManager.Rollout("rollout", new()
        {
            ArtifactSourceId = "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource",
            BuildVersion = "1.0.0.1",
            Identity = new AzureNative.DeploymentManager.Inputs.IdentityArgs
            {
                IdentityIds = new[]
                {
                    "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity",
                },
                Type = "userAssigned",
            },
            Location = "centralus",
            ResourceGroupName = "myResourceGroup",
            RolloutName = "myRollout",
            StepGroups = new[]
            {
                new AzureNative.DeploymentManager.Inputs.StepGroupArgs
                {
                    DeploymentTargetId = "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'",
                    Name = "FirstRegion",
                    PostDeploymentSteps = new[]
                    {
                        new AzureNative.DeploymentManager.Inputs.PrePostStepArgs
                        {
                            StepId = "Microsoft.DeploymentManager/steps/postDeployStep1",
                        },
                    },
                    PreDeploymentSteps = new[]
                    {
                        new AzureNative.DeploymentManager.Inputs.PrePostStepArgs
                        {
                            StepId = "Microsoft.DeploymentManager/steps/preDeployStep1",
                        },
                        new AzureNative.DeploymentManager.Inputs.PrePostStepArgs
                        {
                            StepId = "Microsoft.DeploymentManager/steps/preDeployStep2",
                        },
                    },
                },
                new AzureNative.DeploymentManager.Inputs.StepGroupArgs
                {
                    DependsOnStepGroups = new[]
                    {
                        "FirstRegion",
                    },
                    DeploymentTargetId = "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'",
                    Name = "SecondRegion",
                    PostDeploymentSteps = new[]
                    {
                        new AzureNative.DeploymentManager.Inputs.PrePostStepArgs
                        {
                            StepId = "Microsoft.DeploymentManager/steps/postDeployStep5",
                        },
                    },
                    PreDeploymentSteps = new[]
                    {
                        new AzureNative.DeploymentManager.Inputs.PrePostStepArgs
                        {
                            StepId = "Microsoft.DeploymentManager/steps/preDeployStep3",
                        },
                        new AzureNative.DeploymentManager.Inputs.PrePostStepArgs
                        {
                            StepId = "Microsoft.DeploymentManager/steps/preDeployStep4",
                        },
                    },
                },
            },
            Tags = null,
            TargetServiceTopologyId = "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology",
        });
    
    });
    
    package main
    
    import (
    	deploymentmanager "github.com/pulumi/pulumi-azure-native-sdk/deploymentmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := deploymentmanager.NewRollout(ctx, "rollout", &deploymentmanager.RolloutArgs{
    			ArtifactSourceId: pulumi.String("/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource"),
    			BuildVersion:     pulumi.String("1.0.0.1"),
    			Identity: &deploymentmanager.IdentityArgs{
    				IdentityIds: pulumi.StringArray{
    					pulumi.String("/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity"),
    				},
    				Type: pulumi.String("userAssigned"),
    			},
    			Location:          pulumi.String("centralus"),
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			RolloutName:       pulumi.String("myRollout"),
    			StepGroups: []deploymentmanager.StepGroupArgs{
    				{
    					DeploymentTargetId: pulumi.String("Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'"),
    					Name:               pulumi.String("FirstRegion"),
    					PostDeploymentSteps: deploymentmanager.PrePostStepArray{
    						{
    							StepId: pulumi.String("Microsoft.DeploymentManager/steps/postDeployStep1"),
    						},
    					},
    					PreDeploymentSteps: deploymentmanager.PrePostStepArray{
    						{
    							StepId: pulumi.String("Microsoft.DeploymentManager/steps/preDeployStep1"),
    						},
    						{
    							StepId: pulumi.String("Microsoft.DeploymentManager/steps/preDeployStep2"),
    						},
    					},
    				},
    				{
    					DependsOnStepGroups: pulumi.StringArray{
    						pulumi.String("FirstRegion"),
    					},
    					DeploymentTargetId: pulumi.String("Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'"),
    					Name:               pulumi.String("SecondRegion"),
    					PostDeploymentSteps: deploymentmanager.PrePostStepArray{
    						{
    							StepId: pulumi.String("Microsoft.DeploymentManager/steps/postDeployStep5"),
    						},
    					},
    					PreDeploymentSteps: deploymentmanager.PrePostStepArray{
    						{
    							StepId: pulumi.String("Microsoft.DeploymentManager/steps/preDeployStep3"),
    						},
    						{
    							StepId: pulumi.String("Microsoft.DeploymentManager/steps/preDeployStep4"),
    						},
    					},
    				},
    			},
    			Tags:                    nil,
    			TargetServiceTopologyId: pulumi.String("/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology"),
    		})
    		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.azurenative.deploymentmanager.Rollout;
    import com.pulumi.azurenative.deploymentmanager.RolloutArgs;
    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 rollout = new Rollout("rollout", RolloutArgs.builder()        
                .artifactSourceId("/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource")
                .buildVersion("1.0.0.1")
                .identity(Map.ofEntries(
                    Map.entry("identityIds", "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity"),
                    Map.entry("type", "userAssigned")
                ))
                .location("centralus")
                .resourceGroupName("myResourceGroup")
                .rolloutName("myRollout")
                .stepGroups(            
                    Map.ofEntries(
                        Map.entry("deploymentTargetId", "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'"),
                        Map.entry("name", "FirstRegion"),
                        Map.entry("postDeploymentSteps", Map.of("stepId", "Microsoft.DeploymentManager/steps/postDeployStep1")),
                        Map.entry("preDeploymentSteps",                     
                            Map.of("stepId", "Microsoft.DeploymentManager/steps/preDeployStep1"),
                            Map.of("stepId", "Microsoft.DeploymentManager/steps/preDeployStep2"))
                    ),
                    Map.ofEntries(
                        Map.entry("dependsOnStepGroups", "FirstRegion"),
                        Map.entry("deploymentTargetId", "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'"),
                        Map.entry("name", "SecondRegion"),
                        Map.entry("postDeploymentSteps", Map.of("stepId", "Microsoft.DeploymentManager/steps/postDeployStep5")),
                        Map.entry("preDeploymentSteps",                     
                            Map.of("stepId", "Microsoft.DeploymentManager/steps/preDeployStep3"),
                            Map.of("stepId", "Microsoft.DeploymentManager/steps/preDeployStep4"))
                    ))
                .tags()
                .targetServiceTopologyId("/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    rollout = azure_native.deploymentmanager.Rollout("rollout",
        artifact_source_id="/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource",
        build_version="1.0.0.1",
        identity=azure_native.deploymentmanager.IdentityArgs(
            identity_ids=["/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity"],
            type="userAssigned",
        ),
        location="centralus",
        resource_group_name="myResourceGroup",
        rollout_name="myRollout",
        step_groups=[
            {
                "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'",
                "name": "FirstRegion",
                "postDeploymentSteps": [azure_native.deploymentmanager.PrePostStepArgs(
                    step_id="Microsoft.DeploymentManager/steps/postDeployStep1",
                )],
                "preDeploymentSteps": [
                    azure_native.deploymentmanager.PrePostStepArgs(
                        step_id="Microsoft.DeploymentManager/steps/preDeployStep1",
                    ),
                    azure_native.deploymentmanager.PrePostStepArgs(
                        step_id="Microsoft.DeploymentManager/steps/preDeployStep2",
                    ),
                ],
            },
            {
                "dependsOnStepGroups": ["FirstRegion"],
                "deploymentTargetId": "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'",
                "name": "SecondRegion",
                "postDeploymentSteps": [azure_native.deploymentmanager.PrePostStepArgs(
                    step_id="Microsoft.DeploymentManager/steps/postDeployStep5",
                )],
                "preDeploymentSteps": [
                    azure_native.deploymentmanager.PrePostStepArgs(
                        step_id="Microsoft.DeploymentManager/steps/preDeployStep3",
                    ),
                    azure_native.deploymentmanager.PrePostStepArgs(
                        step_id="Microsoft.DeploymentManager/steps/preDeployStep4",
                    ),
                ],
            },
        ],
        tags={},
        target_service_topology_id="/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const rollout = new azure_native.deploymentmanager.Rollout("rollout", {
        artifactSourceId: "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource",
        buildVersion: "1.0.0.1",
        identity: {
            identityIds: ["/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity"],
            type: "userAssigned",
        },
        location: "centralus",
        resourceGroupName: "myResourceGroup",
        rolloutName: "myRollout",
        stepGroups: [
            {
                deploymentTargetId: "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'",
                name: "FirstRegion",
                postDeploymentSteps: [{
                    stepId: "Microsoft.DeploymentManager/steps/postDeployStep1",
                }],
                preDeploymentSteps: [
                    {
                        stepId: "Microsoft.DeploymentManager/steps/preDeployStep1",
                    },
                    {
                        stepId: "Microsoft.DeploymentManager/steps/preDeployStep2",
                    },
                ],
            },
            {
                dependsOnStepGroups: ["FirstRegion"],
                deploymentTargetId: "Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'",
                name: "SecondRegion",
                postDeploymentSteps: [{
                    stepId: "Microsoft.DeploymentManager/steps/postDeployStep5",
                }],
                preDeploymentSteps: [
                    {
                        stepId: "Microsoft.DeploymentManager/steps/preDeployStep3",
                    },
                    {
                        stepId: "Microsoft.DeploymentManager/steps/preDeployStep4",
                    },
                ],
            },
        ],
        tags: {},
        targetServiceTopologyId: "/subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology",
    });
    
    resources:
      rollout:
        type: azure-native:deploymentmanager:Rollout
        properties:
          artifactSourceId: /subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/artifactSources/myArtifactSource
          buildVersion: 1.0.0.1
          identity:
            identityIds:
              - /subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/providers/Microsoft.ManagedIdentity/userassignedidentities/myuseridentity
            type: userAssigned
          location: centralus
          resourceGroupName: myResourceGroup
          rolloutName: myRollout
          stepGroups:
            - deploymentTargetId: Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit1'
              name: FirstRegion
              postDeploymentSteps:
                - stepId: Microsoft.DeploymentManager/steps/postDeployStep1
              preDeploymentSteps:
                - stepId: Microsoft.DeploymentManager/steps/preDeployStep1
                - stepId: Microsoft.DeploymentManager/steps/preDeployStep2
            - dependsOnStepGroups:
                - FirstRegion
              deploymentTargetId: Microsoft.DeploymentManager/serviceTopologies/myTopology/services/myService/serviceUnits/myServiceUnit2'
              name: SecondRegion
              postDeploymentSteps:
                - stepId: Microsoft.DeploymentManager/steps/postDeployStep5
              preDeploymentSteps:
                - stepId: Microsoft.DeploymentManager/steps/preDeployStep3
                - stepId: Microsoft.DeploymentManager/steps/preDeployStep4
          tags: {}
          targetServiceTopologyId: /subscriptions/caac1590-e859-444f-a9e0-62091c0f5929/resourceGroups/myResourceGroup/Microsoft.DeploymentManager/serviceTopologies/myTopology
    

    Create Rollout Resource

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

    Constructor syntax

    new Rollout(name: string, args: RolloutArgs, opts?: CustomResourceOptions);
    @overload
    def Rollout(resource_name: str,
                args: RolloutArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Rollout(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                build_version: Optional[str] = None,
                identity: Optional[IdentityArgs] = None,
                resource_group_name: Optional[str] = None,
                step_groups: Optional[Sequence[StepGroupArgs]] = None,
                target_service_topology_id: Optional[str] = None,
                artifact_source_id: Optional[str] = None,
                location: Optional[str] = None,
                rollout_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewRollout(ctx *Context, name string, args RolloutArgs, opts ...ResourceOption) (*Rollout, error)
    public Rollout(string name, RolloutArgs args, CustomResourceOptions? opts = null)
    public Rollout(String name, RolloutArgs args)
    public Rollout(String name, RolloutArgs args, CustomResourceOptions options)
    
    type: azure-native:deploymentmanager:Rollout
    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 RolloutArgs
    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 RolloutArgs
    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 RolloutArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RolloutArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RolloutArgs
    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 rolloutResource = new AzureNative.Deploymentmanager.Rollout("rolloutResource", new()
    {
        BuildVersion = "string",
        Identity = 
        {
            { "identityIds", new[]
            {
                "string",
            } },
            { "type", "string" },
        },
        ResourceGroupName = "string",
        StepGroups = new[]
        {
            
            {
                { "deploymentTargetId", "string" },
                { "name", "string" },
                { "dependsOnStepGroups", new[]
                {
                    "string",
                } },
                { "postDeploymentSteps", new[]
                {
                    
                    {
                        { "stepId", "string" },
                    },
                } },
                { "preDeploymentSteps", new[]
                {
                    
                    {
                        { "stepId", "string" },
                    },
                } },
            },
        },
        TargetServiceTopologyId = "string",
        ArtifactSourceId = "string",
        Location = "string",
        RolloutName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := deploymentmanager.NewRollout(ctx, "rolloutResource", &deploymentmanager.RolloutArgs{
    	BuildVersion: "string",
    	Identity: map[string]interface{}{
    		"identityIds": []string{
    			"string",
    		},
    		"type": "string",
    	},
    	ResourceGroupName: "string",
    	StepGroups: []map[string]interface{}{
    		map[string]interface{}{
    			"deploymentTargetId": "string",
    			"name":               "string",
    			"dependsOnStepGroups": []string{
    				"string",
    			},
    			"postDeploymentSteps": []map[string]interface{}{
    				map[string]interface{}{
    					"stepId": "string",
    				},
    			},
    			"preDeploymentSteps": []map[string]interface{}{
    				map[string]interface{}{
    					"stepId": "string",
    				},
    			},
    		},
    	},
    	TargetServiceTopologyId: "string",
    	ArtifactSourceId:        "string",
    	Location:                "string",
    	RolloutName:             "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var rolloutResource = new Rollout("rolloutResource", RolloutArgs.builder()
        .buildVersion("string")
        .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .resourceGroupName("string")
        .stepGroups(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .targetServiceTopologyId("string")
        .artifactSourceId("string")
        .location("string")
        .rolloutName("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    rollout_resource = azure_native.deploymentmanager.Rollout("rolloutResource",
        build_version=string,
        identity={
            identityIds: [string],
            type: string,
        },
        resource_group_name=string,
        step_groups=[{
            deploymentTargetId: string,
            name: string,
            dependsOnStepGroups: [string],
            postDeploymentSteps: [{
                stepId: string,
            }],
            preDeploymentSteps: [{
                stepId: string,
            }],
        }],
        target_service_topology_id=string,
        artifact_source_id=string,
        location=string,
        rollout_name=string,
        tags={
            string: string,
        })
    
    const rolloutResource = new azure_native.deploymentmanager.Rollout("rolloutResource", {
        buildVersion: "string",
        identity: {
            identityIds: ["string"],
            type: "string",
        },
        resourceGroupName: "string",
        stepGroups: [{
            deploymentTargetId: "string",
            name: "string",
            dependsOnStepGroups: ["string"],
            postDeploymentSteps: [{
                stepId: "string",
            }],
            preDeploymentSteps: [{
                stepId: "string",
            }],
        }],
        targetServiceTopologyId: "string",
        artifactSourceId: "string",
        location: "string",
        rolloutName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:deploymentmanager:Rollout
    properties:
        artifactSourceId: string
        buildVersion: string
        identity:
            identityIds:
                - string
            type: string
        location: string
        resourceGroupName: string
        rolloutName: string
        stepGroups:
            - dependsOnStepGroups:
                - string
              deploymentTargetId: string
              name: string
              postDeploymentSteps:
                - stepId: string
              preDeploymentSteps:
                - stepId: string
        tags:
            string: string
        targetServiceTopologyId: string
    

    Rollout 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 Rollout resource accepts the following input properties:

    BuildVersion string
    The version of the build being deployed.
    Identity Pulumi.AzureNative.DeploymentManager.Inputs.Identity
    Identity for the resource.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    StepGroups List<Pulumi.AzureNative.DeploymentManager.Inputs.StepGroup>
    The list of step groups that define the orchestration.
    TargetServiceTopologyId string
    The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
    ArtifactSourceId string
    The reference to the artifact source resource Id where the payload is located.
    Location string
    The geo-location where the resource lives
    RolloutName string
    The rollout name.
    Tags Dictionary<string, string>
    Resource tags.
    BuildVersion string
    The version of the build being deployed.
    Identity IdentityArgs
    Identity for the resource.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    StepGroups []StepGroupArgs
    The list of step groups that define the orchestration.
    TargetServiceTopologyId string
    The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
    ArtifactSourceId string
    The reference to the artifact source resource Id where the payload is located.
    Location string
    The geo-location where the resource lives
    RolloutName string
    The rollout name.
    Tags map[string]string
    Resource tags.
    buildVersion String
    The version of the build being deployed.
    identity Identity
    Identity for the resource.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    stepGroups List<StepGroup>
    The list of step groups that define the orchestration.
    targetServiceTopologyId String
    The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
    artifactSourceId String
    The reference to the artifact source resource Id where the payload is located.
    location String
    The geo-location where the resource lives
    rolloutName String
    The rollout name.
    tags Map<String,String>
    Resource tags.
    buildVersion string
    The version of the build being deployed.
    identity Identity
    Identity for the resource.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    stepGroups StepGroup[]
    The list of step groups that define the orchestration.
    targetServiceTopologyId string
    The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
    artifactSourceId string
    The reference to the artifact source resource Id where the payload is located.
    location string
    The geo-location where the resource lives
    rolloutName string
    The rollout name.
    tags {[key: string]: string}
    Resource tags.
    build_version str
    The version of the build being deployed.
    identity IdentityArgs
    Identity for the resource.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    step_groups Sequence[StepGroupArgs]
    The list of step groups that define the orchestration.
    target_service_topology_id str
    The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
    artifact_source_id str
    The reference to the artifact source resource Id where the payload is located.
    location str
    The geo-location where the resource lives
    rollout_name str
    The rollout name.
    tags Mapping[str, str]
    Resource tags.
    buildVersion String
    The version of the build being deployed.
    identity Property Map
    Identity for the resource.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    stepGroups List<Property Map>
    The list of step groups that define the orchestration.
    targetServiceTopologyId String
    The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
    artifactSourceId String
    The reference to the artifact source resource Id where the payload is located.
    location String
    The geo-location where the resource lives
    rolloutName String
    The rollout name.
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    Identity, IdentityArgs

    IdentityIds List<string>
    The list of identities.
    Type string
    The identity type.
    IdentityIds []string
    The list of identities.
    Type string
    The identity type.
    identityIds List<String>
    The list of identities.
    type String
    The identity type.
    identityIds string[]
    The list of identities.
    type string
    The identity type.
    identity_ids Sequence[str]
    The list of identities.
    type str
    The identity type.
    identityIds List<String>
    The list of identities.
    type String
    The identity type.

    IdentityResponse, IdentityResponseArgs

    IdentityIds List<string>
    The list of identities.
    Type string
    The identity type.
    IdentityIds []string
    The list of identities.
    Type string
    The identity type.
    identityIds List<String>
    The list of identities.
    type String
    The identity type.
    identityIds string[]
    The list of identities.
    type string
    The identity type.
    identity_ids Sequence[str]
    The list of identities.
    type str
    The identity type.
    identityIds List<String>
    The list of identities.
    type String
    The identity type.

    PrePostStep, PrePostStepArgs

    StepId string
    The resource Id of the step to be run.
    StepId string
    The resource Id of the step to be run.
    stepId String
    The resource Id of the step to be run.
    stepId string
    The resource Id of the step to be run.
    step_id str
    The resource Id of the step to be run.
    stepId String
    The resource Id of the step to be run.

    PrePostStepResponse, PrePostStepResponseArgs

    StepId string
    The resource Id of the step to be run.
    StepId string
    The resource Id of the step to be run.
    stepId String
    The resource Id of the step to be run.
    stepId string
    The resource Id of the step to be run.
    step_id str
    The resource Id of the step to be run.
    stepId String
    The resource Id of the step to be run.

    StepGroup, StepGroupArgs

    DeploymentTargetId string
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    Name string
    The name of the step group.
    DependsOnStepGroups List<string>
    The list of step group names on which this step group depends on.
    PostDeploymentSteps List<Pulumi.AzureNative.DeploymentManager.Inputs.PrePostStep>
    The list of steps to be run after deploying the target.
    PreDeploymentSteps List<Pulumi.AzureNative.DeploymentManager.Inputs.PrePostStep>
    The list of steps to be run before deploying the target.
    DeploymentTargetId string
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    Name string
    The name of the step group.
    DependsOnStepGroups []string
    The list of step group names on which this step group depends on.
    PostDeploymentSteps []PrePostStep
    The list of steps to be run after deploying the target.
    PreDeploymentSteps []PrePostStep
    The list of steps to be run before deploying the target.
    deploymentTargetId String
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name String
    The name of the step group.
    dependsOnStepGroups List<String>
    The list of step group names on which this step group depends on.
    postDeploymentSteps List<PrePostStep>
    The list of steps to be run after deploying the target.
    preDeploymentSteps List<PrePostStep>
    The list of steps to be run before deploying the target.
    deploymentTargetId string
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name string
    The name of the step group.
    dependsOnStepGroups string[]
    The list of step group names on which this step group depends on.
    postDeploymentSteps PrePostStep[]
    The list of steps to be run after deploying the target.
    preDeploymentSteps PrePostStep[]
    The list of steps to be run before deploying the target.
    deployment_target_id str
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name str
    The name of the step group.
    depends_on_step_groups Sequence[str]
    The list of step group names on which this step group depends on.
    post_deployment_steps Sequence[PrePostStep]
    The list of steps to be run after deploying the target.
    pre_deployment_steps Sequence[PrePostStep]
    The list of steps to be run before deploying the target.
    deploymentTargetId String
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name String
    The name of the step group.
    dependsOnStepGroups List<String>
    The list of step group names on which this step group depends on.
    postDeploymentSteps List<Property Map>
    The list of steps to be run after deploying the target.
    preDeploymentSteps List<Property Map>
    The list of steps to be run before deploying the target.

    StepGroupResponse, StepGroupResponseArgs

    DeploymentTargetId string
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    Name string
    The name of the step group.
    DependsOnStepGroups List<string>
    The list of step group names on which this step group depends on.
    PostDeploymentSteps List<Pulumi.AzureNative.DeploymentManager.Inputs.PrePostStepResponse>
    The list of steps to be run after deploying the target.
    PreDeploymentSteps List<Pulumi.AzureNative.DeploymentManager.Inputs.PrePostStepResponse>
    The list of steps to be run before deploying the target.
    DeploymentTargetId string
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    Name string
    The name of the step group.
    DependsOnStepGroups []string
    The list of step group names on which this step group depends on.
    PostDeploymentSteps []PrePostStepResponse
    The list of steps to be run after deploying the target.
    PreDeploymentSteps []PrePostStepResponse
    The list of steps to be run before deploying the target.
    deploymentTargetId String
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name String
    The name of the step group.
    dependsOnStepGroups List<String>
    The list of step group names on which this step group depends on.
    postDeploymentSteps List<PrePostStepResponse>
    The list of steps to be run after deploying the target.
    preDeploymentSteps List<PrePostStepResponse>
    The list of steps to be run before deploying the target.
    deploymentTargetId string
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name string
    The name of the step group.
    dependsOnStepGroups string[]
    The list of step group names on which this step group depends on.
    postDeploymentSteps PrePostStepResponse[]
    The list of steps to be run after deploying the target.
    preDeploymentSteps PrePostStepResponse[]
    The list of steps to be run before deploying the target.
    deployment_target_id str
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name str
    The name of the step group.
    depends_on_step_groups Sequence[str]
    The list of step group names on which this step group depends on.
    post_deployment_steps Sequence[PrePostStepResponse]
    The list of steps to be run after deploying the target.
    pre_deployment_steps Sequence[PrePostStepResponse]
    The list of steps to be run before deploying the target.
    deploymentTargetId String
    The resource Id of service unit to be deployed. The service unit should be from the service topology referenced in targetServiceTopologyId
    name String
    The name of the step group.
    dependsOnStepGroups List<String>
    The list of step group names on which this step group depends on.
    postDeploymentSteps List<Property Map>
    The list of steps to be run after deploying the target.
    preDeploymentSteps List<Property Map>
    The list of steps to be run before deploying the target.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:deploymentmanager:Rollout myRollout /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DeploymentManager/rollouts/{rolloutName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi