diff --git a/packages/@azure/arm-cognitiveservices/LICENSE.txt b/packages/@azure/arm-cognitiveservices/LICENSE.txt
index a70e8cf66038..8f3d856145c5 100644
--- a/packages/@azure/arm-cognitiveservices/LICENSE.txt
+++ b/packages/@azure/arm-cognitiveservices/LICENSE.txt
@@ -1,21 +1,21 @@
-The MIT License (MIT)
-
-Copyright (c) 2018 Microsoft
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+The MIT License (MIT)
+
+Copyright (c) 2019 Microsoft
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/packages/@azure/arm-cognitiveservices/README.md b/packages/@azure/arm-cognitiveservices/README.md
index aaff9971b1f1..34acfb441253 100644
--- a/packages/@azure/arm-cognitiveservices/README.md
+++ b/packages/@azure/arm-cognitiveservices/README.md
@@ -1,103 +1,100 @@
-## Azure CognitiveServicesManagementClient SDK for JavaScript
-
-This package contains an isomorphic SDK for CognitiveServicesManagementClient.
-
-### Currently supported environments
-
-- Node.js version 6.x.x or higher
-- Browser JavaScript
-
-### How to Install
-
-```bash
-npm install @azure/arm-cognitiveservices
-```
-
-### How to use
-
-#### nodejs - Authentication, client creation and getProperties accounts as an example written in TypeScript.
-
-##### Install @azure/ms-rest-nodeauth
-
-```bash
-npm install @azure/ms-rest-nodeauth
-```
-
-##### Sample code
-
-```typescript
-import * as msRest from "@azure/ms-rest-js";
-import * as msRestAzure from "@azure/ms-rest-azure-js";
-import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
-import { CognitiveServicesManagementClient, CognitiveServicesManagementModels, CognitiveServicesManagementMappers } from "@azure/arm-cognitiveservices";
-const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
-
-msRestNodeAuth.interactiveLogin().then((creds) => {
- const client = new CognitiveServicesManagementClient(creds, subscriptionId);
- const resourceGroupName = "testresourceGroupName";
- const accountName = "testaccountName";
- client.accounts.getProperties(resourceGroupName, accountName).then((result) => {
- console.log("The result is:");
- console.log(result);
- });
-}).catch((err) => {
- console.error(err);
-});
-```
-
-#### browser - Authentication, client creation and getProperties accounts as an example written in JavaScript.
-
-##### Install @azure/ms-rest-browserauth
-
-```bash
-npm install @azure/ms-rest-browserauth
-```
-
-##### Sample code
-
-See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
-
-- index.html
-```html
-
-
-
- @azure/arm-cognitiveservices sample
-
-
-
-
-
-
-
-
-```
-
-## Related projects
-
-- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
-
-
-
+## Azure CognitiveServicesManagementClient SDK for JavaScript
+
+This package contains an isomorphic SDK for CognitiveServicesManagementClient.
+
+### Currently supported environments
+
+- Node.js version 6.x.x or higher
+- Browser JavaScript
+
+### How to Install
+
+```bash
+npm install @azure/arm-cognitiveservices
+```
+
+### How to use
+
+#### nodejs - Authentication, client creation and getProperties accounts as an example written in TypeScript.
+
+##### Install @azure/ms-rest-nodeauth
+
+```bash
+npm install @azure/ms-rest-nodeauth
+```
+
+##### Sample code
+
+```typescript
+import * as msRest from "@azure/ms-rest-js";
+import * as msRestAzure from "@azure/ms-rest-azure-js";
+import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
+import { CognitiveServicesManagementClient, CognitiveServicesManagementModels, CognitiveServicesManagementMappers } from "@azure/arm-cognitiveservices";
+const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
+
+msRestNodeAuth.interactiveLogin().then((creds) => {
+ const client = new CognitiveServicesManagementClient(creds, subscriptionId);
+ const resourceGroupName = "testresourceGroupName";
+ const accountName = "testaccountName";
+ client.accounts.getProperties(resourceGroupName, accountName).then((result) => {
+ console.log("The result is:");
+ console.log(result);
+ });
+}).catch((err) => {
+ console.error(err);
+});
+```
+
+#### browser - Authentication, client creation and getProperties accounts as an example written in JavaScript.
+
+##### Install @azure/ms-rest-browserauth
+
+```bash
+npm install @azure/ms-rest-browserauth
+```
+
+##### Sample code
+
+See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
+
+- index.html
+```html
+
+
+
+ @azure/arm-cognitiveservices sample
+
+
+
+
+
+
+
+
+```
+
+## Related projects
+
+- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
diff --git a/packages/@azure/arm-cognitiveservices/lib/cognitiveServicesManagementClient.ts b/packages/@azure/arm-cognitiveservices/lib/cognitiveServicesManagementClient.ts
index e2d721fdca7c..833b06531a3e 100644
--- a/packages/@azure/arm-cognitiveservices/lib/cognitiveServicesManagementClient.ts
+++ b/packages/@azure/arm-cognitiveservices/lib/cognitiveServicesManagementClient.ts
@@ -21,6 +21,7 @@ class CognitiveServicesManagementClient extends CognitiveServicesManagementClien
resourceSkus: operations.ResourceSkus;
operations: operations.Operations;
checkSkuAvailability: operations.CheckSkuAvailability;
+ locations: operations.Locations;
/**
* Initializes a new instance of the CognitiveServicesManagementClient class.
@@ -34,6 +35,7 @@ class CognitiveServicesManagementClient extends CognitiveServicesManagementClien
this.resourceSkus = new operations.ResourceSkus(this);
this.operations = new operations.Operations(this);
this.checkSkuAvailability = new operations.CheckSkuAvailability(this);
+ this.locations = new operations.Locations(this);
}
}
diff --git a/packages/@azure/arm-cognitiveservices/lib/models/index.ts b/packages/@azure/arm-cognitiveservices/lib/models/index.ts
index c2e29995f3cf..749ae2f66a0e 100644
--- a/packages/@azure/arm-cognitiveservices/lib/models/index.ts
+++ b/packages/@azure/arm-cognitiveservices/lib/models/index.ts
@@ -144,6 +144,11 @@ export interface CognitiveServicesAccount extends BaseResource {
* @member {string} [internalId] The internal identifier.
*/
internalId?: string;
+ /**
+ * @member {string} [customSubDomainName] Optional subdomain name used for
+ * token-based authentication.
+ */
+ customSubDomainName?: string;
/**
* @member {Sku} [sku] The SKU of Cognitive Services account.
*/
@@ -421,6 +426,23 @@ export interface CheckSkuAvailabilityParameter {
type: string;
}
+/**
+ * @interface
+ * An interface representing CheckDomainAvailabilityParameter.
+ * Check Domain availability parameter.
+ *
+ */
+export interface CheckDomainAvailabilityParameter {
+ /**
+ * @member {string} subdomainName The subdomain name to use.
+ */
+ subdomainName: string;
+ /**
+ * @member {string} type The Type of the resource.
+ */
+ type: string;
+}
+
/**
* @interface
* An interface representing CheckSkuAvailabilityResult.
@@ -469,6 +491,32 @@ export interface CheckSkuAvailabilityResultList {
value?: CheckSkuAvailabilityResult[];
}
+/**
+ * @interface
+ * An interface representing CheckDomainAvailabilityResult.
+ * Check Domain availability result.
+ *
+ */
+export interface CheckDomainAvailabilityResult {
+ /**
+ * @member {boolean} [isSubdomainAvailable] Indicates the given SKU is
+ * available or not.
+ */
+ isSubdomainAvailable?: boolean;
+ /**
+ * @member {string} [reason] Reason why the SKU is not available.
+ */
+ reason?: string;
+ /**
+ * @member {string} [subdomainName] The subdomain name to use.
+ */
+ subdomainName?: string;
+ /**
+ * @member {string} [type] The Type of the resource.
+ */
+ type?: string;
+}
+
/**
* @interface
* An interface representing ResourceSkuRestrictionInfo.
@@ -1032,3 +1080,22 @@ export type CheckSkuAvailabilityListResponse = CheckSkuAvailabilityResultList &
parsedBody: CheckSkuAvailabilityResultList;
};
};
+
+/**
+ * Contains response data for the checkDomainAvailabilityPost operation.
+ */
+export type LocationsCheckDomainAvailabilityPostResponse = CheckDomainAvailabilityResult & {
+ /**
+ * The underlying HTTP response.
+ */
+ _response: msRest.HttpResponse & {
+ /**
+ * The response body as text (string format)
+ */
+ bodyAsText: string;
+ /**
+ * The response body as parsed JSON or XML
+ */
+ parsedBody: CheckDomainAvailabilityResult;
+ };
+};
diff --git a/packages/@azure/arm-cognitiveservices/lib/models/locationsMappers.ts b/packages/@azure/arm-cognitiveservices/lib/models/locationsMappers.ts
new file mode 100644
index 000000000000..bd1ead218113
--- /dev/null
+++ b/packages/@azure/arm-cognitiveservices/lib/models/locationsMappers.ts
@@ -0,0 +1,16 @@
+/*
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for
+ * license information.
+ *
+ * Code generated by Microsoft (R) AutoRest Code Generator.
+ * Changes may cause incorrect behavior and will be lost if the code is
+ * regenerated.
+ */
+
+export {
+ CheckDomainAvailabilityParameter,
+ CheckDomainAvailabilityResult,
+ CloudError
+} from "../models/mappers";
+
diff --git a/packages/@azure/arm-cognitiveservices/lib/models/mappers.ts b/packages/@azure/arm-cognitiveservices/lib/models/mappers.ts
index 1ef3206a6fe3..de9d411369b9 100644
--- a/packages/@azure/arm-cognitiveservices/lib/models/mappers.ts
+++ b/packages/@azure/arm-cognitiveservices/lib/models/mappers.ts
@@ -178,6 +178,12 @@ export const CognitiveServicesAccount: msRest.CompositeMapper = {
name: "String"
}
},
+ customSubDomainName: {
+ serializedName: "properties.customSubDomainName",
+ type: {
+ name: "String"
+ }
+ },
sku: {
serializedName: "sku",
type: {
@@ -547,6 +553,30 @@ export const CheckSkuAvailabilityParameter: msRest.CompositeMapper = {
}
};
+export const CheckDomainAvailabilityParameter: msRest.CompositeMapper = {
+ serializedName: "CheckDomainAvailabilityParameter",
+ type: {
+ name: "Composite",
+ className: "CheckDomainAvailabilityParameter",
+ modelProperties: {
+ subdomainName: {
+ required: true,
+ serializedName: "subdomainName",
+ type: {
+ name: "String"
+ }
+ },
+ type: {
+ required: true,
+ serializedName: "type",
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
export const CheckSkuAvailabilityResult: msRest.CompositeMapper = {
serializedName: "CheckSkuAvailabilityResult",
type: {
@@ -615,6 +645,40 @@ export const CheckSkuAvailabilityResultList: msRest.CompositeMapper = {
}
};
+export const CheckDomainAvailabilityResult: msRest.CompositeMapper = {
+ serializedName: "CheckDomainAvailabilityResult",
+ type: {
+ name: "Composite",
+ className: "CheckDomainAvailabilityResult",
+ modelProperties: {
+ isSubdomainAvailable: {
+ serializedName: "isSubdomainAvailable",
+ type: {
+ name: "Boolean"
+ }
+ },
+ reason: {
+ serializedName: "reason",
+ type: {
+ name: "String"
+ }
+ },
+ subdomainName: {
+ serializedName: "subdomainName",
+ type: {
+ name: "String"
+ }
+ },
+ type: {
+ serializedName: "type",
+ type: {
+ name: "String"
+ }
+ }
+ }
+ }
+};
+
export const ResourceSkuRestrictionInfo: msRest.CompositeMapper = {
serializedName: "ResourceSkuRestrictionInfo",
type: {
diff --git a/packages/@azure/arm-cognitiveservices/lib/operations/index.ts b/packages/@azure/arm-cognitiveservices/lib/operations/index.ts
index d4af4c0dda51..00e96de1f8a3 100644
--- a/packages/@azure/arm-cognitiveservices/lib/operations/index.ts
+++ b/packages/@azure/arm-cognitiveservices/lib/operations/index.ts
@@ -12,3 +12,4 @@ export * from "./accounts";
export * from "./resourceSkus";
export * from "./operations";
export * from "./checkSkuAvailability";
+export * from "./locations";
diff --git a/packages/@azure/arm-cognitiveservices/lib/operations/locations.ts b/packages/@azure/arm-cognitiveservices/lib/operations/locations.ts
new file mode 100644
index 000000000000..6b984d684676
--- /dev/null
+++ b/packages/@azure/arm-cognitiveservices/lib/operations/locations.ts
@@ -0,0 +1,100 @@
+/*
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for
+ * license information.
+ *
+ * Code generated by Microsoft (R) AutoRest Code Generator.
+ * Changes may cause incorrect behavior and will be lost if the code is
+ * regenerated.
+ */
+
+import * as msRest from "@azure/ms-rest-js";
+import * as Models from "../models";
+import * as Mappers from "../models/locationsMappers";
+import * as Parameters from "../models/parameters";
+import { CognitiveServicesManagementClientContext } from "../cognitiveServicesManagementClientContext";
+
+/** Class representing a Locations. */
+export class Locations {
+ private readonly client: CognitiveServicesManagementClientContext;
+
+ /**
+ * Create a Locations.
+ * @param {CognitiveServicesManagementClientContext} client Reference to the service client.
+ */
+ constructor(client: CognitiveServicesManagementClientContext) {
+ this.client = client;
+ }
+
+ /**
+ * Check available SKUs.
+ * @param location Resource location.
+ * @param subdomainName The subdomain name to use.
+ * @param type The Type of the resource.
+ * @param [options] The optional parameters
+ * @returns Promise
+ */
+ checkDomainAvailabilityPost(location: string, subdomainName: string, type: string, options?: msRest.RequestOptionsBase): Promise;
+ /**
+ * @param location Resource location.
+ * @param subdomainName The subdomain name to use.
+ * @param type The Type of the resource.
+ * @param callback The callback
+ */
+ checkDomainAvailabilityPost(location: string, subdomainName: string, type: string, callback: msRest.ServiceCallback): void;
+ /**
+ * @param location Resource location.
+ * @param subdomainName The subdomain name to use.
+ * @param type The Type of the resource.
+ * @param options The optional parameters
+ * @param callback The callback
+ */
+ checkDomainAvailabilityPost(location: string, subdomainName: string, type: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void;
+ checkDomainAvailabilityPost(location: string, subdomainName: string, type: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise {
+ return this.client.sendOperationRequest(
+ {
+ location,
+ subdomainName,
+ type,
+ options
+ },
+ checkDomainAvailabilityPostOperationSpec,
+ callback) as Promise;
+ }
+}
+
+// Operation Specifications
+const serializer = new msRest.Serializer(Mappers);
+const checkDomainAvailabilityPostOperationSpec: msRest.OperationSpec = {
+ httpMethod: "POST",
+ path: "subscriptions/{subscriptionId}/providers/Microsoft.CognitiveServices/locations/{location}/checkDomainAvailability",
+ urlParameters: [
+ Parameters.subscriptionId,
+ Parameters.location
+ ],
+ queryParameters: [
+ Parameters.apiVersion
+ ],
+ headerParameters: [
+ Parameters.acceptLanguage
+ ],
+ requestBody: {
+ parameterPath: {
+ subdomainName: "subdomainName",
+ type: "type"
+ },
+ mapper: {
+ ...Mappers.CheckDomainAvailabilityParameter,
+ required: true
+ }
+ },
+ responses: {
+ 200: {
+ bodyMapper: Mappers.CheckDomainAvailabilityResult
+ },
+ default: {
+ bodyMapper: Mappers.CloudError
+ }
+ },
+ serializer
+};
diff --git a/packages/@azure/arm-cognitiveservices/package.json b/packages/@azure/arm-cognitiveservices/package.json
index d24afd2634ba..a7375350dd57 100644
--- a/packages/@azure/arm-cognitiveservices/package.json
+++ b/packages/@azure/arm-cognitiveservices/package.json
@@ -44,7 +44,6 @@
"esm/**/*.d.ts",
"esm/**/*.d.ts.map",
"lib/**/*.ts",
- "README.md",
"rollup.config.js",
"tsconfig.json"
],
@@ -53,6 +52,5 @@
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/arm-cognitiveservices.js.map'\" -o ./dist/arm-cognitiveservices.min.js ./dist/arm-cognitiveservices.js",
"prepack": "npm install && npm run build"
},
- "sideEffects": false,
- "authPublish": true
+ "sideEffects": false
}