Через некоторое время после отладки Azure CLI в локальной системе при поиске запроса / ответа azure-cli отправляет / получает команду, о которой спрашивают, находящуюся ниже в потоке запросов - может помочь кому-нибудь.
# 1. Get tenant's access token - not covered here, check microsoft's ADAL documentation.
# 2. Get vsts access token
curl -X POST \
https://login.microsoftonline.com/common/oauth2/token \
-H 'content-type: application/x-www-form-urlencoded' \
-d 'grant_type=refresh_token&resource=499b84ac-1321-427f-aa17-267ca6975798&refresh_token={insert_tenant_refresh_token_here}&client_id=04b07795-8ddb-461a-bbee-02f9e1bf7b46'
# 3. Provision CI/CD configuration
curl -X POST 'https://{insert_azuredevops_account_name}.portalext.visualstudio.com/_apis/continuousdelivery/provisioningconfigurations?api-version=3.2-preview.1' \
-H 'authorization: Bearer {insert_tenant_access_token_here}' \
-H 'content-type: application/json' \
-d '{"source": {"type": "codeRepository", "buildConfiguration": {"type": "AspNetCore"}, "repository": {"defaultBranch": "master", "type": "TfsGit", "id": "{insert_repository_id}"}}, "targets": [{"environmentType": "production", "authorizationInfo": {"scheme": "Headers", "parameters": {"Authorization": "Bearer {insert_vsts_access_token}"}}, "resourceGroupName": "{insert_webapp_resource_group_name}", "tenantId": "{insert_tenant_id}", "location": "Central India", "subscriptionName": "{insert_azure_webapp_subscription_name}", "provider": "azure", "friendlyName": "Production", "subscriptionId": "{insert_azure_webapp_subscription_id}", "resourceIdentifier": "{insert_azure_webapp_name}", "type": "windowsAppService"}], "ciConfiguration": {"project": {"name": "{insert_vsts_project_name}"}}}'
Удачи!