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

Commit

Permalink
Merge pull request #3014 from Azure/restapi_auto_operationsmanagement…
Browse files Browse the repository at this point in the history
…/resource-manager

[AutoPR] operationsmanagement/resource-manager
  • Loading branch information
Dan Schulte authored Aug 22, 2018
2 parents dcb2cf0 + 4b38c24 commit ff6e4a3
Show file tree
Hide file tree
Showing 23 changed files with 4,990 additions and 382 deletions.
42 changes: 21 additions & 21 deletions lib/services/operationsManagement/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.
80 changes: 42 additions & 38 deletions lib/services/operationsManagement/README.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
# Microsoft Azure SDK for Node.js - OperationsManagement

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-operations
```

## How to Use

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

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

// 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 OperationsManagementClient(credentials, 'your-subscription-id');
client.solutions.listBySubscription().then((solutions) => {
console.log('List of solutions:');
console.dir(solutions, {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-operations
summary: *content

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

## How to use

### Authentication, client creation and get solutions as an example.

```javascript
const msRestAzure = require("ms-rest-azure");
const OperationsManagementClient = require("azure-arm-operations");
msRestAzure.interactiveLogin().then((creds) => {
const subscriptionId = "<Subscription_Id>";
const client = new OperationsManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const solutionName = "testsolutionName";
return client.solutions.get(resourceGroupName, solutionName).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
@@ -0,0 +1,60 @@
/*
* 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';

/**
* Parameter to pass to ARM template
*
*/
class ArmTemplateParameter {
/**
* Create a ArmTemplateParameter.
* @member {string} [name] name of the parameter.
* @member {string} [value] value for the parameter. In Jtoken
*/
constructor() {
}

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

module.exports = ArmTemplateParameter;
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

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

/**
* The error body contract.
*
Expand Down
131 changes: 131 additions & 0 deletions lib/services/operationsManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,58 @@ export interface SolutionProperties extends BaseResource {
referencedResources?: string[];
}

/**
* @class
* Initializes a new instance of the ManagementAssociationProperties class.
* @constructor
* ManagementAssociation properties supported by the OperationsManagement
* resource provider.
*
* @member {string} applicationId The applicationId of the appliance for this
* association.
*/
export interface ManagementAssociationProperties extends BaseResource {
applicationId: string;
}

/**
* @class
* Initializes a new instance of the ArmTemplateParameter class.
* @constructor
* Parameter to pass to ARM template
*
* @member {string} [name] name of the parameter.
* @member {string} [value] value for the parameter. In Jtoken
*/
export interface ArmTemplateParameter {
name?: string;
value?: string;
}

/**
* @class
* Initializes a new instance of the ManagementConfigurationProperties class.
* @constructor
* ManagementConfiguration properties supported by the OperationsManagement
* resource provider.
*
* @member {string} [applicationId] The applicationId of the appliance for this
* Management.
* @member {string} parentResourceType The type of the parent resource.
* @member {array} parameters Parameters to run the ARM template
* @member {string} [provisioningState] The provisioning state for the
* ManagementConfiguration.
* @member {object} template The Json object containing the ARM template to
* deploy
*/
export interface ManagementConfigurationProperties extends BaseResource {
applicationId?: string;
parentResourceType: string;
parameters: ArmTemplateParameter[];
readonly provisioningState?: string;
template: any;
}

/**
* @class
* Initializes a new instance of the SolutionPlan class.
Expand Down Expand Up @@ -161,6 +213,85 @@ export interface SolutionPropertiesList {
value?: Solution[];
}

/**
* @class
* Initializes a new instance of the ManagementAssociation class.
* @constructor
* The container for solution.
*
* @member {string} [id] Resource ID.
* @member {string} [name] Resource name.
* @member {string} [type] Resource type.
* @member {string} [location] Resource location
* @member {object} [properties] Properties for ManagementAssociation object
* supported by the OperationsManagement resource provider.
* @member {string} [properties.applicationId] The applicationId of the
* appliance for this association.
*/
export interface ManagementAssociation extends BaseResource {
readonly id?: string;
readonly name?: string;
readonly type?: string;
location?: string;
properties?: ManagementAssociationProperties;
}

/**
* @class
* Initializes a new instance of the ManagementAssociationPropertiesList class.
* @constructor
* the list of ManagementAssociation response
*
* @member {array} [value] List of Management Association properites within the
* subscription.
*/
export interface ManagementAssociationPropertiesList {
value?: ManagementAssociation[];
}

/**
* @class
* Initializes a new instance of the ManagementConfiguration class.
* @constructor
* The container for solution.
*
* @member {string} [id] Resource ID.
* @member {string} [name] Resource name.
* @member {string} [type] Resource type.
* @member {string} [location] Resource location
* @member {object} [properties] Properties for ManagementConfiguration object
* supported by the OperationsManagement resource provider.
* @member {string} [properties.applicationId] The applicationId of the
* appliance for this Management.
* @member {string} [properties.parentResourceType] The type of the parent
* resource.
* @member {array} [properties.parameters] Parameters to run the ARM template
* @member {string} [properties.provisioningState] The provisioning state for
* the ManagementConfiguration.
* @member {object} [properties.template] The Json object containing the ARM
* template to deploy
*/
export interface ManagementConfiguration extends BaseResource {
readonly id?: string;
readonly name?: string;
readonly type?: string;
location?: string;
properties?: ManagementConfigurationProperties;
}

/**
* @class
* Initializes a new instance of the ManagementConfigurationPropertiesList class.
* @constructor
* the list of ManagementConfiguration response
*
* @member {array} [value] List of Management Configuration properites within
* the subscription.
*/
export interface ManagementConfigurationPropertiesList {
value?: ManagementConfiguration[];
}

/**
* @class
* Initializes a new instance of the CodeMessageErrorError class.
Expand Down
7 changes: 7 additions & 0 deletions lib/services/operationsManagement/lib/models/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,16 @@ exports.CloudError = msRestAzure.CloudError;
exports.OperationDisplay = require('./operationDisplay');
exports.Operation = require('./operation');
exports.SolutionProperties = require('./solutionProperties');
exports.ManagementAssociationProperties = require('./managementAssociationProperties');
exports.ArmTemplateParameter = require('./armTemplateParameter');
exports.ManagementConfigurationProperties = require('./managementConfigurationProperties');
exports.SolutionPlan = require('./solutionPlan');
exports.Solution = require('./solution');
exports.SolutionPropertiesList = require('./solutionPropertiesList');
exports.ManagementAssociation = require('./managementAssociation');
exports.ManagementAssociationPropertiesList = require('./managementAssociationPropertiesList');
exports.ManagementConfiguration = require('./managementConfiguration');
exports.ManagementConfigurationPropertiesList = require('./managementConfigurationPropertiesList');
exports.CodeMessageErrorError = require('./codeMessageErrorError');
exports.CodeMessageError = require('./codeMessageError');
exports.OperationListResult = require('./operationListResult');
Loading

0 comments on commit ff6e4a3

Please sign in to comment.