forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding version 2019_05_15 (Azure#6690)
* adding_version_2019_05_15 * fix_error_in_examples_case_issue * fix_version_in_examples * enother_try_to_fix_examples * another_try * handle_error_201_in_examples * fix_readmego * another_try_fix_readme_files * try_fix_readme * fix_readme_and_resolve_comment * add_ofers_change * add_suppression * add_dor_and_ofer_changes * try_understand_one_error * try_the_other_string * try_add_suppressions * try_another_suppressions_syntax * try_suppressions * try_zim_suggestion * trying_to_fix_example_kusto_data_connection_validation * trying_to_fix_example_kusto_databases_check_name_availability * try2 * try3 * delete_suppressions * try4
- Loading branch information
Showing
31 changed files
with
3,557 additions
and
21 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...anager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersCheckNameAvailability.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,20 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"api-version": "2019-05-15", | ||
"location": "West US", | ||
"clusterName": { | ||
"name": "kuskusprod", | ||
"type": "Microsoft.Kusto/clusters" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "kuskusprod", | ||
"nameAvailable": false, | ||
"message": "Name 'kuskusprod' is already taken. Please specify a different name" | ||
} | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
...ource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersCreateOrUpdate.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,50 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"clusterName": "KustoClusterRPTest4", | ||
"api-version": "2019-05-15", | ||
"parameters": { | ||
"location": "westus", | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest4", | ||
"name": "KustoClusterRPTest4", | ||
"type": "Microsoft.Kusto/clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest4", | ||
"name": "KustoClusterRPTest4", | ||
"type": "Microsoft.Kusto/clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...usto/resource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersDelete.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,13 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"clusterName": "KustoClusterRPTest4", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {}, | ||
"204": {} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...e-kusto/resource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersGet.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,26 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"clusterName": "KustoClusterRPTest4", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest4", | ||
"name": "KustoClusterRPTest4", | ||
"type": "Microsoft.Kusto/clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
} | ||
} | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
...-kusto/resource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersList.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,42 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest4", | ||
"name": "KustoClusterRPTest4", | ||
"type": "Microsoft.Kusto/Clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest3", | ||
"name": "KustoClusterRPTest3", | ||
"type": "Microsoft.Kusto/Clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersListByResourceGroup.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,43 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest4", | ||
"name": "KustoClusterRPTest4", | ||
"type": "Microsoft.Kusto/Clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
}, | ||
{ | ||
"id": "/subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/KustoClusterRPTest3", | ||
"name": "KustoClusterRPTest3", | ||
"type": "Microsoft.Kusto/Clusters", | ||
"location": "westus", | ||
"properties": { | ||
"provisioningState": "Succeeded" | ||
}, | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"capacity": 2, | ||
"tier": "Standard" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
...rce-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersListResourceSkus.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,68 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"clusterName": "KustoClusterRPTest4", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"resourceType": "clusters", | ||
"sku": { | ||
"name": "Standard_D13_v2", | ||
"tier": "Standard" | ||
}, | ||
"capacity": { | ||
"minimum": 2, | ||
"maximum": 100, | ||
"default": 2, | ||
"scaleType": "automatic" | ||
} | ||
}, | ||
{ | ||
"resourceType": "clusters", | ||
"sku": { | ||
"name": "Standard_D14_v2", | ||
"tier": "Standard" | ||
}, | ||
"capacity": { | ||
"minimum": 2, | ||
"maximum": 100, | ||
"default": 2, | ||
"scaleType": "automatic" | ||
} | ||
}, | ||
{ | ||
"resourceType": "clusters", | ||
"sku": { | ||
"name": "Standard_L8s", | ||
"tier": "Standard" | ||
}, | ||
"capacity": { | ||
"minimum": 2, | ||
"maximum": 100, | ||
"default": 2, | ||
"scaleType": "automatic" | ||
} | ||
}, | ||
{ | ||
"resourceType": "clusters", | ||
"sku": { | ||
"name": "Standard_L16s", | ||
"tier": "Standard" | ||
}, | ||
"capacity": { | ||
"minimum": 2, | ||
"maximum": 100, | ||
"default": 2, | ||
"scaleType": "automatic" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
75 changes: 75 additions & 0 deletions
75
...to/resource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersListSkus.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,75 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "Standard_D13_v2", | ||
"tier": "Standard", | ||
"locations": [ "West US", "West Europe" ], | ||
"locationInfo": [ | ||
{ | ||
"location": "West US", | ||
"zones": [ "1", "2", "3" ] | ||
}, | ||
{ | ||
"location": "West Europe", | ||
"zones": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "Standard_D14_v2", | ||
"tier": "Standard", | ||
"locations": [ "West US", "West Europe" ], | ||
"locationInfo": [ | ||
{ | ||
"location": "West US", | ||
"zones": [ "1", "2", "3" ] | ||
}, | ||
{ | ||
"location": "West Europe", | ||
"zones": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "L8", | ||
"tier": "Standard", | ||
"locations": [ "West US", "West Europe" ], | ||
"locationInfo": [ | ||
{ | ||
"location": "West US", | ||
"zones": [ "1", "2", "3" ] | ||
}, | ||
{ | ||
"location": "West Europe", | ||
"zones": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "L16", | ||
"tier": "Standard", | ||
"locations": [ "West US", "West Europe" ], | ||
"locationInfo": [ | ||
{ | ||
"location": "West US", | ||
"zones": [ "1", "2", "3" ] | ||
}, | ||
{ | ||
"location": "West Europe", | ||
"zones": [] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...kusto/resource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersStart.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,12 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"clusterName": "KustoClusterRPTest4", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...-kusto/resource-manager/Microsoft.Kusto/stable/2019-05-15/examples/KustoClustersStop.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,12 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-123456789098", | ||
"resourceGroupName": "kustorptest", | ||
"clusterName": "KustoClusterRPTest4", | ||
"api-version": "2019-05-15" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {} | ||
} | ||
} |
Oops, something went wrong.