Provides information about endpoints in different Azure Environments and a mechanism to add custom Azure Environment
Перейти к файлу
Rikki Gibson e2ca883385 Add rollup config 2018-10-04 15:30:14 -07:00
.vscode initial commit 2017-09-06 16:48:57 -07:00
lib AzureEnvironment -> Environment 2018-10-04 15:28:19 -07:00
test AzureEnvironment -> Environment 2018-10-04 15:28:19 -07:00
.gitattributes initial commit 2017-09-06 16:48:57 -07:00
.gitignore Add rollup config 2018-10-04 15:30:14 -07:00
.travis.yml Adding travis 2018-08-24 17:12:50 -07:00
Changelog.md Update version to 0.1.2 2018-08-28 09:32:39 -07:00
LICENSE Initial commit 2017-09-06 09:50:41 -07:00
README.md fixed tslint issues and updated package.json 2017-09-16 19:55:41 -07:00
package-lock.json Fix generating duplicated bundle.js (#10) 2018-09-13 13:53:39 -07:00
package.json Add rollup config 2018-10-04 15:30:14 -07:00
rollup.config.js Add rollup config 2018-10-04 15:30:14 -07:00
tsconfig.es.json Add rollup config 2018-10-04 15:30:14 -07:00
tsconfig.json Add rollup config 2018-10-04 15:30:14 -07:00
tslint.json initial commit 2017-09-06 16:48:57 -07:00

README.md

An isomorphic javascript library with typescript type definitions that provides a mechanism to access Azure Endpoints in different Azure clouds. It also provides a mechanism to add a custom environment.

Example

import {AzureEnvironment, AzureEnvironmentParameters } from "ms-rest-azure-env";

// Accesing predefined environment endpoints.
console.log(AzureEnvironment.Azure.resourceManagerEndpointUrl);
console.log(AzureEnvironment.AzureChina.resourceManagerEndpointUrl);

//Adding a custom environment with required endpoint values.
let df: AzureEnvironmentParameters = {
  name: "Dogfood",
  portalUrl: "http://go.microsoft.com/fwlink/?LinkId=254433",
  managementEndpointUrl: "https://management.core.windows.net",
  resourceManagerEndpointUrl: "https://management.azure.com/",
  activeDirectoryEndpointUrl: "https://login.microsoftonline.com/",
  activeDirectoryResourceId: "https://management.core.windows.net/"
};
AzureEnvironment.add(df);
let dfoodEnv = AzureEnvironment.get("Dogfood");
console.log(dfoodEnv);
console.log(`Accessing the custom environment info: ${(<any>AzureEnvironment)["Dogfood"].managementEndpointUrl}`);

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.