-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added data connection check name availability operation (#5648)
* Added data connection check name availability operation * Fixed KustoDataConnectionsCheckNameAvailability example * fixed example * Removed special character * fixed examples (not related to the new operation, but failed the model validation). * More of other examples fixes * fixed spaces * Adding property to the data connection validation example * Fixed example * Aligned with ARM check name availability pattern
- Loading branch information
1 parent
16b54e9
commit 1b90713
Showing
7 changed files
with
166 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
...Microsoft.Kusto/stable/2019-01-21/examples/KustoDataConnectionsCheckNameAvailability.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-123456789098", | ||
"api-version": "2019-01-21", | ||
"clusterName": "kustoProd", | ||
"databaseName": "kustorptest", | ||
"resourceGroupName": "kustorptest", | ||
"dataConnectionName": { | ||
"name": "DataConnections7", | ||
"type": "Microsoft.Kusto/clusters/databases/dataConnections" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "DataConnections7", | ||
"nameAvailable": false, | ||
"message": "Name 'DataConnections7' is already taken. Please specify a different name.", | ||
"reason": "AlreadyExists" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters