File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ This commnad removes a hardware security module(HSM) by name.
3939### Example 2: Remove a Dedicated HSM by object
4040``` powershell
4141$hsm = Get-AzDedicatedHsm -Name hsm-7t2xaf -ResourceGroupName dedicatedhsm-rg-n359cz
42- Remove-AzDedicatedHsm -InputObject $hsm
42+ Remove-AzDedicatedHsm -InputObject $hsm
4343```
4444
4545This commnad removes a Dedicated HSM by object.
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ This command updates the parameter tag of the Dedicated HSM by name
4444
4545### Example 2: Update the parameter tag of the Dedicated HSM by object
4646``` powershell
47- $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz
48- Update-AzDedicatedHsm -InputObject -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3}
47+ $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz
48+ Update-AzDedicatedHsm -InputObject $hsm -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3}
4949```
5050
5151``` output
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ This command updates the parameter tag of the Dedicated HSM by name
1313
1414### Example 2: Update the parameter tag of the Dedicated HSM by object
1515``` powershell
16- $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz
17- Update-AzDedicatedHsm -InputObject -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3}
16+ $hsm = Get-AzDedicatedHsm -Name hsm-n7wfxi -ResourceGroupName dedicatedhsm-rg-n359cz
17+ Update-AzDedicatedHsm -InputObject $hsm -Tag @{'key1' = '1'; 'key2' = 2; 'key3' = 3}
1818```
1919
2020``` output
You can’t perform that action at this time.
0 commit comments