azure-native.deploymentmanager.Rollout
Explore with Pulumi AI
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:
- Build
Version string - The version of the build being deployed.
- Identity
Pulumi.
Azure Native. Deployment Manager. Inputs. Identity - Identity for the resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Step
Groups List<Pulumi.Azure Native. Deployment Manager. Inputs. Step Group> - The list of step groups that define the orchestration.
- Target
Service stringTopology Id - The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
- Artifact
Source stringId - The reference to the artifact source resource Id where the payload is located.
- Location string
- The geo-location where the resource lives
- Rollout
Name string - The rollout name.
- Dictionary<string, string>
- Resource tags.
- Build
Version string - The version of the build being deployed.
- Identity
Identity
Args - Identity for the resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Step
Groups []StepGroup Args - The list of step groups that define the orchestration.
- Target
Service stringTopology Id - The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
- Artifact
Source stringId - The reference to the artifact source resource Id where the payload is located.
- Location string
- The geo-location where the resource lives
- Rollout
Name string - The rollout name.
- map[string]string
- Resource tags.
- build
Version String - The version of the build being deployed.
- identity Identity
- Identity for the resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- step
Groups List<StepGroup> - The list of step groups that define the orchestration.
- target
Service StringTopology Id - The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
- artifact
Source StringId - The reference to the artifact source resource Id where the payload is located.
- location String
- The geo-location where the resource lives
- rollout
Name String - The rollout name.
- Map<String,String>
- Resource tags.
- build
Version string - The version of the build being deployed.
- identity Identity
- Identity for the resource.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- step
Groups StepGroup[] - The list of step groups that define the orchestration.
- target
Service stringTopology Id - The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
- artifact
Source stringId - The reference to the artifact source resource Id where the payload is located.
- location string
- The geo-location where the resource lives
- rollout
Name string - The rollout name.
- {[key: string]: string}
- Resource tags.
- build_
version str - The version of the build being deployed.
- identity
Identity
Args - Identity for the resource.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- step_
groups Sequence[StepGroup Args] - The list of step groups that define the orchestration.
- target_
service_ strtopology_ id - The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
- artifact_
source_ strid - 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.
- Mapping[str, str]
- Resource tags.
- build
Version String - The version of the build being deployed.
- identity Property Map
- Identity for the resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- step
Groups List<Property Map> - The list of step groups that define the orchestration.
- target
Service StringTopology Id - The resource Id of the service topology from which service units are being referenced in step groups to be deployed.
- artifact
Source StringId - The reference to the artifact source resource Id where the payload is located.
- location String
- The geo-location where the resource lives
- rollout
Name String - The rollout name.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Rollout resource produces the following output properties:
Supporting Types
Identity, IdentityArgs
- Identity
Ids List<string> - The list of identities.
- Type string
- The identity type.
- Identity
Ids []string - The list of identities.
- Type string
- The identity type.
- identity
Ids List<String> - The list of identities.
- type String
- The identity type.
- identity
Ids string[] - The list of identities.
- type string
- The identity type.
- identity_
ids Sequence[str] - The list of identities.
- type str
- The identity type.
- identity
Ids List<String> - The list of identities.
- type String
- The identity type.
IdentityResponse, IdentityResponseArgs
- Identity
Ids List<string> - The list of identities.
- Type string
- The identity type.
- Identity
Ids []string - The list of identities.
- Type string
- The identity type.
- identity
Ids List<String> - The list of identities.
- type String
- The identity type.
- identity
Ids string[] - The list of identities.
- type string
- The identity type.
- identity_
ids Sequence[str] - The list of identities.
- type str
- The identity type.
- identity
Ids List<String> - The list of identities.
- type String
- The identity type.
PrePostStep, PrePostStepArgs
- Step
Id string - The resource Id of the step to be run.
- Step
Id string - The resource Id of the step to be run.
- step
Id String - The resource Id of the step to be run.
- step
Id string - The resource Id of the step to be run.
- step_
id str - The resource Id of the step to be run.
- step
Id String - The resource Id of the step to be run.
PrePostStepResponse, PrePostStepResponseArgs
- Step
Id string - The resource Id of the step to be run.
- Step
Id string - The resource Id of the step to be run.
- step
Id String - The resource Id of the step to be run.
- step
Id string - The resource Id of the step to be run.
- step_
id str - The resource Id of the step to be run.
- step
Id String - The resource Id of the step to be run.
StepGroup, StepGroupArgs
- Deployment
Target stringId - 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.
- Depends
On List<string>Step Groups - The list of step group names on which this step group depends on.
- Post
Deployment List<Pulumi.Steps Azure Native. Deployment Manager. Inputs. Pre Post Step> - The list of steps to be run after deploying the target.
- Pre
Deployment List<Pulumi.Steps Azure Native. Deployment Manager. Inputs. Pre Post Step> - The list of steps to be run before deploying the target.
- Deployment
Target stringId - 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.
- Depends
On []stringStep Groups - The list of step group names on which this step group depends on.
- Post
Deployment []PreSteps Post Step - The list of steps to be run after deploying the target.
- Pre
Deployment []PreSteps Post Step - The list of steps to be run before deploying the target.
- deployment
Target StringId - 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.
- depends
On List<String>Step Groups - The list of step group names on which this step group depends on.
- post
Deployment List<PreSteps Post Step> - The list of steps to be run after deploying the target.
- pre
Deployment List<PreSteps Post Step> - The list of steps to be run before deploying the target.
- deployment
Target stringId - 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.
- depends
On string[]Step Groups - The list of step group names on which this step group depends on.
- post
Deployment PreSteps Post Step[] - The list of steps to be run after deploying the target.
- pre
Deployment PreSteps Post Step[] - The list of steps to be run before deploying the target.
- deployment_
target_ strid - 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_ Sequence[str]step_ groups - The list of step group names on which this step group depends on.
- post_
deployment_ Sequence[Presteps Post Step] - The list of steps to be run after deploying the target.
- pre_
deployment_ Sequence[Presteps Post Step] - The list of steps to be run before deploying the target.
- deployment
Target StringId - 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.
- depends
On List<String>Step Groups - The list of step group names on which this step group depends on.
- post
Deployment List<Property Map>Steps - The list of steps to be run after deploying the target.
- pre
Deployment List<Property Map>Steps - The list of steps to be run before deploying the target.
StepGroupResponse, StepGroupResponseArgs
- Deployment
Target stringId - 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.
- Depends
On List<string>Step Groups - The list of step group names on which this step group depends on.
- Post
Deployment List<Pulumi.Steps Azure Native. Deployment Manager. Inputs. Pre Post Step Response> - The list of steps to be run after deploying the target.
- Pre
Deployment List<Pulumi.Steps Azure Native. Deployment Manager. Inputs. Pre Post Step Response> - The list of steps to be run before deploying the target.
- Deployment
Target stringId - 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.
- Depends
On []stringStep Groups - The list of step group names on which this step group depends on.
- Post
Deployment []PreSteps Post Step Response - The list of steps to be run after deploying the target.
- Pre
Deployment []PreSteps Post Step Response - The list of steps to be run before deploying the target.
- deployment
Target StringId - 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.
- depends
On List<String>Step Groups - The list of step group names on which this step group depends on.
- post
Deployment List<PreSteps Post Step Response> - The list of steps to be run after deploying the target.
- pre
Deployment List<PreSteps Post Step Response> - The list of steps to be run before deploying the target.
- deployment
Target stringId - 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.
- depends
On string[]Step Groups - The list of step group names on which this step group depends on.
- post
Deployment PreSteps Post Step Response[] - The list of steps to be run after deploying the target.
- pre
Deployment PreSteps Post Step Response[] - The list of steps to be run before deploying the target.
- deployment_
target_ strid - 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_ Sequence[str]step_ groups - The list of step group names on which this step group depends on.
- post_
deployment_ Sequence[Presteps Post Step Response] - The list of steps to be run after deploying the target.
- pre_
deployment_ Sequence[Presteps Post Step Response] - The list of steps to be run before deploying the target.
- deployment
Target StringId - 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.
- depends
On List<String>Step Groups - The list of step group names on which this step group depends on.
- post
Deployment List<Property Map>Steps - The list of steps to be run after deploying the target.
- pre
Deployment List<Property Map>Steps - 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