diff --git a/lib/services/iotcentralManagement/LICENSE.txt b/lib/services/iotcentralManagement/LICENSE.txt index a70e8cf660..5431ba98b9 100644 --- a/lib/services/iotcentralManagement/LICENSE.txt +++ b/lib/services/iotcentralManagement/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) 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. diff --git a/lib/services/iotcentralManagement/README.md b/lib/services/iotcentralManagement/README.md index 19f9b04736..df46180e5e 100644 --- a/lib/services/iotcentralManagement/README.md +++ b/lib/services/iotcentralManagement/README.md @@ -1,42 +1,42 @@ ---- -uid: azure-arm-iotcentral -summary: *content - ---- -# Microsoft Azure SDK for Node.js - IotCentralClient -This project provides a Node.js package for accessing Azure. Right now it supports: -- **Node.js version 6.x.x or higher** - -## Features - - -## How to Install - -```bash -npm install azure-arm-iotcentral -``` - -## How to use - -### Authentication, client creation and get apps as an example. - -```javascript -const msRestAzure = require("ms-rest-azure"); -const IotCentralClient = require("azure-arm-iotcentral"); -msRestAzure.interactiveLogin().then((creds) => { - const subscriptionId = ""; - const client = new IotCentralClient(creds, subscriptionId); - const resourceGroupName = "testresourceGroupName"; - const resourceName = "testresourceName"; - return client.apps.get(resourceGroupName, resourceName).then((result) => { - console.log("The result is:"); - console.log(result); - }); -}).catch((err) => { - console.log('An error occurred:'); - console.dir(err, {depth: null, colors: true}); -}); - -## Related projects - -- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node) +--- +uid: azure-arm-iotcentral +summary: *content + +--- +# Microsoft Azure SDK for Node.js - IotCentralClient +This project provides a Node.js package for accessing Azure. Right now it supports: +- **Node.js version 6.x.x or higher** + +## Features + + +## How to Install + +```bash +npm install azure-arm-iotcentral +``` + +## How to use + +### Authentication, client creation and get apps as an example. + +```javascript +const msRestAzure = require("ms-rest-azure"); +const IotCentralClient = require("azure-arm-iotcentral"); +msRestAzure.interactiveLogin().then((creds) => { + const subscriptionId = ""; + const client = new IotCentralClient(creds, subscriptionId); + const resourceGroupName = "testresourceGroupName"; + const resourceName = "testresourceName"; + return client.apps.get(resourceGroupName, resourceName).then((result) => { + console.log("The result is:"); + console.log(result); + }); +}).catch((err) => { + console.log('An error occurred:'); + console.dir(err, {depth: null, colors: true}); +}); + +## Related projects + +- [Microsoft Azure SDK for Node.js](https://github.com/Azure/azure-sdk-for-node) \ No newline at end of file diff --git a/lib/services/iotcentralManagement/lib/iotCentralClient.js b/lib/services/iotcentralManagement/lib/iotCentralClient.js index bbe1db6fd6..3753e020b8 100644 --- a/lib/services/iotcentralManagement/lib/iotCentralClient.js +++ b/lib/services/iotcentralManagement/lib/iotCentralClient.js @@ -50,7 +50,7 @@ class IotCentralClient extends ServiceClient { super(credentials, options); - this.apiVersion = '2017-07-01-privatepreview'; + this.apiVersion = '2018-09-01'; this.acceptLanguage = 'en-US'; this.longRunningOperationRetryTimeout = 30; this.generateClientRequestId = true; diff --git a/lib/services/iotcentralManagement/package.json b/lib/services/iotcentralManagement/package.json index fbb579e0ba..ad8c3543e5 100644 --- a/lib/services/iotcentralManagement/package.json +++ b/lib/services/iotcentralManagement/package.json @@ -2,7 +2,7 @@ "name": "azure-arm-iotcentral", "author": "Microsoft Corporation", "description": "IotCentralClient Library with typescript type definitions for node", - "version": "1.0.0-preview", + "version": "1.0.0", "dependencies": { "ms-rest": "^2.3.3", "ms-rest-azure": "^2.5.5"