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/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Implementation/Resource/FindAzureResourceCmdlet.cs
+27-9Lines changed: 27 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,22 @@ public sealed class FindAzureResourceCmdlet : ResourceManagerCmdletBase
101
101
[ValidateNotNullOrEmpty]
102
102
publicstringODataQuery{get;set;}
103
103
104
+
/// <summary>
105
+
/// Gets or sets the tag name.
106
+
/// </summary>
107
+
[Parameter(ParameterSetName=FindAzureResourceCmdlet.ListResourcesParameterSet,Mandatory=false,HelpMessage="The name of the tag to query by.")]
108
+
[Parameter(ParameterSetName=FindAzureResourceCmdlet.MultiSubscriptionListResourcesParameterSet,Mandatory=false,HelpMessage="The name of the tag to query by.")]
109
+
[ValidateNotNullOrEmpty]
110
+
publicstringTagName{get;set;}
111
+
112
+
/// <summary>
113
+
/// Gets or sets the tag value.
114
+
/// </summary>
115
+
[Parameter(ParameterSetName=FindAzureResourceCmdlet.ListResourcesParameterSet,Mandatory=false,HelpMessage="The value of the tag to query by.")]
116
+
[Parameter(ParameterSetName=FindAzureResourceCmdlet.MultiSubscriptionListResourcesParameterSet,Mandatory=false,HelpMessage="The value of the tag to query by.")]
0 commit comments