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
@@ -52,32 +52,32 @@ public abstract class ResourceManipulationCmdletBase : ResourceManagerCmdletBase
52
52
/// Gets or sets the extension resource name parameter.
53
53
/// </summary>
54
54
[Alias("Name")]
55
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource name. e.g. to specify a database MyServer/MyDatabase.")]
56
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResoruceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource name. e.g. to specify a database MyServer/MyDatabase.")]
55
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResourceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource name. e.g. to specify a database MyServer/MyDatabase.")]
56
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResourceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource name. e.g. to specify a database MyServer/MyDatabase.")]
57
57
[ValidateNotNullOrEmpty]
58
58
publicstringResourceName{get;set;}
59
59
60
60
/// <summary>
61
61
/// Gets or sets the resource type parameter.
62
62
/// </summary>
63
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
64
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResoruceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
63
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResourceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
64
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResourceParameterSet,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The resource type. e.g. Microsoft.Sql/Servers/Databases.")]
65
65
[ValidateNotNullOrEmpty]
66
66
publicstringResourceType{get;set;}
67
67
68
68
/// <summary>
69
69
/// Gets or sets the extension resource name parameter.
70
70
/// </summary>
71
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource name. e.g. to specify a database MyServer/MyDatabase.")]
72
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResoruceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource name. e.g. to specify a database MyServer/MyDatabase.")]
71
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResourceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource name. e.g. to specify a database MyServer/MyDatabase.")]
72
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResourceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource name. e.g. to specify a database MyServer/MyDatabase.")]
73
73
[ValidateNotNullOrEmpty]
74
74
publicstringExtensionResourceName{get;set;}
75
75
76
76
/// <summary>
77
77
/// Gets or sets the extension resource type parameter.
78
78
/// </summary>
79
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
80
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResoruceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
79
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResourceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
80
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResourceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The extension resource type. e.g. Microsoft.Sql/Servers/Databases.")]
81
81
[ValidateNotNullOrEmpty]
82
82
publicstringExtensionResourceType{get;set;}
83
83
@@ -91,15 +91,15 @@ public abstract class ResourceManipulationCmdletBase : ResourceManagerCmdletBase
91
91
/// <summary>
92
92
/// Gets or sets the resource group name parameter.
93
93
/// </summary>
94
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResoruceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The resource group name.")]
94
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.SubscriptionLevelResourceParameterSet,Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The resource group name.")]
95
95
[ResourceGroupCompleter]
96
96
[ValidateNotNullOrEmpty]
97
97
publicstringResourceGroupName{get;set;}
98
98
99
99
/// <summary>
100
100
/// Gets or sets the tenant level parameter.
101
101
/// </summary>
102
-
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResoruceParameterSet,Mandatory=true,HelpMessage="Indicates that this is a tenant level operation.")]
102
+
[Parameter(ParameterSetName=ResourceManipulationCmdletBase.TenantLevelResourceParameterSet,Mandatory=true,HelpMessage="Indicates that this is a tenant level operation.")]
0 commit comments