@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
package/dist/index.js ADDED
@@ -0,0 +1,1029 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var coreClient = require('@azure/core-client');
6
+ var tslib = require('tslib');
7
+
8
+ /*
9
+ * Copyright (c) Microsoft Corporation.
10
+ * Licensed under the MIT License.
11
+ *
12
+ * Code generated by Microsoft (R) AutoRest Code Generator.
13
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
14
+ */
15
+ const Resource = {
16
+ type: {
17
+ name: "Composite",
18
+ className: "Resource",
19
+ modelProperties: {
20
+ id: {
21
+ serializedName: "id",
22
+ readOnly: true,
23
+ type: {
24
+ name: "String"
25
+ }
26
+ },
27
+ name: {
28
+ serializedName: "name",
29
+ readOnly: true,
30
+ type: {
31
+ name: "String"
32
+ }
33
+ },
34
+ type: {
35
+ serializedName: "type",
36
+ readOnly: true,
37
+ type: {
38
+ name: "String"
39
+ }
40
+ }
41
+ }
42
+ }
43
+ };
44
+ const CloudError = {
45
+ type: {
46
+ name: "Composite",
47
+ className: "CloudError",
48
+ modelProperties: {
49
+ error: {
50
+ serializedName: "error",
51
+ type: {
52
+ name: "Composite",
53
+ className: "CloudErrorBody"
54
+ }
55
+ }
56
+ }
57
+ }
58
+ };
59
+ const CloudErrorBody = {
60
+ type: {
61
+ name: "Composite",
62
+ className: "CloudErrorBody",
63
+ modelProperties: {
64
+ code: {
65
+ serializedName: "code",
66
+ type: {
67
+ name: "String"
68
+ }
69
+ },
70
+ message: {
71
+ serializedName: "message",
72
+ type: {
73
+ name: "String"
74
+ }
75
+ },
76
+ target: {
77
+ serializedName: "target",
78
+ type: {
79
+ name: "String"
80
+ }
81
+ },
82
+ details: {
83
+ serializedName: "details",
84
+ type: {
85
+ name: "Sequence",
86
+ element: {
87
+ type: {
88
+ name: "Composite",
89
+ className: "CloudErrorBody"
90
+ }
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
96
+ };
97
+ const OperationListResult = {
98
+ type: {
99
+ name: "Composite",
100
+ className: "OperationListResult",
101
+ modelProperties: {
102
+ value: {
103
+ serializedName: "value",
104
+ type: {
105
+ name: "Sequence",
106
+ element: {
107
+ type: {
108
+ name: "Composite",
109
+ className: "Operation"
110
+ }
111
+ }
112
+ }
113
+ },
114
+ nextLink: {
115
+ serializedName: "nextLink",
116
+ type: {
117
+ name: "String"
118
+ }
119
+ }
120
+ }
121
+ }
122
+ };
123
+ const Operation = {
124
+ type: {
125
+ name: "Composite",
126
+ className: "Operation",
127
+ modelProperties: {
128
+ name: {
129
+ serializedName: "name",
130
+ type: {
131
+ name: "String"
132
+ }
133
+ },
134
+ display: {
135
+ serializedName: "display",
136
+ type: {
137
+ name: "Composite",
138
+ className: "OperationDisplay"
139
+ }
140
+ }
141
+ }
142
+ }
143
+ };
144
+ const OperationDisplay = {
145
+ type: {
146
+ name: "Composite",
147
+ className: "OperationDisplay",
148
+ modelProperties: {
149
+ provider: {
150
+ serializedName: "provider",
151
+ type: {
152
+ name: "String"
153
+ }
154
+ },
155
+ operation: {
156
+ serializedName: "operation",
157
+ type: {
158
+ name: "String"
159
+ }
160
+ },
161
+ resource: {
162
+ serializedName: "resource",
163
+ type: {
164
+ name: "String"
165
+ }
166
+ },
167
+ description: {
168
+ serializedName: "description",
169
+ type: {
170
+ name: "String"
171
+ }
172
+ }
173
+ }
174
+ }
175
+ };
176
+ const UserAssignedIdentitiesListResult = {
177
+ type: {
178
+ name: "Composite",
179
+ className: "UserAssignedIdentitiesListResult",
180
+ modelProperties: {
181
+ value: {
182
+ serializedName: "value",
183
+ type: {
184
+ name: "Sequence",
185
+ element: {
186
+ type: {
187
+ name: "Composite",
188
+ className: "Identity"
189
+ }
190
+ }
191
+ }
192
+ },
193
+ nextLink: {
194
+ serializedName: "nextLink",
195
+ type: {
196
+ name: "String"
197
+ }
198
+ }
199
+ }
200
+ }
201
+ };
202
+ const ProxyResource = {
203
+ type: {
204
+ name: "Composite",
205
+ className: "ProxyResource",
206
+ modelProperties: Object.assign({}, Resource.type.modelProperties)
207
+ }
208
+ };
209
+ const TrackedResource = {
210
+ type: {
211
+ name: "Composite",
212
+ className: "TrackedResource",
213
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { tags: {
214
+ serializedName: "tags",
215
+ type: {
216
+ name: "Dictionary",
217
+ value: { type: { name: "String" } }
218
+ }
219
+ }, location: {
220
+ serializedName: "location",
221
+ required: true,
222
+ type: {
223
+ name: "String"
224
+ }
225
+ } })
226
+ }
227
+ };
228
+ const IdentityUpdate = {
229
+ type: {
230
+ name: "Composite",
231
+ className: "IdentityUpdate",
232
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { location: {
233
+ serializedName: "location",
234
+ type: {
235
+ name: "String"
236
+ }
237
+ }, tags: {
238
+ serializedName: "tags",
239
+ type: {
240
+ name: "Dictionary",
241
+ value: { type: { name: "String" } }
242
+ }
243
+ }, tenantId: {
244
+ serializedName: "properties.tenantId",
245
+ readOnly: true,
246
+ type: {
247
+ name: "Uuid"
248
+ }
249
+ }, principalId: {
250
+ serializedName: "properties.principalId",
251
+ readOnly: true,
252
+ type: {
253
+ name: "Uuid"
254
+ }
255
+ }, clientId: {
256
+ serializedName: "properties.clientId",
257
+ readOnly: true,
258
+ type: {
259
+ name: "Uuid"
260
+ }
261
+ } })
262
+ }
263
+ };
264
+ const SystemAssignedIdentity = {
265
+ type: {
266
+ name: "Composite",
267
+ className: "SystemAssignedIdentity",
268
+ modelProperties: Object.assign(Object.assign({}, ProxyResource.type.modelProperties), { location: {
269
+ serializedName: "location",
270
+ required: true,
271
+ type: {
272
+ name: "String"
273
+ }
274
+ }, tags: {
275
+ serializedName: "tags",
276
+ type: {
277
+ name: "Dictionary",
278
+ value: { type: { name: "String" } }
279
+ }
280
+ }, tenantId: {
281
+ serializedName: "properties.tenantId",
282
+ readOnly: true,
283
+ type: {
284
+ name: "Uuid"
285
+ }
286
+ }, principalId: {
287
+ serializedName: "properties.principalId",
288
+ readOnly: true,
289
+ type: {
290
+ name: "Uuid"
291
+ }
292
+ }, clientId: {
293
+ serializedName: "properties.clientId",
294
+ readOnly: true,
295
+ type: {
296
+ name: "Uuid"
297
+ }
298
+ }, clientSecretUrl: {
299
+ serializedName: "properties.clientSecretUrl",
300
+ readOnly: true,
301
+ type: {
302
+ name: "String"
303
+ }
304
+ } })
305
+ }
306
+ };
307
+ const Identity = {
308
+ type: {
309
+ name: "Composite",
310
+ className: "Identity",
311
+ modelProperties: Object.assign(Object.assign({}, TrackedResource.type.modelProperties), { tenantId: {
312
+ serializedName: "properties.tenantId",
313
+ readOnly: true,
314
+ type: {
315
+ name: "Uuid"
316
+ }
317
+ }, principalId: {
318
+ serializedName: "properties.principalId",
319
+ readOnly: true,
320
+ type: {
321
+ name: "Uuid"
322
+ }
323
+ }, clientId: {
324
+ serializedName: "properties.clientId",
325
+ readOnly: true,
326
+ type: {
327
+ name: "Uuid"
328
+ }
329
+ } })
330
+ }
331
+ };
332
+
333
+ var Mappers = /*#__PURE__*/Object.freeze({
334
+ __proto__: null,
335
+ Resource: Resource,
336
+ CloudError: CloudError,
337
+ CloudErrorBody: CloudErrorBody,
338
+ OperationListResult: OperationListResult,
339
+ Operation: Operation,
340
+ OperationDisplay: OperationDisplay,
341
+ UserAssignedIdentitiesListResult: UserAssignedIdentitiesListResult,
342
+ ProxyResource: ProxyResource,
343
+ TrackedResource: TrackedResource,
344
+ IdentityUpdate: IdentityUpdate,
345
+ SystemAssignedIdentity: SystemAssignedIdentity,
346
+ Identity: Identity
347
+ });
348
+
349
+ /*
350
+ * Copyright (c) Microsoft Corporation.
351
+ * Licensed under the MIT License.
352
+ *
353
+ * Code generated by Microsoft (R) AutoRest Code Generator.
354
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
355
+ */
356
+ const accept = {
357
+ parameterPath: "accept",
358
+ mapper: {
359
+ defaultValue: "application/json",
360
+ isConstant: true,
361
+ serializedName: "Accept",
362
+ type: {
363
+ name: "String"
364
+ }
365
+ }
366
+ };
367
+ const $host = {
368
+ parameterPath: "$host",
369
+ mapper: {
370
+ serializedName: "$host",
371
+ required: true,
372
+ type: {
373
+ name: "String"
374
+ }
375
+ },
376
+ skipEncoding: true
377
+ };
378
+ const scope = {
379
+ parameterPath: "scope",
380
+ mapper: {
381
+ serializedName: "scope",
382
+ required: true,
383
+ type: {
384
+ name: "String"
385
+ }
386
+ },
387
+ skipEncoding: true
388
+ };
389
+ const apiVersion = {
390
+ parameterPath: "apiVersion",
391
+ mapper: {
392
+ defaultValue: "2018-11-30",
393
+ isConstant: true,
394
+ serializedName: "api-version",
395
+ type: {
396
+ name: "String"
397
+ }
398
+ }
399
+ };
400
+ const nextLink = {
401
+ parameterPath: "nextLink",
402
+ mapper: {
403
+ serializedName: "nextLink",
404
+ required: true,
405
+ type: {
406
+ name: "String"
407
+ }
408
+ },
409
+ skipEncoding: true
410
+ };
411
+ const subscriptionId = {
412
+ parameterPath: "subscriptionId",
413
+ mapper: {
414
+ serializedName: "subscriptionId",
415
+ required: true,
416
+ type: {
417
+ name: "String"
418
+ }
419
+ }
420
+ };
421
+ const resourceGroupName = {
422
+ parameterPath: "resourceGroupName",
423
+ mapper: {
424
+ serializedName: "resourceGroupName",
425
+ required: true,
426
+ type: {
427
+ name: "String"
428
+ }
429
+ }
430
+ };
431
+ const contentType = {
432
+ parameterPath: ["options", "contentType"],
433
+ mapper: {
434
+ defaultValue: "application/json",
435
+ isConstant: true,
436
+ serializedName: "Content-Type",
437
+ type: {
438
+ name: "String"
439
+ }
440
+ }
441
+ };
442
+ const parameters = {
443
+ parameterPath: "parameters",
444
+ mapper: Identity
445
+ };
446
+ const resourceName = {
447
+ parameterPath: "resourceName",
448
+ mapper: {
449
+ serializedName: "resourceName",
450
+ required: true,
451
+ type: {
452
+ name: "String"
453
+ }
454
+ }
455
+ };
456
+ const parameters1 = {
457
+ parameterPath: "parameters",
458
+ mapper: IdentityUpdate
459
+ };
460
+
461
+ /*
462
+ * Copyright (c) Microsoft Corporation.
463
+ * Licensed under the MIT License.
464
+ *
465
+ * Code generated by Microsoft (R) AutoRest Code Generator.
466
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
467
+ */
468
+ /** Class containing SystemAssignedIdentities operations. */
469
+ class SystemAssignedIdentitiesImpl {
470
+ /**
471
+ * Initialize a new instance of the class SystemAssignedIdentities class.
472
+ * @param client Reference to the service client
473
+ */
474
+ constructor(client) {
475
+ this.client = client;
476
+ }
477
+ /**
478
+ * Gets the systemAssignedIdentity available under the specified RP scope.
479
+ * @param scope The resource provider scope of the resource. Parent resource being extended by Managed
480
+ * Identities.
481
+ * @param options The options parameters.
482
+ */
483
+ getByScope(scope, options) {
484
+ return this.client.sendOperationRequest({ scope, options }, getByScopeOperationSpec);
485
+ }
486
+ }
487
+ // Operation Specifications
488
+ const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
489
+ const getByScopeOperationSpec = {
490
+ path: "/{scope}/providers/Microsoft.ManagedIdentity/identities/default",
491
+ httpMethod: "GET",
492
+ responses: {
493
+ 200: {
494
+ bodyMapper: SystemAssignedIdentity
495
+ },
496
+ default: {
497
+ bodyMapper: CloudError
498
+ }
499
+ },
500
+ queryParameters: [apiVersion],
501
+ urlParameters: [$host, scope],
502
+ headerParameters: [accept],
503
+ serializer
504
+ };
505
+
506
+ /*
507
+ * Copyright (c) Microsoft Corporation.
508
+ * Licensed under the MIT License.
509
+ *
510
+ * Code generated by Microsoft (R) AutoRest Code Generator.
511
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
512
+ */
513
+ /// <reference lib="esnext.asynciterable" />
514
+ /** Class containing Operations operations. */
515
+ class OperationsImpl {
516
+ /**
517
+ * Initialize a new instance of the class Operations class.
518
+ * @param client Reference to the service client
519
+ */
520
+ constructor(client) {
521
+ this.client = client;
522
+ }
523
+ /**
524
+ * Lists available operations for the Microsoft.ManagedIdentity provider
525
+ * @param options The options parameters.
526
+ */
527
+ list(options) {
528
+ const iter = this.listPagingAll(options);
529
+ return {
530
+ next() {
531
+ return iter.next();
532
+ },
533
+ [Symbol.asyncIterator]() {
534
+ return this;
535
+ },
536
+ byPage: () => {
537
+ return this.listPagingPage(options);
538
+ }
539
+ };
540
+ }
541
+ listPagingPage(options) {
542
+ return tslib.__asyncGenerator(this, arguments, function* listPagingPage_1() {
543
+ let result = yield tslib.__await(this._list(options));
544
+ yield yield tslib.__await(result.value || []);
545
+ let continuationToken = result.nextLink;
546
+ while (continuationToken) {
547
+ result = yield tslib.__await(this._listNext(continuationToken, options));
548
+ continuationToken = result.nextLink;
549
+ yield yield tslib.__await(result.value || []);
550
+ }
551
+ });
552
+ }
553
+ listPagingAll(options) {
554
+ return tslib.__asyncGenerator(this, arguments, function* listPagingAll_1() {
555
+ var e_1, _a;
556
+ try {
557
+ for (var _b = tslib.__asyncValues(this.listPagingPage(options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) {
558
+ const page = _c.value;
559
+ yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page)));
560
+ }
561
+ }
562
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
563
+ finally {
564
+ try {
565
+ if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b));
566
+ }
567
+ finally { if (e_1) throw e_1.error; }
568
+ }
569
+ });
570
+ }
571
+ /**
572
+ * Lists available operations for the Microsoft.ManagedIdentity provider
573
+ * @param options The options parameters.
574
+ */
575
+ _list(options) {
576
+ return this.client.sendOperationRequest({ options }, listOperationSpec);
577
+ }
578
+ /**
579
+ * ListNext
580
+ * @param nextLink The nextLink from the previous successful call to the List method.
581
+ * @param options The options parameters.
582
+ */
583
+ _listNext(nextLink, options) {
584
+ return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
585
+ }
586
+ }
587
+ // Operation Specifications
588
+ const serializer$1 = coreClient.createSerializer(Mappers, /* isXml */ false);
589
+ const listOperationSpec = {
590
+ path: "/providers/Microsoft.ManagedIdentity/operations",
591
+ httpMethod: "GET",
592
+ responses: {
593
+ 200: {
594
+ bodyMapper: OperationListResult
595
+ },
596
+ default: {
597
+ bodyMapper: CloudError
598
+ }
599
+ },
600
+ queryParameters: [apiVersion],
601
+ urlParameters: [$host],
602
+ headerParameters: [accept],
603
+ serializer: serializer$1
604
+ };
605
+ const listNextOperationSpec = {
606
+ path: "{nextLink}",
607
+ httpMethod: "GET",
608
+ responses: {
609
+ 200: {
610
+ bodyMapper: OperationListResult
611
+ },
612
+ default: {
613
+ bodyMapper: CloudError
614
+ }
615
+ },
616
+ queryParameters: [apiVersion],
617
+ urlParameters: [$host, nextLink],
618
+ headerParameters: [accept],
619
+ serializer: serializer$1
620
+ };
621
+
622
+ /*
623
+ * Copyright (c) Microsoft Corporation.
624
+ * Licensed under the MIT License.
625
+ *
626
+ * Code generated by Microsoft (R) AutoRest Code Generator.
627
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
628
+ */
629
+ /// <reference lib="esnext.asynciterable" />
630
+ /** Class containing UserAssignedIdentities operations. */
631
+ class UserAssignedIdentitiesImpl {
632
+ /**
633
+ * Initialize a new instance of the class UserAssignedIdentities class.
634
+ * @param client Reference to the service client
635
+ */
636
+ constructor(client) {
637
+ this.client = client;
638
+ }
639
+ /**
640
+ * Lists all the userAssignedIdentities available under the specified subscription.
641
+ * @param options The options parameters.
642
+ */
643
+ listBySubscription(options) {
644
+ const iter = this.listBySubscriptionPagingAll(options);
645
+ return {
646
+ next() {
647
+ return iter.next();
648
+ },
649
+ [Symbol.asyncIterator]() {
650
+ return this;
651
+ },
652
+ byPage: () => {
653
+ return this.listBySubscriptionPagingPage(options);
654
+ }
655
+ };
656
+ }
657
+ listBySubscriptionPagingPage(options) {
658
+ return tslib.__asyncGenerator(this, arguments, function* listBySubscriptionPagingPage_1() {
659
+ let result = yield tslib.__await(this._listBySubscription(options));
660
+ yield yield tslib.__await(result.value || []);
661
+ let continuationToken = result.nextLink;
662
+ while (continuationToken) {
663
+ result = yield tslib.__await(this._listBySubscriptionNext(continuationToken, options));
664
+ continuationToken = result.nextLink;
665
+ yield yield tslib.__await(result.value || []);
666
+ }
667
+ });
668
+ }
669
+ listBySubscriptionPagingAll(options) {
670
+ return tslib.__asyncGenerator(this, arguments, function* listBySubscriptionPagingAll_1() {
671
+ var e_1, _a;
672
+ try {
673
+ for (var _b = tslib.__asyncValues(this.listBySubscriptionPagingPage(options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) {
674
+ const page = _c.value;
675
+ yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page)));
676
+ }
677
+ }
678
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
679
+ finally {
680
+ try {
681
+ if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b));
682
+ }
683
+ finally { if (e_1) throw e_1.error; }
684
+ }
685
+ });
686
+ }
687
+ /**
688
+ * Lists all the userAssignedIdentities available under the specified ResourceGroup.
689
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
690
+ * @param options The options parameters.
691
+ */
692
+ listByResourceGroup(resourceGroupName, options) {
693
+ const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);
694
+ return {
695
+ next() {
696
+ return iter.next();
697
+ },
698
+ [Symbol.asyncIterator]() {
699
+ return this;
700
+ },
701
+ byPage: () => {
702
+ return this.listByResourceGroupPagingPage(resourceGroupName, options);
703
+ }
704
+ };
705
+ }
706
+ listByResourceGroupPagingPage(resourceGroupName, options) {
707
+ return tslib.__asyncGenerator(this, arguments, function* listByResourceGroupPagingPage_1() {
708
+ let result = yield tslib.__await(this._listByResourceGroup(resourceGroupName, options));
709
+ yield yield tslib.__await(result.value || []);
710
+ let continuationToken = result.nextLink;
711
+ while (continuationToken) {
712
+ result = yield tslib.__await(this._listByResourceGroupNext(resourceGroupName, continuationToken, options));
713
+ continuationToken = result.nextLink;
714
+ yield yield tslib.__await(result.value || []);
715
+ }
716
+ });
717
+ }
718
+ listByResourceGroupPagingAll(resourceGroupName, options) {
719
+ return tslib.__asyncGenerator(this, arguments, function* listByResourceGroupPagingAll_1() {
720
+ var e_2, _a;
721
+ try {
722
+ for (var _b = tslib.__asyncValues(this.listByResourceGroupPagingPage(resourceGroupName, options)), _c; _c = yield tslib.__await(_b.next()), !_c.done;) {
723
+ const page = _c.value;
724
+ yield tslib.__await(yield* tslib.__asyncDelegator(tslib.__asyncValues(page)));
725
+ }
726
+ }
727
+ catch (e_2_1) { e_2 = { error: e_2_1 }; }
728
+ finally {
729
+ try {
730
+ if (_c && !_c.done && (_a = _b.return)) yield tslib.__await(_a.call(_b));
731
+ }
732
+ finally { if (e_2) throw e_2.error; }
733
+ }
734
+ });
735
+ }
736
+ /**
737
+ * Lists all the userAssignedIdentities available under the specified subscription.
738
+ * @param options The options parameters.
739
+ */
740
+ _listBySubscription(options) {
741
+ return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec);
742
+ }
743
+ /**
744
+ * Lists all the userAssignedIdentities available under the specified ResourceGroup.
745
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
746
+ * @param options The options parameters.
747
+ */
748
+ _listByResourceGroup(resourceGroupName, options) {
749
+ return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec);
750
+ }
751
+ /**
752
+ * Create or update an identity in the specified subscription and resource group.
753
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
754
+ * @param resourceName The name of the identity resource.
755
+ * @param parameters Parameters to create or update the identity
756
+ * @param options The options parameters.
757
+ */
758
+ createOrUpdate(resourceGroupName, resourceName, parameters, options) {
759
+ return this.client.sendOperationRequest({ resourceGroupName, resourceName, parameters, options }, createOrUpdateOperationSpec);
760
+ }
761
+ /**
762
+ * Update an identity in the specified subscription and resource group.
763
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
764
+ * @param resourceName The name of the identity resource.
765
+ * @param parameters Parameters to update the identity
766
+ * @param options The options parameters.
767
+ */
768
+ update(resourceGroupName, resourceName, parameters, options) {
769
+ return this.client.sendOperationRequest({ resourceGroupName, resourceName, parameters, options }, updateOperationSpec);
770
+ }
771
+ /**
772
+ * Gets the identity.
773
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
774
+ * @param resourceName The name of the identity resource.
775
+ * @param options The options parameters.
776
+ */
777
+ get(resourceGroupName, resourceName, options) {
778
+ return this.client.sendOperationRequest({ resourceGroupName, resourceName, options }, getOperationSpec);
779
+ }
780
+ /**
781
+ * Deletes the identity.
782
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
783
+ * @param resourceName The name of the identity resource.
784
+ * @param options The options parameters.
785
+ */
786
+ delete(resourceGroupName, resourceName, options) {
787
+ return this.client.sendOperationRequest({ resourceGroupName, resourceName, options }, deleteOperationSpec);
788
+ }
789
+ /**
790
+ * ListBySubscriptionNext
791
+ * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.
792
+ * @param options The options parameters.
793
+ */
794
+ _listBySubscriptionNext(nextLink, options) {
795
+ return this.client.sendOperationRequest({ nextLink, options }, listBySubscriptionNextOperationSpec);
796
+ }
797
+ /**
798
+ * ListByResourceGroupNext
799
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
800
+ * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.
801
+ * @param options The options parameters.
802
+ */
803
+ _listByResourceGroupNext(resourceGroupName, nextLink, options) {
804
+ return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec);
805
+ }
806
+ }
807
+ // Operation Specifications
808
+ const serializer$2 = coreClient.createSerializer(Mappers, /* isXml */ false);
809
+ const listBySubscriptionOperationSpec = {
810
+ path: "/subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",
811
+ httpMethod: "GET",
812
+ responses: {
813
+ 200: {
814
+ bodyMapper: UserAssignedIdentitiesListResult
815
+ },
816
+ default: {
817
+ bodyMapper: CloudError
818
+ }
819
+ },
820
+ queryParameters: [apiVersion],
821
+ urlParameters: [$host, subscriptionId],
822
+ headerParameters: [accept],
823
+ serializer: serializer$2
824
+ };
825
+ const listByResourceGroupOperationSpec = {
826
+ path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",
827
+ httpMethod: "GET",
828
+ responses: {
829
+ 200: {
830
+ bodyMapper: UserAssignedIdentitiesListResult
831
+ },
832
+ default: {
833
+ bodyMapper: CloudError
834
+ }
835
+ },
836
+ queryParameters: [apiVersion],
837
+ urlParameters: [
838
+ $host,
839
+ subscriptionId,
840
+ resourceGroupName
841
+ ],
842
+ headerParameters: [accept],
843
+ serializer: serializer$2
844
+ };
845
+ const createOrUpdateOperationSpec = {
846
+ path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
847
+ httpMethod: "PUT",
848
+ responses: {
849
+ 200: {
850
+ bodyMapper: Identity
851
+ },
852
+ 201: {
853
+ bodyMapper: Identity
854
+ },
855
+ default: {
856
+ bodyMapper: CloudError
857
+ }
858
+ },
859
+ requestBody: parameters,
860
+ queryParameters: [apiVersion],
861
+ urlParameters: [
862
+ $host,
863
+ subscriptionId,
864
+ resourceGroupName,
865
+ resourceName
866
+ ],
867
+ headerParameters: [accept, contentType],
868
+ mediaType: "json",
869
+ serializer: serializer$2
870
+ };
871
+ const updateOperationSpec = {
872
+ path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
873
+ httpMethod: "PATCH",
874
+ responses: {
875
+ 200: {
876
+ bodyMapper: Identity
877
+ },
878
+ default: {
879
+ bodyMapper: CloudError
880
+ }
881
+ },
882
+ requestBody: parameters1,
883
+ queryParameters: [apiVersion],
884
+ urlParameters: [
885
+ $host,
886
+ subscriptionId,
887
+ resourceGroupName,
888
+ resourceName
889
+ ],
890
+ headerParameters: [accept, contentType],
891
+ mediaType: "json",
892
+ serializer: serializer$2
893
+ };
894
+ const getOperationSpec = {
895
+ path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
896
+ httpMethod: "GET",
897
+ responses: {
898
+ 200: {
899
+ bodyMapper: Identity
900
+ },
901
+ default: {
902
+ bodyMapper: CloudError
903
+ }
904
+ },
905
+ queryParameters: [apiVersion],
906
+ urlParameters: [
907
+ $host,
908
+ subscriptionId,
909
+ resourceGroupName,
910
+ resourceName
911
+ ],
912
+ headerParameters: [accept],
913
+ serializer: serializer$2
914
+ };
915
+ const deleteOperationSpec = {
916
+ path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
917
+ httpMethod: "DELETE",
918
+ responses: {
919
+ 200: {},
920
+ 204: {},
921
+ default: {
922
+ bodyMapper: CloudError
923
+ }
924
+ },
925
+ queryParameters: [apiVersion],
926
+ urlParameters: [
927
+ $host,
928
+ subscriptionId,
929
+ resourceGroupName,
930
+ resourceName
931
+ ],
932
+ headerParameters: [accept],
933
+ serializer: serializer$2
934
+ };
935
+ const listBySubscriptionNextOperationSpec = {
936
+ path: "{nextLink}",
937
+ httpMethod: "GET",
938
+ responses: {
939
+ 200: {
940
+ bodyMapper: UserAssignedIdentitiesListResult
941
+ },
942
+ default: {
943
+ bodyMapper: CloudError
944
+ }
945
+ },
946
+ queryParameters: [apiVersion],
947
+ urlParameters: [
948
+ $host,
949
+ nextLink,
950
+ subscriptionId
951
+ ],
952
+ headerParameters: [accept],
953
+ serializer: serializer$2
954
+ };
955
+ const listByResourceGroupNextOperationSpec = {
956
+ path: "{nextLink}",
957
+ httpMethod: "GET",
958
+ responses: {
959
+ 200: {
960
+ bodyMapper: UserAssignedIdentitiesListResult
961
+ },
962
+ default: {
963
+ bodyMapper: CloudError
964
+ }
965
+ },
966
+ queryParameters: [apiVersion],
967
+ urlParameters: [
968
+ $host,
969
+ nextLink,
970
+ subscriptionId,
971
+ resourceGroupName
972
+ ],
973
+ headerParameters: [accept],
974
+ serializer: serializer$2
975
+ };
976
+
977
+ /*
978
+ * Copyright (c) Microsoft Corporation.
979
+ * Licensed under the MIT License.
980
+ *
981
+ * Code generated by Microsoft (R) AutoRest Code Generator.
982
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
983
+ */
984
+ class ManagedServiceIdentityClient extends coreClient.ServiceClient {
985
+ /**
986
+ * Initializes a new instance of the ManagedServiceIdentityClient class.
987
+ * @param credentials Subscription credentials which uniquely identify client subscription.
988
+ * @param subscriptionId The Id of the Subscription to which the identity belongs.
989
+ * @param options The parameter options
990
+ */
991
+ constructor(credentials, subscriptionId, options) {
992
+ if (credentials === undefined) {
993
+ throw new Error("'credentials' cannot be null");
994
+ }
995
+ if (subscriptionId === undefined) {
996
+ throw new Error("'subscriptionId' cannot be null");
997
+ }
998
+ // Initializing default values for options
999
+ if (!options) {
1000
+ options = {};
1001
+ }
1002
+ const defaults = {
1003
+ requestContentType: "application/json; charset=utf-8",
1004
+ credential: credentials
1005
+ };
1006
+ const packageDetails = `azsdk-js-arm-msi/2.0.0`;
1007
+ const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
1008
+ ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
1009
+ : `${packageDetails}`;
1010
+ if (!options.credentialScopes) {
1011
+ options.credentialScopes = ["https://management.azure.com/.default"];
1012
+ }
1013
+ const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {
1014
+ userAgentPrefix
1015
+ }, baseUri: options.endpoint || "https://management.azure.com" });
1016
+ super(optionsWithDefaults);
1017
+ // Parameter assignments
1018
+ this.subscriptionId = subscriptionId;
1019
+ // Assigning values to Constant parameters
1020
+ this.$host = options.$host || "https://management.azure.com";
1021
+ this.apiVersion = options.apiVersion || "2018-11-30";
1022
+ this.systemAssignedIdentities = new SystemAssignedIdentitiesImpl(this);
1023
+ this.operations = new OperationsImpl(this);
1024
+ this.userAssignedIdentities = new UserAssignedIdentitiesImpl(this);
1025
+ }
1026
+ }
1027
+
1028
+ exports.ManagedServiceIdentityClient = ManagedServiceIdentityClient;
1029
+ //# sourceMappingURL=index.js.map