@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,332 +0,0 @@
1
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
2
- import * as msRest from "@azure/ms-rest-js";
3
- export { BaseResource, CloudError };
4
- /**
5
- * @interface
6
- * An interface representing Identity.
7
- * Describes an identity resource.
8
- *
9
- * @extends BaseResource
10
- */
11
- export interface Identity extends BaseResource {
12
- /**
13
- * @member {string} [id] The id of the created identity.
14
- * **NOTE: This property will not be serialized. It can only be populated by
15
- * the server.**
16
- */
17
- readonly id?: string;
18
- /**
19
- * @member {string} [name] The name of the created identity.
20
- * **NOTE: This property will not be serialized. It can only be populated by
21
- * the server.**
22
- */
23
- readonly name?: string;
24
- /**
25
- * @member {string} [location] The Azure region where the identity lives.
26
- */
27
- location?: string;
28
- /**
29
- * @member {{ [propertyName: string]: string }} [tags] Resource tags
30
- */
31
- tags?: {
32
- [propertyName: string]: string;
33
- };
34
- /**
35
- * @member {string} [tenantId] The id of the tenant which the identity
36
- * belongs to.
37
- * **NOTE: This property will not be serialized. It can only be populated by
38
- * the server.**
39
- */
40
- readonly tenantId?: string;
41
- /**
42
- * @member {string} [principalId] The id of the service principal object
43
- * associated with the created identity.
44
- * **NOTE: This property will not be serialized. It can only be populated by
45
- * the server.**
46
- */
47
- readonly principalId?: string;
48
- /**
49
- * @member {string} [clientId] The id of the app associated with the
50
- * identity. This is a random generated UUID by MSI.
51
- * **NOTE: This property will not be serialized. It can only be populated by
52
- * the server.**
53
- */
54
- readonly clientId?: string;
55
- /**
56
- * @member {string} [clientSecretUrl] The ManagedServiceIdentity DataPlane
57
- * URL that can be queried to obtain the identity credentials.
58
- * **NOTE: This property will not be serialized. It can only be populated by
59
- * the server.**
60
- */
61
- readonly clientSecretUrl?: string;
62
- /**
63
- * @member {UserAssignedIdentities} [type] The type of resource i.e.
64
- * Microsoft.ManagedIdentity/userAssignedIdentities. Possible values include:
65
- * 'Microsoft.ManagedIdentity/userAssignedIdentities'
66
- * **NOTE: This property will not be serialized. It can only be populated by
67
- * the server.**
68
- */
69
- readonly type?: UserAssignedIdentities;
70
- }
71
- /**
72
- * @interface
73
- * An interface representing OperationDisplay.
74
- * @summary Operation Display.
75
- *
76
- * The object that describes the operation.
77
- *
78
- */
79
- export interface OperationDisplay {
80
- /**
81
- * @member {string} [provider] Resource Provider Name. Friendly name of the
82
- * resource provider.
83
- */
84
- provider?: string;
85
- /**
86
- * @member {string} [operation] Operation Type. The type of operation. For
87
- * example: read, write, delete.
88
- */
89
- operation?: string;
90
- /**
91
- * @member {string} [resource] Resource Type. The resource type on which the
92
- * operation is performed.
93
- */
94
- resource?: string;
95
- /**
96
- * @member {string} [description] Operation description. A description of the
97
- * operation.
98
- */
99
- description?: string;
100
- }
101
- /**
102
- * @interface
103
- * An interface representing Operation.
104
- * @summary Microsoft.ManagedIdentity Operation.
105
- *
106
- * Operation supported by the Microsoft.ManagedIdentity REST API.
107
- *
108
- */
109
- export interface Operation {
110
- /**
111
- * @member {string} [name] Operation Name. The name of the REST Operation.
112
- * This is of the format {provider}/{resource}/{operation}.
113
- */
114
- name?: string;
115
- /**
116
- * @member {OperationDisplay} [display] Operation Display. The object that
117
- * describes the operation.
118
- */
119
- display?: OperationDisplay;
120
- }
121
- /**
122
- * @interface
123
- * An interface representing ManagedServiceIdentityClientOptions.
124
- * @extends AzureServiceClientOptions
125
- */
126
- export interface ManagedServiceIdentityClientOptions extends AzureServiceClientOptions {
127
- /**
128
- * @member {string} [baseUri]
129
- */
130
- baseUri?: string;
131
- }
132
- /**
133
- * @interface
134
- * An interface representing the OperationListResult.
135
- * @summary Operations List.
136
- *
137
- * A list of operations supported by Microsoft.ManagedIdentity Resource
138
- * Provider.
139
- *
140
- * @extends Array<Operation>
141
- */
142
- export interface OperationListResult extends Array<Operation> {
143
- /**
144
- * @member {string} [nextLink] The url to get the next page of results, if
145
- * any.
146
- */
147
- nextLink?: string;
148
- }
149
- /**
150
- * @interface
151
- * An interface representing the UserAssignedIdentitiesListResult.
152
- * Values returned by the List operation.
153
- *
154
- * @extends Array<Identity>
155
- */
156
- export interface UserAssignedIdentitiesListResult extends Array<Identity> {
157
- /**
158
- * @member {string} [nextLink] The url to get the next page of results, if
159
- * any.
160
- */
161
- nextLink?: string;
162
- }
163
- /**
164
- * Defines values for UserAssignedIdentities.
165
- * Possible values include: 'Microsoft.ManagedIdentity/userAssignedIdentities'
166
- * @readonly
167
- * @enum {string}
168
- */
169
- export declare type UserAssignedIdentities = 'Microsoft.ManagedIdentity/userAssignedIdentities';
170
- /**
171
- * Contains response data for the list operation.
172
- */
173
- export declare type OperationsListResponse = OperationListResult & {
174
- /**
175
- * The underlying HTTP response.
176
- */
177
- _response: msRest.HttpResponse & {
178
- /**
179
- * The response body as text (string format)
180
- */
181
- bodyAsText: string;
182
- /**
183
- * The response body as parsed JSON or XML
184
- */
185
- parsedBody: OperationListResult;
186
- };
187
- };
188
- /**
189
- * Contains response data for the listNext operation.
190
- */
191
- export declare type OperationsListNextResponse = OperationListResult & {
192
- /**
193
- * The underlying HTTP response.
194
- */
195
- _response: msRest.HttpResponse & {
196
- /**
197
- * The response body as text (string format)
198
- */
199
- bodyAsText: string;
200
- /**
201
- * The response body as parsed JSON or XML
202
- */
203
- parsedBody: OperationListResult;
204
- };
205
- };
206
- /**
207
- * Contains response data for the listBySubscription operation.
208
- */
209
- export declare type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult & {
210
- /**
211
- * The underlying HTTP response.
212
- */
213
- _response: msRest.HttpResponse & {
214
- /**
215
- * The response body as text (string format)
216
- */
217
- bodyAsText: string;
218
- /**
219
- * The response body as parsed JSON or XML
220
- */
221
- parsedBody: UserAssignedIdentitiesListResult;
222
- };
223
- };
224
- /**
225
- * Contains response data for the listByResourceGroup operation.
226
- */
227
- export declare type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult & {
228
- /**
229
- * The underlying HTTP response.
230
- */
231
- _response: msRest.HttpResponse & {
232
- /**
233
- * The response body as text (string format)
234
- */
235
- bodyAsText: string;
236
- /**
237
- * The response body as parsed JSON or XML
238
- */
239
- parsedBody: UserAssignedIdentitiesListResult;
240
- };
241
- };
242
- /**
243
- * Contains response data for the createOrUpdate operation.
244
- */
245
- export declare type UserAssignedIdentitiesCreateOrUpdateResponse = Identity & {
246
- /**
247
- * The underlying HTTP response.
248
- */
249
- _response: msRest.HttpResponse & {
250
- /**
251
- * The response body as text (string format)
252
- */
253
- bodyAsText: string;
254
- /**
255
- * The response body as parsed JSON or XML
256
- */
257
- parsedBody: Identity;
258
- };
259
- };
260
- /**
261
- * Contains response data for the update operation.
262
- */
263
- export declare type UserAssignedIdentitiesUpdateResponse = Identity & {
264
- /**
265
- * The underlying HTTP response.
266
- */
267
- _response: msRest.HttpResponse & {
268
- /**
269
- * The response body as text (string format)
270
- */
271
- bodyAsText: string;
272
- /**
273
- * The response body as parsed JSON or XML
274
- */
275
- parsedBody: Identity;
276
- };
277
- };
278
- /**
279
- * Contains response data for the get operation.
280
- */
281
- export declare type UserAssignedIdentitiesGetResponse = Identity & {
282
- /**
283
- * The underlying HTTP response.
284
- */
285
- _response: msRest.HttpResponse & {
286
- /**
287
- * The response body as text (string format)
288
- */
289
- bodyAsText: string;
290
- /**
291
- * The response body as parsed JSON or XML
292
- */
293
- parsedBody: Identity;
294
- };
295
- };
296
- /**
297
- * Contains response data for the listBySubscriptionNext operation.
298
- */
299
- export declare type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult & {
300
- /**
301
- * The underlying HTTP response.
302
- */
303
- _response: msRest.HttpResponse & {
304
- /**
305
- * The response body as text (string format)
306
- */
307
- bodyAsText: string;
308
- /**
309
- * The response body as parsed JSON or XML
310
- */
311
- parsedBody: UserAssignedIdentitiesListResult;
312
- };
313
- };
314
- /**
315
- * Contains response data for the listByResourceGroupNext operation.
316
- */
317
- export declare type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult & {
318
- /**
319
- * The underlying HTTP response.
320
- */
321
- _response: msRest.HttpResponse & {
322
- /**
323
- * The response body as text (string format)
324
- */
325
- bodyAsText: string;
326
- /**
327
- * The response body as parsed JSON or XML
328
- */
329
- parsedBody: UserAssignedIdentitiesListResult;
330
- };
331
- };
332
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -1,10 +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
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
@@ -1,9 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const CloudError: msRest.CompositeMapper;
3
- export declare const BaseResource: msRest.CompositeMapper;
4
- export declare const Identity: msRest.CompositeMapper;
5
- export declare const OperationDisplay: msRest.CompositeMapper;
6
- export declare const Operation: msRest.CompositeMapper;
7
- export declare const OperationListResult: msRest.CompositeMapper;
8
- export declare const UserAssignedIdentitiesListResult: msRest.CompositeMapper;
9
- //# sourceMappingURL=mappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eA0E7B,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eAgCrC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,eAqB9B,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eA0BxC,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,MAAM,CAAC,eA0BrD,CAAC"}
@@ -1,197 +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 { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
11
- export var CloudError = CloudErrorMapper;
12
- export var BaseResource = BaseResourceMapper;
13
- export var Identity = {
14
- serializedName: "Identity",
15
- type: {
16
- name: "Composite",
17
- className: "Identity",
18
- modelProperties: {
19
- id: {
20
- readOnly: true,
21
- serializedName: "id",
22
- type: {
23
- name: "String"
24
- }
25
- },
26
- name: {
27
- readOnly: true,
28
- serializedName: "name",
29
- type: {
30
- name: "String"
31
- }
32
- },
33
- location: {
34
- serializedName: "location",
35
- type: {
36
- name: "String"
37
- }
38
- },
39
- tags: {
40
- serializedName: "tags",
41
- type: {
42
- name: "Dictionary",
43
- value: {
44
- type: {
45
- name: "String"
46
- }
47
- }
48
- }
49
- },
50
- tenantId: {
51
- readOnly: true,
52
- serializedName: "properties.tenantId",
53
- type: {
54
- name: "Uuid"
55
- }
56
- },
57
- principalId: {
58
- readOnly: true,
59
- serializedName: "properties.principalId",
60
- type: {
61
- name: "Uuid"
62
- }
63
- },
64
- clientId: {
65
- readOnly: true,
66
- serializedName: "properties.clientId",
67
- type: {
68
- name: "Uuid"
69
- }
70
- },
71
- clientSecretUrl: {
72
- readOnly: true,
73
- serializedName: "properties.clientSecretUrl",
74
- type: {
75
- name: "String"
76
- }
77
- },
78
- type: {
79
- readOnly: true,
80
- serializedName: "type",
81
- type: {
82
- name: "String"
83
- }
84
- }
85
- }
86
- }
87
- };
88
- export var OperationDisplay = {
89
- serializedName: "OperationDisplay",
90
- type: {
91
- name: "Composite",
92
- className: "OperationDisplay",
93
- modelProperties: {
94
- provider: {
95
- serializedName: "provider",
96
- type: {
97
- name: "String"
98
- }
99
- },
100
- operation: {
101
- serializedName: "operation",
102
- type: {
103
- name: "String"
104
- }
105
- },
106
- resource: {
107
- serializedName: "resource",
108
- type: {
109
- name: "String"
110
- }
111
- },
112
- description: {
113
- serializedName: "description",
114
- type: {
115
- name: "String"
116
- }
117
- }
118
- }
119
- }
120
- };
121
- export var Operation = {
122
- serializedName: "Operation",
123
- type: {
124
- name: "Composite",
125
- className: "Operation",
126
- modelProperties: {
127
- name: {
128
- serializedName: "name",
129
- type: {
130
- name: "String"
131
- }
132
- },
133
- display: {
134
- serializedName: "display",
135
- type: {
136
- name: "Composite",
137
- className: "OperationDisplay"
138
- }
139
- }
140
- }
141
- }
142
- };
143
- export var OperationListResult = {
144
- serializedName: "OperationListResult",
145
- type: {
146
- name: "Composite",
147
- className: "OperationListResult",
148
- modelProperties: {
149
- value: {
150
- serializedName: "",
151
- type: {
152
- name: "Sequence",
153
- element: {
154
- type: {
155
- name: "Composite",
156
- className: "Operation"
157
- }
158
- }
159
- }
160
- },
161
- nextLink: {
162
- serializedName: "nextLink",
163
- type: {
164
- name: "String"
165
- }
166
- }
167
- }
168
- }
169
- };
170
- export var UserAssignedIdentitiesListResult = {
171
- serializedName: "UserAssignedIdentitiesListResult",
172
- type: {
173
- name: "Composite",
174
- className: "UserAssignedIdentitiesListResult",
175
- modelProperties: {
176
- value: {
177
- serializedName: "",
178
- type: {
179
- name: "Sequence",
180
- element: {
181
- type: {
182
- name: "Composite",
183
- className: "Identity"
184
- }
185
- }
186
- }
187
- },
188
- nextLink: {
189
- serializedName: "nextLink",
190
- type: {
191
- name: "String"
192
- }
193
- }
194
- }
195
- }
196
- };
197
- //# sourceMappingURL=mappers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- export { OperationListResult, Operation, OperationDisplay, CloudError } from "../models/mappers";
2
- //# sourceMappingURL=operationsMappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,mBAAmB,EACnB,SAAS,EACT,gBAAgB,EAChB,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 { OperationListResult, Operation, OperationDisplay, CloudError } from "../models/mappers";
11
- //# sourceMappingURL=operationsMappers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.js","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,mBAAmB,EACnB,SAAS,EACT,gBAAgB,EAChB,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,8 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const acceptLanguage: msRest.OperationParameter;
3
- export declare const apiVersion: msRest.OperationQueryParameter;
4
- export declare const nextPageLink: msRest.OperationURLParameter;
5
- export declare const resourceGroupName: msRest.OperationURLParameter;
6
- export declare const resourceName: msRest.OperationURLParameter;
7
- export declare const subscriptionId: msRest.OperationURLParameter;
8
- //# sourceMappingURL=parameters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAS/B,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBAUjC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBAStC,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBASjC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBASnC,CAAC"}
@@ -1,71 +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 var acceptLanguage = {
11
- parameterPath: "acceptLanguage",
12
- mapper: {
13
- serializedName: "accept-language",
14
- defaultValue: 'en-US',
15
- type: {
16
- name: "String"
17
- }
18
- }
19
- };
20
- export var apiVersion = {
21
- parameterPath: "apiVersion",
22
- mapper: {
23
- required: true,
24
- serializedName: "api-version",
25
- type: {
26
- name: "String"
27
- }
28
- }
29
- };
30
- export var nextPageLink = {
31
- parameterPath: "nextPageLink",
32
- mapper: {
33
- required: true,
34
- serializedName: "nextLink",
35
- type: {
36
- name: "String"
37
- }
38
- },
39
- skipEncoding: true
40
- };
41
- export var resourceGroupName = {
42
- parameterPath: "resourceGroupName",
43
- mapper: {
44
- required: true,
45
- serializedName: "resourceGroupName",
46
- type: {
47
- name: "String"
48
- }
49
- }
50
- };
51
- export var resourceName = {
52
- parameterPath: "resourceName",
53
- mapper: {
54
- required: true,
55
- serializedName: "resourceName",
56
- type: {
57
- name: "String"
58
- }
59
- }
60
- };
61
- export var subscriptionId = {
62
- parameterPath: "subscriptionId",
63
- mapper: {
64
- required: true,
65
- serializedName: "subscriptionId",
66
- type: {
67
- name: "String"
68
- }
69
- }
70
- };
71
- //# sourceMappingURL=parameters.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,cAAc;QAC9B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}