-
Notifications
You must be signed in to change notification settings - Fork 861
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
Support for Kusto API version 2019-05-15 #5558
Comments
Hi @jrauschenbusch , as far as I know, there is not an api version 2019-05-15 for azure-kusto yet. All available version lists here. |
@ArcturusZhang You can get all available API versions via executing the following shell script: Precondition: Azure CLI installed an account logged in #!/bin/bash
BEARER_TOKEN=`az account get-access-token | jq .accessToken | tr -d '"'`
SUBSCRIPTION=`az account list | jq .[0].tenantId | tr -d '"'`
GET https://management.azure.com/subscriptions/$SUBSCRIPTION/providers\?api-version=2019-08-01 -H "Authorization: Bearer $BEARER_TOKEN" Extracted Kusto api versions from result:
Hence the API is already live, but no spec yet. Especially for Kusto you can show the resource properties via: #!/bin/bash
BEARER_TOKEN=`az account get-access-token | jq .accessToken | tr -d '"'`
SUBSCRIPTION=`az account list | jq .[0].tenantId | tr -d '"'`
`GET https://management.azure.com/subscriptions/$SUBSCRIPTION/providers/Microsoft.Kusto/clusters\?api-version=2017-05-15 -H "Authorization: Bearer $BEARER_TOKEN" |
Thanks for the clarification. But if the spec is not released, there will not be a SDK generated. |
Thanks for working with Microsoft on GitHub! Tell us how you feel about your experience using the reactions on this comment. |
Feature Request
Please integrate the Go Client Implementation for Kusto API v2019-05-15 to support the following features:
Path:
/services/kusto/mgmt/2019-05-15/kusto
The text was updated successfully, but these errors were encountered: