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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +75 -73
  4. package/dist/index.js +1029 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
  13. package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
  14. package/dist-esm/src/managedServiceIdentityClient.js +53 -0
  15. package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +212 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +9 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +14 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/dist-esm/src/models/mappers.js +325 -0
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +13 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/dist-esm/src/models/parameters.js +113 -0
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/index.d.ts +4 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/dist-esm/src/operations/index.js +11 -0
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/operations.d.ts +32 -0
  33. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  34. package/dist-esm/src/operations/operations.js +120 -0
  35. package/dist-esm/src/operations/operations.js.map +1 -0
  36. package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
  37. package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
  38. package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
  39. package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
  40. package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
  41. package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
  42. package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
  43. package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  45. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  47. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  49. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
  53. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
  57. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
  60. package/dist-esm/test/sampleTest.d.ts +2 -0
  61. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  62. package/dist-esm/test/sampleTest.js +40 -0
  63. package/dist-esm/test/sampleTest.js.map +1 -0
  64. package/package.json +70 -25
  65. package/review/arm-msi.api.md +218 -0
  66. package/rollup.config.js +184 -27
  67. package/src/index.ts +12 -0
  68. package/src/managedServiceIdentityClient.ts +87 -0
  69. package/src/models/index.ts +248 -0
  70. package/src/models/mappers.ts +364 -0
  71. package/src/models/parameters.ts +132 -0
  72. package/{lib → src}/operations/index.ts +4 -5
  73. package/src/operations/operations.ts +137 -0
  74. package/src/operations/systemAssignedIdentities.ts +65 -0
  75. package/src/operations/userAssignedIdentities.ts +450 -0
  76. package/src/operationsInterfaces/index.ts +11 -0
  77. package/src/operationsInterfaces/operations.ts +22 -0
  78. package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
  79. package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
  80. package/tsconfig.json +4 -4
  81. package/types/arm-msi.d.ts +330 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-msi.js +0 -820
  84. package/dist/arm-msi.js.map +0 -1
  85. package/dist/arm-msi.min.js +0 -1
  86. package/dist/arm-msi.min.js.map +0 -1
  87. package/esm/managedServiceIdentityClient.d.ts +0 -19
  88. package/esm/managedServiceIdentityClient.d.ts.map +0 -1
  89. package/esm/managedServiceIdentityClient.js +0 -34
  90. package/esm/managedServiceIdentityClient.js.map +0 -1
  91. package/esm/managedServiceIdentityClientContext.d.ts +0 -16
  92. package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
  93. package/esm/managedServiceIdentityClientContext.js +0 -56
  94. package/esm/managedServiceIdentityClientContext.js.map +0 -1
  95. package/esm/models/index.d.ts +0 -332
  96. package/esm/models/index.d.ts.map +0 -1
  97. package/esm/models/index.js +0 -10
  98. package/esm/models/index.js.map +0 -1
  99. package/esm/models/mappers.d.ts +0 -9
  100. package/esm/models/mappers.d.ts.map +0 -1
  101. package/esm/models/mappers.js +0 -197
  102. package/esm/models/mappers.js.map +0 -1
  103. package/esm/models/operationsMappers.d.ts +0 -2
  104. package/esm/models/operationsMappers.d.ts.map +0 -1
  105. package/esm/models/operationsMappers.js +0 -11
  106. package/esm/models/operationsMappers.js.map +0 -1
  107. package/esm/models/parameters.d.ts +0 -8
  108. package/esm/models/parameters.d.ts.map +0 -1
  109. package/esm/models/parameters.js +0 -71
  110. package/esm/models/parameters.js.map +0 -1
  111. package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
  112. package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
  113. package/esm/models/userAssignedIdentitiesMappers.js +0 -11
  114. package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
  115. package/esm/operations/index.d.ts +0 -3
  116. package/esm/operations/index.d.ts.map +0 -1
  117. package/esm/operations/index.js +0 -12
  118. package/esm/operations/index.js.map +0 -1
  119. package/esm/operations/operations.d.ts +0 -46
  120. package/esm/operations/operations.d.ts.map +0 -1
  121. package/esm/operations/operations.js +0 -77
  122. package/esm/operations/operations.js.map +0 -1
  123. package/esm/operations/userAssignedIdentities.d.ts +0 -172
  124. package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
  125. package/esm/operations/userAssignedIdentities.js +0 -272
  126. package/esm/operations/userAssignedIdentities.js.map +0 -1
  127. package/lib/managedServiceIdentityClient.ts +0 -44
  128. package/lib/managedServiceIdentityClientContext.ts +0 -62
  129. package/lib/models/index.ts +0 -358
  130. package/lib/models/mappers.ts +0 -204
  131. package/lib/models/operationsMappers.ts +0 -17
  132. package/lib/models/parameters.ts +0 -73
  133. package/lib/models/userAssignedIdentitiesMappers.ts +0 -17
  134. package/lib/operations/operations.ts +0 -123
  135. package/lib/operations/userAssignedIdentities.ts +0 -479
@@ -0,0 +1,330 @@
1
+ import * as coreAuth from '@azure/core-auth';
2
+ import * as coreClient from '@azure/core-client';
3
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
4
+
5
+ /** An error response from the ManagedServiceIdentity service. */
6
+ export declare interface CloudError {
7
+ /** A list of additional details about the error. */
8
+ error?: CloudErrorBody;
9
+ }
10
+
11
+ /** An error response from the ManagedServiceIdentity service. */
12
+ export declare interface CloudErrorBody {
13
+ /** An identifier for the error. */
14
+ code?: string;
15
+ /** A message describing the error, intended to be suitable for display in a user interface. */
16
+ message?: string;
17
+ /** The target of the particular error. For example, the name of the property in error. */
18
+ target?: string;
19
+ /** A list of additional details about the error. */
20
+ details?: CloudErrorBody[];
21
+ }
22
+
23
+ /** Describes an identity resource. */
24
+ export declare type Identity = TrackedResource & {
25
+ /**
26
+ * The id of the tenant which the identity belongs to.
27
+ * NOTE: This property will not be serialized. It can only be populated by the server.
28
+ */
29
+ readonly tenantId?: string;
30
+ /**
31
+ * The id of the service principal object associated with the created identity.
32
+ * NOTE: This property will not be serialized. It can only be populated by the server.
33
+ */
34
+ readonly principalId?: string;
35
+ /**
36
+ * The id of the app associated with the identity. This is a random generated UUID by MSI.
37
+ * NOTE: This property will not be serialized. It can only be populated by the server.
38
+ */
39
+ readonly clientId?: string;
40
+ };
41
+
42
+ /** Describes an identity resource. */
43
+ export declare type IdentityUpdate = Resource & {
44
+ /** The geo-location where the resource lives */
45
+ location?: string;
46
+ /** Resource tags */
47
+ tags?: {
48
+ [propertyName: string]: string;
49
+ };
50
+ /**
51
+ * The id of the tenant which the identity belongs to.
52
+ * NOTE: This property will not be serialized. It can only be populated by the server.
53
+ */
54
+ readonly tenantId?: string;
55
+ /**
56
+ * The id of the service principal object associated with the created identity.
57
+ * NOTE: This property will not be serialized. It can only be populated by the server.
58
+ */
59
+ readonly principalId?: string;
60
+ /**
61
+ * The id of the app associated with the identity. This is a random generated UUID by MSI.
62
+ * NOTE: This property will not be serialized. It can only be populated by the server.
63
+ */
64
+ readonly clientId?: string;
65
+ };
66
+
67
+ export declare class ManagedServiceIdentityClient extends coreClient.ServiceClient {
68
+ $host: string;
69
+ apiVersion: string;
70
+ subscriptionId: string;
71
+ /**
72
+ * Initializes a new instance of the ManagedServiceIdentityClient class.
73
+ * @param credentials Subscription credentials which uniquely identify client subscription.
74
+ * @param subscriptionId The Id of the Subscription to which the identity belongs.
75
+ * @param options The parameter options
76
+ */
77
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagedServiceIdentityClientOptionalParams);
78
+ systemAssignedIdentities: SystemAssignedIdentities;
79
+ operations: Operations;
80
+ userAssignedIdentities: UserAssignedIdentities;
81
+ }
82
+
83
+ /** Optional parameters. */
84
+ export declare interface ManagedServiceIdentityClientOptionalParams extends coreClient.ServiceClientOptions {
85
+ /** server parameter */
86
+ $host?: string;
87
+ /** Api Version */
88
+ apiVersion?: string;
89
+ /** Overrides client endpoint. */
90
+ endpoint?: string;
91
+ }
92
+
93
+ /** Operation supported by the Microsoft.ManagedIdentity REST API. */
94
+ export declare interface Operation {
95
+ /** The name of the REST Operation. This is of the format {provider}/{resource}/{operation}. */
96
+ name?: string;
97
+ /** The object that describes the operation. */
98
+ display?: OperationDisplay;
99
+ }
100
+
101
+ /** The object that describes the operation. */
102
+ export declare interface OperationDisplay {
103
+ /** Friendly name of the resource provider. */
104
+ provider?: string;
105
+ /** The type of operation. For example: read, write, delete. */
106
+ operation?: string;
107
+ /** The resource type on which the operation is performed. */
108
+ resource?: string;
109
+ /** A description of the operation. */
110
+ description?: string;
111
+ }
112
+
113
+ /** A list of operations supported by Microsoft.ManagedIdentity Resource Provider. */
114
+ export declare interface OperationListResult {
115
+ /** A list of operations supported by Microsoft.ManagedIdentity Resource Provider. */
116
+ value?: Operation[];
117
+ /** The url to get the next page of results, if any. */
118
+ nextLink?: string;
119
+ }
120
+
121
+ /** Interface representing a Operations. */
122
+ export declare interface Operations {
123
+ /**
124
+ * Lists available operations for the Microsoft.ManagedIdentity provider
125
+ * @param options The options parameters.
126
+ */
127
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
128
+ }
129
+
130
+ /** Optional parameters. */
131
+ export declare interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
132
+ }
133
+
134
+ /** Contains response data for the listNext operation. */
135
+ export declare type OperationsListNextResponse = OperationListResult;
136
+
137
+ /** Optional parameters. */
138
+ export declare interface OperationsListOptionalParams extends coreClient.OperationOptions {
139
+ }
140
+
141
+ /** Contains response data for the list operation. */
142
+ export declare type OperationsListResponse = OperationListResult;
143
+
144
+ /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
145
+ export declare type ProxyResource = Resource & {};
146
+
147
+ /** Common fields that are returned in the response for all Azure Resource Manager resources */
148
+ export declare interface Resource {
149
+ /**
150
+ * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
151
+ * NOTE: This property will not be serialized. It can only be populated by the server.
152
+ */
153
+ readonly id?: string;
154
+ /**
155
+ * The name of the resource
156
+ * NOTE: This property will not be serialized. It can only be populated by the server.
157
+ */
158
+ readonly name?: string;
159
+ /**
160
+ * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
161
+ * NOTE: This property will not be serialized. It can only be populated by the server.
162
+ */
163
+ readonly type?: string;
164
+ }
165
+
166
+ /** Interface representing a SystemAssignedIdentities. */
167
+ export declare interface SystemAssignedIdentities {
168
+ /**
169
+ * Gets the systemAssignedIdentity available under the specified RP scope.
170
+ * @param scope The resource provider scope of the resource. Parent resource being extended by Managed
171
+ * Identities.
172
+ * @param options The options parameters.
173
+ */
174
+ getByScope(scope: string, options?: SystemAssignedIdentitiesGetByScopeOptionalParams): Promise<SystemAssignedIdentitiesGetByScopeResponse>;
175
+ }
176
+
177
+ /** Optional parameters. */
178
+ export declare interface SystemAssignedIdentitiesGetByScopeOptionalParams extends coreClient.OperationOptions {
179
+ }
180
+
181
+ /** Contains response data for the getByScope operation. */
182
+ export declare type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
183
+
184
+ /** Describes a system assigned identity resource. */
185
+ export declare type SystemAssignedIdentity = ProxyResource & {
186
+ /** The geo-location where the resource lives */
187
+ location: string;
188
+ /** Resource tags */
189
+ tags?: {
190
+ [propertyName: string]: string;
191
+ };
192
+ /**
193
+ * The id of the tenant which the identity belongs to.
194
+ * NOTE: This property will not be serialized. It can only be populated by the server.
195
+ */
196
+ readonly tenantId?: string;
197
+ /**
198
+ * The id of the service principal object associated with the created identity.
199
+ * NOTE: This property will not be serialized. It can only be populated by the server.
200
+ */
201
+ readonly principalId?: string;
202
+ /**
203
+ * The id of the app associated with the identity. This is a random generated UUID by MSI.
204
+ * NOTE: This property will not be serialized. It can only be populated by the server.
205
+ */
206
+ readonly clientId?: string;
207
+ /**
208
+ * The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials.
209
+ * NOTE: This property will not be serialized. It can only be populated by the server.
210
+ */
211
+ readonly clientSecretUrl?: string;
212
+ };
213
+
214
+ /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
215
+ export declare type TrackedResource = Resource & {
216
+ /** Resource tags. */
217
+ tags?: {
218
+ [propertyName: string]: string;
219
+ };
220
+ /** The geo-location where the resource lives */
221
+ location: string;
222
+ };
223
+
224
+ /** Interface representing a UserAssignedIdentities. */
225
+ export declare interface UserAssignedIdentities {
226
+ /**
227
+ * Lists all the userAssignedIdentities available under the specified subscription.
228
+ * @param options The options parameters.
229
+ */
230
+ listBySubscription(options?: UserAssignedIdentitiesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Identity>;
231
+ /**
232
+ * Lists all the userAssignedIdentities available under the specified ResourceGroup.
233
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
234
+ * @param options The options parameters.
235
+ */
236
+ listByResourceGroup(resourceGroupName: string, options?: UserAssignedIdentitiesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Identity>;
237
+ /**
238
+ * Create or update an identity in the specified subscription and resource group.
239
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
240
+ * @param resourceName The name of the identity resource.
241
+ * @param parameters Parameters to create or update the identity
242
+ * @param options The options parameters.
243
+ */
244
+ createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Identity, options?: UserAssignedIdentitiesCreateOrUpdateOptionalParams): Promise<UserAssignedIdentitiesCreateOrUpdateResponse>;
245
+ /**
246
+ * Update an identity in the specified subscription and resource group.
247
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
248
+ * @param resourceName The name of the identity resource.
249
+ * @param parameters Parameters to update the identity
250
+ * @param options The options parameters.
251
+ */
252
+ update(resourceGroupName: string, resourceName: string, parameters: IdentityUpdate, options?: UserAssignedIdentitiesUpdateOptionalParams): Promise<UserAssignedIdentitiesUpdateResponse>;
253
+ /**
254
+ * Gets the identity.
255
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
256
+ * @param resourceName The name of the identity resource.
257
+ * @param options The options parameters.
258
+ */
259
+ get(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesGetOptionalParams): Promise<UserAssignedIdentitiesGetResponse>;
260
+ /**
261
+ * Deletes the identity.
262
+ * @param resourceGroupName The name of the Resource Group to which the identity belongs.
263
+ * @param resourceName The name of the identity resource.
264
+ * @param options The options parameters.
265
+ */
266
+ delete(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesDeleteOptionalParams): Promise<void>;
267
+ }
268
+
269
+ /** Optional parameters. */
270
+ export declare interface UserAssignedIdentitiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
271
+ }
272
+
273
+ /** Contains response data for the createOrUpdate operation. */
274
+ export declare type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
275
+
276
+ /** Optional parameters. */
277
+ export declare interface UserAssignedIdentitiesDeleteOptionalParams extends coreClient.OperationOptions {
278
+ }
279
+
280
+ /** Optional parameters. */
281
+ export declare interface UserAssignedIdentitiesGetOptionalParams extends coreClient.OperationOptions {
282
+ }
283
+
284
+ /** Contains response data for the get operation. */
285
+ export declare type UserAssignedIdentitiesGetResponse = Identity;
286
+
287
+ /** Optional parameters. */
288
+ export declare interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
289
+ }
290
+
291
+ /** Contains response data for the listByResourceGroupNext operation. */
292
+ export declare type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
293
+
294
+ /** Optional parameters. */
295
+ export declare interface UserAssignedIdentitiesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
296
+ }
297
+
298
+ /** Contains response data for the listByResourceGroup operation. */
299
+ export declare type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
300
+
301
+ /** Optional parameters. */
302
+ export declare interface UserAssignedIdentitiesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
303
+ }
304
+
305
+ /** Contains response data for the listBySubscriptionNext operation. */
306
+ export declare type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult;
307
+
308
+ /** Optional parameters. */
309
+ export declare interface UserAssignedIdentitiesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
310
+ }
311
+
312
+ /** Contains response data for the listBySubscription operation. */
313
+ export declare type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
314
+
315
+ /** Values returned by the List operation. */
316
+ export declare interface UserAssignedIdentitiesListResult {
317
+ /** The collection of userAssignedIdentities returned by the listing operation. */
318
+ value?: Identity[];
319
+ /** The url to get the next page of results, if any. */
320
+ nextLink?: string;
321
+ }
322
+
323
+ /** Optional parameters. */
324
+ export declare interface UserAssignedIdentitiesUpdateOptionalParams extends coreClient.OperationOptions {
325
+ }
326
+
327
+ /** Contains response data for the update operation. */
328
+ export declare type UserAssignedIdentitiesUpdateResponse = Identity;
329
+
330
+ export { }
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.18.19"
9
+ }
10
+ ]
11
+ }