Skip to content

Commit 6ffb4c9

Browse files
authored
Update doc for Test-AzSignalRName (#25827)
1 parent 333abf7 commit 6ffb4c9

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/SignalR/SignalR/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Improve the doc for `Test-AzSignalRName`.
2122

2223
## Version 2.0.1
2324
* Introduced secrets detection feature to safeguard sensitive data.

src/SignalR/SignalR/help/Test-AzSignalRName.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Test-AzSignalRName
99

1010
## SYNOPSIS
11-
Check the availability of a name. Alias: Test-AzSignal.
11+
Check whether a name is available. Alias: Test-AzSignal.
1212

1313
## SYNTAX
1414

@@ -18,22 +18,22 @@ Test-AzSignalRName [-Name] <String> [-Location] <String> [-DefaultProfile <IAzur
1818
```
1919

2020
## DESCRIPTION
21-
Check the availability of a name. Alias: Test-AzSignal.
21+
Check whether a name is available. If a name is available, returns true. Otherwise, return false. Alias: Test-AzSignal.
2222

2323
## EXAMPLES
2424

25-
### Example 1: Check an existed name.
25+
### Example 1: When the name is already in use, it's not available.
2626
```powershell
27-
Test-AzSignalRName -Name existedsignalr -Location eastus
27+
Test-AzSignalRName -Name inusesignalr -Location eastus
2828
```
2929

3030
```output
3131
False
3232
```
3333

34-
### Example 2: Check an unexisted name.
34+
### Example 2: When the name is not in use, it's available.
3535
```powershell
36-
Test-AzSignalRName -Name unexistedsignalr -Location eastus
36+
Test-AzSignalRName -Name availablesignalr -Location eastus
3737
```
3838

3939
```output

0 commit comments

Comments
 (0)