@azure/arm-resources 30.0.0-alpha.20210806.1 → 30.0.0-alpha.20210930.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/esm/resourceManagementClientContext.js +1 -1
- package/package.json +2 -2
- package/src/resourceManagementClientContext.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
# Release History
|
|
2
|
+
|
|
3
|
+
## 30.0.0-beta.3 (Unreleased)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
### Other Changes
|
|
12
|
+
|
|
13
|
+
## 30.0.0-beta.2 (2021-09-06)
|
|
14
|
+
|
|
15
|
+
**Bug Fixes**
|
|
16
|
+
|
|
17
|
+
- fix homepage issues
|
|
18
|
+
|
|
1
19
|
## 30.0.0-beta.1 (2021-07-15)
|
|
2
20
|
|
|
3
21
|
This is the first preview for the new version of the `@azure/arm-resources` package that follows the new [guidelines for TypeScript SDKs](https://azure.github.io/azure-sdk/typescript_introduction.html) for Azure services.
|
package/README.md
CHANGED
|
@@ -47,7 +47,8 @@ Set the values of the client ID, tenant ID, and client secret of the AAD applica
|
|
|
47
47
|
```javascript
|
|
48
48
|
const { ResourceManagementClient } = require("@azure/arm-resources");
|
|
49
49
|
const { DefaultAzureCredential } = require("@azure/identity");
|
|
50
|
-
const
|
|
50
|
+
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
|
51
|
+
const client = new ResourceManagementClient(new DefaultAzureCredential(), subscriptionId);
|
|
51
52
|
```
|
|
52
53
|
|
|
53
54
|
## Key concepts
|
package/dist/index.js
CHANGED
|
@@ -10772,7 +10772,7 @@ class ResourceManagementClientContext extends coreClient.ServiceClient {
|
|
|
10772
10772
|
requestContentType: "application/json; charset=utf-8",
|
|
10773
10773
|
credential: credentials
|
|
10774
10774
|
};
|
|
10775
|
-
const packageDetails = `azsdk-js-arm-resources/30.0.0-beta.
|
|
10775
|
+
const packageDetails = `azsdk-js-arm-resources/30.0.0-beta.2`;
|
|
10776
10776
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
10777
10777
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
10778
10778
|
: `${packageDetails}`;
|