@azure/arm-msi 0.1.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +69 -34
  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
@@ -1,44 +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
-
11
- import * as msRest from "@azure/ms-rest-js";
12
- import * as Models from "./models";
13
- import * as Mappers from "./models/mappers";
14
- import * as operations from "./operations";
15
- import { ManagedServiceIdentityClientContext } from "./managedServiceIdentityClientContext";
16
-
17
-
18
- class ManagedServiceIdentityClient extends ManagedServiceIdentityClientContext {
19
- // Operation groups
20
- operations: operations.Operations;
21
- userAssignedIdentities: operations.UserAssignedIdentities;
22
-
23
- /**
24
- * Initializes a new instance of the ManagedServiceIdentityClient class.
25
- * @param credentials Credentials needed for the client to connect to Azure.
26
- * @param subscriptionId The Id of the Subscription to which the identity belongs.
27
- * @param [options] The parameter options
28
- */
29
- constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.ManagedServiceIdentityClientOptions) {
30
- super(credentials, subscriptionId, options);
31
- this.operations = new operations.Operations(this);
32
- this.userAssignedIdentities = new operations.UserAssignedIdentities(this);
33
- }
34
- }
35
-
36
- // Operation Specifications
37
-
38
- export {
39
- ManagedServiceIdentityClient,
40
- ManagedServiceIdentityClientContext,
41
- Models as ManagedServiceIdentityModels,
42
- Mappers as ManagedServiceIdentityMappers
43
- };
44
- export * from "./operations";
@@ -1,62 +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
-
11
- import * as Models from "./models";
12
- import * as msRest from "@azure/ms-rest-js";
13
- import * as msRestAzure from "@azure/ms-rest-azure-js";
14
-
15
- const packageName = "@azure/arm-msi";
16
- const packageVersion = "0.1.0";
17
-
18
- export class ManagedServiceIdentityClientContext extends msRestAzure.AzureServiceClient {
19
- credentials: msRest.ServiceClientCredentials;
20
- subscriptionId: string;
21
- apiVersion?: string;
22
-
23
- /**
24
- * Initializes a new instance of the ManagedServiceIdentityClient class.
25
- * @param credentials Credentials needed for the client to connect to Azure.
26
- * @param subscriptionId The Id of the Subscription to which the identity belongs.
27
- * @param [options] The parameter options
28
- */
29
- constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.ManagedServiceIdentityClientOptions) {
30
- if (credentials == undefined) {
31
- throw new Error('\'credentials\' cannot be null.');
32
- }
33
- if (subscriptionId == undefined) {
34
- throw new Error('\'subscriptionId\' cannot be null.');
35
- }
36
-
37
- if (!options) {
38
- options = {};
39
- }
40
- if(!options.userAgent) {
41
- const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
42
- options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
43
- }
44
-
45
- super(credentials, options);
46
-
47
- this.apiVersion = '2015-08-31-preview';
48
- this.acceptLanguage = 'en-US';
49
- this.longRunningOperationRetryTimeout = 30;
50
- this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
51
- this.requestContentType = "application/json; charset=utf-8";
52
- this.credentials = credentials;
53
- this.subscriptionId = subscriptionId;
54
-
55
- if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
56
- this.acceptLanguage = options.acceptLanguage;
57
- }
58
- if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
59
- this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
60
- }
61
- }
62
- }
@@ -1,358 +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
-
11
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
12
- import * as msRest from "@azure/ms-rest-js";
13
-
14
- export { BaseResource, CloudError };
15
-
16
-
17
- /**
18
- * @interface
19
- * An interface representing Identity.
20
- * Describes an identity resource.
21
- *
22
- * @extends BaseResource
23
- */
24
- export interface Identity extends BaseResource {
25
- /**
26
- * @member {string} [id] The id of the created identity.
27
- * **NOTE: This property will not be serialized. It can only be populated by
28
- * the server.**
29
- */
30
- readonly id?: string;
31
- /**
32
- * @member {string} [name] The name of the created identity.
33
- * **NOTE: This property will not be serialized. It can only be populated by
34
- * the server.**
35
- */
36
- readonly name?: string;
37
- /**
38
- * @member {string} [location] The Azure region where the identity lives.
39
- */
40
- location?: string;
41
- /**
42
- * @member {{ [propertyName: string]: string }} [tags] Resource tags
43
- */
44
- tags?: { [propertyName: string]: string };
45
- /**
46
- * @member {string} [tenantId] The id of the tenant which the identity
47
- * belongs to.
48
- * **NOTE: This property will not be serialized. It can only be populated by
49
- * the server.**
50
- */
51
- readonly tenantId?: string;
52
- /**
53
- * @member {string} [principalId] The id of the service principal object
54
- * associated with the created identity.
55
- * **NOTE: This property will not be serialized. It can only be populated by
56
- * the server.**
57
- */
58
- readonly principalId?: string;
59
- /**
60
- * @member {string} [clientId] The id of the app associated with the
61
- * identity. This is a random generated UUID by MSI.
62
- * **NOTE: This property will not be serialized. It can only be populated by
63
- * the server.**
64
- */
65
- readonly clientId?: string;
66
- /**
67
- * @member {string} [clientSecretUrl] The ManagedServiceIdentity DataPlane
68
- * URL that can be queried to obtain the identity credentials.
69
- * **NOTE: This property will not be serialized. It can only be populated by
70
- * the server.**
71
- */
72
- readonly clientSecretUrl?: string;
73
- /**
74
- * @member {UserAssignedIdentities} [type] The type of resource i.e.
75
- * Microsoft.ManagedIdentity/userAssignedIdentities. Possible values include:
76
- * 'Microsoft.ManagedIdentity/userAssignedIdentities'
77
- * **NOTE: This property will not be serialized. It can only be populated by
78
- * the server.**
79
- */
80
- readonly type?: UserAssignedIdentities;
81
- }
82
-
83
- /**
84
- * @interface
85
- * An interface representing OperationDisplay.
86
- * @summary Operation Display.
87
- *
88
- * The object that describes the operation.
89
- *
90
- */
91
- export interface OperationDisplay {
92
- /**
93
- * @member {string} [provider] Resource Provider Name. Friendly name of the
94
- * resource provider.
95
- */
96
- provider?: string;
97
- /**
98
- * @member {string} [operation] Operation Type. The type of operation. For
99
- * example: read, write, delete.
100
- */
101
- operation?: string;
102
- /**
103
- * @member {string} [resource] Resource Type. The resource type on which the
104
- * operation is performed.
105
- */
106
- resource?: string;
107
- /**
108
- * @member {string} [description] Operation description. A description of the
109
- * operation.
110
- */
111
- description?: string;
112
- }
113
-
114
- /**
115
- * @interface
116
- * An interface representing Operation.
117
- * @summary Microsoft.ManagedIdentity Operation.
118
- *
119
- * Operation supported by the Microsoft.ManagedIdentity REST API.
120
- *
121
- */
122
- export interface Operation {
123
- /**
124
- * @member {string} [name] Operation Name. The name of the REST Operation.
125
- * This is of the format {provider}/{resource}/{operation}.
126
- */
127
- name?: string;
128
- /**
129
- * @member {OperationDisplay} [display] Operation Display. The object that
130
- * describes the operation.
131
- */
132
- display?: OperationDisplay;
133
- }
134
-
135
- /**
136
- * @interface
137
- * An interface representing ManagedServiceIdentityClientOptions.
138
- * @extends AzureServiceClientOptions
139
- */
140
- export interface ManagedServiceIdentityClientOptions extends AzureServiceClientOptions {
141
- /**
142
- * @member {string} [baseUri]
143
- */
144
- baseUri?: string;
145
- }
146
-
147
-
148
- /**
149
- * @interface
150
- * An interface representing the OperationListResult.
151
- * @summary Operations List.
152
- *
153
- * A list of operations supported by Microsoft.ManagedIdentity Resource
154
- * Provider.
155
- *
156
- * @extends Array<Operation>
157
- */
158
- export interface OperationListResult extends Array<Operation> {
159
- /**
160
- * @member {string} [nextLink] The url to get the next page of results, if
161
- * any.
162
- */
163
- nextLink?: string;
164
- }
165
-
166
- /**
167
- * @interface
168
- * An interface representing the UserAssignedIdentitiesListResult.
169
- * Values returned by the List operation.
170
- *
171
- * @extends Array<Identity>
172
- */
173
- export interface UserAssignedIdentitiesListResult extends Array<Identity> {
174
- /**
175
- * @member {string} [nextLink] The url to get the next page of results, if
176
- * any.
177
- */
178
- nextLink?: string;
179
- }
180
-
181
- /**
182
- * Defines values for UserAssignedIdentities.
183
- * Possible values include: 'Microsoft.ManagedIdentity/userAssignedIdentities'
184
- * @readonly
185
- * @enum {string}
186
- */
187
- export type UserAssignedIdentities = 'Microsoft.ManagedIdentity/userAssignedIdentities';
188
-
189
- /**
190
- * Contains response data for the list operation.
191
- */
192
- export type OperationsListResponse = OperationListResult & {
193
- /**
194
- * The underlying HTTP response.
195
- */
196
- _response: msRest.HttpResponse & {
197
- /**
198
- * The response body as text (string format)
199
- */
200
- bodyAsText: string;
201
- /**
202
- * The response body as parsed JSON or XML
203
- */
204
- parsedBody: OperationListResult;
205
- };
206
- };
207
-
208
- /**
209
- * Contains response data for the listNext operation.
210
- */
211
- export type OperationsListNextResponse = OperationListResult & {
212
- /**
213
- * The underlying HTTP response.
214
- */
215
- _response: msRest.HttpResponse & {
216
- /**
217
- * The response body as text (string format)
218
- */
219
- bodyAsText: string;
220
- /**
221
- * The response body as parsed JSON or XML
222
- */
223
- parsedBody: OperationListResult;
224
- };
225
- };
226
-
227
- /**
228
- * Contains response data for the listBySubscription operation.
229
- */
230
- export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult & {
231
- /**
232
- * The underlying HTTP response.
233
- */
234
- _response: msRest.HttpResponse & {
235
- /**
236
- * The response body as text (string format)
237
- */
238
- bodyAsText: string;
239
- /**
240
- * The response body as parsed JSON or XML
241
- */
242
- parsedBody: UserAssignedIdentitiesListResult;
243
- };
244
- };
245
-
246
- /**
247
- * Contains response data for the listByResourceGroup operation.
248
- */
249
- export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult & {
250
- /**
251
- * The underlying HTTP response.
252
- */
253
- _response: msRest.HttpResponse & {
254
- /**
255
- * The response body as text (string format)
256
- */
257
- bodyAsText: string;
258
- /**
259
- * The response body as parsed JSON or XML
260
- */
261
- parsedBody: UserAssignedIdentitiesListResult;
262
- };
263
- };
264
-
265
- /**
266
- * Contains response data for the createOrUpdate operation.
267
- */
268
- export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity & {
269
- /**
270
- * The underlying HTTP response.
271
- */
272
- _response: msRest.HttpResponse & {
273
- /**
274
- * The response body as text (string format)
275
- */
276
- bodyAsText: string;
277
- /**
278
- * The response body as parsed JSON or XML
279
- */
280
- parsedBody: Identity;
281
- };
282
- };
283
-
284
- /**
285
- * Contains response data for the update operation.
286
- */
287
- export type UserAssignedIdentitiesUpdateResponse = Identity & {
288
- /**
289
- * The underlying HTTP response.
290
- */
291
- _response: msRest.HttpResponse & {
292
- /**
293
- * The response body as text (string format)
294
- */
295
- bodyAsText: string;
296
- /**
297
- * The response body as parsed JSON or XML
298
- */
299
- parsedBody: Identity;
300
- };
301
- };
302
-
303
- /**
304
- * Contains response data for the get operation.
305
- */
306
- export type UserAssignedIdentitiesGetResponse = Identity & {
307
- /**
308
- * The underlying HTTP response.
309
- */
310
- _response: msRest.HttpResponse & {
311
- /**
312
- * The response body as text (string format)
313
- */
314
- bodyAsText: string;
315
- /**
316
- * The response body as parsed JSON or XML
317
- */
318
- parsedBody: Identity;
319
- };
320
- };
321
-
322
- /**
323
- * Contains response data for the listBySubscriptionNext operation.
324
- */
325
- export type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult & {
326
- /**
327
- * The underlying HTTP response.
328
- */
329
- _response: msRest.HttpResponse & {
330
- /**
331
- * The response body as text (string format)
332
- */
333
- bodyAsText: string;
334
- /**
335
- * The response body as parsed JSON or XML
336
- */
337
- parsedBody: UserAssignedIdentitiesListResult;
338
- };
339
- };
340
-
341
- /**
342
- * Contains response data for the listByResourceGroupNext operation.
343
- */
344
- export type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult & {
345
- /**
346
- * The underlying HTTP response.
347
- */
348
- _response: msRest.HttpResponse & {
349
- /**
350
- * The response body as text (string format)
351
- */
352
- bodyAsText: string;
353
- /**
354
- * The response body as parsed JSON or XML
355
- */
356
- parsedBody: UserAssignedIdentitiesListResult;
357
- };
358
- };
@@ -1,204 +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
-
11
- import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
12
- import * as msRest from "@azure/ms-rest-js";
13
-
14
- export const CloudError = CloudErrorMapper;
15
- export const BaseResource = BaseResourceMapper;
16
-
17
- export const Identity: msRest.CompositeMapper = {
18
- serializedName: "Identity",
19
- type: {
20
- name: "Composite",
21
- className: "Identity",
22
- modelProperties: {
23
- id: {
24
- readOnly: true,
25
- serializedName: "id",
26
- type: {
27
- name: "String"
28
- }
29
- },
30
- name: {
31
- readOnly: true,
32
- serializedName: "name",
33
- type: {
34
- name: "String"
35
- }
36
- },
37
- location: {
38
- serializedName: "location",
39
- type: {
40
- name: "String"
41
- }
42
- },
43
- tags: {
44
- serializedName: "tags",
45
- type: {
46
- name: "Dictionary",
47
- value: {
48
- type: {
49
- name: "String"
50
- }
51
- }
52
- }
53
- },
54
- tenantId: {
55
- readOnly: true,
56
- serializedName: "properties.tenantId",
57
- type: {
58
- name: "Uuid"
59
- }
60
- },
61
- principalId: {
62
- readOnly: true,
63
- serializedName: "properties.principalId",
64
- type: {
65
- name: "Uuid"
66
- }
67
- },
68
- clientId: {
69
- readOnly: true,
70
- serializedName: "properties.clientId",
71
- type: {
72
- name: "Uuid"
73
- }
74
- },
75
- clientSecretUrl: {
76
- readOnly: true,
77
- serializedName: "properties.clientSecretUrl",
78
- type: {
79
- name: "String"
80
- }
81
- },
82
- type: {
83
- readOnly: true,
84
- serializedName: "type",
85
- type: {
86
- name: "String"
87
- }
88
- }
89
- }
90
- }
91
- };
92
-
93
- export const OperationDisplay: msRest.CompositeMapper = {
94
- serializedName: "OperationDisplay",
95
- type: {
96
- name: "Composite",
97
- className: "OperationDisplay",
98
- modelProperties: {
99
- provider: {
100
- serializedName: "provider",
101
- type: {
102
- name: "String"
103
- }
104
- },
105
- operation: {
106
- serializedName: "operation",
107
- type: {
108
- name: "String"
109
- }
110
- },
111
- resource: {
112
- serializedName: "resource",
113
- type: {
114
- name: "String"
115
- }
116
- },
117
- description: {
118
- serializedName: "description",
119
- type: {
120
- name: "String"
121
- }
122
- }
123
- }
124
- }
125
- };
126
-
127
- export const Operation: msRest.CompositeMapper = {
128
- serializedName: "Operation",
129
- type: {
130
- name: "Composite",
131
- className: "Operation",
132
- modelProperties: {
133
- name: {
134
- serializedName: "name",
135
- type: {
136
- name: "String"
137
- }
138
- },
139
- display: {
140
- serializedName: "display",
141
- type: {
142
- name: "Composite",
143
- className: "OperationDisplay"
144
- }
145
- }
146
- }
147
- }
148
- };
149
-
150
- export const OperationListResult: msRest.CompositeMapper = {
151
- serializedName: "OperationListResult",
152
- type: {
153
- name: "Composite",
154
- className: "OperationListResult",
155
- modelProperties: {
156
- value: {
157
- serializedName: "",
158
- type: {
159
- name: "Sequence",
160
- element: {
161
- type: {
162
- name: "Composite",
163
- className: "Operation"
164
- }
165
- }
166
- }
167
- },
168
- nextLink: {
169
- serializedName: "nextLink",
170
- type: {
171
- name: "String"
172
- }
173
- }
174
- }
175
- }
176
- };
177
-
178
- export const UserAssignedIdentitiesListResult: msRest.CompositeMapper = {
179
- serializedName: "UserAssignedIdentitiesListResult",
180
- type: {
181
- name: "Composite",
182
- className: "UserAssignedIdentitiesListResult",
183
- modelProperties: {
184
- value: {
185
- serializedName: "",
186
- type: {
187
- name: "Sequence",
188
- element: {
189
- type: {
190
- name: "Composite",
191
- className: "Identity"
192
- }
193
- }
194
- }
195
- },
196
- nextLink: {
197
- serializedName: "nextLink",
198
- type: {
199
- name: "String"
200
- }
201
- }
202
- }
203
- }
204
- };
@@ -1,17 +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
-
11
- export {
12
- OperationListResult,
13
- Operation,
14
- OperationDisplay,
15
- CloudError
16
- } from "../models/mappers";
17
-