You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Resources/ResourceManager/Implementation/DeploymentStacks/NewAzResourceGroupDeploymentStack.cs
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,10 @@ public class NewAzResourceGroupDeploymentStack : DeploymentStacksCmdletBase
105
105
HelpMessage="Update behavior for the stack. Value can be \"Detach\" or \"Purge\".")]
106
106
publicStringUpdateBehavior{get;set;}
107
107
108
+
[Parameter(Mandatory=false,
109
+
HelpMessage="The scope at which the initial deployment should be created. If a scope isn't specified, it will default to the scope of the deployment stack.")]
110
+
publicstringDeploymentScope{get;set;}
111
+
108
112
[Parameter(Mandatory=false,
109
113
HelpMessage="Do not ask for confirmation when overwriting an existing stack.")]
110
114
publicSwitchParameterForce{get;set;}
@@ -159,8 +163,9 @@ public override void ExecuteCmdlet()
HelpMessage="Update behavior for the stack. Value can be \"Detach\" or \"Purge\".")]
104
-
publicStringUpdateBehavior{get;set;}
104
+
publicstringUpdateBehavior{get;set;}
105
+
106
+
[Parameter(Mandatory=false,
107
+
HelpMessage="The scope at which the initial deployment should be created. If a scope isn't specified, it will default to the scope of the deployment stack.")]
108
+
publicstringDeploymentScope{get;set;}
105
109
106
110
[Parameter(Mandatory=false,
107
111
HelpMessage="Do not ask for confirmation when overwriting an existing stack.")]
@@ -157,7 +161,8 @@ public override void ExecuteCmdlet()
Copy file name to clipboardExpand all lines: src/Resources/ResourceManager/Implementation/DeploymentStacks/SetAzResourceGroupDeploymentStack.cs
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,10 @@ public class SetAzResourceGroupDeploymentStack : DeploymentStacksCmdletBase
105
105
HelpMessage="Update behavior for the stack. Value can be \"Detach\" or \"Purge\".")]
106
106
publicStringUpdateBehavior{get;set;}
107
107
108
+
[Parameter(Mandatory=false,
109
+
HelpMessage="The scope at which the initial deployment should be created. If a scope isn't specified, it will default to the scope of the deployment stack.")]
110
+
publicstringDeploymentScope{get;set;}
111
+
108
112
[Parameter(Mandatory=false,
109
113
HelpMessage="Do not ask for confirmation when overwriting an existing stack.")]
110
114
publicSwitchParameterForce{get;set;}
@@ -159,7 +163,8 @@ public override void ExecuteCmdlet()
Copy file name to clipboardExpand all lines: src/Resources/ResourceManager/Implementation/DeploymentStacks/SetAzSubscriptionDeploymentStack.cs
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,10 @@ public class SetAzSubscriptionDeploymentStack : DeploymentStacksCmdletBase
103
103
HelpMessage="Location of the stack")]
104
104
publicstringLocation{get;set;}
105
105
106
+
[Parameter(Mandatory=false,
107
+
HelpMessage="The scope at which the initial deployment should be created. If a scope isn't specified, it will default to the scope of the deployment stack.")]
108
+
publicStringDeploymentScope{get;set;}
109
+
106
110
[Parameter(Mandatory=false,
107
111
HelpMessage="Do not ask for confirmation when overwriting an existing stack.")]
108
112
publicSwitchParameterForce{get;set;}
@@ -157,7 +161,8 @@ public override void ExecuteCmdlet()
0 commit comments