azure-native.resources.DeploymentStackAtResourceGroup
Explore with Pulumi AI
Deployment stack object. Azure REST API version: 2022-08-01-preview.
Other available API versions: 2024-03-01.
Example Usage
DeploymentStacksCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var deploymentStackAtResourceGroup = new AzureNative.Resources.DeploymentStackAtResourceGroup("deploymentStackAtResourceGroup", new()
    {
        ActionOnUnmanage = new AzureNative.Resources.Inputs.DeploymentStackPropertiesActionOnUnmanageArgs
        {
            ManagementGroups = AzureNative.Resources.DeploymentStacksDeleteDetachEnum.Detach,
            ResourceGroups = AzureNative.Resources.DeploymentStacksDeleteDetachEnum.Delete,
            Resources = AzureNative.Resources.DeploymentStacksDeleteDetachEnum.Delete,
        },
        DenySettings = new AzureNative.Resources.Inputs.DenySettingsArgs
        {
            ApplyToChildScopes = false,
            ExcludedActions = new[]
            {
                "action",
            },
            ExcludedPrincipals = new[]
            {
                "principal",
            },
            Mode = AzureNative.Resources.DenySettingsMode.DenyDelete,
        },
        DeploymentStackName = "simpleDeploymentStack",
        Location = "eastus",
        Parameters = new Dictionary<string, object?>
        {
            ["parameter1"] = new Dictionary<string, object?>
            {
                ["value"] = "a string",
            },
        },
        ResourceGroupName = "deploymentStacksRG",
        Tags = 
        {
            { "tagkey", "tagVal" },
        },
    });
});
package main
import (
	resources "github.com/pulumi/pulumi-azure-native-sdk/resources/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := resources.NewDeploymentStackAtResourceGroup(ctx, "deploymentStackAtResourceGroup", &resources.DeploymentStackAtResourceGroupArgs{
			ActionOnUnmanage: &resources.DeploymentStackPropertiesActionOnUnmanageArgs{
				ManagementGroups: pulumi.String(resources.DeploymentStacksDeleteDetachEnumDetach),
				ResourceGroups:   pulumi.String(resources.DeploymentStacksDeleteDetachEnumDelete),
				Resources:        pulumi.String(resources.DeploymentStacksDeleteDetachEnumDelete),
			},
			DenySettings: &resources.DenySettingsArgs{
				ApplyToChildScopes: pulumi.Bool(false),
				ExcludedActions: pulumi.StringArray{
					pulumi.String("action"),
				},
				ExcludedPrincipals: pulumi.StringArray{
					pulumi.String("principal"),
				},
				Mode: pulumi.String(resources.DenySettingsModeDenyDelete),
			},
			DeploymentStackName: pulumi.String("simpleDeploymentStack"),
			Location:            pulumi.String("eastus"),
			Parameters: pulumi.Any(map[string]interface{}{
				"parameter1": map[string]interface{}{
					"value": "a string",
				},
			}),
			ResourceGroupName: pulumi.String("deploymentStacksRG"),
			Tags: pulumi.StringMap{
				"tagkey": pulumi.String("tagVal"),
			},
		})
		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.resources.DeploymentStackAtResourceGroup;
import com.pulumi.azurenative.resources.DeploymentStackAtResourceGroupArgs;
import com.pulumi.azurenative.resources.inputs.DeploymentStackPropertiesActionOnUnmanageArgs;
import com.pulumi.azurenative.resources.inputs.DenySettingsArgs;
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 deploymentStackAtResourceGroup = new DeploymentStackAtResourceGroup("deploymentStackAtResourceGroup", DeploymentStackAtResourceGroupArgs.builder()
            .actionOnUnmanage(DeploymentStackPropertiesActionOnUnmanageArgs.builder()
                .managementGroups("detach")
                .resourceGroups("delete")
                .resources("delete")
                .build())
            .denySettings(DenySettingsArgs.builder()
                .applyToChildScopes(false)
                .excludedActions("action")
                .excludedPrincipals("principal")
                .mode("denyDelete")
                .build())
            .deploymentStackName("simpleDeploymentStack")
            .location("eastus")
            .parameters(Map.of("parameter1", Map.of("value", "a string")))
            .resourceGroupName("deploymentStacksRG")
            .tags(Map.of("tagkey", "tagVal"))
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const deploymentStackAtResourceGroup = new azure_native.resources.DeploymentStackAtResourceGroup("deploymentStackAtResourceGroup", {
    actionOnUnmanage: {
        managementGroups: azure_native.resources.DeploymentStacksDeleteDetachEnum.Detach,
        resourceGroups: azure_native.resources.DeploymentStacksDeleteDetachEnum.Delete,
        resources: azure_native.resources.DeploymentStacksDeleteDetachEnum.Delete,
    },
    denySettings: {
        applyToChildScopes: false,
        excludedActions: ["action"],
        excludedPrincipals: ["principal"],
        mode: azure_native.resources.DenySettingsMode.DenyDelete,
    },
    deploymentStackName: "simpleDeploymentStack",
    location: "eastus",
    parameters: {
        parameter1: {
            value: "a string",
        },
    },
    resourceGroupName: "deploymentStacksRG",
    tags: {
        tagkey: "tagVal",
    },
});
import pulumi
import pulumi_azure_native as azure_native
deployment_stack_at_resource_group = azure_native.resources.DeploymentStackAtResourceGroup("deploymentStackAtResourceGroup",
    action_on_unmanage={
        "management_groups": azure_native.resources.DeploymentStacksDeleteDetachEnum.DETACH,
        "resource_groups": azure_native.resources.DeploymentStacksDeleteDetachEnum.DELETE,
        "resources": azure_native.resources.DeploymentStacksDeleteDetachEnum.DELETE,
    },
    deny_settings={
        "apply_to_child_scopes": False,
        "excluded_actions": ["action"],
        "excluded_principals": ["principal"],
        "mode": azure_native.resources.DenySettingsMode.DENY_DELETE,
    },
    deployment_stack_name="simpleDeploymentStack",
    location="eastus",
    parameters={
        "parameter1": {
            "value": "a string",
        },
    },
    resource_group_name="deploymentStacksRG",
    tags={
        "tagkey": "tagVal",
    })
resources:
  deploymentStackAtResourceGroup:
    type: azure-native:resources:DeploymentStackAtResourceGroup
    properties:
      actionOnUnmanage:
        managementGroups: detach
        resourceGroups: delete
        resources: delete
      denySettings:
        applyToChildScopes: false
        excludedActions:
          - action
        excludedPrincipals:
          - principal
        mode: denyDelete
      deploymentStackName: simpleDeploymentStack
      location: eastus
      parameters:
        parameter1:
          value: a string
      resourceGroupName: deploymentStacksRG
      tags:
        tagkey: tagVal
Create DeploymentStackAtResourceGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DeploymentStackAtResourceGroup(name: string, args: DeploymentStackAtResourceGroupArgs, opts?: CustomResourceOptions);@overload
def DeploymentStackAtResourceGroup(resource_name: str,
                                   args: DeploymentStackAtResourceGroupArgs,
                                   opts: Optional[ResourceOptions] = None)
@overload
def DeploymentStackAtResourceGroup(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   action_on_unmanage: Optional[DeploymentStackPropertiesActionOnUnmanageArgs] = None,
                                   resource_group_name: Optional[str] = None,
                                   deny_settings: Optional[DenySettingsArgs] = None,
                                   deployment_scope: Optional[str] = None,
                                   deployment_stack_name: Optional[str] = None,
                                   description: Optional[str] = None,
                                   location: Optional[str] = None,
                                   parameters: Optional[Any] = None,
                                   parameters_link: Optional[DeploymentStacksParametersLinkArgs] = None,
                                   debug_setting: Optional[DeploymentStacksDebugSettingArgs] = None,
                                   tags: Optional[Mapping[str, str]] = None,
                                   template: Optional[Any] = None,
                                   template_link: Optional[DeploymentStacksTemplateLinkArgs] = None)func NewDeploymentStackAtResourceGroup(ctx *Context, name string, args DeploymentStackAtResourceGroupArgs, opts ...ResourceOption) (*DeploymentStackAtResourceGroup, error)public DeploymentStackAtResourceGroup(string name, DeploymentStackAtResourceGroupArgs args, CustomResourceOptions? opts = null)
public DeploymentStackAtResourceGroup(String name, DeploymentStackAtResourceGroupArgs args)
public DeploymentStackAtResourceGroup(String name, DeploymentStackAtResourceGroupArgs args, CustomResourceOptions options)
type: azure-native:resources:DeploymentStackAtResourceGroup
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 DeploymentStackAtResourceGroupArgs
- 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 DeploymentStackAtResourceGroupArgs
- 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 DeploymentStackAtResourceGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeploymentStackAtResourceGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeploymentStackAtResourceGroupArgs
- 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 deploymentStackAtResourceGroupResource = new AzureNative.Resources.DeploymentStackAtResourceGroup("deploymentStackAtResourceGroupResource", new()
{
    ActionOnUnmanage = new AzureNative.Resources.Inputs.DeploymentStackPropertiesActionOnUnmanageArgs
    {
        Resources = "string",
        ManagementGroups = "string",
        ResourceGroups = "string",
    },
    ResourceGroupName = "string",
    DenySettings = new AzureNative.Resources.Inputs.DenySettingsArgs
    {
        Mode = "string",
        ApplyToChildScopes = false,
        ExcludedActions = new[]
        {
            "string",
        },
        ExcludedPrincipals = new[]
        {
            "string",
        },
    },
    DeploymentScope = "string",
    DeploymentStackName = "string",
    Description = "string",
    Location = "string",
    Parameters = "any",
    ParametersLink = new AzureNative.Resources.Inputs.DeploymentStacksParametersLinkArgs
    {
        Uri = "string",
        ContentVersion = "string",
    },
    DebugSetting = new AzureNative.Resources.Inputs.DeploymentStacksDebugSettingArgs
    {
        DetailLevel = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    Template = "any",
    TemplateLink = new AzureNative.Resources.Inputs.DeploymentStacksTemplateLinkArgs
    {
        ContentVersion = "string",
        Id = "string",
        QueryString = "string",
        RelativePath = "string",
        Uri = "string",
    },
});
example, err := resources.NewDeploymentStackAtResourceGroup(ctx, "deploymentStackAtResourceGroupResource", &resources.DeploymentStackAtResourceGroupArgs{
	ActionOnUnmanage: &resources.DeploymentStackPropertiesActionOnUnmanageArgs{
		Resources:        pulumi.String("string"),
		ManagementGroups: pulumi.String("string"),
		ResourceGroups:   pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	DenySettings: &resources.DenySettingsArgs{
		Mode:               pulumi.String("string"),
		ApplyToChildScopes: pulumi.Bool(false),
		ExcludedActions: pulumi.StringArray{
			pulumi.String("string"),
		},
		ExcludedPrincipals: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	DeploymentScope:     pulumi.String("string"),
	DeploymentStackName: pulumi.String("string"),
	Description:         pulumi.String("string"),
	Location:            pulumi.String("string"),
	Parameters:          pulumi.Any("any"),
	ParametersLink: &resources.DeploymentStacksParametersLinkArgs{
		Uri:            pulumi.String("string"),
		ContentVersion: pulumi.String("string"),
	},
	DebugSetting: &resources.DeploymentStacksDebugSettingArgs{
		DetailLevel: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Template: pulumi.Any("any"),
	TemplateLink: &resources.DeploymentStacksTemplateLinkArgs{
		ContentVersion: pulumi.String("string"),
		Id:             pulumi.String("string"),
		QueryString:    pulumi.String("string"),
		RelativePath:   pulumi.String("string"),
		Uri:            pulumi.String("string"),
	},
})
var deploymentStackAtResourceGroupResource = new DeploymentStackAtResourceGroup("deploymentStackAtResourceGroupResource", DeploymentStackAtResourceGroupArgs.builder()
    .actionOnUnmanage(DeploymentStackPropertiesActionOnUnmanageArgs.builder()
        .resources("string")
        .managementGroups("string")
        .resourceGroups("string")
        .build())
    .resourceGroupName("string")
    .denySettings(DenySettingsArgs.builder()
        .mode("string")
        .applyToChildScopes(false)
        .excludedActions("string")
        .excludedPrincipals("string")
        .build())
    .deploymentScope("string")
    .deploymentStackName("string")
    .description("string")
    .location("string")
    .parameters("any")
    .parametersLink(DeploymentStacksParametersLinkArgs.builder()
        .uri("string")
        .contentVersion("string")
        .build())
    .debugSetting(DeploymentStacksDebugSettingArgs.builder()
        .detailLevel("string")
        .build())
    .tags(Map.of("string", "string"))
    .template("any")
    .templateLink(DeploymentStacksTemplateLinkArgs.builder()
        .contentVersion("string")
        .id("string")
        .queryString("string")
        .relativePath("string")
        .uri("string")
        .build())
    .build());
deployment_stack_at_resource_group_resource = azure_native.resources.DeploymentStackAtResourceGroup("deploymentStackAtResourceGroupResource",
    action_on_unmanage={
        "resources": "string",
        "management_groups": "string",
        "resource_groups": "string",
    },
    resource_group_name="string",
    deny_settings={
        "mode": "string",
        "apply_to_child_scopes": False,
        "excluded_actions": ["string"],
        "excluded_principals": ["string"],
    },
    deployment_scope="string",
    deployment_stack_name="string",
    description="string",
    location="string",
    parameters="any",
    parameters_link={
        "uri": "string",
        "content_version": "string",
    },
    debug_setting={
        "detail_level": "string",
    },
    tags={
        "string": "string",
    },
    template="any",
    template_link={
        "content_version": "string",
        "id": "string",
        "query_string": "string",
        "relative_path": "string",
        "uri": "string",
    })
const deploymentStackAtResourceGroupResource = new azure_native.resources.DeploymentStackAtResourceGroup("deploymentStackAtResourceGroupResource", {
    actionOnUnmanage: {
        resources: "string",
        managementGroups: "string",
        resourceGroups: "string",
    },
    resourceGroupName: "string",
    denySettings: {
        mode: "string",
        applyToChildScopes: false,
        excludedActions: ["string"],
        excludedPrincipals: ["string"],
    },
    deploymentScope: "string",
    deploymentStackName: "string",
    description: "string",
    location: "string",
    parameters: "any",
    parametersLink: {
        uri: "string",
        contentVersion: "string",
    },
    debugSetting: {
        detailLevel: "string",
    },
    tags: {
        string: "string",
    },
    template: "any",
    templateLink: {
        contentVersion: "string",
        id: "string",
        queryString: "string",
        relativePath: "string",
        uri: "string",
    },
});
type: azure-native:resources:DeploymentStackAtResourceGroup
properties:
    actionOnUnmanage:
        managementGroups: string
        resourceGroups: string
        resources: string
    debugSetting:
        detailLevel: string
    denySettings:
        applyToChildScopes: false
        excludedActions:
            - string
        excludedPrincipals:
            - string
        mode: string
    deploymentScope: string
    deploymentStackName: string
    description: string
    location: string
    parameters: any
    parametersLink:
        contentVersion: string
        uri: string
    resourceGroupName: string
    tags:
        string: string
    template: any
    templateLink:
        contentVersion: string
        id: string
        queryString: string
        relativePath: string
        uri: string
DeploymentStackAtResourceGroup 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 DeploymentStackAtResourceGroup resource accepts the following input properties:
- ActionOn Pulumi.Unmanage Azure Native. Resources. Inputs. Deployment Stack Properties Action On Unmanage 
- Defines the behavior of resources that are not managed immediately after the stack is updated.
- DenySettings Pulumi.Azure Native. Resources. Inputs. Deny Settings 
- Defines how resources deployed by the stack are locked.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DebugSetting Pulumi.Azure Native. Resources. Inputs. Deployment Stacks Debug Setting 
- The debug setting of the deployment.
- DeploymentScope string
- The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
- DeploymentStack stringName 
- Name of the deployment stack.
- Description string
- Deployment stack description.
- Location string
- The location of the deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- Parameters object
- Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.
- ParametersLink Pulumi.Azure Native. Resources. Inputs. Deployment Stacks Parameters Link 
- The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
- Dictionary<string, string>
- Deployment stack resource tags.
- Template object
- The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
- TemplateLink Pulumi.Azure Native. Resources. Inputs. Deployment Stacks Template Link 
- The URI of the template. Use either the templateLink property or the template property, but not both.
- ActionOn DeploymentUnmanage Stack Properties Action On Unmanage Args 
- Defines the behavior of resources that are not managed immediately after the stack is updated.
- DenySettings DenySettings Args 
- Defines how resources deployed by the stack are locked.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- DebugSetting DeploymentStacks Debug Setting Args 
- The debug setting of the deployment.
- DeploymentScope string
- The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
- DeploymentStack stringName 
- Name of the deployment stack.
- Description string
- Deployment stack description.
- Location string
- The location of the deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- Parameters interface{}
- Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.
- ParametersLink DeploymentStacks Parameters Link Args 
- The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
- map[string]string
- Deployment stack resource tags.
- Template interface{}
- The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
- TemplateLink DeploymentStacks Template Link Args 
- The URI of the template. Use either the templateLink property or the template property, but not both.
- actionOn DeploymentUnmanage Stack Properties Action On Unmanage 
- Defines the behavior of resources that are not managed immediately after the stack is updated.
- denySettings DenySettings 
- Defines how resources deployed by the stack are locked.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- debugSetting DeploymentStacks Debug Setting 
- The debug setting of the deployment.
- deploymentScope String
- The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
- deploymentStack StringName 
- Name of the deployment stack.
- description String
- Deployment stack description.
- location String
- The location of the deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters Object
- Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.
- parametersLink DeploymentStacks Parameters Link 
- The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
- Map<String,String>
- Deployment stack resource tags.
- template Object
- The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
- templateLink DeploymentStacks Template Link 
- The URI of the template. Use either the templateLink property or the template property, but not both.
- actionOn DeploymentUnmanage Stack Properties Action On Unmanage 
- Defines the behavior of resources that are not managed immediately after the stack is updated.
- denySettings DenySettings 
- Defines how resources deployed by the stack are locked.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- debugSetting DeploymentStacks Debug Setting 
- The debug setting of the deployment.
- deploymentScope string
- The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
- deploymentStack stringName 
- Name of the deployment stack.
- description string
- Deployment stack description.
- location string
- The location of the deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters any
- Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.
- parametersLink DeploymentStacks Parameters Link 
- The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
- {[key: string]: string}
- Deployment stack resource tags.
- template any
- The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
- templateLink DeploymentStacks Template Link 
- The URI of the template. Use either the templateLink property or the template property, but not both.
- action_on_ Deploymentunmanage Stack Properties Action On Unmanage Args 
- Defines the behavior of resources that are not managed immediately after the stack is updated.
- deny_settings DenySettings Args 
- Defines how resources deployed by the stack are locked.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- debug_setting DeploymentStacks Debug Setting Args 
- The debug setting of the deployment.
- deployment_scope str
- The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
- deployment_stack_ strname 
- Name of the deployment stack.
- description str
- Deployment stack description.
- location str
- The location of the deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters Any
- Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.
- parameters_link DeploymentStacks Parameters Link Args 
- The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
- Mapping[str, str]
- Deployment stack resource tags.
- template Any
- The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
- template_link DeploymentStacks Template Link Args 
- The URI of the template. Use either the templateLink property or the template property, but not both.
- actionOn Property MapUnmanage 
- Defines the behavior of resources that are not managed immediately after the stack is updated.
- denySettings Property Map
- Defines how resources deployed by the stack are locked.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- debugSetting Property Map
- The debug setting of the deployment.
- deploymentScope String
- The scope at which the initial deployment should be created. If a scope is not specified, it will default to the scope of the deployment stack. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroupId}'), subscription (format: '/subscriptions/{subscriptionId}'), resource group (format: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}').
- deploymentStack StringName 
- Name of the deployment stack.
- description String
- Deployment stack description.
- location String
- The location of the deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters Any
- Name and value pairs that define the deployment parameters for the template. Use this element when providing the parameter values directly in the request, rather than linking to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.
- parametersLink Property Map
- The URI of parameters file. Use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.
- Map<String>
- Deployment stack resource tags.
- template Any
- The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.
- templateLink Property Map
- The URI of the template. Use either the templateLink property or the template property, but not both.
Outputs
All input properties are implicitly available as output properties. Additionally, the DeploymentStackAtResourceGroup resource produces the following output properties:
- DeletedResources List<Pulumi.Azure Native. Resources. Outputs. Resource Reference Response> 
- An array of resources that were deleted during the most recent update.
- DeploymentId string
- The resourceId of the deployment resource created by the deployment stack.
- DetachedResources List<Pulumi.Azure Native. Resources. Outputs. Resource Reference Response> 
- An array of resources that were detached during the most recent update.
- Duration string
- The duration of the deployment stack update.
- FailedResources List<Pulumi.Azure Native. Resources. Outputs. Resource Reference Extended Response> 
- An array of resources that failed to reach goal state during the most recent update.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of this resource.
- Outputs object
- The outputs of the underlying deployment.
- ProvisioningState string
- State of the deployment stack.
- Resources
List<Pulumi.Azure Native. Resources. Outputs. Managed Resource Reference Response> 
- An array of resources currently managed by the deployment stack.
- SystemData Pulumi.Azure Native. Resources. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- Type of this resource.
- Error
Pulumi.Azure Native. Resources. Outputs. Error Response Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- DeletedResources []ResourceReference Response 
- An array of resources that were deleted during the most recent update.
- DeploymentId string
- The resourceId of the deployment resource created by the deployment stack.
- DetachedResources []ResourceReference Response 
- An array of resources that were detached during the most recent update.
- Duration string
- The duration of the deployment stack update.
- FailedResources []ResourceReference Extended Response 
- An array of resources that failed to reach goal state during the most recent update.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of this resource.
- Outputs interface{}
- The outputs of the underlying deployment.
- ProvisioningState string
- State of the deployment stack.
- Resources
[]ManagedResource Reference Response 
- An array of resources currently managed by the deployment stack.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- Type of this resource.
- Error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- deletedResources List<ResourceReference Response> 
- An array of resources that were deleted during the most recent update.
- deploymentId String
- The resourceId of the deployment resource created by the deployment stack.
- detachedResources List<ResourceReference Response> 
- An array of resources that were detached during the most recent update.
- duration String
- The duration of the deployment stack update.
- failedResources List<ResourceReference Extended Response> 
- An array of resources that failed to reach goal state during the most recent update.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of this resource.
- outputs Object
- The outputs of the underlying deployment.
- provisioningState String
- State of the deployment stack.
- resources
List<ManagedResource Reference Response> 
- An array of resources currently managed by the deployment stack.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Type of this resource.
- error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- deletedResources ResourceReference Response[] 
- An array of resources that were deleted during the most recent update.
- deploymentId string
- The resourceId of the deployment resource created by the deployment stack.
- detachedResources ResourceReference Response[] 
- An array of resources that were detached during the most recent update.
- duration string
- The duration of the deployment stack update.
- failedResources ResourceReference Extended Response[] 
- An array of resources that failed to reach goal state during the most recent update.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of this resource.
- outputs any
- The outputs of the underlying deployment.
- provisioningState string
- State of the deployment stack.
- resources
ManagedResource Reference Response[] 
- An array of resources currently managed by the deployment stack.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- Type of this resource.
- error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- deleted_resources Sequence[ResourceReference Response] 
- An array of resources that were deleted during the most recent update.
- deployment_id str
- The resourceId of the deployment resource created by the deployment stack.
- detached_resources Sequence[ResourceReference Response] 
- An array of resources that were detached during the most recent update.
- duration str
- The duration of the deployment stack update.
- failed_resources Sequence[ResourceReference Extended Response] 
- An array of resources that failed to reach goal state during the most recent update.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of this resource.
- outputs Any
- The outputs of the underlying deployment.
- provisioning_state str
- State of the deployment stack.
- resources
Sequence[ManagedResource Reference Response] 
- An array of resources currently managed by the deployment stack.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- Type of this resource.
- error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- deletedResources List<Property Map>
- An array of resources that were deleted during the most recent update.
- deploymentId String
- The resourceId of the deployment resource created by the deployment stack.
- detachedResources List<Property Map>
- An array of resources that were detached during the most recent update.
- duration String
- The duration of the deployment stack update.
- failedResources List<Property Map>
- An array of resources that failed to reach goal state during the most recent update.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of this resource.
- outputs Any
- The outputs of the underlying deployment.
- provisioningState String
- State of the deployment stack.
- resources List<Property Map>
- An array of resources currently managed by the deployment stack.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Type of this resource.
- error Property Map
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
Supporting Types
DenySettings, DenySettingsArgs    
- Mode
string | Pulumi.Azure Native. Resources. Deny Settings Mode 
- denySettings Mode.
- ApplyTo boolChild Scopes 
- DenySettings will be applied to child scopes.
- ExcludedActions List<string>
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- ExcludedPrincipals List<string>
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- Mode
string | DenySettings Mode 
- denySettings Mode.
- ApplyTo boolChild Scopes 
- DenySettings will be applied to child scopes.
- ExcludedActions []string
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- ExcludedPrincipals []string
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
String | DenySettings Mode 
- denySettings Mode.
- applyTo BooleanChild Scopes 
- DenySettings will be applied to child scopes.
- excludedActions List<String>
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excludedPrincipals List<String>
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
string | DenySettings Mode 
- denySettings Mode.
- applyTo booleanChild Scopes 
- DenySettings will be applied to child scopes.
- excludedActions string[]
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excludedPrincipals string[]
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
str | DenySettings Mode 
- denySettings Mode.
- apply_to_ boolchild_ scopes 
- DenySettings will be applied to child scopes.
- excluded_actions Sequence[str]
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excluded_principals Sequence[str]
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
String | "denyDelete" | "deny Write And Delete" | "none" 
- denySettings Mode.
- applyTo BooleanChild Scopes 
- DenySettings will be applied to child scopes.
- excludedActions List<String>
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excludedPrincipals List<String>
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
DenySettingsMode, DenySettingsModeArgs      
- DenyDelete 
- denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- DenyWrite And Delete 
- denyWriteAndDeleteAuthorized users can only read from a resource, but cannot modify or delete it.
- None
- noneNo denyAssignments have been applied.
- DenySettings Mode Deny Delete 
- denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- DenySettings Mode Deny Write And Delete 
- denyWriteAndDeleteAuthorized users can only read from a resource, but cannot modify or delete it.
- DenySettings Mode None 
- noneNo denyAssignments have been applied.
- DenyDelete 
- denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- DenyWrite And Delete 
- denyWriteAndDeleteAuthorized users can only read from a resource, but cannot modify or delete it.
- None
- noneNo denyAssignments have been applied.
- DenyDelete 
- denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- DenyWrite And Delete 
- denyWriteAndDeleteAuthorized users can only read from a resource, but cannot modify or delete it.
- None
- noneNo denyAssignments have been applied.
- DENY_DELETE
- denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- DENY_WRITE_AND_DELETE
- denyWriteAndDeleteAuthorized users can only read from a resource, but cannot modify or delete it.
- NONE
- noneNo denyAssignments have been applied.
- "denyDelete" 
- denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- "denyWrite And Delete" 
- denyWriteAndDeleteAuthorized users can only read from a resource, but cannot modify or delete it.
- "none"
- noneNo denyAssignments have been applied.
DenySettingsResponse, DenySettingsResponseArgs      
- Mode string
- denySettings Mode.
- ApplyTo boolChild Scopes 
- DenySettings will be applied to child scopes.
- ExcludedActions List<string>
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- ExcludedPrincipals List<string>
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- Mode string
- denySettings Mode.
- ApplyTo boolChild Scopes 
- DenySettings will be applied to child scopes.
- ExcludedActions []string
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- ExcludedPrincipals []string
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode String
- denySettings Mode.
- applyTo BooleanChild Scopes 
- DenySettings will be applied to child scopes.
- excludedActions List<String>
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excludedPrincipals List<String>
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode string
- denySettings Mode.
- applyTo booleanChild Scopes 
- DenySettings will be applied to child scopes.
- excludedActions string[]
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excludedPrincipals string[]
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode str
- denySettings Mode.
- apply_to_ boolchild_ scopes 
- DenySettings will be applied to child scopes.
- excluded_actions Sequence[str]
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excluded_principals Sequence[str]
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode String
- denySettings Mode.
- applyTo BooleanChild Scopes 
- DenySettings will be applied to child scopes.
- excludedActions List<String>
- List of role-based management operations that are excluded from the denySettings. Up to 200 actions are permitted. If the denySetting mode is set to 'denyWriteAndDelete', then the following actions are automatically appended to 'excludedActions': '*/read' and 'Microsoft.Authorization/locks/delete'. If the denySetting mode is set to 'denyDelete', then the following actions are automatically appended to 'excludedActions': 'Microsoft.Authorization/locks/delete'. Duplicate actions will be removed.
- excludedPrincipals List<String>
- List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
DeploymentStackPropertiesActionOnUnmanage, DeploymentStackPropertiesActionOnUnmanageArgs            
- Resources
string | Pulumi.Azure Native. Resources. Deployment Stacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ManagementGroups string | Pulumi.Azure Native. Resources. Deployment Stacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ResourceGroups string | Pulumi.Azure Native. Resources. Deployment Stacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resources
string | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ManagementGroups string | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ResourceGroups string | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources
String | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- managementGroups String | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resourceGroups String | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources
string | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- managementGroups string | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resourceGroups string | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources
str | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management_groups str | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource_groups str | DeploymentStacks Delete Detach Enum 
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources String | "delete" | "detach"
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- managementGroups String | "delete" | "detach"
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resourceGroups String | "delete" | "detach"
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
DeploymentStackPropertiesResponseActionOnUnmanage, DeploymentStackPropertiesResponseActionOnUnmanageArgs              
- Resources string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ManagementGroups string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ResourceGroups string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resources string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ManagementGroups string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- ResourceGroups string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources String
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- managementGroups String
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resourceGroups String
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- managementGroups string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resourceGroups string
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources str
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management_groups str
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource_groups str
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources String
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- managementGroups String
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resourceGroups String
- Specifies the action that should be taken on the resource when the deployment stack is deleted. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
DeploymentStacksDebugSetting, DeploymentStacksDebugSettingArgs        
- DetailLevel string
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- DetailLevel string
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detailLevel String
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detailLevel string
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detail_level str
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detailLevel String
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
DeploymentStacksDebugSettingResponse, DeploymentStacksDebugSettingResponseArgs          
- DetailLevel string
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- DetailLevel string
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detailLevel String
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detailLevel string
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detail_level str
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
- detailLevel String
- Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information that is being passed in during deployment. By logging information about the request or response, sensitive data that is retrieved through the deployment operations could potentially be exposed.
DeploymentStacksDeleteDetachEnum, DeploymentStacksDeleteDetachEnumArgs          
- Delete
- delete
- Detach
- detach
- DeploymentStacks Delete Detach Enum Delete 
- delete
- DeploymentStacks Delete Detach Enum Detach 
- detach
- Delete
- delete
- Detach
- detach
- Delete
- delete
- Detach
- detach
- DELETE
- delete
- DETACH
- detach
- "delete"
- delete
- "detach"
- detach
DeploymentStacksParametersLink, DeploymentStacksParametersLinkArgs        
- Uri string
- The URI of the parameters file.
- ContentVersion string
- If included, must match the ContentVersion in the template.
- Uri string
- The URI of the parameters file.
- ContentVersion string
- If included, must match the ContentVersion in the template.
- uri String
- The URI of the parameters file.
- contentVersion String
- If included, must match the ContentVersion in the template.
- uri string
- The URI of the parameters file.
- contentVersion string
- If included, must match the ContentVersion in the template.
- uri str
- The URI of the parameters file.
- content_version str
- If included, must match the ContentVersion in the template.
- uri String
- The URI of the parameters file.
- contentVersion String
- If included, must match the ContentVersion in the template.
DeploymentStacksParametersLinkResponse, DeploymentStacksParametersLinkResponseArgs          
- Uri string
- The URI of the parameters file.
- ContentVersion string
- If included, must match the ContentVersion in the template.
- Uri string
- The URI of the parameters file.
- ContentVersion string
- If included, must match the ContentVersion in the template.
- uri String
- The URI of the parameters file.
- contentVersion String
- If included, must match the ContentVersion in the template.
- uri string
- The URI of the parameters file.
- contentVersion string
- If included, must match the ContentVersion in the template.
- uri str
- The URI of the parameters file.
- content_version str
- If included, must match the ContentVersion in the template.
- uri String
- The URI of the parameters file.
- contentVersion String
- If included, must match the ContentVersion in the template.
DeploymentStacksTemplateLink, DeploymentStacksTemplateLinkArgs        
- ContentVersion string
- If included, must match the ContentVersion in the template.
- Id string
- The resource id of a Template Spec. Use either the id or uri property, but not both.
- QueryString string
- The query string (for example, a SAS token) to be used with the templateLink URI.
- RelativePath string
- The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs
- Uri string
- The URI of the template to deploy. Use either the uri or id property, but not both.
- ContentVersion string
- If included, must match the ContentVersion in the template.
- Id string
- The resource id of a Template Spec. Use either the id or uri property, but not both.
- QueryString string
- The query string (for example, a SAS token) to be used with the templateLink URI.
- RelativePath string
- The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs
- Uri string
- The URI of the template to deploy. Use either the uri or id property, but not both.
- contentVersion String
- If included, must match the ContentVersion in the template.
- id String
- The resource id of a Template Spec. Use either the id or uri property, but not both.
- queryString String
- The query string (for example, a SAS token) to be used with the templateLink URI.
- relativePath String
- The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs
- uri String
- The URI of the template to deploy. Use either the uri or id property, but not both.
- contentVersion string
- If included, must match the ContentVersion in the template.
- id string
- The resource id of a Template Spec. Use either the id or uri property, but not both.
- queryString string
- The query string (for example, a SAS token) to be used with the templateLink URI.
- relativePath string
- The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs
- uri string
- The URI of the template to deploy. Use either the uri or id property, but not both.
- content_version str
- If included, must match the ContentVersion in the template.
- id str
- The resource id of a Template Spec. Use either the id or uri property, but not both.
- query_string str
- The query string (for example, a SAS token) to be used with the templateLink URI.
- relative_path str
- The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs
- uri str
- The URI of the template to deploy. Use either the uri or id property, but not both.
- contentVersion String
- If included, must match the ContentVersion in the template.
- id String
- The resource id of a Template Spec. Use either the id or uri property, but not both.
- queryString String
- The query string (for example, a SAS token) to be used with the templateLink URI.
- relativePath String
- The relativePath property can be used to deploy a linked template at a location relative to the parent. If the parent template was linked with a TemplateSpec, this will reference an artifact in the TemplateSpec. If the parent was linked with a URI, the child deployment will be a combination of the parent and relativePath URIs
- uri String
- The URI of the template to deploy. Use either the uri or id property, but not both.
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs        
ErrorDetailResponse, ErrorDetailResponseArgs      
- AdditionalInfo List<Pulumi.Azure Native. Resources. Inputs. Error Additional Info Response> 
- The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.Azure Native. Resources. Inputs. Error Detail Response> 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- AdditionalInfo []ErrorAdditional Info Response 
- The error additional info.
- Code string
- The error code.
- Details
[]ErrorDetail Response 
- The error details.
- Message string
- The error message.
- Target string
- The error target.
- additionalInfo List<ErrorAdditional Info Response> 
- The error additional info.
- code String
- The error code.
- details
List<ErrorDetail Response> 
- The error details.
- message String
- The error message.
- target String
- The error target.
- additionalInfo ErrorAdditional Info Response[] 
- The error additional info.
- code string
- The error code.
- details
ErrorDetail Response[] 
- The error details.
- message string
- The error message.
- target string
- The error target.
- additional_info Sequence[ErrorAdditional Info Response] 
- The error additional info.
- code str
- The error code.
- details
Sequence[ErrorDetail Response] 
- The error details.
- message str
- The error message.
- target str
- The error target.
- additionalInfo List<Property Map>
- The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ErrorResponseResponse, ErrorResponseResponseArgs      
- AdditionalInfo List<Pulumi.Azure Native. Resources. Inputs. Error Additional Info Response> 
- The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.Azure Native. Resources. Inputs. Error Response Response> 
- The error details.
- Error
Pulumi.Azure Native. Resources. Inputs. Error Detail Response 
- The error object.
- Message string
- The error message.
- Target string
- The error target.
- AdditionalInfo []ErrorAdditional Info Response 
- The error additional info.
- Code string
- The error code.
- Details
[]ErrorResponse Response 
- The error details.
- Error
ErrorDetail Response 
- The error object.
- Message string
- The error message.
- Target string
- The error target.
- additionalInfo List<ErrorAdditional Info Response> 
- The error additional info.
- code String
- The error code.
- details
List<ErrorResponse Response> 
- The error details.
- error
ErrorDetail Response 
- The error object.
- message String
- The error message.
- target String
- The error target.
- additionalInfo ErrorAdditional Info Response[] 
- The error additional info.
- code string
- The error code.
- details
ErrorResponse Response[] 
- The error details.
- error
ErrorDetail Response 
- The error object.
- message string
- The error message.
- target string
- The error target.
- additional_info Sequence[ErrorAdditional Info Response] 
- The error additional info.
- code str
- The error code.
- details
Sequence[ErrorResponse Response] 
- The error details.
- error
ErrorDetail Response 
- The error object.
- message str
- The error message.
- target str
- The error target.
- additionalInfo List<Property Map>
- The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- error Property Map
- The error object.
- message String
- The error message.
- target String
- The error target.
ManagedResourceReferenceResponse, ManagedResourceReferenceResponseArgs        
- Id string
- The resourceId of a resource managed by the deployment stack.
- DenyStatus string
- denyAssignment settings applied to the resource.
- Status string
- Current management state of the resource in the deployment stack.
- Id string
- The resourceId of a resource managed by the deployment stack.
- DenyStatus string
- denyAssignment settings applied to the resource.
- Status string
- Current management state of the resource in the deployment stack.
- id String
- The resourceId of a resource managed by the deployment stack.
- denyStatus String
- denyAssignment settings applied to the resource.
- status String
- Current management state of the resource in the deployment stack.
- id string
- The resourceId of a resource managed by the deployment stack.
- denyStatus string
- denyAssignment settings applied to the resource.
- status string
- Current management state of the resource in the deployment stack.
- id str
- The resourceId of a resource managed by the deployment stack.
- deny_status str
- denyAssignment settings applied to the resource.
- status str
- Current management state of the resource in the deployment stack.
- id String
- The resourceId of a resource managed by the deployment stack.
- denyStatus String
- denyAssignment settings applied to the resource.
- status String
- Current management state of the resource in the deployment stack.
ResourceReferenceExtendedResponse, ResourceReferenceExtendedResponseArgs        
- Id string
- The resourceId of a resource managed by the deployment stack.
- Error
Pulumi.Azure Native. Resources. Inputs. Error Response Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- Id string
- The resourceId of a resource managed by the deployment stack.
- Error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- id String
- The resourceId of a resource managed by the deployment stack.
- error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- id string
- The resourceId of a resource managed by the deployment stack.
- error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- id str
- The resourceId of a resource managed by the deployment stack.
- error
ErrorResponse Response 
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
- id String
- The resourceId of a resource managed by the deployment stack.
- error Property Map
- Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
ResourceReferenceResponse, ResourceReferenceResponseArgs      
- Id string
- The resourceId of a resource managed by the deployment stack.
- Id string
- The resourceId of a resource managed by the deployment stack.
- id String
- The resourceId of a resource managed by the deployment stack.
- id string
- The resourceId of a resource managed by the deployment stack.
- id str
- The resourceId of a resource managed by the deployment stack.
- id String
- The resourceId of a resource managed by the deployment stack.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:resources:DeploymentStackAtResourceGroup simpleDeploymentStack /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Resources/deploymentStacks/{deploymentStackName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0