kalyan kumar
kalyan kumar

Reputation: 41

Check Name Availability of Azure Data Factory (ADF), Time Series Insights (TSI) and Stream Analytics Job resources

I am looking for a API or documentation for querying for name availability of Azure Data Factory (ADF), Time Series Insights (TSI) and Stream Analytics Job resources similar to https://learn.microsoft.com/en-us/rest/api/keyvault/vaults/checknameavailability.

I have tried looking at azure-arm-datafactory, azure-arm-streamanalytics node libraries but couldn't find functionality to check name availability of resources.

I am looking for something similar to below..

import KeyVaultMangementClient from 'azure-arm-keyvault';
const client = new KeyVaultMangementClient(this._credentials, this._subscriptionId);
        return client.vaults.checkNameAvailability({name: keyVaultName})
            .then((result: any) => {
                console.log(result.nameAvailable);
                return Promise.resolve(result.nameAvailable);
            });

Upvotes: 1

Views: 242

Answers (1)

KrishnaG
KrishnaG

Reputation: 3484

AFAIK this (check name availability) feature is currently unsupported for ADF, TSI, Stream Analytics. So I would recommend you to please add a new feature request on uservoice with your suggestion(s) and let us know the link when you do it so that others can vote as well and which would in turn would raise visibility and priority on it.

Upvotes: 1

Related Questions