Skip to content

Commit 7eb3d58

Browse files
author
Ziyue Zheng
authored
format the help markdown files of Az.DedicatedHsm in generation (#18778)
1 parent c891037 commit 7eb3d58

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/DedicatedHsm/docs/Remove-AzDedicatedHsm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

4545
This commnad removes a Dedicated HSM by object.

src/DedicatedHsm/docs/Update-AzDedicatedHsm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/DedicatedHsm/examples/Update-AzDedicatedHsm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)