File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 18
18
- Additional information about change #1
19
19
-->
20
20
## Upcoming Release
21
+ * Improve the doc for ` Test-AzSignalRName ` .
21
22
22
23
## Version 2.0.1
23
24
* Introduced secrets detection feature to safeguard sensitive data.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ schema: 2.0.0
8
8
# Test-AzSignalRName
9
9
10
10
## SYNOPSIS
11
- Check the availability of a name. Alias: Test-AzSignal.
11
+ Check whether a name is available . Alias: Test-AzSignal.
12
12
13
13
## SYNTAX
14
14
@@ -18,22 +18,22 @@ Test-AzSignalRName [-Name] <String> [-Location] <String> [-DefaultProfile <IAzur
18
18
```
19
19
20
20
## 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.
22
22
23
23
## EXAMPLES
24
24
25
- ### Example 1: Check an existed name.
25
+ ### Example 1: When the name is already in use, it's not available .
26
26
``` powershell
27
- Test-AzSignalRName -Name existedsignalr -Location eastus
27
+ Test-AzSignalRName -Name inusesignalr -Location eastus
28
28
```
29
29
30
30
``` output
31
31
False
32
32
```
33
33
34
- ### Example 2: Check an unexisted name.
34
+ ### Example 2: When the name is not in use, it's available .
35
35
``` powershell
36
- Test-AzSignalRName -Name unexistedsignalr -Location eastus
36
+ Test-AzSignalRName -Name availablesignalr -Location eastus
37
37
```
38
38
39
39
``` output
You can’t perform that action at this time.
0 commit comments