File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 25
25
<None Update =" Scripts\ControlPlane\KeyVaultManagementTests.ps1" CopyToOutputDirectory =" PreserveNewest" />
26
26
</ItemGroup >
27
27
28
- <ItemGroup >
29
- <Folder Include =" ScenarioTests\PesterTests\" />
30
- </ItemGroup >
31
-
32
28
</Project >
33
29
Original file line number Diff line number Diff line change @@ -15,20 +15,20 @@ Update the state of an Azure key vault.
15
15
### UpdateByNameParameterSet (Default)
16
16
```
17
17
Update-AzKeyVault -ResourceGroupName <String> -VaultName <String> [-EnablePurgeProtection]
18
- [-EnableRbacAuthorization <Boolean>] [-DefaultProfile <IAzureContextContainer >] [-WhatIf ] [-Confirm ]
19
- [<CommonParameters>]
18
+ [-EnableRbacAuthorization <Boolean>] [-Tag <Hashtable >] [-DefaultProfile <IAzureContextContainer> ] [-WhatIf ]
19
+ [-Confirm] [ <CommonParameters>]
20
20
```
21
21
22
22
### UpdateByInputObjectParameterSet
23
23
```
24
24
Update-AzKeyVault -InputObject <PSKeyVault> [-EnablePurgeProtection] [-EnableRbacAuthorization <Boolean>]
25
- [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
25
+ [-Tag <Hashtable>] [- DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
26
26
```
27
27
28
28
### UpdateByResourceIdParameterSet
29
29
```
30
30
Update-AzKeyVault -ResourceId <String> [-EnablePurgeProtection] [-EnableRbacAuthorization <Boolean>]
31
- [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
31
+ [-Tag <Hashtable>] [- DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
32
32
```
33
33
34
34
## DESCRIPTION
@@ -137,6 +137,21 @@ Accept pipeline input: True (ByPropertyName)
137
137
Accept wildcard characters : False
138
138
` ` `
139
139
140
+ ### -Tag
141
+ A hash table which represents resource tags.
142
+
143
+ ` ` ` yaml
144
+ Type : System.Collections.Hashtable
145
+ Parameter Sets : (All)
146
+ Aliases : Tags
147
+
148
+ Required : False
149
+ Position : Named
150
+ Default value : None
151
+ Accept pipeline input : True (ByPropertyName)
152
+ Accept wildcard characters : False
153
+ ` ` `
154
+
140
155
### -VaultName
141
156
Name of the key vault.
142
157
You can’t perform that action at this time.
0 commit comments