UNPKG

azure-asm-mgmt

Version:

Microsoft Azure Management Client Library for node

53 lines (48 loc) 2.15 kB
// // Copyright (c) Microsoft and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // See the License for the specific language governing permissions and // limitations under the License. // var exports = module.exports; /** * ManagementClient client exports. */ var ManagementClient = require('./managementClient'); exports.ManagementClient = ManagementClient; /** * Creates a new {@link ManagementClient} object. * * @param {string} [credentials.subscriptionId] The subscription identifier. * @param {string} [credentials.cert] The cert value. * @param {string} [credentials.key] The key value. * @param {string} [baseUri] The base uri. * @param {array} [filters] Optional array of service filters * @return {ManagementClient} A new ManagementClient object. */ exports.createManagementClient = function (credentials, baseUri, filters) { return new exports.ManagementClient.ManagementClient(credentials, baseUri, filters); }; var common = require('azure-common'); /** * Creates a new CertificateCloudCredentials object. * Either a pair of cert / key values need to be pass or a pem file location. * * @param {string} credentials.subscription The subscription identifier. * @param {string} [credentials.cert] The certificate. * @param {string} [credentials.key] The certificate key. * @param {string} [credentials.pem] The PEM file content. * @return {CertificateCloudCredentials} */ exports.createCertificateCloudCredentials = function (credentials) { return new common.CertificateCloudCredentials(credentials); };