@azure/arm-msi 1.2.1 → 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 (129) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +69 -80
  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 +67 -24
  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 +74 -37
  69. package/src/models/index.ts +194 -304
  70. package/src/models/mappers.ts +245 -85
  71. package/src/models/parameters.ts +83 -24
  72. package/src/operations/index.ts +4 -5
  73. package/src/operations/operations.ts +87 -73
  74. package/src/operations/systemAssignedIdentities.ts +65 -0
  75. package/src/operations/userAssignedIdentities.ts +278 -307
  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 -830
  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 -25
  88. package/esm/managedServiceIdentityClient.d.ts.map +0 -1
  89. package/esm/managedServiceIdentityClient.js +0 -39
  90. package/esm/managedServiceIdentityClient.js.map +0 -1
  91. package/esm/managedServiceIdentityClientContext.d.ts +0 -22
  92. package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
  93. package/esm/managedServiceIdentityClientContext.js +0 -61
  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/src/managedServiceIdentityClientContext.ts +0 -68
  128. package/src/models/operationsMappers.ts +0 -17
  129. package/src/models/userAssignedIdentitiesMappers.ts +0 -17
@@ -1,2 +0,0 @@
1
- export { UserAssignedIdentitiesListResult, Identity, BaseResource, CloudError } from "../models/mappers";
2
- //# sourceMappingURL=userAssignedIdentitiesMappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"userAssignedIdentitiesMappers.d.ts","sourceRoot":"","sources":["../../src/models/userAssignedIdentitiesMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,gCAAgC,EAChC,QAAQ,EACR,YAAY,EACZ,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,11 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- export { UserAssignedIdentitiesListResult, Identity, BaseResource, CloudError } from "../models/mappers";
11
- //# sourceMappingURL=userAssignedIdentitiesMappers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"userAssignedIdentitiesMappers.js","sourceRoot":"","sources":["../../src/models/userAssignedIdentitiesMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,gCAAgC,EAChC,QAAQ,EACR,YAAY,EACZ,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,3 +0,0 @@
1
- export * from "./operations";
2
- export * from "./userAssignedIdentities";
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAUA,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC"}
@@ -1,12 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- export * from "./operations";
11
- export * from "./userAssignedIdentities";
12
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC"}
@@ -1,46 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { ManagedServiceIdentityClientContext } from "../managedServiceIdentityClientContext";
4
- /** Class representing a Operations. */
5
- export declare class Operations {
6
- private readonly client;
7
- /**
8
- * Create a Operations.
9
- * @param {ManagedServiceIdentityClientContext} client Reference to the service client.
10
- */
11
- constructor(client: ManagedServiceIdentityClientContext);
12
- /**
13
- * Lists available operations for the Microsoft.ManagedIdentity provider
14
- * @param [options] The optional parameters
15
- * @returns Promise<Models.OperationsListResponse>
16
- */
17
- list(options?: msRest.RequestOptionsBase): Promise<Models.OperationsListResponse>;
18
- /**
19
- * @param callback The callback
20
- */
21
- list(callback: msRest.ServiceCallback<Models.OperationListResult>): void;
22
- /**
23
- * @param options The optional parameters
24
- * @param callback The callback
25
- */
26
- list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
27
- /**
28
- * Lists available operations for the Microsoft.ManagedIdentity provider
29
- * @param nextPageLink The NextLink from the previous successful call to List operation.
30
- * @param [options] The optional parameters
31
- * @returns Promise<Models.OperationsListNextResponse>
32
- */
33
- listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.OperationsListNextResponse>;
34
- /**
35
- * @param nextPageLink The NextLink from the previous successful call to List operation.
36
- * @param callback The callback
37
- */
38
- listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
39
- /**
40
- * @param nextPageLink The NextLink from the previous successful call to List operation.
41
- * @param options The optional parameters
42
- * @param callback The callback
43
- */
44
- listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
45
- }
46
- //# sourceMappingURL=operations.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../src/operations/operations.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAE7F,uCAAuC;AACvC,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAsC;IAE7D;;;OAGG;gBACS,MAAM,EAAE,mCAAmC;IAIvD;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC;IACjF;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IACxE;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAU5G;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC;IAC/G;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAClG;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;CAUvI"}
@@ -1,77 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- import * as msRest from "@azure/ms-rest-js";
11
- import * as Mappers from "../models/operationsMappers";
12
- import * as Parameters from "../models/parameters";
13
- /** Class representing a Operations. */
14
- var Operations = /** @class */ (function () {
15
- /**
16
- * Create a Operations.
17
- * @param {ManagedServiceIdentityClientContext} client Reference to the service client.
18
- */
19
- function Operations(client) {
20
- this.client = client;
21
- }
22
- Operations.prototype.list = function (options, callback) {
23
- return this.client.sendOperationRequest({
24
- options: options
25
- }, listOperationSpec, callback);
26
- };
27
- Operations.prototype.listNext = function (nextPageLink, options, callback) {
28
- return this.client.sendOperationRequest({
29
- nextPageLink: nextPageLink,
30
- options: options
31
- }, listNextOperationSpec, callback);
32
- };
33
- return Operations;
34
- }());
35
- export { Operations };
36
- // Operation Specifications
37
- var serializer = new msRest.Serializer(Mappers);
38
- var listOperationSpec = {
39
- httpMethod: "GET",
40
- path: "providers/Microsoft.ManagedIdentity/operations",
41
- queryParameters: [
42
- Parameters.apiVersion
43
- ],
44
- headerParameters: [
45
- Parameters.acceptLanguage
46
- ],
47
- responses: {
48
- 200: {
49
- bodyMapper: Mappers.OperationListResult
50
- },
51
- default: {
52
- bodyMapper: Mappers.CloudError
53
- }
54
- },
55
- serializer: serializer
56
- };
57
- var listNextOperationSpec = {
58
- httpMethod: "GET",
59
- baseUrl: "https://management.azure.com",
60
- path: "{nextLink}",
61
- urlParameters: [
62
- Parameters.nextPageLink
63
- ],
64
- headerParameters: [
65
- Parameters.acceptLanguage
66
- ],
67
- responses: {
68
- 200: {
69
- bodyMapper: Mappers.OperationListResult
70
- },
71
- default: {
72
- bodyMapper: Mappers.CloudError
73
- }
74
- },
75
- serializer: serializer
76
- };
77
- //# sourceMappingURL=operations.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operations.js","sourceRoot":"","sources":["../../src/operations/operations.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,6BAA6B,CAAC;AACvD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,uCAAuC;AACvC;IAGE;;;OAGG;IACH,oBAAY,MAA2C;QACrD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAiBD,yBAAI,GAAJ,UAAK,OAAwF,EAAE,QAA6D;QAC1J,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAA2C,CAAC;IACxD,CAAC;IAoBD,6BAAQ,GAAR,UAAS,YAAoB,EAAE,OAAwF,EAAE,QAA6D;QACpL,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAA+C,CAAC;IAC5D,CAAC;IACH,iBAAC;AAAD,CAAC,AA9DD,IA8DC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,iBAAiB,GAAyB;IAC9C,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,gDAAgD;IACtD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,qBAAqB,GAAyB;IAClD,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,8BAA8B;IACvC,IAAI,EAAE,YAAY;IAClB,aAAa,EAAE;QACb,UAAU,CAAC,YAAY;KACxB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
@@ -1,172 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
3
- import { ManagedServiceIdentityClientContext } from "../managedServiceIdentityClientContext";
4
- /** Class representing a UserAssignedIdentities. */
5
- export declare class UserAssignedIdentities {
6
- private readonly client;
7
- /**
8
- * Create a UserAssignedIdentities.
9
- * @param {ManagedServiceIdentityClientContext} client Reference to the service client.
10
- */
11
- constructor(client: ManagedServiceIdentityClientContext);
12
- /**
13
- * Lists all the userAssignedIdentities available under the specified subscription.
14
- * @param [options] The optional parameters
15
- * @returns Promise<Models.UserAssignedIdentitiesListBySubscriptionResponse>
16
- */
17
- listBySubscription(options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListBySubscriptionResponse>;
18
- /**
19
- * @param callback The callback
20
- */
21
- listBySubscription(callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
22
- /**
23
- * @param options The optional parameters
24
- * @param callback The callback
25
- */
26
- listBySubscription(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
27
- /**
28
- * Lists all the userAssignedIdentities available under the specified ResourceGroup.
29
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
30
- * @param [options] The optional parameters
31
- * @returns Promise<Models.UserAssignedIdentitiesListByResourceGroupResponse>
32
- */
33
- listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListByResourceGroupResponse>;
34
- /**
35
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
36
- * @param callback The callback
37
- */
38
- listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
39
- /**
40
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
41
- * @param options The optional parameters
42
- * @param callback The callback
43
- */
44
- listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
45
- /**
46
- * Create or update an identity in the specified subscription and resource group.
47
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
48
- * @param resourceName The name of the identity resource.
49
- * @param parameters Parameters to create or update the identity
50
- * @param [options] The optional parameters
51
- * @returns Promise<Models.UserAssignedIdentitiesCreateOrUpdateResponse>
52
- */
53
- createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesCreateOrUpdateResponse>;
54
- /**
55
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
56
- * @param resourceName The name of the identity resource.
57
- * @param parameters Parameters to create or update the identity
58
- * @param callback The callback
59
- */
60
- createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Models.Identity, callback: msRest.ServiceCallback<Models.Identity>): void;
61
- /**
62
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
63
- * @param resourceName The name of the identity resource.
64
- * @param parameters Parameters to create or update the identity
65
- * @param options The optional parameters
66
- * @param callback The callback
67
- */
68
- createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Identity>): void;
69
- /**
70
- * Update an identity in the specified subscription and resource group.
71
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
72
- * @param resourceName The name of the identity resource.
73
- * @param parameters Parameters to update the identity
74
- * @param [options] The optional parameters
75
- * @returns Promise<Models.UserAssignedIdentitiesUpdateResponse>
76
- */
77
- update(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesUpdateResponse>;
78
- /**
79
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
80
- * @param resourceName The name of the identity resource.
81
- * @param parameters Parameters to update the identity
82
- * @param callback The callback
83
- */
84
- update(resourceGroupName: string, resourceName: string, parameters: Models.Identity, callback: msRest.ServiceCallback<Models.Identity>): void;
85
- /**
86
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
87
- * @param resourceName The name of the identity resource.
88
- * @param parameters Parameters to update the identity
89
- * @param options The optional parameters
90
- * @param callback The callback
91
- */
92
- update(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Identity>): void;
93
- /**
94
- * Gets the identity.
95
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
96
- * @param resourceName The name of the identity resource.
97
- * @param [options] The optional parameters
98
- * @returns Promise<Models.UserAssignedIdentitiesGetResponse>
99
- */
100
- get(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesGetResponse>;
101
- /**
102
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
103
- * @param resourceName The name of the identity resource.
104
- * @param callback The callback
105
- */
106
- get(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<Models.Identity>): void;
107
- /**
108
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
109
- * @param resourceName The name of the identity resource.
110
- * @param options The optional parameters
111
- * @param callback The callback
112
- */
113
- get(resourceGroupName: string, resourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Identity>): void;
114
- /**
115
- * Deletes the identity.
116
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
117
- * @param resourceName The name of the identity resource.
118
- * @param [options] The optional parameters
119
- * @returns Promise<msRest.RestResponse>
120
- */
121
- deleteMethod(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
122
- /**
123
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
124
- * @param resourceName The name of the identity resource.
125
- * @param callback The callback
126
- */
127
- deleteMethod(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<void>): void;
128
- /**
129
- * @param resourceGroupName The name of the Resource Group to which the identity belongs.
130
- * @param resourceName The name of the identity resource.
131
- * @param options The optional parameters
132
- * @param callback The callback
133
- */
134
- deleteMethod(resourceGroupName: string, resourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;
135
- /**
136
- * Lists all the userAssignedIdentities available under the specified subscription.
137
- * @param nextPageLink The NextLink from the previous successful call to List operation.
138
- * @param [options] The optional parameters
139
- * @returns Promise<Models.UserAssignedIdentitiesListBySubscriptionNextResponse>
140
- */
141
- listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListBySubscriptionNextResponse>;
142
- /**
143
- * @param nextPageLink The NextLink from the previous successful call to List operation.
144
- * @param callback The callback
145
- */
146
- listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
147
- /**
148
- * @param nextPageLink The NextLink from the previous successful call to List operation.
149
- * @param options The optional parameters
150
- * @param callback The callback
151
- */
152
- listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
153
- /**
154
- * Lists all the userAssignedIdentities available under the specified ResourceGroup.
155
- * @param nextPageLink The NextLink from the previous successful call to List operation.
156
- * @param [options] The optional parameters
157
- * @returns Promise<Models.UserAssignedIdentitiesListByResourceGroupNextResponse>
158
- */
159
- listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListByResourceGroupNextResponse>;
160
- /**
161
- * @param nextPageLink The NextLink from the previous successful call to List operation.
162
- * @param callback The callback
163
- */
164
- listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
165
- /**
166
- * @param nextPageLink The NextLink from the previous successful call to List operation.
167
- * @param options The optional parameters
168
- * @param callback The callback
169
- */
170
- listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
171
- }
172
- //# sourceMappingURL=userAssignedIdentities.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"userAssignedIdentities.d.ts","sourceRoot":"","sources":["../../src/operations/userAssignedIdentities.ts"],"names":[],"mappings":"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"}
@@ -1,272 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- import { __assign } from "tslib";
11
- import * as msRest from "@azure/ms-rest-js";
12
- import * as Mappers from "../models/userAssignedIdentitiesMappers";
13
- import * as Parameters from "../models/parameters";
14
- /** Class representing a UserAssignedIdentities. */
15
- var UserAssignedIdentities = /** @class */ (function () {
16
- /**
17
- * Create a UserAssignedIdentities.
18
- * @param {ManagedServiceIdentityClientContext} client Reference to the service client.
19
- */
20
- function UserAssignedIdentities(client) {
21
- this.client = client;
22
- }
23
- UserAssignedIdentities.prototype.listBySubscription = function (options, callback) {
24
- return this.client.sendOperationRequest({
25
- options: options
26
- }, listBySubscriptionOperationSpec, callback);
27
- };
28
- UserAssignedIdentities.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
29
- return this.client.sendOperationRequest({
30
- resourceGroupName: resourceGroupName,
31
- options: options
32
- }, listByResourceGroupOperationSpec, callback);
33
- };
34
- UserAssignedIdentities.prototype.createOrUpdate = function (resourceGroupName, resourceName, parameters, options, callback) {
35
- return this.client.sendOperationRequest({
36
- resourceGroupName: resourceGroupName,
37
- resourceName: resourceName,
38
- parameters: parameters,
39
- options: options
40
- }, createOrUpdateOperationSpec, callback);
41
- };
42
- UserAssignedIdentities.prototype.update = function (resourceGroupName, resourceName, parameters, options, callback) {
43
- return this.client.sendOperationRequest({
44
- resourceGroupName: resourceGroupName,
45
- resourceName: resourceName,
46
- parameters: parameters,
47
- options: options
48
- }, updateOperationSpec, callback);
49
- };
50
- UserAssignedIdentities.prototype.get = function (resourceGroupName, resourceName, options, callback) {
51
- return this.client.sendOperationRequest({
52
- resourceGroupName: resourceGroupName,
53
- resourceName: resourceName,
54
- options: options
55
- }, getOperationSpec, callback);
56
- };
57
- UserAssignedIdentities.prototype.deleteMethod = function (resourceGroupName, resourceName, options, callback) {
58
- return this.client.sendOperationRequest({
59
- resourceGroupName: resourceGroupName,
60
- resourceName: resourceName,
61
- options: options
62
- }, deleteMethodOperationSpec, callback);
63
- };
64
- UserAssignedIdentities.prototype.listBySubscriptionNext = function (nextPageLink, options, callback) {
65
- return this.client.sendOperationRequest({
66
- nextPageLink: nextPageLink,
67
- options: options
68
- }, listBySubscriptionNextOperationSpec, callback);
69
- };
70
- UserAssignedIdentities.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
71
- return this.client.sendOperationRequest({
72
- nextPageLink: nextPageLink,
73
- options: options
74
- }, listByResourceGroupNextOperationSpec, callback);
75
- };
76
- return UserAssignedIdentities;
77
- }());
78
- export { UserAssignedIdentities };
79
- // Operation Specifications
80
- var serializer = new msRest.Serializer(Mappers);
81
- var listBySubscriptionOperationSpec = {
82
- httpMethod: "GET",
83
- path: "subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",
84
- urlParameters: [
85
- Parameters.subscriptionId
86
- ],
87
- queryParameters: [
88
- Parameters.apiVersion
89
- ],
90
- headerParameters: [
91
- Parameters.acceptLanguage
92
- ],
93
- responses: {
94
- 200: {
95
- bodyMapper: Mappers.UserAssignedIdentitiesListResult
96
- },
97
- default: {
98
- bodyMapper: Mappers.CloudError
99
- }
100
- },
101
- serializer: serializer
102
- };
103
- var listByResourceGroupOperationSpec = {
104
- httpMethod: "GET",
105
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",
106
- urlParameters: [
107
- Parameters.subscriptionId,
108
- Parameters.resourceGroupName
109
- ],
110
- queryParameters: [
111
- Parameters.apiVersion
112
- ],
113
- headerParameters: [
114
- Parameters.acceptLanguage
115
- ],
116
- responses: {
117
- 200: {
118
- bodyMapper: Mappers.UserAssignedIdentitiesListResult
119
- },
120
- default: {
121
- bodyMapper: Mappers.CloudError
122
- }
123
- },
124
- serializer: serializer
125
- };
126
- var createOrUpdateOperationSpec = {
127
- httpMethod: "PUT",
128
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
129
- urlParameters: [
130
- Parameters.subscriptionId,
131
- Parameters.resourceGroupName,
132
- Parameters.resourceName
133
- ],
134
- queryParameters: [
135
- Parameters.apiVersion
136
- ],
137
- headerParameters: [
138
- Parameters.acceptLanguage
139
- ],
140
- requestBody: {
141
- parameterPath: "parameters",
142
- mapper: __assign(__assign({}, Mappers.Identity), { required: true })
143
- },
144
- responses: {
145
- 200: {
146
- bodyMapper: Mappers.Identity
147
- },
148
- 201: {
149
- bodyMapper: Mappers.Identity
150
- },
151
- default: {
152
- bodyMapper: Mappers.CloudError
153
- }
154
- },
155
- serializer: serializer
156
- };
157
- var updateOperationSpec = {
158
- httpMethod: "PATCH",
159
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
160
- urlParameters: [
161
- Parameters.subscriptionId,
162
- Parameters.resourceGroupName,
163
- Parameters.resourceName
164
- ],
165
- queryParameters: [
166
- Parameters.apiVersion
167
- ],
168
- headerParameters: [
169
- Parameters.acceptLanguage
170
- ],
171
- requestBody: {
172
- parameterPath: "parameters",
173
- mapper: __assign(__assign({}, Mappers.Identity), { required: true })
174
- },
175
- responses: {
176
- 200: {
177
- bodyMapper: Mappers.Identity
178
- },
179
- default: {
180
- bodyMapper: Mappers.CloudError
181
- }
182
- },
183
- serializer: serializer
184
- };
185
- var getOperationSpec = {
186
- httpMethod: "GET",
187
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
188
- urlParameters: [
189
- Parameters.subscriptionId,
190
- Parameters.resourceGroupName,
191
- Parameters.resourceName
192
- ],
193
- queryParameters: [
194
- Parameters.apiVersion
195
- ],
196
- headerParameters: [
197
- Parameters.acceptLanguage
198
- ],
199
- responses: {
200
- 200: {
201
- bodyMapper: Mappers.Identity
202
- },
203
- default: {
204
- bodyMapper: Mappers.CloudError
205
- }
206
- },
207
- serializer: serializer
208
- };
209
- var deleteMethodOperationSpec = {
210
- httpMethod: "DELETE",
211
- path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
212
- urlParameters: [
213
- Parameters.subscriptionId,
214
- Parameters.resourceGroupName,
215
- Parameters.resourceName
216
- ],
217
- queryParameters: [
218
- Parameters.apiVersion
219
- ],
220
- headerParameters: [
221
- Parameters.acceptLanguage
222
- ],
223
- responses: {
224
- 200: {},
225
- 204: {},
226
- default: {
227
- bodyMapper: Mappers.CloudError
228
- }
229
- },
230
- serializer: serializer
231
- };
232
- var listBySubscriptionNextOperationSpec = {
233
- httpMethod: "GET",
234
- baseUrl: "https://management.azure.com",
235
- path: "{nextLink}",
236
- urlParameters: [
237
- Parameters.nextPageLink
238
- ],
239
- headerParameters: [
240
- Parameters.acceptLanguage
241
- ],
242
- responses: {
243
- 200: {
244
- bodyMapper: Mappers.UserAssignedIdentitiesListResult
245
- },
246
- default: {
247
- bodyMapper: Mappers.CloudError
248
- }
249
- },
250
- serializer: serializer
251
- };
252
- var listByResourceGroupNextOperationSpec = {
253
- httpMethod: "GET",
254
- baseUrl: "https://management.azure.com",
255
- path: "{nextLink}",
256
- urlParameters: [
257
- Parameters.nextPageLink
258
- ],
259
- headerParameters: [
260
- Parameters.acceptLanguage
261
- ],
262
- responses: {
263
- 200: {
264
- bodyMapper: Mappers.UserAssignedIdentitiesListResult
265
- },
266
- default: {
267
- bodyMapper: Mappers.CloudError
268
- }
269
- },
270
- serializer: serializer
271
- };
272
- //# sourceMappingURL=userAssignedIdentities.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"userAssignedIdentities.js","sourceRoot":"","sources":["../../src/operations/userAssignedIdentities.ts"],"names":[],"mappings":"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"}