Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
[AutoPR consumption/resource-manager] Renamed cost allocation tags to…
Browse files Browse the repository at this point in the history
… cost tags and added schema for get list of all available tag keys (#2727)

* Generated from 1f2de0f37c163aa960c824541bb9094f41418b45

Renamed cost allocation tags to cost tags and added schema for get list of all available tag keys

Renamed cost allocation tags to cost tags and added schema for get list of all available tag keys

* Generated from 7f53393ed97f6918aed8a574dc62a42fd1e36011

Incorporated review comments

Incorporated review comments
  • Loading branch information
AutorestCI authored Apr 13, 2018
1 parent c2d7cf6 commit 4e3af14
Show file tree
Hide file tree
Showing 15 changed files with 1,316 additions and 150 deletions.
42 changes: 21 additions & 21 deletions lib/services/consumptionManagement/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 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.
83 changes: 45 additions & 38 deletions lib/services/consumptionManagement/README.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,45 @@
# Microsoft Azure SDK for Node.js - ConsumptionManagement

This project provides a Node.js package for accessing the Azure PAS. Right now it supports:
- **Node.js version: 6.x.x or higher**

## How to Install

```bash
npm install azure-arm-consumption
```

## How to Use

### Authentication, client creation and listing usageDetails as an example

```javascript
var msRestAzure = require('ms-rest-azure');
var ConsumptionManagementClient = require("azure-arm-consumption");

// Interactive Login
// It provides a url and code that needs to be copied and pasted in a browser and authenticated over there. If successful,
// the user will get a DeviceTokenCredentials object.
msRestAzure.interactiveLogin(function(err, credentials) {
let client = new ConsumptionManagementClient(credentials, 'your-subscription-id');
client.usageDetails.list().then((usageDetails) => {
console.log('List of usageDetails:');
console.dir(usageDetails, {depth: null, colors: true});
});
}).catch((err) => {
console.log('An error ocurred');
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-consumption
summary: *content

---
# Microsoft Azure SDK for Node.js - ConsumptionManagementClient
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-consumption
```

## How to use

### Authentication, client creation and list usageDetails as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const ConsumptionManagementClient = require("azure-arm-consumption");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new ConsumptionManagementClient(creds, subscriptionId);
const expand = "testexpand";
const filter = "testfilter";
const skiptoken = "testskiptoken";
const top = 1;
const apply = "testapply";
return client.usageDetails.list(expand, filter, skiptoken, top, apply).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)
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export default class ConsumptionManagementClient extends AzureServiceClient {
budgets: operations.Budgets;
operations: operations.Operations;
priceSheet: operations.PriceSheet;
costAllocationTagsOperations: operations.CostAllocationTagsOperations;
costTagsOperations: operations.CostTagsOperations;
tagsOperations: operations.TagsOperations;
}

export { ConsumptionManagementClient, models as ConsumptionManagementModels };
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ class ConsumptionManagementClient extends ServiceClient {
this.budgets = new operations.Budgets(this);
this.operations = new operations.Operations(this);
this.priceSheet = new operations.PriceSheet(this);
this.costAllocationTagsOperations = new operations.CostAllocationTagsOperations(this);
this.costTagsOperations = new operations.CostTagsOperations(this);
this.tagsOperations = new operations.TagsOperations(this);
this.models = models;
msRest.addSerializationMixin(this);
}
Expand Down
52 changes: 52 additions & 0 deletions lib/services/consumptionManagement/lib/models/costTag.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* 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.
*/

'use strict';

/**
* The cost tag.
*
*/
class CostTag {
/**
* Create a CostTag.
* @member {string} [key] Cost tag key.
*/
constructor() {
}

/**
* Defines the metadata of CostTag
*
* @returns {object} metadata of CostTag
*
*/
mapper() {
return {
required: false,
serializedName: 'CostTag',
type: {
name: 'Composite',
className: 'CostTag',
modelProperties: {
key: {
required: false,
serializedName: 'key',
type: {
name: 'String'
}
}
}
}
};
}
}

module.exports = CostTag;
95 changes: 95 additions & 0 deletions lib/services/consumptionManagement/lib/models/costTags.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/*
* 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.
*/

'use strict';

const models = require('./index');

/**
* A cost tag resource.
*
* @extends models['ProxyResource']
*/
class CostTags extends models['ProxyResource'] {
/**
* Create a CostTags.
* @member {array} [costTags] Cost tags.
*/
constructor() {
super();
}

/**
* Defines the metadata of CostTags
*
* @returns {object} metadata of CostTags
*
*/
mapper() {
return {
required: false,
serializedName: 'CostTags',
type: {
name: 'Composite',
className: 'CostTags',
modelProperties: {
id: {
required: false,
readOnly: true,
serializedName: 'id',
type: {
name: 'String'
}
},
name: {
required: false,
readOnly: true,
serializedName: 'name',
type: {
name: 'String'
}
},
type: {
required: false,
readOnly: true,
serializedName: 'type',
type: {
name: 'String'
}
},
eTag: {
required: false,
serializedName: 'eTag',
type: {
name: 'String'
}
},
costTags: {
required: false,
serializedName: 'properties.costTags',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'CostTagElementType',
type: {
name: 'Composite',
className: 'CostTag'
}
}
}
}
}
}
};
}
}

module.exports = CostTags;
Loading

0 comments on commit 4e3af14

Please sign in to comment.