@azure/arm-msi 0.1.0 → 2.0.0-alpha.20211217.3

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.
Files changed (135) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +75 -73
  4. package/dist/index.js +1029 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
  13. package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
  14. package/dist-esm/src/managedServiceIdentityClient.js +53 -0
  15. package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +212 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +9 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +14 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/dist-esm/src/models/mappers.js +325 -0
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +13 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/dist-esm/src/models/parameters.js +113 -0
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/index.d.ts +4 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/dist-esm/src/operations/index.js +11 -0
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/operations.d.ts +32 -0
  33. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  34. package/dist-esm/src/operations/operations.js +120 -0
  35. package/dist-esm/src/operations/operations.js.map +1 -0
  36. package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
  37. package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
  38. package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
  39. package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
  40. package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
  41. package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
  42. package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
  43. package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  45. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  47. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  49. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
  53. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
  57. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
  60. package/dist-esm/test/sampleTest.d.ts +2 -0
  61. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  62. package/dist-esm/test/sampleTest.js +40 -0
  63. package/dist-esm/test/sampleTest.js.map +1 -0
  64. package/package.json +70 -25
  65. package/review/arm-msi.api.md +218 -0
  66. package/rollup.config.js +184 -27
  67. package/src/index.ts +12 -0
  68. package/src/managedServiceIdentityClient.ts +87 -0
  69. package/src/models/index.ts +248 -0
  70. package/src/models/mappers.ts +364 -0
  71. package/src/models/parameters.ts +132 -0
  72. package/{lib → src}/operations/index.ts +4 -5
  73. package/src/operations/operations.ts +137 -0
  74. package/src/operations/systemAssignedIdentities.ts +65 -0
  75. package/src/operations/userAssignedIdentities.ts +450 -0
  76. package/src/operationsInterfaces/index.ts +11 -0
  77. package/src/operationsInterfaces/operations.ts +22 -0
  78. package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
  79. package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
  80. package/tsconfig.json +4 -4
  81. package/types/arm-msi.d.ts +330 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-msi.js +0 -820
  84. package/dist/arm-msi.js.map +0 -1
  85. package/dist/arm-msi.min.js +0 -1
  86. package/dist/arm-msi.min.js.map +0 -1
  87. package/esm/managedServiceIdentityClient.d.ts +0 -19
  88. package/esm/managedServiceIdentityClient.d.ts.map +0 -1
  89. package/esm/managedServiceIdentityClient.js +0 -34
  90. package/esm/managedServiceIdentityClient.js.map +0 -1
  91. package/esm/managedServiceIdentityClientContext.d.ts +0 -16
  92. package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
  93. package/esm/managedServiceIdentityClientContext.js +0 -56
  94. package/esm/managedServiceIdentityClientContext.js.map +0 -1
  95. package/esm/models/index.d.ts +0 -332
  96. package/esm/models/index.d.ts.map +0 -1
  97. package/esm/models/index.js +0 -10
  98. package/esm/models/index.js.map +0 -1
  99. package/esm/models/mappers.d.ts +0 -9
  100. package/esm/models/mappers.d.ts.map +0 -1
  101. package/esm/models/mappers.js +0 -197
  102. package/esm/models/mappers.js.map +0 -1
  103. package/esm/models/operationsMappers.d.ts +0 -2
  104. package/esm/models/operationsMappers.d.ts.map +0 -1
  105. package/esm/models/operationsMappers.js +0 -11
  106. package/esm/models/operationsMappers.js.map +0 -1
  107. package/esm/models/parameters.d.ts +0 -8
  108. package/esm/models/parameters.d.ts.map +0 -1
  109. package/esm/models/parameters.js +0 -71
  110. package/esm/models/parameters.js.map +0 -1
  111. package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
  112. package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
  113. package/esm/models/userAssignedIdentitiesMappers.js +0 -11
  114. package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
  115. package/esm/operations/index.d.ts +0 -3
  116. package/esm/operations/index.d.ts.map +0 -1
  117. package/esm/operations/index.js +0 -12
  118. package/esm/operations/index.js.map +0 -1
  119. package/esm/operations/operations.d.ts +0 -46
  120. package/esm/operations/operations.d.ts.map +0 -1
  121. package/esm/operations/operations.js +0 -77
  122. package/esm/operations/operations.js.map +0 -1
  123. package/esm/operations/userAssignedIdentities.d.ts +0 -172
  124. package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
  125. package/esm/operations/userAssignedIdentities.js +0 -272
  126. package/esm/operations/userAssignedIdentities.js.map +0 -1
  127. package/lib/managedServiceIdentityClient.ts +0 -44
  128. package/lib/managedServiceIdentityClientContext.ts +0 -62
  129. package/lib/models/index.ts +0 -358
  130. package/lib/models/mappers.ts +0 -204
  131. package/lib/models/operationsMappers.ts +0 -17
  132. package/lib/models/parameters.ts +0 -73
  133. package/lib/models/userAssignedIdentitiesMappers.ts +0 -17
  134. package/lib/operations/operations.ts +0 -123
  135. package/lib/operations/userAssignedIdentities.ts +0 -479
@@ -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,2 @@
1
+ export {};
2
+ //# sourceMappingURL=sampleTest.d.ts.map
@@ -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,12 +1,18 @@
1
1
  {
2
2
  "name": "@azure/arm-msi",
3
+ "sdk-type": "mgmt",
3
4
  "author": "Microsoft Corporation",
4
- "description": "ManagedServiceIdentityClient Library with typescript type definitions for node.js and browser.",
5
- "version": "0.1.0",
5
+ "description": "A generated SDK for ManagedServiceIdentityClient.",
6
+ "version": "2.0.0-alpha.20211217.3",
7
+ "engines": {
8
+ "node": ">=12.0.0"
9
+ },
6
10
  "dependencies": {
7
- "@azure/ms-rest-azure-js": "^1.1.0",
8
- "@azure/ms-rest-js": "^1.1.0",
9
- "tslib": "^1.9.3"
11
+ "@azure/core-paging": ">=1.2.0-alpha <1.2.0-alphb",
12
+ "@azure/core-client": "^1.0.0",
13
+ "@azure/core-auth": "^1.3.0",
14
+ "@azure/core-rest-pipeline": "^1.1.0",
15
+ "tslib": "^2.2.0"
10
16
  },
11
17
  "keywords": [
12
18
  "node",
@@ -16,40 +22,79 @@
16
22
  "isomorphic"
17
23
  ],
18
24
  "license": "MIT",
19
- "main": "./dist/arm-msi.js",
20
- "module": "./esm/managedServiceIdentityClient.js",
21
- "types": "./esm/managedServiceIdentityClient.d.ts",
25
+ "main": "./dist/index.js",
26
+ "module": "./dist-esm/src/index.js",
27
+ "types": "./types/arm-msi.d.ts",
22
28
  "devDependencies": {
23
- "typescript": "^3.1.1",
24
- "rollup": "^0.66.2",
25
- "rollup-plugin-node-resolve": "^3.4.0",
26
- "uglify-js": "^3.4.9"
29
+ "@microsoft/api-extractor": "^7.18.11",
30
+ "@rollup/plugin-commonjs": "11.0.2",
31
+ "@rollup/plugin-json": "^4.0.0",
32
+ "@rollup/plugin-multi-entry": "^3.0.0",
33
+ "@rollup/plugin-node-resolve": "^8.0.0",
34
+ "mkdirp": "^1.0.4",
35
+ "rollup": "^1.16.3",
36
+ "rollup-plugin-sourcemaps": "^0.4.2",
37
+ "typescript": "~4.2.0",
38
+ "uglify-js": "^3.4.9",
39
+ "rimraf": "^3.0.0",
40
+ "@azure/identity": "^2.0.1",
41
+ "@azure-tools/test-recorder": "^1.0.0",
42
+ "mocha": "^7.1.1",
43
+ "cross-env": "^7.0.2"
27
44
  },
28
- "homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/packages/@azure/arm-msi",
45
+ "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/msi/arm-msi",
29
46
  "repository": {
30
47
  "type": "git",
31
- "url": "https://github.com/azure/azure-sdk-for-js.git"
48
+ "url": "https://github.com/Azure/azure-sdk-for-js.git"
32
49
  },
33
50
  "bugs": {
34
- "url": "https://github.com/azure/azure-sdk-for-js/issues"
51
+ "url": "https://github.com/Azure/azure-sdk-for-js/issues"
35
52
  },
36
53
  "files": [
37
54
  "dist/**/*.js",
38
55
  "dist/**/*.js.map",
39
56
  "dist/**/*.d.ts",
40
57
  "dist/**/*.d.ts.map",
41
- "esm/**/*.js",
42
- "esm/**/*.js.map",
43
- "esm/**/*.d.ts",
44
- "esm/**/*.d.ts.map",
45
- "lib/**/*.ts",
58
+ "dist-esm/**/*.js",
59
+ "dist-esm/**/*.js.map",
60
+ "dist-esm/**/*.d.ts",
61
+ "dist-esm/**/*.d.ts.map",
62
+ "src/**/*.ts",
63
+ "README.md",
64
+ "LICENSE",
46
65
  "rollup.config.js",
47
- "tsconfig.json"
66
+ "tsconfig.json",
67
+ "review/*",
68
+ "CHANGELOG.md",
69
+ "types/*"
48
70
  ],
49
71
  "scripts": {
50
- "build": "tsc && rollup -c rollup.config.js && npm run minify",
51
- "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/arm-msi.js.map'\" -o ./dist/arm-msi.min.js ./dist/arm-msi.js",
52
- "prepack": "npm install && npm run build"
72
+ "build": "npm run clean && tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api",
73
+ "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js",
74
+ "prepack": "npm run build",
75
+ "pack": "npm pack 2>&1",
76
+ "extract-api": "api-extractor run --local",
77
+ "lint": "echo skipped",
78
+ "audit": "echo skipped",
79
+ "clean": "rimraf dist dist-browser dist-esm test-dist temp types *.tgz *.log",
80
+ "build:node": "echo skipped",
81
+ "build:browser": "echo skipped",
82
+ "build:test": "echo skipped",
83
+ "build:samples": "echo skipped.",
84
+ "check-format": "echo skipped",
85
+ "execute:samples": "echo skipped",
86
+ "format": "echo skipped",
87
+ "test": "npm run integration-test",
88
+ "test:node": "echo skipped",
89
+ "test:browser": "echo skipped",
90
+ "unit-test": "npm run unit-test:node && npm run unit-test:browser",
91
+ "unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node",
92
+ "unit-test:browser": "echo skipped",
93
+ "integration-test": "npm run integration-test:node && npm run integration-test:browser",
94
+ "integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts --reporter ../../../common/tools/mocha-multi-reporter.js",
95
+ "integration-test:browser": "echo skipped",
96
+ "docs": "echo skipped"
53
97
  },
54
- "sideEffects": false
98
+ "sideEffects": false,
99
+ "autoPublish": true
55
100
  }
@@ -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
- import nodeResolve from "rollup-plugin-node-resolve";
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
- * @type {import('rollup').RollupFileOptions}
94
+ * Construct a warning handler for the shared rollup configuration
95
+ * that ignores certain warnings that are not relevant to testing.
4
96
  */
5
- const config = {
6
- input: './esm/managedServiceIdentityClient.js',
7
- external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"],
8
- output: {
9
- file: "./dist/arm-msi.js",
10
- format: "umd",
11
- name: "Azure.ArmMsi",
12
- sourcemap: true,
13
- globals: {
14
- "@azure/ms-rest-js": "msRest",
15
- "@azure/ms-rest-azure-js": "msRestAzure"
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
- banner: `/*
18
- * Copyright (c) Microsoft Corporation. All rights reserved.
19
- * Licensed under the MIT License. See License.txt in the project root for
20
- * license information.
21
- *
22
- * Code generated by Microsoft (R) AutoRest Code Generator.
23
- * Changes may cause incorrect behavior and will be lost if the code is
24
- * regenerated.
25
- */`
26
- },
27
- plugins: [
28
- nodeResolve({ module: true })
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
- export default config;
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";