@azure/arm-msi 1.2.1 → 2.0.0
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 +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +69 -80
- package/dist/index.js +1029 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.js +53 -0
- package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +212 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +14 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +325 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +113 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
- package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +66 -33
- package/review/arm-msi.api.md +218 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/managedServiceIdentityClient.ts +74 -37
- package/src/models/index.ts +194 -304
- package/src/models/mappers.ts +245 -85
- package/src/models/parameters.ts +83 -24
- package/src/operations/index.ts +4 -5
- package/src/operations/operations.ts +87 -73
- package/src/operations/systemAssignedIdentities.ts +65 -0
- package/src/operations/userAssignedIdentities.ts +278 -307
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
- package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
- package/tsconfig.json +4 -4
- package/types/arm-msi.d.ts +330 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-msi.js +0 -830
- package/dist/arm-msi.js.map +0 -1
- package/dist/arm-msi.min.js +0 -1
- package/dist/arm-msi.min.js.map +0 -1
- package/esm/managedServiceIdentityClient.d.ts +0 -25
- package/esm/managedServiceIdentityClient.d.ts.map +0 -1
- package/esm/managedServiceIdentityClient.js +0 -39
- package/esm/managedServiceIdentityClient.js.map +0 -1
- package/esm/managedServiceIdentityClientContext.d.ts +0 -22
- package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
- package/esm/managedServiceIdentityClientContext.js +0 -61
- package/esm/managedServiceIdentityClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -332
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -9
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -197
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -71
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
- package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.js +0 -11
- package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/userAssignedIdentities.d.ts +0 -172
- package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
- package/esm/operations/userAssignedIdentities.js +0 -272
- package/esm/operations/userAssignedIdentities.js.map +0 -1
- package/src/managedServiceIdentityClientContext.ts +0 -68
- package/src/models/operationsMappers.ts +0 -17
- package/src/models/userAssignedIdentitiesMappers.ts +0 -17
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentities.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/userAssignedIdentities.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EACL,QAAQ,EACR,sDAAsD,EACtD,uDAAuD,EACvD,kDAAkD,EAClD,4CAA4C,EAC5C,cAAc,EACd,0CAA0C,EAC1C,oCAAoC,EACpC,uCAAuC,EACvC,iCAAiC,EACjC,0CAA0C,EAC3C,MAAM,WAAW,CAAC;AAGnB,uDAAuD;AACvD,MAAM,WAAW,sBAAsB;IACrC;;;OAGG;IACH,kBAAkB,CAChB,OAAO,CAAC,EAAE,sDAAsD,GAC/D,0BAA0B,CAAC,QAAQ,CAAC,CAAC;IACxC;;;;OAIG;IACH,mBAAmB,CACjB,iBAAiB,EAAE,MAAM,EACzB,OAAO,CAAC,EAAE,uDAAuD,GAChE,0BAA0B,CAAC,QAAQ,CAAC,CAAC;IACxC;;;;;;OAMG;IACH,cAAc,CACZ,iBAAiB,EAAE,MAAM,EACzB,YAAY,EAAE,MAAM,EACpB,UAAU,EAAE,QAAQ,EACpB,OAAO,CAAC,EAAE,kDAAkD,GAC3D,OAAO,CAAC,4CAA4C,CAAC,CAAC;IACzD;;;;;;OAMG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,YAAY,EAAE,MAAM,EACpB,UAAU,EAAE,cAAc,EAC1B,OAAO,CAAC,EAAE,0CAA0C,GACnD,OAAO,CAAC,oCAAoC,CAAC,CAAC;IACjD;;;;;OAKG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,uCAAuC,GAChD,OAAO,CAAC,iCAAiC,CAAC,CAAC;IAC9C;;;;;OAKG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,0CAA0C,GACnD,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
export {};
|
9
|
+
//# sourceMappingURL=userAssignedIdentities.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentities.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/userAssignedIdentities.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"sampleTest.d.ts","sourceRoot":"","sources":["../../test/sampleTest.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __awaiter } from "tslib";
|
9
|
+
import { record } from "@azure-tools/test-recorder";
|
10
|
+
const recorderEnvSetup = {
|
11
|
+
replaceableVariables: {
|
12
|
+
AZURE_CLIENT_ID: "azure_client_id",
|
13
|
+
AZURE_CLIENT_SECRET: "azure_client_secret",
|
14
|
+
AZURE_TENANT_ID: "88888888-8888-8888-8888-888888888888",
|
15
|
+
SUBSCRIPTION_ID: "azure_subscription_id"
|
16
|
+
},
|
17
|
+
customizationsOnRecordings: [
|
18
|
+
(recording) => recording.replace(/"access_token":"[^"]*"/g, `"access_token":"access_token"`)
|
19
|
+
],
|
20
|
+
queryParametersToSkip: []
|
21
|
+
};
|
22
|
+
describe("My test", () => {
|
23
|
+
let recorder;
|
24
|
+
beforeEach(function () {
|
25
|
+
return __awaiter(this, void 0, void 0, function* () {
|
26
|
+
recorder = record(this, recorderEnvSetup);
|
27
|
+
});
|
28
|
+
});
|
29
|
+
afterEach(function () {
|
30
|
+
return __awaiter(this, void 0, void 0, function* () {
|
31
|
+
yield recorder.stop();
|
32
|
+
});
|
33
|
+
});
|
34
|
+
it("sample test", function () {
|
35
|
+
return __awaiter(this, void 0, void 0, function* () {
|
36
|
+
console.log("Hi, I'm a test!");
|
37
|
+
});
|
38
|
+
});
|
39
|
+
});
|
40
|
+
//# sourceMappingURL=sampleTest.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"sampleTest.js","sourceRoot":"","sources":["../../test/sampleTest.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,OAAO,EAEL,MAAM,EAGP,MAAM,4BAA4B,CAAC;AAGpC,MAAM,gBAAgB,GAA6B;IACjD,oBAAoB,EAAE;QACpB,eAAe,EAAE,iBAAiB;QAClC,mBAAmB,EAAE,qBAAqB;QAC1C,eAAe,EAAE,sCAAsC;QACvD,eAAe,EAAE,uBAAuB;KACzC;IACD,0BAA0B,EAAE;QAC1B,CAAC,SAAc,EAAO,EAAE,CACtB,SAAS,CAAC,OAAO,CACf,yBAAyB,EACzB,+BAA+B,CAChC;KACJ;IACD,qBAAqB,EAAE,EAAE;CAC1B,CAAC;AAEF,QAAQ,CAAC,SAAS,EAAE,GAAG,EAAE;IACvB,IAAI,QAAkB,CAAC;IAEvB,UAAU,CAAC;;YACT,QAAQ,GAAG,MAAM,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QAC5C,CAAC;KAAA,CAAC,CAAC;IAEH,SAAS,CAAC;;YACR,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;QACxB,CAAC;KAAA,CAAC,CAAC;IAEH,EAAE,CAAC,aAAa,EAAE;;YAChB,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;QACjC,CAAC;KAAA,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
@@ -1,56 +1,89 @@
|
|
1
1
|
{
|
2
2
|
"name": "@azure/arm-msi",
|
3
|
+
"sdk-type": "mgmt",
|
3
4
|
"author": "Microsoft Corporation",
|
4
|
-
"description": "
|
5
|
-
"version": "
|
5
|
+
"description": "A generated SDK for ManagedServiceIdentityClient.",
|
6
|
+
"version": "2.0.0",
|
7
|
+
"engines": { "node": ">=12.0.0" },
|
6
8
|
"dependencies": {
|
7
|
-
"@azure/
|
8
|
-
"@azure/
|
9
|
-
"@azure/core-auth": "^1.
|
10
|
-
"
|
9
|
+
"@azure/core-paging": "^1.2.0",
|
10
|
+
"@azure/core-client": "^1.0.0",
|
11
|
+
"@azure/core-auth": "^1.3.0",
|
12
|
+
"@azure/core-rest-pipeline": "^1.1.0",
|
13
|
+
"tslib": "^2.2.0"
|
11
14
|
},
|
12
|
-
"keywords": [
|
13
|
-
"node",
|
14
|
-
"azure",
|
15
|
-
"typescript",
|
16
|
-
"browser",
|
17
|
-
"isomorphic"
|
18
|
-
],
|
15
|
+
"keywords": ["node", "azure", "typescript", "browser", "isomorphic"],
|
19
16
|
"license": "MIT",
|
20
|
-
"main": "./dist/
|
21
|
-
"module": "./esm/
|
22
|
-
"types": "./
|
17
|
+
"main": "./dist/index.js",
|
18
|
+
"module": "./dist-esm/src/index.js",
|
19
|
+
"types": "./types/arm-msi.d.ts",
|
23
20
|
"devDependencies": {
|
24
|
-
"
|
25
|
-
"rollup": "
|
26
|
-
"rollup
|
27
|
-
"
|
21
|
+
"@microsoft/api-extractor": "^7.18.11",
|
22
|
+
"@rollup/plugin-commonjs": "11.0.2",
|
23
|
+
"@rollup/plugin-json": "^4.0.0",
|
24
|
+
"@rollup/plugin-multi-entry": "^3.0.0",
|
25
|
+
"@rollup/plugin-node-resolve": "^8.0.0",
|
26
|
+
"mkdirp": "^1.0.4",
|
27
|
+
"rollup": "^1.16.3",
|
28
|
+
"rollup-plugin-sourcemaps": "^0.4.2",
|
29
|
+
"typescript": "~4.2.0",
|
30
|
+
"uglify-js": "^3.4.9",
|
31
|
+
"rimraf": "^3.0.0",
|
32
|
+
"@azure/identity": "^2.0.1",
|
33
|
+
"@azure-tools/test-recorder": "^1.0.0",
|
34
|
+
"mocha": "^7.1.1",
|
35
|
+
"cross-env": "^7.0.2"
|
28
36
|
},
|
29
|
-
"homepage": "https://github.com/
|
37
|
+
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/msi/arm-msi",
|
30
38
|
"repository": {
|
31
39
|
"type": "git",
|
32
|
-
"url": "https://github.com/
|
33
|
-
},
|
34
|
-
"bugs": {
|
35
|
-
"url": "https://github.com/azure/azure-sdk-for-js/issues"
|
40
|
+
"url": "https://github.com/Azure/azure-sdk-for-js.git"
|
36
41
|
},
|
42
|
+
"bugs": { "url": "https://github.com/Azure/azure-sdk-for-js/issues" },
|
37
43
|
"files": [
|
38
44
|
"dist/**/*.js",
|
39
45
|
"dist/**/*.js.map",
|
40
46
|
"dist/**/*.d.ts",
|
41
47
|
"dist/**/*.d.ts.map",
|
42
|
-
"esm/**/*.js",
|
43
|
-
"esm/**/*.js.map",
|
44
|
-
"esm/**/*.d.ts",
|
45
|
-
"esm/**/*.d.ts.map",
|
48
|
+
"dist-esm/**/*.js",
|
49
|
+
"dist-esm/**/*.js.map",
|
50
|
+
"dist-esm/**/*.d.ts",
|
51
|
+
"dist-esm/**/*.d.ts.map",
|
46
52
|
"src/**/*.ts",
|
53
|
+
"README.md",
|
54
|
+
"LICENSE",
|
47
55
|
"rollup.config.js",
|
48
|
-
"tsconfig.json"
|
56
|
+
"tsconfig.json",
|
57
|
+
"review/*",
|
58
|
+
"CHANGELOG.md",
|
59
|
+
"types/*"
|
49
60
|
],
|
50
61
|
"scripts": {
|
51
|
-
"build": "tsc && rollup -c
|
52
|
-
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/
|
53
|
-
"prepack": "npm
|
62
|
+
"build": "npm run clean && tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api",
|
63
|
+
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
|
64
|
+
"prepack": "npm run build",
|
65
|
+
"pack": "npm pack 2>&1",
|
66
|
+
"extract-api": "api-extractor run --local",
|
67
|
+
"lint": "echo skipped",
|
68
|
+
"audit": "echo skipped",
|
69
|
+
"clean": "rimraf dist dist-browser dist-esm test-dist temp types *.tgz *.log",
|
70
|
+
"build:node": "echo skipped",
|
71
|
+
"build:browser": "echo skipped",
|
72
|
+
"build:test": "echo skipped",
|
73
|
+
"build:samples": "echo skipped.",
|
74
|
+
"check-format": "echo skipped",
|
75
|
+
"execute:samples": "echo skipped",
|
76
|
+
"format": "echo skipped",
|
77
|
+
"test": "npm run integration-test",
|
78
|
+
"test:node": "echo skipped",
|
79
|
+
"test:browser": "echo skipped",
|
80
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
81
|
+
"unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node",
|
82
|
+
"unit-test:browser": "echo skipped",
|
83
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
84
|
+
"integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts --reporter ../../../common/tools/mocha-multi-reporter.js",
|
85
|
+
"integration-test:browser": "echo skipped",
|
86
|
+
"docs": "echo skipped"
|
54
87
|
},
|
55
88
|
"sideEffects": false,
|
56
89
|
"autoPublish": true
|
@@ -0,0 +1,218 @@
|
|
1
|
+
## API Report File for "@azure/arm-msi"
|
2
|
+
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
4
|
+
|
5
|
+
```ts
|
6
|
+
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
8
|
+
import * as coreClient from '@azure/core-client';
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
10
|
+
|
11
|
+
// @public
|
12
|
+
export interface CloudError {
|
13
|
+
error?: CloudErrorBody;
|
14
|
+
}
|
15
|
+
|
16
|
+
// @public
|
17
|
+
export interface CloudErrorBody {
|
18
|
+
code?: string;
|
19
|
+
details?: CloudErrorBody[];
|
20
|
+
message?: string;
|
21
|
+
target?: string;
|
22
|
+
}
|
23
|
+
|
24
|
+
// @public
|
25
|
+
export type Identity = TrackedResource & {
|
26
|
+
readonly tenantId?: string;
|
27
|
+
readonly principalId?: string;
|
28
|
+
readonly clientId?: string;
|
29
|
+
};
|
30
|
+
|
31
|
+
// @public
|
32
|
+
export type IdentityUpdate = Resource & {
|
33
|
+
location?: string;
|
34
|
+
tags?: {
|
35
|
+
[propertyName: string]: string;
|
36
|
+
};
|
37
|
+
readonly tenantId?: string;
|
38
|
+
readonly principalId?: string;
|
39
|
+
readonly clientId?: string;
|
40
|
+
};
|
41
|
+
|
42
|
+
// @public (undocumented)
|
43
|
+
export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
|
44
|
+
// (undocumented)
|
45
|
+
$host: string;
|
46
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagedServiceIdentityClientOptionalParams);
|
47
|
+
// (undocumented)
|
48
|
+
apiVersion: string;
|
49
|
+
// (undocumented)
|
50
|
+
operations: Operations;
|
51
|
+
// (undocumented)
|
52
|
+
subscriptionId: string;
|
53
|
+
// (undocumented)
|
54
|
+
systemAssignedIdentities: SystemAssignedIdentities;
|
55
|
+
// (undocumented)
|
56
|
+
userAssignedIdentities: UserAssignedIdentities;
|
57
|
+
}
|
58
|
+
|
59
|
+
// @public
|
60
|
+
export interface ManagedServiceIdentityClientOptionalParams extends coreClient.ServiceClientOptions {
|
61
|
+
$host?: string;
|
62
|
+
apiVersion?: string;
|
63
|
+
endpoint?: string;
|
64
|
+
}
|
65
|
+
|
66
|
+
// @public
|
67
|
+
export interface Operation {
|
68
|
+
display?: OperationDisplay;
|
69
|
+
name?: string;
|
70
|
+
}
|
71
|
+
|
72
|
+
// @public
|
73
|
+
export interface OperationDisplay {
|
74
|
+
description?: string;
|
75
|
+
operation?: string;
|
76
|
+
provider?: string;
|
77
|
+
resource?: string;
|
78
|
+
}
|
79
|
+
|
80
|
+
// @public
|
81
|
+
export interface OperationListResult {
|
82
|
+
nextLink?: string;
|
83
|
+
value?: Operation[];
|
84
|
+
}
|
85
|
+
|
86
|
+
// @public
|
87
|
+
export interface Operations {
|
88
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
89
|
+
}
|
90
|
+
|
91
|
+
// @public
|
92
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
93
|
+
}
|
94
|
+
|
95
|
+
// @public
|
96
|
+
export type OperationsListNextResponse = OperationListResult;
|
97
|
+
|
98
|
+
// @public
|
99
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
100
|
+
}
|
101
|
+
|
102
|
+
// @public
|
103
|
+
export type OperationsListResponse = OperationListResult;
|
104
|
+
|
105
|
+
// @public
|
106
|
+
export type ProxyResource = Resource & {};
|
107
|
+
|
108
|
+
// @public
|
109
|
+
export interface Resource {
|
110
|
+
readonly id?: string;
|
111
|
+
readonly name?: string;
|
112
|
+
readonly type?: string;
|
113
|
+
}
|
114
|
+
|
115
|
+
// @public
|
116
|
+
export interface SystemAssignedIdentities {
|
117
|
+
getByScope(scope: string, options?: SystemAssignedIdentitiesGetByScopeOptionalParams): Promise<SystemAssignedIdentitiesGetByScopeResponse>;
|
118
|
+
}
|
119
|
+
|
120
|
+
// @public
|
121
|
+
export interface SystemAssignedIdentitiesGetByScopeOptionalParams extends coreClient.OperationOptions {
|
122
|
+
}
|
123
|
+
|
124
|
+
// @public
|
125
|
+
export type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
|
126
|
+
|
127
|
+
// @public
|
128
|
+
export type SystemAssignedIdentity = ProxyResource & {
|
129
|
+
location: string;
|
130
|
+
tags?: {
|
131
|
+
[propertyName: string]: string;
|
132
|
+
};
|
133
|
+
readonly tenantId?: string;
|
134
|
+
readonly principalId?: string;
|
135
|
+
readonly clientId?: string;
|
136
|
+
readonly clientSecretUrl?: string;
|
137
|
+
};
|
138
|
+
|
139
|
+
// @public
|
140
|
+
export type TrackedResource = Resource & {
|
141
|
+
tags?: {
|
142
|
+
[propertyName: string]: string;
|
143
|
+
};
|
144
|
+
location: string;
|
145
|
+
};
|
146
|
+
|
147
|
+
// @public
|
148
|
+
export interface UserAssignedIdentities {
|
149
|
+
createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Identity, options?: UserAssignedIdentitiesCreateOrUpdateOptionalParams): Promise<UserAssignedIdentitiesCreateOrUpdateResponse>;
|
150
|
+
delete(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesDeleteOptionalParams): Promise<void>;
|
151
|
+
get(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesGetOptionalParams): Promise<UserAssignedIdentitiesGetResponse>;
|
152
|
+
listByResourceGroup(resourceGroupName: string, options?: UserAssignedIdentitiesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Identity>;
|
153
|
+
listBySubscription(options?: UserAssignedIdentitiesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Identity>;
|
154
|
+
update(resourceGroupName: string, resourceName: string, parameters: IdentityUpdate, options?: UserAssignedIdentitiesUpdateOptionalParams): Promise<UserAssignedIdentitiesUpdateResponse>;
|
155
|
+
}
|
156
|
+
|
157
|
+
// @public
|
158
|
+
export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
159
|
+
}
|
160
|
+
|
161
|
+
// @public
|
162
|
+
export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
|
163
|
+
|
164
|
+
// @public
|
165
|
+
export interface UserAssignedIdentitiesDeleteOptionalParams extends coreClient.OperationOptions {
|
166
|
+
}
|
167
|
+
|
168
|
+
// @public
|
169
|
+
export interface UserAssignedIdentitiesGetOptionalParams extends coreClient.OperationOptions {
|
170
|
+
}
|
171
|
+
|
172
|
+
// @public
|
173
|
+
export type UserAssignedIdentitiesGetResponse = Identity;
|
174
|
+
|
175
|
+
// @public
|
176
|
+
export interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
177
|
+
}
|
178
|
+
|
179
|
+
// @public
|
180
|
+
export type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
|
181
|
+
|
182
|
+
// @public
|
183
|
+
export interface UserAssignedIdentitiesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
184
|
+
}
|
185
|
+
|
186
|
+
// @public
|
187
|
+
export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
|
188
|
+
|
189
|
+
// @public
|
190
|
+
export interface UserAssignedIdentitiesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
191
|
+
}
|
192
|
+
|
193
|
+
// @public
|
194
|
+
export type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult;
|
195
|
+
|
196
|
+
// @public
|
197
|
+
export interface UserAssignedIdentitiesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
198
|
+
}
|
199
|
+
|
200
|
+
// @public
|
201
|
+
export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
|
202
|
+
|
203
|
+
// @public
|
204
|
+
export interface UserAssignedIdentitiesListResult {
|
205
|
+
nextLink?: string;
|
206
|
+
value?: Identity[];
|
207
|
+
}
|
208
|
+
|
209
|
+
// @public
|
210
|
+
export interface UserAssignedIdentitiesUpdateOptionalParams extends coreClient.OperationOptions {
|
211
|
+
}
|
212
|
+
|
213
|
+
// @public
|
214
|
+
export type UserAssignedIdentitiesUpdateResponse = Identity;
|
215
|
+
|
216
|
+
// (No @packageDocumentation comment for this package)
|
217
|
+
|
218
|
+
```
|
package/rollup.config.js
CHANGED
@@ -1,31 +1,188 @@
|
|
1
|
-
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
|
9
|
+
import nodeResolve from "@rollup/plugin-node-resolve";
|
10
|
+
import cjs from "@rollup/plugin-commonjs";
|
11
|
+
import sourcemaps from "rollup-plugin-sourcemaps";
|
12
|
+
import multiEntry from "@rollup/plugin-multi-entry";
|
13
|
+
import json from "@rollup/plugin-json";
|
14
|
+
|
15
|
+
import nodeBuiltins from "builtin-modules";
|
16
|
+
|
17
|
+
/**
|
18
|
+
* Gets the proper configuration needed for rollup's commonJS plugin for @opentelemetry/api.
|
19
|
+
*
|
20
|
+
* NOTE: this manual configuration is only needed because OpenTelemetry uses an
|
21
|
+
* __exportStar downleveled helper function to declare its exports which confuses
|
22
|
+
* rollup's automatic discovery mechanism.
|
23
|
+
*
|
24
|
+
* @returns an object reference that can be `...`'d into your cjs() configuration.
|
25
|
+
*/
|
26
|
+
export function openTelemetryCommonJs() {
|
27
|
+
const namedExports = {};
|
28
|
+
|
29
|
+
for (const key of [
|
30
|
+
"@opentelemetry/api",
|
31
|
+
"@azure/core-tracing/node_modules/@opentelemetry/api"
|
32
|
+
]) {
|
33
|
+
namedExports[key] = [
|
34
|
+
"SpanKind",
|
35
|
+
"TraceFlags",
|
36
|
+
"getSpan",
|
37
|
+
"setSpan",
|
38
|
+
"SpanStatusCode",
|
39
|
+
"getSpanContext",
|
40
|
+
"setSpanContext"
|
41
|
+
];
|
42
|
+
}
|
43
|
+
|
44
|
+
const releasedOpenTelemetryVersions = ["0.10.2", "1.0.0-rc.0"];
|
45
|
+
|
46
|
+
for (const version of releasedOpenTelemetryVersions) {
|
47
|
+
namedExports[
|
48
|
+
// working around a limitation in the rollup common.js plugin - it's not able to resolve these modules so the named exports listed above will not get applied. We have to drill down to the actual path.
|
49
|
+
`../../../common/temp/node_modules/.pnpm/@opentelemetry/api@${version}/node_modules/@opentelemetry/api/build/src/index.js`
|
50
|
+
] = [
|
51
|
+
"SpanKind",
|
52
|
+
"TraceFlags",
|
53
|
+
"getSpan",
|
54
|
+
"setSpan",
|
55
|
+
"StatusCode",
|
56
|
+
"CanonicalCode",
|
57
|
+
"getSpanContext",
|
58
|
+
"setSpanContext"
|
59
|
+
];
|
60
|
+
}
|
61
|
+
|
62
|
+
return namedExports;
|
63
|
+
}
|
64
|
+
|
65
|
+
// #region Warning Handler
|
66
|
+
|
67
|
+
/**
|
68
|
+
* A function that can determine whether a rollupwarning should be ignored. If
|
69
|
+
* the function returns `true`, then the warning will not be displayed.
|
70
|
+
*/
|
71
|
+
|
72
|
+
function ignoreNiseSinonEvalWarnings(warning) {
|
73
|
+
return (
|
74
|
+
warning.code === "EVAL" &&
|
75
|
+
warning.id &&
|
76
|
+
(warning.id.includes("node_modules/nise") ||
|
77
|
+
warning.id.includes("node_modules/sinon")) === true
|
78
|
+
);
|
79
|
+
}
|
80
|
+
|
81
|
+
function ignoreChaiCircularDependencyWarnings(warning) {
|
82
|
+
return (
|
83
|
+
warning.code === "CIRCULAR_DEPENDENCY" &&
|
84
|
+
warning.importer && warning.importer.includes("node_modules/chai") === true
|
85
|
+
);
|
86
|
+
}
|
87
|
+
|
88
|
+
const warningInhibitors = [
|
89
|
+
ignoreChaiCircularDependencyWarnings,
|
90
|
+
ignoreNiseSinonEvalWarnings
|
91
|
+
];
|
92
|
+
|
2
93
|
/**
|
3
|
-
*
|
94
|
+
* Construct a warning handler for the shared rollup configuration
|
95
|
+
* that ignores certain warnings that are not relevant to testing.
|
4
96
|
*/
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
97
|
+
function makeOnWarnForTesting() {
|
98
|
+
return (warning, warn) => {
|
99
|
+
// If every inhibitor returns false (i.e. no inhibitors), then show the warning
|
100
|
+
if (warningInhibitors.every((inhib) => !inhib(warning))) {
|
101
|
+
warn(warning);
|
102
|
+
}
|
103
|
+
};
|
104
|
+
}
|
105
|
+
|
106
|
+
// #endregion
|
107
|
+
|
108
|
+
function makeBrowserTestConfig() {
|
109
|
+
const config = {
|
110
|
+
input: {
|
111
|
+
include: ["dist-esm/test/**/*.spec.js"],
|
112
|
+
exclude: ["dist-esm/test/**/node/**"]
|
16
113
|
},
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
114
|
+
output: {
|
115
|
+
file: `dist-test/index.browser.js`,
|
116
|
+
format: "umd",
|
117
|
+
sourcemap: true
|
118
|
+
},
|
119
|
+
preserveSymlinks: false,
|
120
|
+
plugins: [
|
121
|
+
multiEntry({ exports: false }),
|
122
|
+
nodeResolve({
|
123
|
+
mainFields: ["module", "browser"]
|
124
|
+
}),
|
125
|
+
cjs({
|
126
|
+
namedExports: {
|
127
|
+
// Chai's strange internal architecture makes it impossible to statically
|
128
|
+
// analyze its exports.
|
129
|
+
chai: [
|
130
|
+
"version",
|
131
|
+
"use",
|
132
|
+
"util",
|
133
|
+
"config",
|
134
|
+
"expect",
|
135
|
+
"should",
|
136
|
+
"assert"
|
137
|
+
],
|
138
|
+
...openTelemetryCommonJs()
|
139
|
+
}
|
140
|
+
}),
|
141
|
+
json(),
|
142
|
+
sourcemaps()
|
143
|
+
//viz({ filename: "dist-test/browser-stats.html", sourcemap: true })
|
144
|
+
],
|
145
|
+
onwarn: makeOnWarnForTesting(),
|
146
|
+
// Disable tree-shaking of test code. In rollup-plugin-node-resolve@5.0.0,
|
147
|
+
// rollup started respecting the "sideEffects" field in package.json. Since
|
148
|
+
// our package.json sets "sideEffects=false", this also applies to test
|
149
|
+
// code, which causes all tests to be removed by tree-shaking.
|
150
|
+
treeshake: false
|
151
|
+
};
|
152
|
+
|
153
|
+
return config;
|
154
|
+
}
|
155
|
+
|
156
|
+
const defaultConfigurationOptions = {
|
157
|
+
disableBrowserBundle: false
|
30
158
|
};
|
31
|
-
|
159
|
+
|
160
|
+
export function makeConfig(pkg, options) {
|
161
|
+
options = {
|
162
|
+
...defaultConfigurationOptions,
|
163
|
+
...(options || {})
|
164
|
+
};
|
165
|
+
|
166
|
+
const baseConfig = {
|
167
|
+
// Use the package's module field if it has one
|
168
|
+
input: pkg["module"] || "dist-esm/src/index.js",
|
169
|
+
external: [
|
170
|
+
...nodeBuiltins,
|
171
|
+
...Object.keys(pkg.dependencies),
|
172
|
+
...Object.keys(pkg.devDependencies)
|
173
|
+
],
|
174
|
+
output: { file: "dist/index.js", format: "cjs", sourcemap: true },
|
175
|
+
preserveSymlinks: false,
|
176
|
+
plugins: [sourcemaps(), nodeResolve(), cjs()]
|
177
|
+
};
|
178
|
+
|
179
|
+
const config = [baseConfig];
|
180
|
+
|
181
|
+
if (!options.disableBrowserBundle) {
|
182
|
+
config.push(makeBrowserTestConfig());
|
183
|
+
}
|
184
|
+
|
185
|
+
return config;
|
186
|
+
}
|
187
|
+
|
188
|
+
export default makeConfig(require("./package.json"));
|
package/src/index.ts
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
|
9
|
+
/// <reference lib="esnext.asynciterable" />
|
10
|
+
export * from "./models";
|
11
|
+
export { ManagedServiceIdentityClient } from "./managedServiceIdentityClient";
|
12
|
+
export * from "./operationsInterfaces";
|