From 64104f8427275ece2f2e8a9121ac311d73039a86 Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Fri, 22 Mar 2019 04:53:07 +0000 Subject: [PATCH] Generated from df6ed133536ac9854663a1ea0958807915ae2cbd resolve comments --- packages/@azure/arm-signalr/LICENSE.txt | 42 ++-- packages/@azure/arm-signalr/README.md | 195 +++++++++--------- .../@azure/arm-signalr/lib/models/index.ts | 20 +- .../arm-signalr/lib/operations/signalR.ts | 64 +++++- .../lib/signalRManagementClientContext.ts | 2 +- packages/@azure/arm-signalr/package.json | 8 +- packages/@azure/arm-signalr/rollup.config.js | 22 +- 7 files changed, 210 insertions(+), 143 deletions(-) diff --git a/packages/@azure/arm-signalr/LICENSE.txt b/packages/@azure/arm-signalr/LICENSE.txt index a70e8cf66038..8f3d856145c5 100644 --- a/packages/@azure/arm-signalr/LICENSE.txt +++ b/packages/@azure/arm-signalr/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-signalr/README.md b/packages/@azure/arm-signalr/README.md index 23c573b63774..0ecd6261d8f7 100644 --- a/packages/@azure/arm-signalr/README.md +++ b/packages/@azure/arm-signalr/README.md @@ -1,99 +1,96 @@ -## Azure SignalRManagementClient SDK for JavaScript - -This package contains an isomorphic SDK for SignalRManagementClient. - -### Currently supported environments - -- Node.js version 6.x.x or higher -- Browser JavaScript - -### How to Install - -``` -npm install @azure/arm-signalr -``` - -### How to use - -#### nodejs - Authentication, client creation and list operations as an example written in TypeScript. - -##### Install @azure/ms-rest-nodeauth - -``` -npm install @azure/ms-rest-nodeauth -``` - -##### Sample code - -```ts -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 { SignalRManagementClient, SignalRManagementModels, SignalRManagementMappers } from "@azure/arm-signalr"; -const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; - -msRestNodeAuth.interactiveLogin().then((creds) => { - const client = new SignalRManagementClient(creds, subscriptionId); - client.operations.list().then((result) => { - console.log("The result is:"); - console.log(result); - }); -}).catch((err) => { - console.error(err); -}); -``` - -#### browser - Authentication, client creation and list operations as an example written in JavaScript. - -##### Install @azure/ms-rest-browserauth - -``` -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-signalr sample - - - - - - - - -``` - -## Related projects - -- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js) - - -![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fpackages%2F%40azure%2Farm-signalr%2FREADME.png) +## Azure SignalRManagementClient SDK for JavaScript + +This package contains an isomorphic SDK for SignalRManagementClient. + +### Currently supported environments + +- Node.js version 6.x.x or higher +- Browser JavaScript + +### How to Install + +```bash +npm install @azure/arm-signalr +``` + +### How to use + +#### nodejs - Authentication, client creation and list operations 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 { SignalRManagementClient, SignalRManagementModels, SignalRManagementMappers } from "@azure/arm-signalr"; +const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; + +msRestNodeAuth.interactiveLogin().then((creds) => { + const client = new SignalRManagementClient(creds, subscriptionId); + client.operations.list().then((result) => { + console.log("The result is:"); + console.log(result); + }); +}).catch((err) => { + console.error(err); +}); +``` + +#### browser - Authentication, client creation and list operations 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-signalr sample + + + + + + + + +``` + +## Related projects + +- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js) diff --git a/packages/@azure/arm-signalr/lib/models/index.ts b/packages/@azure/arm-signalr/lib/models/index.ts index 1af7d1a71449..d260960580bf 100644 --- a/packages/@azure/arm-signalr/lib/models/index.ts +++ b/packages/@azure/arm-signalr/lib/models/index.ts @@ -235,8 +235,8 @@ export interface ResourceSku { name: string; /** * @member {SignalRSkuTier} [tier] Optional tier of this particular SKU. - * `Basic` is deprecated, use `Standard` instead for Basic tier. Possible - * values include: 'Free', 'Basic', 'Standard', 'Premium' + * `Basic` is deprecated, use `Standard` instead. Possible values include: + * 'Free', 'Basic', 'Standard', 'Premium' */ tier?: SignalRSkuTier; /** @@ -274,7 +274,7 @@ export interface Resource extends BaseResource { */ readonly id?: string; /** - * @member {string} [name] The name of the resouce. + * @member {string} [name] The name of the resource. * **NOTE: This property will not be serialized. It can only be populated by * the server.** */ @@ -350,14 +350,14 @@ export interface SignalRResource extends TrackedResource { */ readonly hostName?: string; /** - * @member {number} [publicPort] The publicly accessibly port of the SignalR + * @member {number} [publicPort] The publicly accessible port of the SignalR * service which is designed for browser/client side usage. * **NOTE: This property will not be serialized. It can only be populated by * the server.** */ readonly publicPort?: number; /** - * @member {number} [serverPort] The publicly accessibly port of the SignalR + * @member {number} [serverPort] The publicly accessible port of the SignalR * service which is designed for customer server side usage. * **NOTE: This property will not be serialized. It can only be populated by * the server.** @@ -479,7 +479,7 @@ export interface SignalRCreateParameters extends SignalRUpdateParameters { */ export interface SignalRUsageName { /** - * @member {string} [value] The indentifier of the usage. + * @member {string} [value] The identifier of the usage. */ value?: string; /** @@ -803,6 +803,14 @@ export type ApiVersion9 = '2018-03-01-preview' | '2018-10-01'; */ export type ApiVersion10 = '2018-03-01-preview' | '2018-10-01'; +/** + * Defines values for ApiVersion11. + * Possible values include: '2018-03-01-preview', '2018-10-01' + * @readonly + * @enum {string} + */ +export type ApiVersion11 = '2018-03-01-preview' | '2018-10-01'; + /** * Contains response data for the list operation. */ diff --git a/packages/@azure/arm-signalr/lib/operations/signalR.ts b/packages/@azure/arm-signalr/lib/operations/signalR.ts index fca3f4028825..acb3200beeba 100644 --- a/packages/@azure/arm-signalr/lib/operations/signalR.ts +++ b/packages/@azure/arm-signalr/lib/operations/signalR.ts @@ -233,6 +233,19 @@ export class SignalR { .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; } + /** + * Operation to restart a SignalR service. + * @param resourceGroupName The name of the resource group that contains the resource. You can + * obtain this value from the Azure Resource Manager API or the portal. + * @param resourceName The name of the SignalR resource. + * @param [options] The optional parameters + * @returns Promise + */ + restart(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise { + return this.beginRestart(resourceGroupName,resourceName,options) + .then(lroPoller => lroPoller.pollUntilFinished()); + } + /** * Regenerate SignalR service access key. PrimaryKey and SecondaryKey cannot be regenerated at the * same time. @@ -310,6 +323,25 @@ export class SignalR { options); } + /** + * Operation to restart a SignalR service. + * @param resourceGroupName The name of the resource group that contains the resource. You can + * obtain this value from the Azure Resource Manager API or the portal. + * @param resourceName The name of the SignalR resource. + * @param [options] The optional parameters + * @returns Promise + */ + beginRestart(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise { + return this.client.sendLRORequest( + { + resourceGroupName, + resourceName, + options + }, + beginRestartOperationSpec, + options); + } + /** * Handles requests to list all resources in a subscription. * @param nextPageLink The NextLink from the previous successful call to List operation. @@ -474,7 +506,7 @@ const listKeysOperationSpec: msRest.OperationSpec = { const getOperationSpec: msRest.OperationSpec = { httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, @@ -531,7 +563,7 @@ const beginRegenerateKeyOperationSpec: msRest.OperationSpec = { const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = { httpMethod: "PUT", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, @@ -564,7 +596,7 @@ const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = { const beginDeleteMethodOperationSpec: msRest.OperationSpec = { httpMethod: "DELETE", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, @@ -588,7 +620,7 @@ const beginDeleteMethodOperationSpec: msRest.OperationSpec = { const beginUpdateOperationSpec: msRest.OperationSpec = { httpMethod: "PATCH", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/SignalR/{resourceName}", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}", urlParameters: [ Parameters.subscriptionId, Parameters.resourceGroupName, @@ -619,6 +651,30 @@ const beginUpdateOperationSpec: msRest.OperationSpec = { serializer }; +const beginRestartOperationSpec: msRest.OperationSpec = { + httpMethod: "POST", + path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}/restart", + urlParameters: [ + Parameters.subscriptionId, + Parameters.resourceGroupName, + Parameters.resourceName + ], + queryParameters: [ + Parameters.apiVersion + ], + headerParameters: [ + Parameters.acceptLanguage + ], + responses: { + 202: {}, + 204: {}, + default: { + bodyMapper: Mappers.CloudError + } + }, + serializer +}; + const listBySubscriptionNextOperationSpec: msRest.OperationSpec = { httpMethod: "GET", baseUrl: "https://management.azure.com", diff --git a/packages/@azure/arm-signalr/lib/signalRManagementClientContext.ts b/packages/@azure/arm-signalr/lib/signalRManagementClientContext.ts index 9552ff25fe77..34a8d9a26995 100644 --- a/packages/@azure/arm-signalr/lib/signalRManagementClientContext.ts +++ b/packages/@azure/arm-signalr/lib/signalRManagementClientContext.ts @@ -13,7 +13,7 @@ import * as msRest from "@azure/ms-rest-js"; import * as msRestAzure from "@azure/ms-rest-azure-js"; const packageName = "@azure/arm-signalr"; -const packageVersion = "0.1.0"; +const packageVersion = "1.2.0"; export class SignalRManagementClientContext extends msRestAzure.AzureServiceClient { credentials: msRest.ServiceClientCredentials; diff --git a/packages/@azure/arm-signalr/package.json b/packages/@azure/arm-signalr/package.json index 851137ecee98..616fff05a5d1 100644 --- a/packages/@azure/arm-signalr/package.json +++ b/packages/@azure/arm-signalr/package.json @@ -4,8 +4,8 @@ "description": "SignalRManagementClient Library with typescript type definitions for node.js and browser.", "version": "1.2.0", "dependencies": { - "@azure/ms-rest-azure-js": "^1.1.0", - "@azure/ms-rest-js": "^1.1.0", + "@azure/ms-rest-azure-js": "^1.2.0", + "@azure/ms-rest-js": "^1.2.0", "tslib": "^1.9.3" }, "keywords": [ @@ -23,6 +23,7 @@ "typescript": "^3.1.1", "rollup": "^0.66.2", "rollup-plugin-node-resolve": "^3.4.0", + "rollup-plugin-sourcemaps": "^0.4.2", "uglify-js": "^3.4.9" }, "homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/packages/@azure/arm-signalr", @@ -51,6 +52,5 @@ "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/arm-signalr.js.map'\" -o ./dist/arm-signalr.min.js ./dist/arm-signalr.js", "prepack": "npm install && npm run build" }, - "sideEffects": false, - "authPublish": true + "sideEffects": false } diff --git a/packages/@azure/arm-signalr/rollup.config.js b/packages/@azure/arm-signalr/rollup.config.js index 5ce4fd696a08..7ee4e27aa63f 100644 --- a/packages/@azure/arm-signalr/rollup.config.js +++ b/packages/@azure/arm-signalr/rollup.config.js @@ -1,10 +1,16 @@ +import rollup from "rollup"; import nodeResolve from "rollup-plugin-node-resolve"; +import sourcemaps from "rollup-plugin-sourcemaps"; + /** - * @type {import('rollup').RollupFileOptions} + * @type {rollup.RollupFileOptions} */ const config = { - input: './esm/signalRManagementClient.js', - external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"], + input: "./esm/signalRManagementClient.js", + external: [ + "@azure/ms-rest-js", + "@azure/ms-rest-azure-js" + ], output: { file: "./dist/arm-signalr.js", format: "umd", @@ -16,16 +22,16 @@ const config = { }, banner: `/* * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */` }, plugins: [ - nodeResolve({ module: true }) + nodeResolve({ module: true }), + sourcemaps() ] }; + export default config;