Skip to content
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

Closed
jrauschenbusch opened this issue Aug 19, 2019 · 4 comments
Closed

Support for Kusto API version 2019-05-15 #5558

jrauschenbusch opened this issue Aug 19, 2019 · 4 comments
Labels
customer-reported Issues that are reported by GitHub users external to the Azure organization. Mgmt This issue is related to a management-plane library. Service Attention Workflow: This issue is responsible by Azure service team.

Comments

@jrauschenbusch
Copy link

Feature Request

Please integrate the Go Client Implementation for Kusto API v2019-05-15 to support the following features:

  • virtualNetworkConfiguration
  • optimizedAutoscale
  • enableDiskEncryption
  • enableStreamingIngest

Path: /services/kusto/mgmt/2019-05-15/kusto

@loarabia loarabia added customer-reported Issues that are reported by GitHub users external to the Azure organization. Kusto Mgmt This issue is related to a management-plane library. Service Attention Workflow: This issue is responsible by Azure service team. labels Aug 19, 2019
@ArcturusZhang
Copy link
Member

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.

@jrauschenbusch
Copy link
Author

@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:

[...]
"apiVersions": [
  "2019-05-15",
  "2019-01-21",
  "2018-09-07-preview",
  "2017-09-07-privatepreview"
],
"defaultApiVersion": "2019-05-15"
[...]

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"

@ArcturusZhang
Copy link
Member

@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:

[...]
"apiVersions": [
  "2019-05-15",
  "2019-01-21",
  "2018-09-07-preview",
  "2017-09-07-privatepreview"
],
"defaultApiVersion": "2019-05-15"
[...]

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.
Closing this issue.

@ghost
Copy link

ghost commented Sep 11, 2019

Thanks for working with Microsoft on GitHub! Tell us how you feel about your experience using the reactions on this comment.

@github-actions github-actions bot locked and limited conversation to collaborators Apr 11, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
customer-reported Issues that are reported by GitHub users external to the Azure organization. Mgmt This issue is related to a management-plane library. Service Attention Workflow: This issue is responsible by Azure service team.
Projects
None yet
Development

No branches or pull requests

3 participants