Skip to content

Commit

Permalink
CodeGen from PR 14678 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge aadf4abbdbee162035985f5f92d0cceca3a70632 into 5ffa6f90f1916423bd09855f1bfe32d2bd78ecab
  • Loading branch information
SDKAuto committed Jun 17, 2021
1 parent 8183647 commit da9009a
Show file tree
Hide file tree
Showing 98 changed files with 2,634 additions and 4,436 deletions.
57 changes: 22 additions & 35 deletions sdk/recoveryservicesbackup/arm-recoveryservicesbackup/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Azure RecoveryServicesBackupClient SDK for JavaScript

This package contains an isomorphic SDK (runs both in Node.js and in browsers) for RecoveryServicesBackupClient.
This package contains an isomorphic SDK (runs both in node.js and in browsers) for RecoveryServicesBackupClient.

### Currently supported environments

- [LTS versions of Node.js](https://nodejs.org/about/releases/)
- Latest versions of Safari, Chrome, Edge, and Firefox.
- Latest versions of Safari, Chrome, Edge and Firefox.

### Prerequisites

Expand All @@ -14,18 +14,15 @@ You must have an [Azure subscription](https://azure.microsoft.com/free/).
### How to install

To use this SDK in your project, you will need to install two packages.

- `@azure/arm-recoveryservicesbackup` that contains the client.
- `@azure/identity` that provides different mechanisms for the client to authenticate your requests using Azure Active Directory.

Install both packages using the below command:

```bash
npm install --save @azure/arm-recoveryservicesbackup @azure/identity
```

> **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features.
> If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.
If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.

### How to use

Expand All @@ -39,7 +36,6 @@ npm install --save @azure/arm-recoveryservicesbackup @azure/identity

In the below samples, we pass the credential and the Azure subscription id to instantiate the client.
Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started.

#### nodejs - Authentication, client creation, and get backupResourceVaultConfigs as an example written in JavaScript.

##### Sample code
Expand All @@ -55,24 +51,20 @@ const creds = new DefaultAzureCredential();
const client = new RecoveryServicesBackupClient(creds, subscriptionId);
const vaultName = "testvaultName";
const resourceGroupName = "testresourceGroupName";
client.backupResourceVaultConfigs
.get(vaultName, resourceGroupName)
.then((result) => {
console.log("The result is:");
console.log(result);
})
.catch((err) => {
console.log("An error occurred:");
console.error(err);
});
client.backupResourceVaultConfigs.get(vaultName, resourceGroupName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
```

#### browser - Authentication, client creation, and get backupResourceVaultConfigs as an example written in JavaScript.

In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser.

- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
- Note down the client Id from the previous step and use it in the browser sample below.
- See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser.
- Note down the client Id from the previous step and use it in the browser sample below.

##### Sample code

Expand All @@ -90,26 +82,21 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t
const subscriptionId = "<Subscription_Id>";
// Create credentials using the `@azure/identity` package.
// Please note that you can also use credentials from the `@azure/ms-rest-browserauth` package instead.
const credential = new InteractiveBrowserCredential({
const credential = new InteractiveBrowserCredential(
{
clientId: "<client id for your Azure AD app>",
tenant: "<optional tenant for your organization>"
});
const client = new Azure.ArmRecoveryservicesbackup.RecoveryServicesBackupClient(
creds,
subscriptionId
);
const client = new Azure.ArmRecoveryservicesbackup.RecoveryServicesBackupClient(creds, subscriptionId);
const vaultName = "testvaultName";
const resourceGroupName = "testresourceGroupName";
client.backupResourceVaultConfigs
.get(vaultName, resourceGroupName)
.then((result) => {
console.log("The result is:");
console.log(result);
})
.catch((err) => {
console.log("An error occurred:");
console.error(err);
});
client.backupResourceVaultConfigs.get(vaultName, resourceGroupName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
</script>
</head>
<body></body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ import sourcemaps from "rollup-plugin-sourcemaps";
*/
const config = {
input: "./esm/recoveryServicesBackupClient.js",
external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"],
external: [
"@azure/ms-rest-js",
"@azure/ms-rest-azure-js"
],
output: {
file: "./dist/arm-recoveryservicesbackup.js",
format: "umd",
Expand All @@ -25,7 +28,10 @@ const config = {
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/`
},
plugins: [nodeResolve({ mainFields: ["module", "main"] }), sourcemaps()]
plugins: [
nodeResolve({ mainFields: ['module', 'main'] }),
sourcemaps()
]
};

export default config;
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export { discriminators, CloudError } from "../models/mappers";
export {
discriminators,
CloudError
} from "../models/mappers";
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export {
IaasVMRecoveryPoint,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityDetails,
IdentityInfo,
ILRRequest,
ILRRequestResource,
InquiryInfo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export {
ErrorAdditionalInfo,
IaasVMRestoreRequest,
IaasVMRestoreWithRehydrationRequest,
IdentityInfo,
NewErrorResponse,
NewErrorResponseError,
RecoveryPointRehydrationInfo,
Expand Down
Loading

0 comments on commit da9009a

Please sign in to comment.