Skip to content

Update Test-AzKustoClusterNameAvailability.md #15604

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Kusto/help/Test-AzKustoClusterNameAvailability.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Checks that the cluster name is valid and is not already in use.

### Example 1: Check the availability of a Kusto cluster name which is in use
```powershell
PS C:\> Test-AzKustoClusterNameAvailability -Name testnewkustocluster -Location 'East US' -Type Microsoft.Kusto/clusters
PS C:\> Test-AzKustoClusterNameAvailability -Name testnewkustocluster -Location 'East US'

Message Name NameAvailable Reason
------- ---- ------------- ------
Expand All @@ -42,7 +42,7 @@ The above command returns whether or not a Kusto cluster named "testnewkustoclus

### Example 2: Check the availability of a Kusto cluster name which is not in use
```powershell
PS C:\> Test-AzKustoClusterNameAvailability -Name availablekustocluster -Location 'East US' -Type Microsoft.Kusto/clusters
PS C:\> Test-AzKustoClusterNameAvailability -Name availablekustocluster -Location 'East US'

Message Name NameAvailable Reason
------- ---- ------------- ------
Expand Down