Merge pull request #1309 from yugangw-msft/cloudservice

expose cloud service client from scheduler package
This commit is contained in:
Yugang Wang 2014-09-22 20:39:15 -07:00
Родитель b6d9771029 c4cff6f8aa
Коммит cd67f4dad6
3 изменённых файлов: 1073 добавлений и 1 удалений

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -35,6 +35,20 @@ exports.createSchedulerManagementClient = function (credentials, baseUri, filter
return new exports.SchedulerManagementClient.SchedulerManagementClient(credentials, baseUri, filters);
};
var CloudServiceManagementClient = require('./cloudServiceManagementClient');
exports.CloudServiceManagementClient = CloudServiceManagementClient;
/**
* Creates a new {@link CloudServiceManagementClient} object.
*
* @param {string} [credentials.token] The access token.
* @param {string} [baseUri] The base uri.
* @return {CloudServiceManagementClient} A new CloudServiceManagementClient object.
*/
exports.createCloudServiceManagementClient = function (credentials, baseUri) {
return new exports.CloudServiceManagementClient.CloudServiceManagementClient(credentials, baseUri);
};
var common = require('azure-common');
/**
@ -49,4 +63,4 @@ var common = require('azure-common');
*/
exports.createCertificateCloudCredentials = function (credentials) {
return new common.CertificateCloudCredentials(credentials);
};
};

Просмотреть файл

@ -3,6 +3,7 @@
<package id="Hydra.Generator" version="1.0.5309.32163-prerelease" targetFramework="portable-net45+sl50+wp80+win" />
<package id="Microsoft.WindowsAzure.Management.Compute.Specification" version="2.0.5281.42265-prerelease" targetFramework="portable-net45+sl50+wp80+win" />
<package id="Microsoft.WindowsAzure.Management.Scheduler.Specification" version="1.0.5281.27788-prerelease" targetFramework="portable-net45+sl50+wp80+win" />
<package id="Microsoft.WindowsAzure.Management.CloudServices.Specification" version="1.0.5368.26114-prerelease" targetFramework="portable-net45+sl50+wp80+win" />
<package id="Microsoft.WindowsAzure.Management.Specification" version="1.0.5275.27152-prerelease" targetFramework="portable-net45+sl50+wp80+win" />
<package id="Microsoft.WindowsAzure.Management.Sql.Specification" version="1.0.5275.27155-prerelease" targetFramework="portable-net45+sl50+wp80+win" />
<package id="Microsoft.WindowsAzure.Management.Storage.Specification" version="1.0.5275.27155-prerelease" targetFramework="portable-net45+sl50+wp80+win" />