azure-native.resources.DeploymentStackAtManagementGroup
Explore with Pulumi AI
Deployment stack object.
Uses Azure REST API version 2024-03-01. In version 2.x of the Azure Native provider, it used API version 2022-08-01-preview.
Other available API versions: 2022-08-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native resources [ApiVersion]
. See the version guide for details.
Example Usage
DeploymentStacksManagementGroupCreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var deploymentStackAtManagementGroup = new AzureNative.Resources.DeploymentStackAtManagementGroup("deploymentStackAtManagementGroup", new()
{
ActionOnUnmanage = new AzureNative.Resources.Inputs.ActionOnUnmanageArgs
{
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",
ManagementGroupId = "myMg",
Parameters =
{
{ "parameter1", new AzureNative.Resources.Inputs.DeploymentParameterArgs
{
Value = "a string",
} },
},
Tags =
{
{ "tagkey", "tagVal" },
},
});
});
package main
import (
resources "github.com/pulumi/pulumi-azure-native-sdk/resources/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := resources.NewDeploymentStackAtManagementGroup(ctx, "deploymentStackAtManagementGroup", &resources.DeploymentStackAtManagementGroupArgs{
ActionOnUnmanage: &resources.ActionOnUnmanageArgs{
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"),
ManagementGroupId: pulumi.String("myMg"),
Parameters: resources.DeploymentParameterMap{
"parameter1": &resources.DeploymentParameterArgs{
Value: pulumi.Any("a string"),
},
},
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.DeploymentStackAtManagementGroup;
import com.pulumi.azurenative.resources.DeploymentStackAtManagementGroupArgs;
import com.pulumi.azurenative.resources.inputs.ActionOnUnmanageArgs;
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 deploymentStackAtManagementGroup = new DeploymentStackAtManagementGroup("deploymentStackAtManagementGroup", DeploymentStackAtManagementGroupArgs.builder()
.actionOnUnmanage(ActionOnUnmanageArgs.builder()
.managementGroups("detach")
.resourceGroups("delete")
.resources("delete")
.build())
.denySettings(DenySettingsArgs.builder()
.applyToChildScopes(false)
.excludedActions("action")
.excludedPrincipals("principal")
.mode("denyDelete")
.build())
.deploymentStackName("simpleDeploymentStack")
.location("eastus")
.managementGroupId("myMg")
.parameters(Map.of("parameter1", DeploymentParameterArgs.builder()
.value("a string")
.build()))
.tags(Map.of("tagkey", "tagVal"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const deploymentStackAtManagementGroup = new azure_native.resources.DeploymentStackAtManagementGroup("deploymentStackAtManagementGroup", {
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",
managementGroupId: "myMg",
parameters: {
parameter1: {
value: "a string",
},
},
tags: {
tagkey: "tagVal",
},
});
import pulumi
import pulumi_azure_native as azure_native
deployment_stack_at_management_group = azure_native.resources.DeploymentStackAtManagementGroup("deploymentStackAtManagementGroup",
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",
management_group_id="myMg",
parameters={
"parameter1": {
"value": "a string",
},
},
tags={
"tagkey": "tagVal",
})
resources:
deploymentStackAtManagementGroup:
type: azure-native:resources:DeploymentStackAtManagementGroup
properties:
actionOnUnmanage:
managementGroups: detach
resourceGroups: delete
resources: delete
denySettings:
applyToChildScopes: false
excludedActions:
- action
excludedPrincipals:
- principal
mode: denyDelete
deploymentStackName: simpleDeploymentStack
location: eastus
managementGroupId: myMg
parameters:
parameter1:
value: a string
tags:
tagkey: tagVal
Create DeploymentStackAtManagementGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DeploymentStackAtManagementGroup(name: string, args: DeploymentStackAtManagementGroupArgs, opts?: CustomResourceOptions);
@overload
def DeploymentStackAtManagementGroup(resource_name: str,
args: DeploymentStackAtManagementGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DeploymentStackAtManagementGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
deny_settings: Optional[DenySettingsArgs] = None,
management_group_id: Optional[str] = None,
action_on_unmanage: Optional[ActionOnUnmanageArgs] = None,
description: Optional[str] = None,
deployment_scope: Optional[str] = None,
deployment_stack_name: Optional[str] = None,
debug_setting: Optional[DeploymentStacksDebugSettingArgs] = None,
location: Optional[str] = None,
bypass_stack_out_of_sync_error: Optional[bool] = None,
parameters: Optional[Mapping[str, DeploymentParameterArgs]] = None,
parameters_link: Optional[DeploymentStacksParametersLinkArgs] = None,
tags: Optional[Mapping[str, str]] = None,
template: Optional[Any] = None,
template_link: Optional[DeploymentStacksTemplateLinkArgs] = None)
func NewDeploymentStackAtManagementGroup(ctx *Context, name string, args DeploymentStackAtManagementGroupArgs, opts ...ResourceOption) (*DeploymentStackAtManagementGroup, error)
public DeploymentStackAtManagementGroup(string name, DeploymentStackAtManagementGroupArgs args, CustomResourceOptions? opts = null)
public DeploymentStackAtManagementGroup(String name, DeploymentStackAtManagementGroupArgs args)
public DeploymentStackAtManagementGroup(String name, DeploymentStackAtManagementGroupArgs args, CustomResourceOptions options)
type: azure-native:resources:DeploymentStackAtManagementGroup
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 DeploymentStackAtManagementGroupArgs
- 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 DeploymentStackAtManagementGroupArgs
- 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 DeploymentStackAtManagementGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeploymentStackAtManagementGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeploymentStackAtManagementGroupArgs
- 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 deploymentStackAtManagementGroupResource = new AzureNative.Resources.DeploymentStackAtManagementGroup("deploymentStackAtManagementGroupResource", new()
{
DenySettings = new AzureNative.Resources.Inputs.DenySettingsArgs
{
Mode = "string",
ApplyToChildScopes = false,
ExcludedActions = new[]
{
"string",
},
ExcludedPrincipals = new[]
{
"string",
},
},
ManagementGroupId = "string",
ActionOnUnmanage = new AzureNative.Resources.Inputs.ActionOnUnmanageArgs
{
Resources = "string",
ManagementGroups = "string",
ResourceGroups = "string",
},
Description = "string",
DeploymentScope = "string",
DeploymentStackName = "string",
DebugSetting = new AzureNative.Resources.Inputs.DeploymentStacksDebugSettingArgs
{
DetailLevel = "string",
},
Location = "string",
BypassStackOutOfSyncError = false,
Parameters =
{
{ "string", new AzureNative.Resources.Inputs.DeploymentParameterArgs
{
Reference = new AzureNative.Resources.Inputs.KeyVaultParameterReferenceArgs
{
KeyVault = new AzureNative.Resources.Inputs.KeyVaultReferenceArgs
{
Id = "string",
},
SecretName = "string",
SecretVersion = "string",
},
Type = "string",
Value = "any",
} },
},
ParametersLink = new AzureNative.Resources.Inputs.DeploymentStacksParametersLinkArgs
{
Uri = "string",
ContentVersion = "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.NewDeploymentStackAtManagementGroup(ctx, "deploymentStackAtManagementGroupResource", &resources.DeploymentStackAtManagementGroupArgs{
DenySettings: &resources.DenySettingsArgs{
Mode: pulumi.String("string"),
ApplyToChildScopes: pulumi.Bool(false),
ExcludedActions: pulumi.StringArray{
pulumi.String("string"),
},
ExcludedPrincipals: pulumi.StringArray{
pulumi.String("string"),
},
},
ManagementGroupId: pulumi.String("string"),
ActionOnUnmanage: &resources.ActionOnUnmanageArgs{
Resources: pulumi.String("string"),
ManagementGroups: pulumi.String("string"),
ResourceGroups: pulumi.String("string"),
},
Description: pulumi.String("string"),
DeploymentScope: pulumi.String("string"),
DeploymentStackName: pulumi.String("string"),
DebugSetting: &resources.DeploymentStacksDebugSettingArgs{
DetailLevel: pulumi.String("string"),
},
Location: pulumi.String("string"),
BypassStackOutOfSyncError: pulumi.Bool(false),
Parameters: resources.DeploymentParameterMap{
"string": &resources.DeploymentParameterArgs{
Reference: &resources.KeyVaultParameterReferenceArgs{
KeyVault: &resources.KeyVaultReferenceArgs{
Id: pulumi.String("string"),
},
SecretName: pulumi.String("string"),
SecretVersion: pulumi.String("string"),
},
Type: pulumi.String("string"),
Value: pulumi.Any("any"),
},
},
ParametersLink: &resources.DeploymentStacksParametersLinkArgs{
Uri: pulumi.String("string"),
ContentVersion: 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 deploymentStackAtManagementGroupResource = new DeploymentStackAtManagementGroup("deploymentStackAtManagementGroupResource", DeploymentStackAtManagementGroupArgs.builder()
.denySettings(DenySettingsArgs.builder()
.mode("string")
.applyToChildScopes(false)
.excludedActions("string")
.excludedPrincipals("string")
.build())
.managementGroupId("string")
.actionOnUnmanage(ActionOnUnmanageArgs.builder()
.resources("string")
.managementGroups("string")
.resourceGroups("string")
.build())
.description("string")
.deploymentScope("string")
.deploymentStackName("string")
.debugSetting(DeploymentStacksDebugSettingArgs.builder()
.detailLevel("string")
.build())
.location("string")
.bypassStackOutOfSyncError(false)
.parameters(Map.of("string", Map.ofEntries(
Map.entry("reference", Map.ofEntries(
Map.entry("keyVault", Map.of("id", "string")),
Map.entry("secretName", "string"),
Map.entry("secretVersion", "string")
)),
Map.entry("type", "string"),
Map.entry("value", "any")
)))
.parametersLink(DeploymentStacksParametersLinkArgs.builder()
.uri("string")
.contentVersion("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_management_group_resource = azure_native.resources.DeploymentStackAtManagementGroup("deploymentStackAtManagementGroupResource",
deny_settings={
"mode": "string",
"apply_to_child_scopes": False,
"excluded_actions": ["string"],
"excluded_principals": ["string"],
},
management_group_id="string",
action_on_unmanage={
"resources": "string",
"management_groups": "string",
"resource_groups": "string",
},
description="string",
deployment_scope="string",
deployment_stack_name="string",
debug_setting={
"detail_level": "string",
},
location="string",
bypass_stack_out_of_sync_error=False,
parameters={
"string": {
"reference": {
"key_vault": {
"id": "string",
},
"secret_name": "string",
"secret_version": "string",
},
"type": "string",
"value": "any",
},
},
parameters_link={
"uri": "string",
"content_version": "string",
},
tags={
"string": "string",
},
template="any",
template_link={
"content_version": "string",
"id": "string",
"query_string": "string",
"relative_path": "string",
"uri": "string",
})
const deploymentStackAtManagementGroupResource = new azure_native.resources.DeploymentStackAtManagementGroup("deploymentStackAtManagementGroupResource", {
denySettings: {
mode: "string",
applyToChildScopes: false,
excludedActions: ["string"],
excludedPrincipals: ["string"],
},
managementGroupId: "string",
actionOnUnmanage: {
resources: "string",
managementGroups: "string",
resourceGroups: "string",
},
description: "string",
deploymentScope: "string",
deploymentStackName: "string",
debugSetting: {
detailLevel: "string",
},
location: "string",
bypassStackOutOfSyncError: false,
parameters: {
string: {
reference: {
keyVault: {
id: "string",
},
secretName: "string",
secretVersion: "string",
},
type: "string",
value: "any",
},
},
parametersLink: {
uri: "string",
contentVersion: "string",
},
tags: {
string: "string",
},
template: "any",
templateLink: {
contentVersion: "string",
id: "string",
queryString: "string",
relativePath: "string",
uri: "string",
},
});
type: azure-native:resources:DeploymentStackAtManagementGroup
properties:
actionOnUnmanage:
managementGroups: string
resourceGroups: string
resources: string
bypassStackOutOfSyncError: false
debugSetting:
detailLevel: string
denySettings:
applyToChildScopes: false
excludedActions:
- string
excludedPrincipals:
- string
mode: string
deploymentScope: string
deploymentStackName: string
description: string
location: string
managementGroupId: string
parameters:
string:
reference:
keyVault:
id: string
secretName: string
secretVersion: string
type: string
value: any
parametersLink:
contentVersion: string
uri: string
tags:
string: string
template: any
templateLink:
contentVersion: string
id: string
queryString: string
relativePath: string
uri: string
DeploymentStackAtManagementGroup 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 DeploymentStackAtManagementGroup resource accepts the following input properties:
- Action
On Pulumi.Unmanage Azure Native. Resources. Inputs. Action On Unmanage - Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
- Deny
Settings Pulumi.Azure Native. Resources. Inputs. Deny Settings - Defines how resources deployed by the stack are locked.
- Management
Group stringId - Management Group id.
- Bypass
Stack boolOut Of Sync Error - Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
- Debug
Setting Pulumi.Azure Native. Resources. Inputs. Deployment Stacks Debug Setting - The debug setting of the deployment.
- Deployment
Scope 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}').
- Deployment
Stack stringName - Name of the deployment stack.
- Description string
- Deployment stack description. Max length of 4096 characters.
- Location string
- The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Resources. Inputs. Deployment Parameter Args> - 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.
- Parameters
Link 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.
- Template
Link 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.
- Action
On ActionUnmanage On Unmanage Args - Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
- Deny
Settings DenySettings Args - Defines how resources deployed by the stack are locked.
- Management
Group stringId - Management Group id.
- Bypass
Stack boolOut Of Sync Error - Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
- Debug
Setting DeploymentStacks Debug Setting Args - The debug setting of the deployment.
- Deployment
Scope 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}').
- Deployment
Stack stringName - Name of the deployment stack.
- Description string
- Deployment stack description. Max length of 4096 characters.
- Location string
- The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- Parameters
map[string]Deployment
Parameter Args - 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.
- 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.
- 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.
- Template
Link DeploymentStacks Template Link Args - The URI of the template. Use either the templateLink property or the template property, but not both.
- action
On ActionUnmanage On Unmanage - Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
- deny
Settings DenySettings - Defines how resources deployed by the stack are locked.
- management
Group StringId - Management Group id.
- bypass
Stack BooleanOut Of Sync Error - Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
- debug
Setting DeploymentStacks Debug Setting - The debug setting of the deployment.
- deployment
Scope 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}').
- deployment
Stack StringName - Name of the deployment stack.
- description String
- Deployment stack description. Max length of 4096 characters.
- location String
- The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters
Map<String,Deployment
Parameter Args> - 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.
- parameters
Link 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.
- template
Link DeploymentStacks Template Link - The URI of the template. Use either the templateLink property or the template property, but not both.
- action
On ActionUnmanage On Unmanage - Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
- deny
Settings DenySettings - Defines how resources deployed by the stack are locked.
- management
Group stringId - Management Group id.
- bypass
Stack booleanOut Of Sync Error - Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
- debug
Setting DeploymentStacks Debug Setting - The debug setting of the deployment.
- deployment
Scope 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}').
- deployment
Stack stringName - Name of the deployment stack.
- description string
- Deployment stack description. Max length of 4096 characters.
- location string
- The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters
{[key: string]: Deployment
Parameter Args} - 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.
- parameters
Link 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.
- template
Link DeploymentStacks Template Link - The URI of the template. Use either the templateLink property or the template property, but not both.
- action_
on_ Actionunmanage On Unmanage Args - Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
- deny_
settings DenySettings Args - Defines how resources deployed by the stack are locked.
- management_
group_ strid - Management Group id.
- bypass_
stack_ boolout_ of_ sync_ error - Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
- 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. Max length of 4096 characters.
- location str
- The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters
Mapping[str, Deployment
Parameter Args] - 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.
- 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.
- action
On Property MapUnmanage - Defines the behavior of resources that are no longer managed after the Deployment stack is updated or deleted.
- deny
Settings Property Map - Defines how resources deployed by the stack are locked.
- management
Group StringId - Management Group id.
- bypass
Stack BooleanOut Of Sync Error - Flag to bypass service errors that indicate the stack resource list is not correctly synchronized.
- debug
Setting Property Map - The debug setting of the deployment.
- deployment
Scope 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}').
- deployment
Stack StringName - Name of the deployment stack.
- description String
- Deployment stack description. Max length of 4096 characters.
- location String
- The location of the Deployment stack. It cannot be changed after creation. It must be one of the supported Azure locations.
- parameters Map<Property Map>
- 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.
- parameters
Link 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.
- template
Link 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 DeploymentStackAtManagementGroup resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Correlation
Id string - The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
- Deleted
Resources List<Pulumi.Azure Native. Resources. Outputs. Resource Reference Response> - An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
- Deployment
Id string - The resourceId of the deployment resource created by the deployment stack.
- Detached
Resources List<Pulumi.Azure Native. Resources. Outputs. Resource Reference Response> - An array of resources that were detached during the most recent Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
- Duration string
- The duration of the last successful Deployment stack update.
- Failed
Resources 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. Each resourceId is accompanied by an error message.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of this resource.
- Outputs object
- The outputs of the deployment resource created by the deployment stack.
- Provisioning
State 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.
- System
Data 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 Detail Response - The error detail.
- Azure
Api stringVersion - The Azure API version of the resource.
- Correlation
Id string - The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
- Deleted
Resources []ResourceReference Response - An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
- Deployment
Id string - The resourceId of the deployment resource created by the deployment stack.
- Detached
Resources []ResourceReference Response - An array of resources that were detached during the most recent Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
- Duration string
- The duration of the last successful Deployment stack update.
- Failed
Resources []ResourceReference Extended Response - An array of resources that failed to reach goal state during the most recent update. Each resourceId is accompanied by an error message.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of this resource.
- Outputs interface{}
- The outputs of the deployment resource created by the deployment stack.
- Provisioning
State string - State of the deployment stack.
- Resources
[]Managed
Resource 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 string
- Type of this resource.
- Error
Error
Detail Response - The error detail.
- azure
Api StringVersion - The Azure API version of the resource.
- correlation
Id String - The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
- deleted
Resources List<ResourceReference Response> - An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
- deployment
Id String - The resourceId of the deployment resource created by the deployment stack.
- detached
Resources List<ResourceReference Response> - An array of resources that were detached during the most recent Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
- duration String
- The duration of the last successful Deployment stack update.
- failed
Resources List<ResourceReference Extended Response> - An array of resources that failed to reach goal state during the most recent update. Each resourceId is accompanied by an error message.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of this resource.
- outputs Object
- The outputs of the deployment resource created by the deployment stack.
- provisioning
State String - State of the deployment stack.
- resources
List<Managed
Resource 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 String
- Type of this resource.
- error
Error
Detail Response - The error detail.
- azure
Api stringVersion - The Azure API version of the resource.
- correlation
Id string - The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
- deleted
Resources ResourceReference Response[] - An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
- deployment
Id string - The resourceId of the deployment resource created by the deployment stack.
- detached
Resources ResourceReference Response[] - An array of resources that were detached during the most recent Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
- duration string
- The duration of the last successful Deployment stack update.
- failed
Resources ResourceReference Extended Response[] - An array of resources that failed to reach goal state during the most recent update. Each resourceId is accompanied by an error message.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of this resource.
- outputs any
- The outputs of the deployment resource created by the deployment stack.
- provisioning
State string - State of the deployment stack.
- resources
Managed
Resource 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 string
- Type of this resource.
- error
Error
Detail Response - The error detail.
- azure_
api_ strversion - The Azure API version of the resource.
- correlation_
id str - The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
- deleted_
resources Sequence[ResourceReference Response] - An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
- 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 Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
- duration str
- The duration of the last successful Deployment stack update.
- failed_
resources Sequence[ResourceReference Extended Response] - An array of resources that failed to reach goal state during the most recent update. Each resourceId is accompanied by an error message.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of this resource.
- outputs Any
- The outputs of the deployment resource created by the deployment stack.
- provisioning_
state str - State of the deployment stack.
- resources
Sequence[Managed
Resource 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
Error
Detail Response - The error detail.
- azure
Api StringVersion - The Azure API version of the resource.
- correlation
Id String - The correlation id of the last Deployment stack upsert or delete operation. It is in GUID format and is used for tracing.
- deleted
Resources List<Property Map> - An array of resources that were deleted during the most recent Deployment stack update. Deleted means that the resource was removed from the template and relevant deletion operations were specified.
- deployment
Id String - The resourceId of the deployment resource created by the deployment stack.
- detached
Resources List<Property Map> - An array of resources that were detached during the most recent Deployment stack update. Detached means that the resource was removed from the template, but no relevant deletion operations were specified. So, the resource still exists while no longer being associated with the stack.
- duration String
- The duration of the last successful Deployment stack update.
- failed
Resources List<Property Map> - An array of resources that failed to reach goal state during the most recent update. Each resourceId is accompanied by an error message.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of this resource.
- outputs Any
- The outputs of the deployment resource created by the deployment stack.
- provisioning
State String - State of the deployment stack.
- resources List<Property Map>
- An array of resources currently managed by the deployment stack.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Type of this resource.
- error Property Map
- The error detail.
Supporting Types
ActionOnUnmanage, ActionOnUnmanageArgs
- Resources
string | Pulumi.
Azure Native. Resources. Deployment Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Management
Groups string | Pulumi.Azure Native. Resources. Deployment Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resource
Groups string | Pulumi.Azure Native. Resources. Deployment Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resources
string | Deployment
Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Management
Groups string | DeploymentStacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resource
Groups string | DeploymentStacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources
String | Deployment
Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management
Groups String | DeploymentStacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource
Groups String | DeploymentStacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources
string | Deployment
Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management
Groups string | DeploymentStacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource
Groups string | DeploymentStacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources
str | Deployment
Stacks Delete Detach Enum - Specifies an action for a newly unmanaged resource. 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 an action for a newly unmanaged resource. 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 an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources String | "delete" | "detach"
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management
Groups String | "delete" | "detach" - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource
Groups String | "delete" | "detach" - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
ActionOnUnmanageResponse, ActionOnUnmanageResponseArgs
- Resources string
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Management
Groups string - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resource
Groups string - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resources string
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Management
Groups string - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- Resource
Groups string - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources String
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management
Groups String - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource
Groups String - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources string
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management
Groups string - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource
Groups string - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources str
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management_
groups str - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource_
groups str - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resources String
- Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- management
Groups String - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
- resource
Groups String - Specifies an action for a newly unmanaged resource. Delete will attempt to delete the resource from Azure. Detach will leave the resource in it's current state.
DenySettings, DenySettingsArgs
- Mode
string | Pulumi.
Azure Native. Resources. Deny Settings Mode - denySettings Mode that defines denied actions.
- Apply
To boolChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- Excluded
Actions 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.
- Excluded
Principals List<string> - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- Mode
string | Deny
Settings Mode - denySettings Mode that defines denied actions.
- Apply
To boolChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- Excluded
Actions []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.
- Excluded
Principals []string - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
String | Deny
Settings Mode - denySettings Mode that defines denied actions.
- apply
To BooleanChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- excluded
Actions 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.
- excluded
Principals List<String> - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
string | Deny
Settings Mode - denySettings Mode that defines denied actions.
- apply
To booleanChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- excluded
Actions 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.
- excluded
Principals string[] - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode
str | Deny
Settings Mode - denySettings Mode that defines denied actions.
- apply_
to_ boolchild_ scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- 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 | "deny
Delete" | "deny Write And Delete" | "none" - denySettings Mode that defines denied actions.
- apply
To BooleanChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- excluded
Actions 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.
- excluded
Principals List<String> - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
DenySettingsMode, DenySettingsModeArgs
- Deny
Delete - denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- Deny
Write And Delete - denyWriteAndDeleteAuthorized users can read from a resource, but cannot modify or delete it.
- None
- noneNo denyAssignments have been applied.
- Deny
Settings Mode Deny Delete - denyDeleteAuthorized users are able to read and modify the resources, but cannot delete.
- Deny
Settings Mode Deny Write And Delete - denyWriteAndDeleteAuthorized users can read from a resource, but cannot modify or delete it.
- Deny
Settings Mode 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 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 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 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 read from a resource, but cannot modify or delete it.
- "none"
- noneNo denyAssignments have been applied.
DenySettingsResponse, DenySettingsResponseArgs
- Mode string
- denySettings Mode that defines denied actions.
- Apply
To boolChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- Excluded
Actions 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.
- Excluded
Principals List<string> - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- Mode string
- denySettings Mode that defines denied actions.
- Apply
To boolChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- Excluded
Actions []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.
- Excluded
Principals []string - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode String
- denySettings Mode that defines denied actions.
- apply
To BooleanChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- excluded
Actions 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.
- excluded
Principals List<String> - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode string
- denySettings Mode that defines denied actions.
- apply
To booleanChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- excluded
Actions 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.
- excluded
Principals string[] - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
- mode str
- denySettings Mode that defines denied actions.
- apply_
to_ boolchild_ scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- 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 that defines denied actions.
- apply
To BooleanChild Scopes - DenySettings will be applied to child resource scopes of every managed resource with a deny assignment.
- excluded
Actions 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.
- excluded
Principals List<String> - List of AAD principal IDs excluded from the lock. Up to 5 principals are permitted.
DeploymentParameter, DeploymentParameterArgs
- Reference
Pulumi.
Azure Native. Resources. Inputs. Key Vault Parameter Reference - Azure Key Vault parameter reference.
- Type string
- Type of the value.
- Value object
- Input value to the parameter.
- Reference
Key
Vault Parameter Reference - Azure Key Vault parameter reference.
- Type string
- Type of the value.
- Value interface{}
- Input value to the parameter.
- reference
Key
Vault Parameter Reference - Azure Key Vault parameter reference.
- type String
- Type of the value.
- value Object
- Input value to the parameter.
- reference
Key
Vault Parameter Reference - Azure Key Vault parameter reference.
- type string
- Type of the value.
- value any
- Input value to the parameter.
- reference
Key
Vault Parameter Reference - Azure Key Vault parameter reference.
- type str
- Type of the value.
- value Any
- Input value to the parameter.
- reference Property Map
- Azure Key Vault parameter reference.
- type String
- Type of the value.
- value Any
- Input value to the parameter.
DeploymentParameterResponse, DeploymentParameterResponseArgs
- Reference
Pulumi.
Azure Native. Resources. Inputs. Key Vault Parameter Reference Response - Azure Key Vault parameter reference.
- Type string
- Type of the value.
- Value object
- Input value to the parameter.
- Reference
Key
Vault Parameter Reference Response - Azure Key Vault parameter reference.
- Type string
- Type of the value.
- Value interface{}
- Input value to the parameter.
- reference
Key
Vault Parameter Reference Response - Azure Key Vault parameter reference.
- type String
- Type of the value.
- value Object
- Input value to the parameter.
- reference
Key
Vault Parameter Reference Response - Azure Key Vault parameter reference.
- type string
- Type of the value.
- value any
- Input value to the parameter.
- reference
Key
Vault Parameter Reference Response - Azure Key Vault parameter reference.
- type str
- Type of the value.
- value Any
- Input value to the parameter.
- reference Property Map
- Azure Key Vault parameter reference.
- type String
- Type of the value.
- value Any
- Input value to the parameter.
DeploymentStacksDebugSetting, DeploymentStacksDebugSettingArgs
- Detail
Level 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 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 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 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.
- detail
Level 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
- Detail
Level 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 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 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 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.
- detail
Level 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
- Deployment
Stacks Delete Detach Enum Delete - delete
- Deployment
Stacks 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.
- Content
Version string - If included, must match the ContentVersion in the template.
- Uri string
- The URI of the parameters file.
- Content
Version string - If included, must match the ContentVersion in the template.
- uri String
- The URI of the parameters file.
- content
Version String - If included, must match the ContentVersion in the template.
- uri string
- The URI of the parameters file.
- content
Version 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.
- content
Version String - If included, must match the ContentVersion in the template.
DeploymentStacksParametersLinkResponse, DeploymentStacksParametersLinkResponseArgs
- Uri string
- The URI of the parameters file.
- Content
Version string - If included, must match the ContentVersion in the template.
- Uri string
- The URI of the parameters file.
- Content
Version string - If included, must match the ContentVersion in the template.
- uri String
- The URI of the parameters file.
- content
Version String - If included, must match the ContentVersion in the template.
- uri string
- The URI of the parameters file.
- content
Version 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.
- content
Version String - If included, must match the ContentVersion in the template.
DeploymentStacksTemplateLink, DeploymentStacksTemplateLinkArgs
- Content
Version string - If included, must match the ContentVersion in the template.
- Id string
- The resourceId of a Template Spec. Use either the id or uri property, but not both.
- Query
String string - The query string (for example, a SAS token) to be used with the templateLink URI.
- Relative
Path 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 string - If included, must match the ContentVersion in the template.
- Id string
- The resourceId of a Template Spec. Use either the id or uri property, but not both.
- Query
String string - The query string (for example, a SAS token) to be used with the templateLink URI.
- Relative
Path 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 String - If included, must match the ContentVersion in the template.
- id String
- The resourceId of a Template Spec. Use either the id or uri property, but not both.
- query
String String - The query string (for example, a SAS token) to be used with the templateLink URI.
- relative
Path 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 string - If included, must match the ContentVersion in the template.
- id string
- The resourceId of a Template Spec. Use either the id or uri property, but not both.
- query
String string - The query string (for example, a SAS token) to be used with the templateLink URI.
- relative
Path 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 resourceId 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.
- content
Version String - If included, must match the ContentVersion in the template.
- id String
- The resourceId of a Template Spec. Use either the id or uri property, but not both.
- query
String String - The query string (for example, a SAS token) to be used with the templateLink URI.
- relative
Path 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
- Additional
Info 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.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail 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[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info 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.
KeyVaultParameterReference, KeyVaultParameterReferenceArgs
- Key
Vault Pulumi.Azure Native. Resources. Inputs. Key Vault Reference - Azure Key Vault reference.
- Secret
Name string - Azure Key Vault secret name.
- Secret
Version string - Azure Key Vault secret version.
- Key
Vault KeyVault Reference - Azure Key Vault reference.
- Secret
Name string - Azure Key Vault secret name.
- Secret
Version string - Azure Key Vault secret version.
- key
Vault KeyVault Reference - Azure Key Vault reference.
- secret
Name String - Azure Key Vault secret name.
- secret
Version String - Azure Key Vault secret version.
- key
Vault KeyVault Reference - Azure Key Vault reference.
- secret
Name string - Azure Key Vault secret name.
- secret
Version string - Azure Key Vault secret version.
- key_
vault KeyVault Reference - Azure Key Vault reference.
- secret_
name str - Azure Key Vault secret name.
- secret_
version str - Azure Key Vault secret version.
- key
Vault Property Map - Azure Key Vault reference.
- secret
Name String - Azure Key Vault secret name.
- secret
Version String - Azure Key Vault secret version.
KeyVaultParameterReferenceResponse, KeyVaultParameterReferenceResponseArgs
- Key
Vault Pulumi.Azure Native. Resources. Inputs. Key Vault Reference Response - Azure Key Vault reference.
- Secret
Name string - Azure Key Vault secret name.
- Secret
Version string - Azure Key Vault secret version.
- Key
Vault KeyVault Reference Response - Azure Key Vault reference.
- Secret
Name string - Azure Key Vault secret name.
- Secret
Version string - Azure Key Vault secret version.
- key
Vault KeyVault Reference Response - Azure Key Vault reference.
- secret
Name String - Azure Key Vault secret name.
- secret
Version String - Azure Key Vault secret version.
- key
Vault KeyVault Reference Response - Azure Key Vault reference.
- secret
Name string - Azure Key Vault secret name.
- secret
Version string - Azure Key Vault secret version.
- key_
vault KeyVault Reference Response - Azure Key Vault reference.
- secret_
name str - Azure Key Vault secret name.
- secret_
version str - Azure Key Vault secret version.
- key
Vault Property Map - Azure Key Vault reference.
- secret
Name String - Azure Key Vault secret name.
- secret
Version String - Azure Key Vault secret version.
KeyVaultReference, KeyVaultReferenceArgs
- Id string
- Azure Key Vault resourceId.
- Id string
- Azure Key Vault resourceId.
- id String
- Azure Key Vault resourceId.
- id string
- Azure Key Vault resourceId.
- id str
- Azure Key Vault resourceId.
- id String
- Azure Key Vault resourceId.
KeyVaultReferenceResponse, KeyVaultReferenceResponseArgs
- Id string
- Azure Key Vault resourceId.
- Id string
- Azure Key Vault resourceId.
- id String
- Azure Key Vault resourceId.
- id string
- Azure Key Vault resourceId.
- id str
- Azure Key Vault resourceId.
- id String
- Azure Key Vault resourceId.
ManagedResourceReferenceResponse, ManagedResourceReferenceResponseArgs
- Id string
- The resourceId of a resource managed by the deployment stack.
- Deny
Status 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.
- Deny
Status 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.
- deny
Status 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.
- deny
Status 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.
- deny
Status 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 Detail Response - The error detail.
- Id string
- The resourceId of a resource managed by the deployment stack.
- Error
Error
Detail Response - The error detail.
- id String
- The resourceId of a resource managed by the deployment stack.
- error
Error
Detail Response - The error detail.
- id string
- The resourceId of a resource managed by the deployment stack.
- error
Error
Detail Response - The error detail.
- id str
- The resourceId of a resource managed by the deployment stack.
- error
Error
Detail Response - The error detail.
- id String
- The resourceId of a resource managed by the deployment stack.
- error Property Map
- The error detail.
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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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:DeploymentStackAtManagementGroup simpleDeploymentStack /providers/Microsoft.Management/managementGroups/{managementGroupId}/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