@azure/arm-msi 2.1.1-alpha.20250619.1 → 2.1.1-alpha.20250718.1

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for ManagedServiceIdentityClient.",
6
- "version": "2.1.1-alpha.20250619.1",
6
+ "version": "2.1.1-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,301 +1,301 @@
1
- ## API Report File for "@azure/arm-msi"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import * as coreAuth from '@azure/core-auth';
8
- import * as coreClient from '@azure/core-client';
9
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
-
11
- // @public
12
- export interface CloudError {
13
- error?: CloudErrorBody;
14
- }
15
-
16
- // @public
17
- export interface CloudErrorBody {
18
- code?: string;
19
- details?: CloudErrorBody[];
20
- message?: string;
21
- target?: string;
22
- }
23
-
24
- // @public
25
- export type CreatedByType = string;
26
-
27
- // @public
28
- export interface FederatedIdentityCredential extends ProxyResource {
29
- audiences?: string[];
30
- issuer?: string;
31
- subject?: string;
32
- }
33
-
34
- // @public
35
- export interface FederatedIdentityCredentials {
36
- createOrUpdate(resourceGroupName: string, resourceName: string, federatedIdentityCredentialResourceName: string, parameters: FederatedIdentityCredential, options?: FederatedIdentityCredentialsCreateOrUpdateOptionalParams): Promise<FederatedIdentityCredentialsCreateOrUpdateResponse>;
37
- delete(resourceGroupName: string, resourceName: string, federatedIdentityCredentialResourceName: string, options?: FederatedIdentityCredentialsDeleteOptionalParams): Promise<void>;
38
- get(resourceGroupName: string, resourceName: string, federatedIdentityCredentialResourceName: string, options?: FederatedIdentityCredentialsGetOptionalParams): Promise<FederatedIdentityCredentialsGetResponse>;
39
- list(resourceGroupName: string, resourceName: string, options?: FederatedIdentityCredentialsListOptionalParams): PagedAsyncIterableIterator<FederatedIdentityCredential>;
40
- }
41
-
42
- // @public
43
- export interface FederatedIdentityCredentialsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
44
- }
45
-
46
- // @public
47
- export type FederatedIdentityCredentialsCreateOrUpdateResponse = FederatedIdentityCredential;
48
-
49
- // @public
50
- export interface FederatedIdentityCredentialsDeleteOptionalParams extends coreClient.OperationOptions {
51
- }
52
-
53
- // @public
54
- export interface FederatedIdentityCredentialsGetOptionalParams extends coreClient.OperationOptions {
55
- }
56
-
57
- // @public
58
- export type FederatedIdentityCredentialsGetResponse = FederatedIdentityCredential;
59
-
60
- // @public
61
- export interface FederatedIdentityCredentialsListNextOptionalParams extends coreClient.OperationOptions {
62
- }
63
-
64
- // @public
65
- export type FederatedIdentityCredentialsListNextResponse = FederatedIdentityCredentialsListResult;
66
-
67
- // @public
68
- export interface FederatedIdentityCredentialsListOptionalParams extends coreClient.OperationOptions {
69
- skiptoken?: string;
70
- top?: number;
71
- }
72
-
73
- // @public
74
- export type FederatedIdentityCredentialsListResponse = FederatedIdentityCredentialsListResult;
75
-
76
- // @public
77
- export interface FederatedIdentityCredentialsListResult {
78
- nextLink?: string;
79
- value?: FederatedIdentityCredential[];
80
- }
81
-
82
- // @public
83
- export function getContinuationToken(page: unknown): string | undefined;
84
-
85
- // @public
86
- export interface Identity extends TrackedResource {
87
- readonly clientId?: string;
88
- readonly principalId?: string;
89
- readonly tenantId?: string;
90
- }
91
-
92
- // @public
93
- export interface IdentityUpdate extends Resource {
94
- readonly clientId?: string;
95
- location?: string;
96
- readonly principalId?: string;
97
- tags?: {
98
- [propertyName: string]: string;
99
- };
100
- readonly tenantId?: string;
101
- }
102
-
103
- // @public
104
- export enum KnownCreatedByType {
105
- Application = "Application",
106
- Key = "Key",
107
- ManagedIdentity = "ManagedIdentity",
108
- User = "User"
109
- }
110
-
111
- // @public (undocumented)
112
- export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
113
- // (undocumented)
114
- $host: string;
115
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagedServiceIdentityClientOptionalParams);
116
- // (undocumented)
117
- apiVersion: string;
118
- // (undocumented)
119
- federatedIdentityCredentials: FederatedIdentityCredentials;
120
- // (undocumented)
121
- operations: Operations;
122
- // (undocumented)
123
- subscriptionId: string;
124
- // (undocumented)
125
- systemAssignedIdentities: SystemAssignedIdentities;
126
- // (undocumented)
127
- userAssignedIdentities: UserAssignedIdentities;
128
- }
129
-
130
- // @public
131
- export interface ManagedServiceIdentityClientOptionalParams extends coreClient.ServiceClientOptions {
132
- $host?: string;
133
- apiVersion?: string;
134
- endpoint?: string;
135
- }
136
-
137
- // @public
138
- export interface Operation {
139
- display?: OperationDisplay;
140
- name?: string;
141
- }
142
-
143
- // @public
144
- export interface OperationDisplay {
145
- description?: string;
146
- operation?: string;
147
- provider?: string;
148
- resource?: string;
149
- }
150
-
151
- // @public
152
- export interface OperationListResult {
153
- nextLink?: string;
154
- value?: Operation[];
155
- }
156
-
157
- // @public
158
- export interface Operations {
159
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
160
- }
161
-
162
- // @public
163
- export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
164
- }
165
-
166
- // @public
167
- export type OperationsListNextResponse = OperationListResult;
168
-
169
- // @public
170
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
171
- }
172
-
173
- // @public
174
- export type OperationsListResponse = OperationListResult;
175
-
176
- // @public
177
- export interface ProxyResource extends Resource {
178
- }
179
-
180
- // @public
181
- export interface Resource {
182
- readonly id?: string;
183
- readonly name?: string;
184
- readonly systemData?: SystemData;
185
- readonly type?: string;
186
- }
187
-
188
- // @public
189
- export interface SystemAssignedIdentities {
190
- getByScope(scope: string, options?: SystemAssignedIdentitiesGetByScopeOptionalParams): Promise<SystemAssignedIdentitiesGetByScopeResponse>;
191
- }
192
-
193
- // @public
194
- export interface SystemAssignedIdentitiesGetByScopeOptionalParams extends coreClient.OperationOptions {
195
- }
196
-
197
- // @public
198
- export type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
199
-
200
- // @public
201
- export interface SystemAssignedIdentity extends ProxyResource {
202
- readonly clientId?: string;
203
- readonly clientSecretUrl?: string;
204
- location: string;
205
- readonly principalId?: string;
206
- tags?: {
207
- [propertyName: string]: string;
208
- };
209
- readonly tenantId?: string;
210
- }
211
-
212
- // @public
213
- export interface SystemData {
214
- createdAt?: Date;
215
- createdBy?: string;
216
- createdByType?: CreatedByType;
217
- lastModifiedAt?: Date;
218
- lastModifiedBy?: string;
219
- lastModifiedByType?: CreatedByType;
220
- }
221
-
222
- // @public
223
- export interface TrackedResource extends Resource {
224
- location: string;
225
- tags?: {
226
- [propertyName: string]: string;
227
- };
228
- }
229
-
230
- // @public
231
- export interface UserAssignedIdentities {
232
- createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Identity, options?: UserAssignedIdentitiesCreateOrUpdateOptionalParams): Promise<UserAssignedIdentitiesCreateOrUpdateResponse>;
233
- delete(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesDeleteOptionalParams): Promise<void>;
234
- get(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesGetOptionalParams): Promise<UserAssignedIdentitiesGetResponse>;
235
- listByResourceGroup(resourceGroupName: string, options?: UserAssignedIdentitiesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Identity>;
236
- listBySubscription(options?: UserAssignedIdentitiesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Identity>;
237
- update(resourceGroupName: string, resourceName: string, parameters: IdentityUpdate, options?: UserAssignedIdentitiesUpdateOptionalParams): Promise<UserAssignedIdentitiesUpdateResponse>;
238
- }
239
-
240
- // @public
241
- export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
242
- }
243
-
244
- // @public
245
- export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
246
-
247
- // @public
248
- export interface UserAssignedIdentitiesDeleteOptionalParams extends coreClient.OperationOptions {
249
- }
250
-
251
- // @public
252
- export interface UserAssignedIdentitiesGetOptionalParams extends coreClient.OperationOptions {
253
- }
254
-
255
- // @public
256
- export type UserAssignedIdentitiesGetResponse = Identity;
257
-
258
- // @public
259
- export interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
260
- }
261
-
262
- // @public
263
- export type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
264
-
265
- // @public
266
- export interface UserAssignedIdentitiesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
267
- }
268
-
269
- // @public
270
- export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
271
-
272
- // @public
273
- export interface UserAssignedIdentitiesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
274
- }
275
-
276
- // @public
277
- export type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult;
278
-
279
- // @public
280
- export interface UserAssignedIdentitiesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
281
- }
282
-
283
- // @public
284
- export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
285
-
286
- // @public
287
- export interface UserAssignedIdentitiesListResult {
288
- nextLink?: string;
289
- value?: Identity[];
290
- }
291
-
292
- // @public
293
- export interface UserAssignedIdentitiesUpdateOptionalParams extends coreClient.OperationOptions {
294
- }
295
-
296
- // @public
297
- export type UserAssignedIdentitiesUpdateResponse = Identity;
298
-
299
- // (No @packageDocumentation comment for this package)
300
-
301
- ```
1
+ ## API Report File for "@azure/arm-msi"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+
11
+ // @public
12
+ export interface CloudError {
13
+ error?: CloudErrorBody;
14
+ }
15
+
16
+ // @public
17
+ export interface CloudErrorBody {
18
+ code?: string;
19
+ details?: CloudErrorBody[];
20
+ message?: string;
21
+ target?: string;
22
+ }
23
+
24
+ // @public
25
+ export type CreatedByType = string;
26
+
27
+ // @public
28
+ export interface FederatedIdentityCredential extends ProxyResource {
29
+ audiences?: string[];
30
+ issuer?: string;
31
+ subject?: string;
32
+ }
33
+
34
+ // @public
35
+ export interface FederatedIdentityCredentials {
36
+ createOrUpdate(resourceGroupName: string, resourceName: string, federatedIdentityCredentialResourceName: string, parameters: FederatedIdentityCredential, options?: FederatedIdentityCredentialsCreateOrUpdateOptionalParams): Promise<FederatedIdentityCredentialsCreateOrUpdateResponse>;
37
+ delete(resourceGroupName: string, resourceName: string, federatedIdentityCredentialResourceName: string, options?: FederatedIdentityCredentialsDeleteOptionalParams): Promise<void>;
38
+ get(resourceGroupName: string, resourceName: string, federatedIdentityCredentialResourceName: string, options?: FederatedIdentityCredentialsGetOptionalParams): Promise<FederatedIdentityCredentialsGetResponse>;
39
+ list(resourceGroupName: string, resourceName: string, options?: FederatedIdentityCredentialsListOptionalParams): PagedAsyncIterableIterator<FederatedIdentityCredential>;
40
+ }
41
+
42
+ // @public
43
+ export interface FederatedIdentityCredentialsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
44
+ }
45
+
46
+ // @public
47
+ export type FederatedIdentityCredentialsCreateOrUpdateResponse = FederatedIdentityCredential;
48
+
49
+ // @public
50
+ export interface FederatedIdentityCredentialsDeleteOptionalParams extends coreClient.OperationOptions {
51
+ }
52
+
53
+ // @public
54
+ export interface FederatedIdentityCredentialsGetOptionalParams extends coreClient.OperationOptions {
55
+ }
56
+
57
+ // @public
58
+ export type FederatedIdentityCredentialsGetResponse = FederatedIdentityCredential;
59
+
60
+ // @public
61
+ export interface FederatedIdentityCredentialsListNextOptionalParams extends coreClient.OperationOptions {
62
+ }
63
+
64
+ // @public
65
+ export type FederatedIdentityCredentialsListNextResponse = FederatedIdentityCredentialsListResult;
66
+
67
+ // @public
68
+ export interface FederatedIdentityCredentialsListOptionalParams extends coreClient.OperationOptions {
69
+ skiptoken?: string;
70
+ top?: number;
71
+ }
72
+
73
+ // @public
74
+ export type FederatedIdentityCredentialsListResponse = FederatedIdentityCredentialsListResult;
75
+
76
+ // @public
77
+ export interface FederatedIdentityCredentialsListResult {
78
+ nextLink?: string;
79
+ value?: FederatedIdentityCredential[];
80
+ }
81
+
82
+ // @public
83
+ export function getContinuationToken(page: unknown): string | undefined;
84
+
85
+ // @public
86
+ export interface Identity extends TrackedResource {
87
+ readonly clientId?: string;
88
+ readonly principalId?: string;
89
+ readonly tenantId?: string;
90
+ }
91
+
92
+ // @public
93
+ export interface IdentityUpdate extends Resource {
94
+ readonly clientId?: string;
95
+ location?: string;
96
+ readonly principalId?: string;
97
+ tags?: {
98
+ [propertyName: string]: string;
99
+ };
100
+ readonly tenantId?: string;
101
+ }
102
+
103
+ // @public
104
+ export enum KnownCreatedByType {
105
+ Application = "Application",
106
+ Key = "Key",
107
+ ManagedIdentity = "ManagedIdentity",
108
+ User = "User"
109
+ }
110
+
111
+ // @public (undocumented)
112
+ export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
113
+ // (undocumented)
114
+ $host: string;
115
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagedServiceIdentityClientOptionalParams);
116
+ // (undocumented)
117
+ apiVersion: string;
118
+ // (undocumented)
119
+ federatedIdentityCredentials: FederatedIdentityCredentials;
120
+ // (undocumented)
121
+ operations: Operations;
122
+ // (undocumented)
123
+ subscriptionId: string;
124
+ // (undocumented)
125
+ systemAssignedIdentities: SystemAssignedIdentities;
126
+ // (undocumented)
127
+ userAssignedIdentities: UserAssignedIdentities;
128
+ }
129
+
130
+ // @public
131
+ export interface ManagedServiceIdentityClientOptionalParams extends coreClient.ServiceClientOptions {
132
+ $host?: string;
133
+ apiVersion?: string;
134
+ endpoint?: string;
135
+ }
136
+
137
+ // @public
138
+ export interface Operation {
139
+ display?: OperationDisplay;
140
+ name?: string;
141
+ }
142
+
143
+ // @public
144
+ export interface OperationDisplay {
145
+ description?: string;
146
+ operation?: string;
147
+ provider?: string;
148
+ resource?: string;
149
+ }
150
+
151
+ // @public
152
+ export interface OperationListResult {
153
+ nextLink?: string;
154
+ value?: Operation[];
155
+ }
156
+
157
+ // @public
158
+ export interface Operations {
159
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
160
+ }
161
+
162
+ // @public
163
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
164
+ }
165
+
166
+ // @public
167
+ export type OperationsListNextResponse = OperationListResult;
168
+
169
+ // @public
170
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
171
+ }
172
+
173
+ // @public
174
+ export type OperationsListResponse = OperationListResult;
175
+
176
+ // @public
177
+ export interface ProxyResource extends Resource {
178
+ }
179
+
180
+ // @public
181
+ export interface Resource {
182
+ readonly id?: string;
183
+ readonly name?: string;
184
+ readonly systemData?: SystemData;
185
+ readonly type?: string;
186
+ }
187
+
188
+ // @public
189
+ export interface SystemAssignedIdentities {
190
+ getByScope(scope: string, options?: SystemAssignedIdentitiesGetByScopeOptionalParams): Promise<SystemAssignedIdentitiesGetByScopeResponse>;
191
+ }
192
+
193
+ // @public
194
+ export interface SystemAssignedIdentitiesGetByScopeOptionalParams extends coreClient.OperationOptions {
195
+ }
196
+
197
+ // @public
198
+ export type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
199
+
200
+ // @public
201
+ export interface SystemAssignedIdentity extends ProxyResource {
202
+ readonly clientId?: string;
203
+ readonly clientSecretUrl?: string;
204
+ location: string;
205
+ readonly principalId?: string;
206
+ tags?: {
207
+ [propertyName: string]: string;
208
+ };
209
+ readonly tenantId?: string;
210
+ }
211
+
212
+ // @public
213
+ export interface SystemData {
214
+ createdAt?: Date;
215
+ createdBy?: string;
216
+ createdByType?: CreatedByType;
217
+ lastModifiedAt?: Date;
218
+ lastModifiedBy?: string;
219
+ lastModifiedByType?: CreatedByType;
220
+ }
221
+
222
+ // @public
223
+ export interface TrackedResource extends Resource {
224
+ location: string;
225
+ tags?: {
226
+ [propertyName: string]: string;
227
+ };
228
+ }
229
+
230
+ // @public
231
+ export interface UserAssignedIdentities {
232
+ createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Identity, options?: UserAssignedIdentitiesCreateOrUpdateOptionalParams): Promise<UserAssignedIdentitiesCreateOrUpdateResponse>;
233
+ delete(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesDeleteOptionalParams): Promise<void>;
234
+ get(resourceGroupName: string, resourceName: string, options?: UserAssignedIdentitiesGetOptionalParams): Promise<UserAssignedIdentitiesGetResponse>;
235
+ listByResourceGroup(resourceGroupName: string, options?: UserAssignedIdentitiesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Identity>;
236
+ listBySubscription(options?: UserAssignedIdentitiesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Identity>;
237
+ update(resourceGroupName: string, resourceName: string, parameters: IdentityUpdate, options?: UserAssignedIdentitiesUpdateOptionalParams): Promise<UserAssignedIdentitiesUpdateResponse>;
238
+ }
239
+
240
+ // @public
241
+ export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
242
+ }
243
+
244
+ // @public
245
+ export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
246
+
247
+ // @public
248
+ export interface UserAssignedIdentitiesDeleteOptionalParams extends coreClient.OperationOptions {
249
+ }
250
+
251
+ // @public
252
+ export interface UserAssignedIdentitiesGetOptionalParams extends coreClient.OperationOptions {
253
+ }
254
+
255
+ // @public
256
+ export type UserAssignedIdentitiesGetResponse = Identity;
257
+
258
+ // @public
259
+ export interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
260
+ }
261
+
262
+ // @public
263
+ export type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
264
+
265
+ // @public
266
+ export interface UserAssignedIdentitiesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
267
+ }
268
+
269
+ // @public
270
+ export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
271
+
272
+ // @public
273
+ export interface UserAssignedIdentitiesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
274
+ }
275
+
276
+ // @public
277
+ export type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult;
278
+
279
+ // @public
280
+ export interface UserAssignedIdentitiesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
281
+ }
282
+
283
+ // @public
284
+ export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
285
+
286
+ // @public
287
+ export interface UserAssignedIdentitiesListResult {
288
+ nextLink?: string;
289
+ value?: Identity[];
290
+ }
291
+
292
+ // @public
293
+ export interface UserAssignedIdentitiesUpdateOptionalParams extends coreClient.OperationOptions {
294
+ }
295
+
296
+ // @public
297
+ export type UserAssignedIdentitiesUpdateResponse = Identity;
298
+
299
+ // (No @packageDocumentation comment for this package)
300
+
301
+ ```