github Azure/azure-sdk-for-js @azure/arm-recoveryservices-siterecovery_5.0.1

latest releases: @azure/arm-billing_5.0.0, @azure/arm-eventhub_5.2.0, @azure-tools/test-credential_1.3.0...
20 months ago

5.0.1 (2023-01-05)

Migration Guide

  • To assist customers migrating from v4.0.0, since v5.0.0 release, we have moved the resourceGroupName and resourceName parameters from the SiteRecoveryManagementClient constructor method to its instance method level, to make it consistent with the client constructors of other service SDKs. For example, in the previous v4.0.0 release, we would create the client like this: const client = new SiteRecoveryManagementClient(credentials, resourceGroupName, subscriptionId, resourceName); and call the method like this: client.replicationJobs.list();. Now, we need to create the client like this: const client = new SiteRecoveryManagementClient(credentials, subscriptionId); and call the method like this: client.replicationJobs.list(resourceName, resourceGroupName);.

Don't miss a new azure-sdk-for-js release

NewReleases is sending notifications on new releases.