@azure/arm-automanage 1.0.3-alpha.20250619.1 → 1.0.3-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 AutomanageClient.",
6
- "version": "1.0.3-alpha.20250619.1",
6
+ "version": "1.0.3-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,590 +1,590 @@
1
- ## API Report File for "@azure/arm-automanage"
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 type ActionType = string;
13
-
14
- // @public (undocumented)
15
- export class AutomanageClient extends coreClient.ServiceClient {
16
- // (undocumented)
17
- $host: string;
18
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AutomanageClientOptionalParams);
19
- // (undocumented)
20
- apiVersion: string;
21
- // (undocumented)
22
- bestPractices: BestPractices;
23
- // (undocumented)
24
- bestPracticesVersions: BestPracticesVersions;
25
- // (undocumented)
26
- configurationProfileAssignments: ConfigurationProfileAssignments;
27
- // (undocumented)
28
- configurationProfileHCIAssignments: ConfigurationProfileHCIAssignments;
29
- // (undocumented)
30
- configurationProfileHcrpAssignments: ConfigurationProfileHcrpAssignments;
31
- // (undocumented)
32
- configurationProfiles: ConfigurationProfiles;
33
- // (undocumented)
34
- configurationProfilesVersions: ConfigurationProfilesVersions;
35
- // (undocumented)
36
- hCIReports: HCIReports;
37
- // (undocumented)
38
- hcrpReports: HcrpReports;
39
- // (undocumented)
40
- operations: Operations;
41
- // (undocumented)
42
- reports: Reports;
43
- // (undocumented)
44
- servicePrincipals: ServicePrincipals;
45
- // (undocumented)
46
- subscriptionId: string;
47
- }
48
-
49
- // @public
50
- export interface AutomanageClientOptionalParams extends coreClient.ServiceClientOptions {
51
- $host?: string;
52
- apiVersion?: string;
53
- endpoint?: string;
54
- }
55
-
56
- // @public
57
- export interface BestPractice {
58
- configuration?: Record<string, unknown>;
59
- readonly id?: string;
60
- readonly name?: string;
61
- readonly systemData?: SystemData;
62
- readonly type?: string;
63
- }
64
-
65
- // @public
66
- export interface BestPracticeList {
67
- value?: BestPractice[];
68
- }
69
-
70
- // @public
71
- export interface BestPractices {
72
- get(bestPracticeName: string, options?: BestPracticesGetOptionalParams): Promise<BestPracticesGetResponse>;
73
- listByTenant(options?: BestPracticesListByTenantOptionalParams): PagedAsyncIterableIterator<BestPractice>;
74
- }
75
-
76
- // @public
77
- export interface BestPracticesGetOptionalParams extends coreClient.OperationOptions {
78
- }
79
-
80
- // @public
81
- export type BestPracticesGetResponse = BestPractice;
82
-
83
- // @public
84
- export interface BestPracticesListByTenantOptionalParams extends coreClient.OperationOptions {
85
- }
86
-
87
- // @public
88
- export type BestPracticesListByTenantResponse = BestPracticeList;
89
-
90
- // @public
91
- export interface BestPracticesVersions {
92
- get(bestPracticeName: string, versionName: string, options?: BestPracticesVersionsGetOptionalParams): Promise<BestPracticesVersionsGetResponse>;
93
- listByTenant(bestPracticeName: string, options?: BestPracticesVersionsListByTenantOptionalParams): PagedAsyncIterableIterator<BestPractice>;
94
- }
95
-
96
- // @public
97
- export interface BestPracticesVersionsGetOptionalParams extends coreClient.OperationOptions {
98
- }
99
-
100
- // @public
101
- export type BestPracticesVersionsGetResponse = BestPractice;
102
-
103
- // @public
104
- export interface BestPracticesVersionsListByTenantOptionalParams extends coreClient.OperationOptions {
105
- }
106
-
107
- // @public
108
- export type BestPracticesVersionsListByTenantResponse = BestPracticeList;
109
-
110
- // @public
111
- export interface ConfigurationProfile extends TrackedResource {
112
- properties?: ConfigurationProfileProperties;
113
- readonly systemData?: SystemData;
114
- }
115
-
116
- // @public
117
- export interface ConfigurationProfileAssignment extends ProxyResource {
118
- readonly managedBy?: string;
119
- properties?: ConfigurationProfileAssignmentProperties;
120
- readonly systemData?: SystemData;
121
- }
122
-
123
- // @public
124
- export interface ConfigurationProfileAssignmentList {
125
- value?: ConfigurationProfileAssignment[];
126
- }
127
-
128
- // @public
129
- export interface ConfigurationProfileAssignmentProperties {
130
- configurationProfile?: string;
131
- readonly status?: string;
132
- readonly targetId?: string;
133
- }
134
-
135
- // @public
136
- export interface ConfigurationProfileAssignments {
137
- createOrUpdate(configurationProfileAssignmentName: string, resourceGroupName: string, vmName: string, parameters: ConfigurationProfileAssignment, options?: ConfigurationProfileAssignmentsCreateOrUpdateOptionalParams): Promise<ConfigurationProfileAssignmentsCreateOrUpdateResponse>;
138
- delete(resourceGroupName: string, configurationProfileAssignmentName: string, vmName: string, options?: ConfigurationProfileAssignmentsDeleteOptionalParams): Promise<void>;
139
- get(resourceGroupName: string, configurationProfileAssignmentName: string, vmName: string, options?: ConfigurationProfileAssignmentsGetOptionalParams): Promise<ConfigurationProfileAssignmentsGetResponse>;
140
- list(resourceGroupName: string, options?: ConfigurationProfileAssignmentsListOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
141
- listByClusterName(resourceGroupName: string, clusterName: string, options?: ConfigurationProfileAssignmentsListByClusterNameOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
142
- listByMachineName(resourceGroupName: string, machineName: string, options?: ConfigurationProfileAssignmentsListByMachineNameOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
143
- listBySubscription(options?: ConfigurationProfileAssignmentsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
144
- listByVirtualMachines(resourceGroupName: string, vmName: string, options?: ConfigurationProfileAssignmentsListByVirtualMachinesOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
145
- }
146
-
147
- // @public
148
- export interface ConfigurationProfileAssignmentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
149
- }
150
-
151
- // @public
152
- export type ConfigurationProfileAssignmentsCreateOrUpdateResponse = ConfigurationProfileAssignment;
153
-
154
- // @public
155
- export interface ConfigurationProfileAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
156
- }
157
-
158
- // @public
159
- export interface ConfigurationProfileAssignmentsGetOptionalParams extends coreClient.OperationOptions {
160
- }
161
-
162
- // @public
163
- export type ConfigurationProfileAssignmentsGetResponse = ConfigurationProfileAssignment;
164
-
165
- // @public
166
- export interface ConfigurationProfileAssignmentsListByClusterNameOptionalParams extends coreClient.OperationOptions {
167
- }
168
-
169
- // @public
170
- export type ConfigurationProfileAssignmentsListByClusterNameResponse = ConfigurationProfileAssignmentList;
171
-
172
- // @public
173
- export interface ConfigurationProfileAssignmentsListByMachineNameOptionalParams extends coreClient.OperationOptions {
174
- }
175
-
176
- // @public
177
- export type ConfigurationProfileAssignmentsListByMachineNameResponse = ConfigurationProfileAssignmentList;
178
-
179
- // @public
180
- export interface ConfigurationProfileAssignmentsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
181
- }
182
-
183
- // @public
184
- export type ConfigurationProfileAssignmentsListBySubscriptionResponse = ConfigurationProfileAssignmentList;
185
-
186
- // @public
187
- export interface ConfigurationProfileAssignmentsListByVirtualMachinesOptionalParams extends coreClient.OperationOptions {
188
- }
189
-
190
- // @public
191
- export type ConfigurationProfileAssignmentsListByVirtualMachinesResponse = ConfigurationProfileAssignmentList;
192
-
193
- // @public
194
- export interface ConfigurationProfileAssignmentsListOptionalParams extends coreClient.OperationOptions {
195
- }
196
-
197
- // @public
198
- export type ConfigurationProfileAssignmentsListResponse = ConfigurationProfileAssignmentList;
199
-
200
- // @public
201
- export interface ConfigurationProfileHCIAssignments {
202
- createOrUpdate(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, parameters: ConfigurationProfileAssignment, options?: ConfigurationProfileHCIAssignmentsCreateOrUpdateOptionalParams): Promise<ConfigurationProfileHCIAssignmentsCreateOrUpdateResponse>;
203
- delete(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHCIAssignmentsDeleteOptionalParams): Promise<void>;
204
- get(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHCIAssignmentsGetOptionalParams): Promise<ConfigurationProfileHCIAssignmentsGetResponse>;
205
- }
206
-
207
- // @public
208
- export interface ConfigurationProfileHCIAssignmentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
209
- }
210
-
211
- // @public
212
- export type ConfigurationProfileHCIAssignmentsCreateOrUpdateResponse = ConfigurationProfileAssignment;
213
-
214
- // @public
215
- export interface ConfigurationProfileHCIAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
216
- }
217
-
218
- // @public
219
- export interface ConfigurationProfileHCIAssignmentsGetOptionalParams extends coreClient.OperationOptions {
220
- }
221
-
222
- // @public
223
- export type ConfigurationProfileHCIAssignmentsGetResponse = ConfigurationProfileAssignment;
224
-
225
- // @public
226
- export interface ConfigurationProfileHcrpAssignments {
227
- createOrUpdate(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, parameters: ConfigurationProfileAssignment, options?: ConfigurationProfileHcrpAssignmentsCreateOrUpdateOptionalParams): Promise<ConfigurationProfileHcrpAssignmentsCreateOrUpdateResponse>;
228
- delete(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHcrpAssignmentsDeleteOptionalParams): Promise<void>;
229
- get(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHcrpAssignmentsGetOptionalParams): Promise<ConfigurationProfileHcrpAssignmentsGetResponse>;
230
- }
231
-
232
- // @public
233
- export interface ConfigurationProfileHcrpAssignmentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
234
- }
235
-
236
- // @public
237
- export type ConfigurationProfileHcrpAssignmentsCreateOrUpdateResponse = ConfigurationProfileAssignment;
238
-
239
- // @public
240
- export interface ConfigurationProfileHcrpAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
241
- }
242
-
243
- // @public
244
- export interface ConfigurationProfileHcrpAssignmentsGetOptionalParams extends coreClient.OperationOptions {
245
- }
246
-
247
- // @public
248
- export type ConfigurationProfileHcrpAssignmentsGetResponse = ConfigurationProfileAssignment;
249
-
250
- // @public
251
- export interface ConfigurationProfileList {
252
- value?: ConfigurationProfile[];
253
- }
254
-
255
- // @public
256
- export interface ConfigurationProfileProperties {
257
- configuration?: Record<string, unknown>;
258
- }
259
-
260
- // @public
261
- export interface ConfigurationProfiles {
262
- createOrUpdate(configurationProfileName: string, resourceGroupName: string, parameters: ConfigurationProfile, options?: ConfigurationProfilesCreateOrUpdateOptionalParams): Promise<ConfigurationProfilesCreateOrUpdateResponse>;
263
- delete(resourceGroupName: string, configurationProfileName: string, options?: ConfigurationProfilesDeleteOptionalParams): Promise<void>;
264
- get(configurationProfileName: string, resourceGroupName: string, options?: ConfigurationProfilesGetOptionalParams): Promise<ConfigurationProfilesGetResponse>;
265
- listByResourceGroup(resourceGroupName: string, options?: ConfigurationProfilesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ConfigurationProfile>;
266
- listBySubscription(options?: ConfigurationProfilesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ConfigurationProfile>;
267
- update(configurationProfileName: string, resourceGroupName: string, parameters: ConfigurationProfileUpdate, options?: ConfigurationProfilesUpdateOptionalParams): Promise<ConfigurationProfilesUpdateResponse>;
268
- }
269
-
270
- // @public
271
- export interface ConfigurationProfilesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
272
- }
273
-
274
- // @public
275
- export type ConfigurationProfilesCreateOrUpdateResponse = ConfigurationProfile;
276
-
277
- // @public
278
- export interface ConfigurationProfilesDeleteOptionalParams extends coreClient.OperationOptions {
279
- }
280
-
281
- // @public
282
- export interface ConfigurationProfilesGetOptionalParams extends coreClient.OperationOptions {
283
- }
284
-
285
- // @public
286
- export type ConfigurationProfilesGetResponse = ConfigurationProfile;
287
-
288
- // @public
289
- export interface ConfigurationProfilesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
290
- }
291
-
292
- // @public
293
- export type ConfigurationProfilesListByResourceGroupResponse = ConfigurationProfileList;
294
-
295
- // @public
296
- export interface ConfigurationProfilesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
297
- }
298
-
299
- // @public
300
- export type ConfigurationProfilesListBySubscriptionResponse = ConfigurationProfileList;
301
-
302
- // @public
303
- export interface ConfigurationProfilesUpdateOptionalParams extends coreClient.OperationOptions {
304
- }
305
-
306
- // @public
307
- export type ConfigurationProfilesUpdateResponse = ConfigurationProfile;
308
-
309
- // @public
310
- export interface ConfigurationProfilesVersions {
311
- createOrUpdate(configurationProfileName: string, versionName: string, resourceGroupName: string, parameters: ConfigurationProfile, options?: ConfigurationProfilesVersionsCreateOrUpdateOptionalParams): Promise<ConfigurationProfilesVersionsCreateOrUpdateResponse>;
312
- delete(resourceGroupName: string, configurationProfileName: string, versionName: string, options?: ConfigurationProfilesVersionsDeleteOptionalParams): Promise<void>;
313
- get(configurationProfileName: string, versionName: string, resourceGroupName: string, options?: ConfigurationProfilesVersionsGetOptionalParams): Promise<ConfigurationProfilesVersionsGetResponse>;
314
- listChildResources(configurationProfileName: string, resourceGroupName: string, options?: ConfigurationProfilesVersionsListChildResourcesOptionalParams): PagedAsyncIterableIterator<ConfigurationProfile>;
315
- }
316
-
317
- // @public
318
- export interface ConfigurationProfilesVersionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
319
- }
320
-
321
- // @public
322
- export type ConfigurationProfilesVersionsCreateOrUpdateResponse = ConfigurationProfile;
323
-
324
- // @public
325
- export interface ConfigurationProfilesVersionsDeleteOptionalParams extends coreClient.OperationOptions {
326
- }
327
-
328
- // @public
329
- export interface ConfigurationProfilesVersionsGetOptionalParams extends coreClient.OperationOptions {
330
- }
331
-
332
- // @public
333
- export type ConfigurationProfilesVersionsGetResponse = ConfigurationProfile;
334
-
335
- // @public
336
- export interface ConfigurationProfilesVersionsListChildResourcesOptionalParams extends coreClient.OperationOptions {
337
- }
338
-
339
- // @public
340
- export type ConfigurationProfilesVersionsListChildResourcesResponse = ConfigurationProfileList;
341
-
342
- // @public
343
- export interface ConfigurationProfileUpdate extends UpdateResource {
344
- properties?: ConfigurationProfileProperties;
345
- }
346
-
347
- // @public
348
- export type CreatedByType = string;
349
-
350
- // @public
351
- export interface ErrorAdditionalInfo {
352
- readonly info?: Record<string, unknown>;
353
- readonly type?: string;
354
- }
355
-
356
- // @public
357
- export interface ErrorDetail {
358
- readonly additionalInfo?: ErrorAdditionalInfo[];
359
- readonly code?: string;
360
- readonly details?: ErrorDetail[];
361
- readonly message?: string;
362
- readonly target?: string;
363
- }
364
-
365
- // @public
366
- export interface ErrorResponse {
367
- error?: ErrorDetail;
368
- }
369
-
370
- // @public
371
- export function getContinuationToken(page: unknown): string | undefined;
372
-
373
- // @public
374
- export interface HCIReports {
375
- get(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, reportName: string, options?: HCIReportsGetOptionalParams): Promise<HCIReportsGetResponse>;
376
- listByConfigurationProfileAssignments(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, options?: HCIReportsListByConfigurationProfileAssignmentsOptionalParams): PagedAsyncIterableIterator<Report>;
377
- }
378
-
379
- // @public
380
- export interface HCIReportsGetOptionalParams extends coreClient.OperationOptions {
381
- }
382
-
383
- // @public
384
- export type HCIReportsGetResponse = Report;
385
-
386
- // @public
387
- export interface HCIReportsListByConfigurationProfileAssignmentsOptionalParams extends coreClient.OperationOptions {
388
- }
389
-
390
- // @public
391
- export type HCIReportsListByConfigurationProfileAssignmentsResponse = ReportList;
392
-
393
- // @public
394
- export interface HcrpReports {
395
- get(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, reportName: string, options?: HcrpReportsGetOptionalParams): Promise<HcrpReportsGetResponse>;
396
- listByConfigurationProfileAssignments(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, options?: HcrpReportsListByConfigurationProfileAssignmentsOptionalParams): PagedAsyncIterableIterator<Report>;
397
- }
398
-
399
- // @public
400
- export interface HcrpReportsGetOptionalParams extends coreClient.OperationOptions {
401
- }
402
-
403
- // @public
404
- export type HcrpReportsGetResponse = Report;
405
-
406
- // @public
407
- export interface HcrpReportsListByConfigurationProfileAssignmentsOptionalParams extends coreClient.OperationOptions {
408
- }
409
-
410
- // @public
411
- export type HcrpReportsListByConfigurationProfileAssignmentsResponse = ReportList;
412
-
413
- // @public
414
- export enum KnownActionType {
415
- Internal = "Internal"
416
- }
417
-
418
- // @public
419
- export enum KnownCreatedByType {
420
- Application = "Application",
421
- Key = "Key",
422
- ManagedIdentity = "ManagedIdentity",
423
- User = "User"
424
- }
425
-
426
- // @public
427
- export enum KnownOrigin {
428
- System = "system",
429
- User = "user",
430
- UserSystem = "user,system"
431
- }
432
-
433
- // @public
434
- export interface Operation {
435
- readonly actionType?: ActionType;
436
- display?: OperationDisplay;
437
- readonly isDataAction?: boolean;
438
- readonly name?: string;
439
- readonly origin?: Origin;
440
- }
441
-
442
- // @public
443
- export interface OperationDisplay {
444
- readonly description?: string;
445
- readonly operation?: string;
446
- readonly provider?: string;
447
- readonly resource?: string;
448
- }
449
-
450
- // @public
451
- export interface OperationListResult {
452
- readonly nextLink?: string;
453
- readonly value?: Operation[];
454
- }
455
-
456
- // @public
457
- export interface Operations {
458
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
459
- }
460
-
461
- // @public
462
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
463
- }
464
-
465
- // @public
466
- export type OperationsListResponse = OperationListResult;
467
-
468
- // @public
469
- export type Origin = string;
470
-
471
- // @public
472
- export interface ProxyResource extends Resource {
473
- }
474
-
475
- // @public
476
- export interface Report extends ProxyResource {
477
- readonly configurationProfile?: string;
478
- readonly duration?: string;
479
- endTime?: string;
480
- readonly error?: ErrorDetail;
481
- readonly lastModifiedTime?: string;
482
- readonly reportFormatVersion?: string;
483
- readonly resources?: ReportResource[];
484
- startTime?: string;
485
- readonly status?: string;
486
- readonly systemData?: SystemData;
487
- readonly typePropertiesType?: string;
488
- }
489
-
490
- // @public
491
- export interface ReportList {
492
- value?: Report[];
493
- }
494
-
495
- // @public
496
- export interface ReportResource {
497
- readonly error?: ErrorDetail;
498
- readonly id?: string;
499
- readonly name?: string;
500
- readonly status?: string;
501
- readonly type?: string;
502
- }
503
-
504
- // @public
505
- export interface Reports {
506
- get(resourceGroupName: string, configurationProfileAssignmentName: string, reportName: string, vmName: string, options?: ReportsGetOptionalParams): Promise<ReportsGetResponse>;
507
- listByConfigurationProfileAssignments(resourceGroupName: string, configurationProfileAssignmentName: string, vmName: string, options?: ReportsListByConfigurationProfileAssignmentsOptionalParams): PagedAsyncIterableIterator<Report>;
508
- }
509
-
510
- // @public
511
- export interface ReportsGetOptionalParams extends coreClient.OperationOptions {
512
- }
513
-
514
- // @public
515
- export type ReportsGetResponse = Report;
516
-
517
- // @public
518
- export interface ReportsListByConfigurationProfileAssignmentsOptionalParams extends coreClient.OperationOptions {
519
- }
520
-
521
- // @public
522
- export type ReportsListByConfigurationProfileAssignmentsResponse = ReportList;
523
-
524
- // @public
525
- export interface Resource {
526
- readonly id?: string;
527
- readonly name?: string;
528
- readonly type?: string;
529
- }
530
-
531
- // @public
532
- export interface ServicePrincipal extends ProxyResource {
533
- readonly authorizationSet?: boolean;
534
- readonly servicePrincipalId?: string;
535
- readonly systemData?: SystemData;
536
- }
537
-
538
- // @public
539
- export interface ServicePrincipalListResult {
540
- value?: ServicePrincipal[];
541
- }
542
-
543
- // @public
544
- export interface ServicePrincipals {
545
- get(options?: ServicePrincipalsGetOptionalParams): Promise<ServicePrincipalsGetResponse>;
546
- listBySubscription(options?: ServicePrincipalsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ServicePrincipal>;
547
- }
548
-
549
- // @public
550
- export interface ServicePrincipalsGetOptionalParams extends coreClient.OperationOptions {
551
- }
552
-
553
- // @public
554
- export type ServicePrincipalsGetResponse = ServicePrincipal;
555
-
556
- // @public
557
- export interface ServicePrincipalsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
558
- }
559
-
560
- // @public
561
- export type ServicePrincipalsListBySubscriptionResponse = ServicePrincipalListResult;
562
-
563
- // @public
564
- export interface SystemData {
565
- createdAt?: Date;
566
- createdBy?: string;
567
- createdByType?: CreatedByType;
568
- lastModifiedAt?: Date;
569
- lastModifiedBy?: string;
570
- lastModifiedByType?: CreatedByType;
571
- }
572
-
573
- // @public
574
- export interface TrackedResource extends Resource {
575
- location: string;
576
- tags?: {
577
- [propertyName: string]: string;
578
- };
579
- }
580
-
581
- // @public
582
- export interface UpdateResource {
583
- tags?: {
584
- [propertyName: string]: string;
585
- };
586
- }
587
-
588
- // (No @packageDocumentation comment for this package)
589
-
590
- ```
1
+ ## API Report File for "@azure/arm-automanage"
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 type ActionType = string;
13
+
14
+ // @public (undocumented)
15
+ export class AutomanageClient extends coreClient.ServiceClient {
16
+ // (undocumented)
17
+ $host: string;
18
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AutomanageClientOptionalParams);
19
+ // (undocumented)
20
+ apiVersion: string;
21
+ // (undocumented)
22
+ bestPractices: BestPractices;
23
+ // (undocumented)
24
+ bestPracticesVersions: BestPracticesVersions;
25
+ // (undocumented)
26
+ configurationProfileAssignments: ConfigurationProfileAssignments;
27
+ // (undocumented)
28
+ configurationProfileHCIAssignments: ConfigurationProfileHCIAssignments;
29
+ // (undocumented)
30
+ configurationProfileHcrpAssignments: ConfigurationProfileHcrpAssignments;
31
+ // (undocumented)
32
+ configurationProfiles: ConfigurationProfiles;
33
+ // (undocumented)
34
+ configurationProfilesVersions: ConfigurationProfilesVersions;
35
+ // (undocumented)
36
+ hCIReports: HCIReports;
37
+ // (undocumented)
38
+ hcrpReports: HcrpReports;
39
+ // (undocumented)
40
+ operations: Operations;
41
+ // (undocumented)
42
+ reports: Reports;
43
+ // (undocumented)
44
+ servicePrincipals: ServicePrincipals;
45
+ // (undocumented)
46
+ subscriptionId: string;
47
+ }
48
+
49
+ // @public
50
+ export interface AutomanageClientOptionalParams extends coreClient.ServiceClientOptions {
51
+ $host?: string;
52
+ apiVersion?: string;
53
+ endpoint?: string;
54
+ }
55
+
56
+ // @public
57
+ export interface BestPractice {
58
+ configuration?: Record<string, unknown>;
59
+ readonly id?: string;
60
+ readonly name?: string;
61
+ readonly systemData?: SystemData;
62
+ readonly type?: string;
63
+ }
64
+
65
+ // @public
66
+ export interface BestPracticeList {
67
+ value?: BestPractice[];
68
+ }
69
+
70
+ // @public
71
+ export interface BestPractices {
72
+ get(bestPracticeName: string, options?: BestPracticesGetOptionalParams): Promise<BestPracticesGetResponse>;
73
+ listByTenant(options?: BestPracticesListByTenantOptionalParams): PagedAsyncIterableIterator<BestPractice>;
74
+ }
75
+
76
+ // @public
77
+ export interface BestPracticesGetOptionalParams extends coreClient.OperationOptions {
78
+ }
79
+
80
+ // @public
81
+ export type BestPracticesGetResponse = BestPractice;
82
+
83
+ // @public
84
+ export interface BestPracticesListByTenantOptionalParams extends coreClient.OperationOptions {
85
+ }
86
+
87
+ // @public
88
+ export type BestPracticesListByTenantResponse = BestPracticeList;
89
+
90
+ // @public
91
+ export interface BestPracticesVersions {
92
+ get(bestPracticeName: string, versionName: string, options?: BestPracticesVersionsGetOptionalParams): Promise<BestPracticesVersionsGetResponse>;
93
+ listByTenant(bestPracticeName: string, options?: BestPracticesVersionsListByTenantOptionalParams): PagedAsyncIterableIterator<BestPractice>;
94
+ }
95
+
96
+ // @public
97
+ export interface BestPracticesVersionsGetOptionalParams extends coreClient.OperationOptions {
98
+ }
99
+
100
+ // @public
101
+ export type BestPracticesVersionsGetResponse = BestPractice;
102
+
103
+ // @public
104
+ export interface BestPracticesVersionsListByTenantOptionalParams extends coreClient.OperationOptions {
105
+ }
106
+
107
+ // @public
108
+ export type BestPracticesVersionsListByTenantResponse = BestPracticeList;
109
+
110
+ // @public
111
+ export interface ConfigurationProfile extends TrackedResource {
112
+ properties?: ConfigurationProfileProperties;
113
+ readonly systemData?: SystemData;
114
+ }
115
+
116
+ // @public
117
+ export interface ConfigurationProfileAssignment extends ProxyResource {
118
+ readonly managedBy?: string;
119
+ properties?: ConfigurationProfileAssignmentProperties;
120
+ readonly systemData?: SystemData;
121
+ }
122
+
123
+ // @public
124
+ export interface ConfigurationProfileAssignmentList {
125
+ value?: ConfigurationProfileAssignment[];
126
+ }
127
+
128
+ // @public
129
+ export interface ConfigurationProfileAssignmentProperties {
130
+ configurationProfile?: string;
131
+ readonly status?: string;
132
+ readonly targetId?: string;
133
+ }
134
+
135
+ // @public
136
+ export interface ConfigurationProfileAssignments {
137
+ createOrUpdate(configurationProfileAssignmentName: string, resourceGroupName: string, vmName: string, parameters: ConfigurationProfileAssignment, options?: ConfigurationProfileAssignmentsCreateOrUpdateOptionalParams): Promise<ConfigurationProfileAssignmentsCreateOrUpdateResponse>;
138
+ delete(resourceGroupName: string, configurationProfileAssignmentName: string, vmName: string, options?: ConfigurationProfileAssignmentsDeleteOptionalParams): Promise<void>;
139
+ get(resourceGroupName: string, configurationProfileAssignmentName: string, vmName: string, options?: ConfigurationProfileAssignmentsGetOptionalParams): Promise<ConfigurationProfileAssignmentsGetResponse>;
140
+ list(resourceGroupName: string, options?: ConfigurationProfileAssignmentsListOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
141
+ listByClusterName(resourceGroupName: string, clusterName: string, options?: ConfigurationProfileAssignmentsListByClusterNameOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
142
+ listByMachineName(resourceGroupName: string, machineName: string, options?: ConfigurationProfileAssignmentsListByMachineNameOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
143
+ listBySubscription(options?: ConfigurationProfileAssignmentsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
144
+ listByVirtualMachines(resourceGroupName: string, vmName: string, options?: ConfigurationProfileAssignmentsListByVirtualMachinesOptionalParams): PagedAsyncIterableIterator<ConfigurationProfileAssignment>;
145
+ }
146
+
147
+ // @public
148
+ export interface ConfigurationProfileAssignmentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
149
+ }
150
+
151
+ // @public
152
+ export type ConfigurationProfileAssignmentsCreateOrUpdateResponse = ConfigurationProfileAssignment;
153
+
154
+ // @public
155
+ export interface ConfigurationProfileAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
156
+ }
157
+
158
+ // @public
159
+ export interface ConfigurationProfileAssignmentsGetOptionalParams extends coreClient.OperationOptions {
160
+ }
161
+
162
+ // @public
163
+ export type ConfigurationProfileAssignmentsGetResponse = ConfigurationProfileAssignment;
164
+
165
+ // @public
166
+ export interface ConfigurationProfileAssignmentsListByClusterNameOptionalParams extends coreClient.OperationOptions {
167
+ }
168
+
169
+ // @public
170
+ export type ConfigurationProfileAssignmentsListByClusterNameResponse = ConfigurationProfileAssignmentList;
171
+
172
+ // @public
173
+ export interface ConfigurationProfileAssignmentsListByMachineNameOptionalParams extends coreClient.OperationOptions {
174
+ }
175
+
176
+ // @public
177
+ export type ConfigurationProfileAssignmentsListByMachineNameResponse = ConfigurationProfileAssignmentList;
178
+
179
+ // @public
180
+ export interface ConfigurationProfileAssignmentsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
181
+ }
182
+
183
+ // @public
184
+ export type ConfigurationProfileAssignmentsListBySubscriptionResponse = ConfigurationProfileAssignmentList;
185
+
186
+ // @public
187
+ export interface ConfigurationProfileAssignmentsListByVirtualMachinesOptionalParams extends coreClient.OperationOptions {
188
+ }
189
+
190
+ // @public
191
+ export type ConfigurationProfileAssignmentsListByVirtualMachinesResponse = ConfigurationProfileAssignmentList;
192
+
193
+ // @public
194
+ export interface ConfigurationProfileAssignmentsListOptionalParams extends coreClient.OperationOptions {
195
+ }
196
+
197
+ // @public
198
+ export type ConfigurationProfileAssignmentsListResponse = ConfigurationProfileAssignmentList;
199
+
200
+ // @public
201
+ export interface ConfigurationProfileHCIAssignments {
202
+ createOrUpdate(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, parameters: ConfigurationProfileAssignment, options?: ConfigurationProfileHCIAssignmentsCreateOrUpdateOptionalParams): Promise<ConfigurationProfileHCIAssignmentsCreateOrUpdateResponse>;
203
+ delete(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHCIAssignmentsDeleteOptionalParams): Promise<void>;
204
+ get(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHCIAssignmentsGetOptionalParams): Promise<ConfigurationProfileHCIAssignmentsGetResponse>;
205
+ }
206
+
207
+ // @public
208
+ export interface ConfigurationProfileHCIAssignmentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
209
+ }
210
+
211
+ // @public
212
+ export type ConfigurationProfileHCIAssignmentsCreateOrUpdateResponse = ConfigurationProfileAssignment;
213
+
214
+ // @public
215
+ export interface ConfigurationProfileHCIAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
216
+ }
217
+
218
+ // @public
219
+ export interface ConfigurationProfileHCIAssignmentsGetOptionalParams extends coreClient.OperationOptions {
220
+ }
221
+
222
+ // @public
223
+ export type ConfigurationProfileHCIAssignmentsGetResponse = ConfigurationProfileAssignment;
224
+
225
+ // @public
226
+ export interface ConfigurationProfileHcrpAssignments {
227
+ createOrUpdate(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, parameters: ConfigurationProfileAssignment, options?: ConfigurationProfileHcrpAssignmentsCreateOrUpdateOptionalParams): Promise<ConfigurationProfileHcrpAssignmentsCreateOrUpdateResponse>;
228
+ delete(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHcrpAssignmentsDeleteOptionalParams): Promise<void>;
229
+ get(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, options?: ConfigurationProfileHcrpAssignmentsGetOptionalParams): Promise<ConfigurationProfileHcrpAssignmentsGetResponse>;
230
+ }
231
+
232
+ // @public
233
+ export interface ConfigurationProfileHcrpAssignmentsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
234
+ }
235
+
236
+ // @public
237
+ export type ConfigurationProfileHcrpAssignmentsCreateOrUpdateResponse = ConfigurationProfileAssignment;
238
+
239
+ // @public
240
+ export interface ConfigurationProfileHcrpAssignmentsDeleteOptionalParams extends coreClient.OperationOptions {
241
+ }
242
+
243
+ // @public
244
+ export interface ConfigurationProfileHcrpAssignmentsGetOptionalParams extends coreClient.OperationOptions {
245
+ }
246
+
247
+ // @public
248
+ export type ConfigurationProfileHcrpAssignmentsGetResponse = ConfigurationProfileAssignment;
249
+
250
+ // @public
251
+ export interface ConfigurationProfileList {
252
+ value?: ConfigurationProfile[];
253
+ }
254
+
255
+ // @public
256
+ export interface ConfigurationProfileProperties {
257
+ configuration?: Record<string, unknown>;
258
+ }
259
+
260
+ // @public
261
+ export interface ConfigurationProfiles {
262
+ createOrUpdate(configurationProfileName: string, resourceGroupName: string, parameters: ConfigurationProfile, options?: ConfigurationProfilesCreateOrUpdateOptionalParams): Promise<ConfigurationProfilesCreateOrUpdateResponse>;
263
+ delete(resourceGroupName: string, configurationProfileName: string, options?: ConfigurationProfilesDeleteOptionalParams): Promise<void>;
264
+ get(configurationProfileName: string, resourceGroupName: string, options?: ConfigurationProfilesGetOptionalParams): Promise<ConfigurationProfilesGetResponse>;
265
+ listByResourceGroup(resourceGroupName: string, options?: ConfigurationProfilesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ConfigurationProfile>;
266
+ listBySubscription(options?: ConfigurationProfilesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ConfigurationProfile>;
267
+ update(configurationProfileName: string, resourceGroupName: string, parameters: ConfigurationProfileUpdate, options?: ConfigurationProfilesUpdateOptionalParams): Promise<ConfigurationProfilesUpdateResponse>;
268
+ }
269
+
270
+ // @public
271
+ export interface ConfigurationProfilesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
272
+ }
273
+
274
+ // @public
275
+ export type ConfigurationProfilesCreateOrUpdateResponse = ConfigurationProfile;
276
+
277
+ // @public
278
+ export interface ConfigurationProfilesDeleteOptionalParams extends coreClient.OperationOptions {
279
+ }
280
+
281
+ // @public
282
+ export interface ConfigurationProfilesGetOptionalParams extends coreClient.OperationOptions {
283
+ }
284
+
285
+ // @public
286
+ export type ConfigurationProfilesGetResponse = ConfigurationProfile;
287
+
288
+ // @public
289
+ export interface ConfigurationProfilesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
290
+ }
291
+
292
+ // @public
293
+ export type ConfigurationProfilesListByResourceGroupResponse = ConfigurationProfileList;
294
+
295
+ // @public
296
+ export interface ConfigurationProfilesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
297
+ }
298
+
299
+ // @public
300
+ export type ConfigurationProfilesListBySubscriptionResponse = ConfigurationProfileList;
301
+
302
+ // @public
303
+ export interface ConfigurationProfilesUpdateOptionalParams extends coreClient.OperationOptions {
304
+ }
305
+
306
+ // @public
307
+ export type ConfigurationProfilesUpdateResponse = ConfigurationProfile;
308
+
309
+ // @public
310
+ export interface ConfigurationProfilesVersions {
311
+ createOrUpdate(configurationProfileName: string, versionName: string, resourceGroupName: string, parameters: ConfigurationProfile, options?: ConfigurationProfilesVersionsCreateOrUpdateOptionalParams): Promise<ConfigurationProfilesVersionsCreateOrUpdateResponse>;
312
+ delete(resourceGroupName: string, configurationProfileName: string, versionName: string, options?: ConfigurationProfilesVersionsDeleteOptionalParams): Promise<void>;
313
+ get(configurationProfileName: string, versionName: string, resourceGroupName: string, options?: ConfigurationProfilesVersionsGetOptionalParams): Promise<ConfigurationProfilesVersionsGetResponse>;
314
+ listChildResources(configurationProfileName: string, resourceGroupName: string, options?: ConfigurationProfilesVersionsListChildResourcesOptionalParams): PagedAsyncIterableIterator<ConfigurationProfile>;
315
+ }
316
+
317
+ // @public
318
+ export interface ConfigurationProfilesVersionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
319
+ }
320
+
321
+ // @public
322
+ export type ConfigurationProfilesVersionsCreateOrUpdateResponse = ConfigurationProfile;
323
+
324
+ // @public
325
+ export interface ConfigurationProfilesVersionsDeleteOptionalParams extends coreClient.OperationOptions {
326
+ }
327
+
328
+ // @public
329
+ export interface ConfigurationProfilesVersionsGetOptionalParams extends coreClient.OperationOptions {
330
+ }
331
+
332
+ // @public
333
+ export type ConfigurationProfilesVersionsGetResponse = ConfigurationProfile;
334
+
335
+ // @public
336
+ export interface ConfigurationProfilesVersionsListChildResourcesOptionalParams extends coreClient.OperationOptions {
337
+ }
338
+
339
+ // @public
340
+ export type ConfigurationProfilesVersionsListChildResourcesResponse = ConfigurationProfileList;
341
+
342
+ // @public
343
+ export interface ConfigurationProfileUpdate extends UpdateResource {
344
+ properties?: ConfigurationProfileProperties;
345
+ }
346
+
347
+ // @public
348
+ export type CreatedByType = string;
349
+
350
+ // @public
351
+ export interface ErrorAdditionalInfo {
352
+ readonly info?: Record<string, unknown>;
353
+ readonly type?: string;
354
+ }
355
+
356
+ // @public
357
+ export interface ErrorDetail {
358
+ readonly additionalInfo?: ErrorAdditionalInfo[];
359
+ readonly code?: string;
360
+ readonly details?: ErrorDetail[];
361
+ readonly message?: string;
362
+ readonly target?: string;
363
+ }
364
+
365
+ // @public
366
+ export interface ErrorResponse {
367
+ error?: ErrorDetail;
368
+ }
369
+
370
+ // @public
371
+ export function getContinuationToken(page: unknown): string | undefined;
372
+
373
+ // @public
374
+ export interface HCIReports {
375
+ get(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, reportName: string, options?: HCIReportsGetOptionalParams): Promise<HCIReportsGetResponse>;
376
+ listByConfigurationProfileAssignments(resourceGroupName: string, clusterName: string, configurationProfileAssignmentName: string, options?: HCIReportsListByConfigurationProfileAssignmentsOptionalParams): PagedAsyncIterableIterator<Report>;
377
+ }
378
+
379
+ // @public
380
+ export interface HCIReportsGetOptionalParams extends coreClient.OperationOptions {
381
+ }
382
+
383
+ // @public
384
+ export type HCIReportsGetResponse = Report;
385
+
386
+ // @public
387
+ export interface HCIReportsListByConfigurationProfileAssignmentsOptionalParams extends coreClient.OperationOptions {
388
+ }
389
+
390
+ // @public
391
+ export type HCIReportsListByConfigurationProfileAssignmentsResponse = ReportList;
392
+
393
+ // @public
394
+ export interface HcrpReports {
395
+ get(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, reportName: string, options?: HcrpReportsGetOptionalParams): Promise<HcrpReportsGetResponse>;
396
+ listByConfigurationProfileAssignments(resourceGroupName: string, machineName: string, configurationProfileAssignmentName: string, options?: HcrpReportsListByConfigurationProfileAssignmentsOptionalParams): PagedAsyncIterableIterator<Report>;
397
+ }
398
+
399
+ // @public
400
+ export interface HcrpReportsGetOptionalParams extends coreClient.OperationOptions {
401
+ }
402
+
403
+ // @public
404
+ export type HcrpReportsGetResponse = Report;
405
+
406
+ // @public
407
+ export interface HcrpReportsListByConfigurationProfileAssignmentsOptionalParams extends coreClient.OperationOptions {
408
+ }
409
+
410
+ // @public
411
+ export type HcrpReportsListByConfigurationProfileAssignmentsResponse = ReportList;
412
+
413
+ // @public
414
+ export enum KnownActionType {
415
+ Internal = "Internal"
416
+ }
417
+
418
+ // @public
419
+ export enum KnownCreatedByType {
420
+ Application = "Application",
421
+ Key = "Key",
422
+ ManagedIdentity = "ManagedIdentity",
423
+ User = "User"
424
+ }
425
+
426
+ // @public
427
+ export enum KnownOrigin {
428
+ System = "system",
429
+ User = "user",
430
+ UserSystem = "user,system"
431
+ }
432
+
433
+ // @public
434
+ export interface Operation {
435
+ readonly actionType?: ActionType;
436
+ display?: OperationDisplay;
437
+ readonly isDataAction?: boolean;
438
+ readonly name?: string;
439
+ readonly origin?: Origin;
440
+ }
441
+
442
+ // @public
443
+ export interface OperationDisplay {
444
+ readonly description?: string;
445
+ readonly operation?: string;
446
+ readonly provider?: string;
447
+ readonly resource?: string;
448
+ }
449
+
450
+ // @public
451
+ export interface OperationListResult {
452
+ readonly nextLink?: string;
453
+ readonly value?: Operation[];
454
+ }
455
+
456
+ // @public
457
+ export interface Operations {
458
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
459
+ }
460
+
461
+ // @public
462
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
463
+ }
464
+
465
+ // @public
466
+ export type OperationsListResponse = OperationListResult;
467
+
468
+ // @public
469
+ export type Origin = string;
470
+
471
+ // @public
472
+ export interface ProxyResource extends Resource {
473
+ }
474
+
475
+ // @public
476
+ export interface Report extends ProxyResource {
477
+ readonly configurationProfile?: string;
478
+ readonly duration?: string;
479
+ endTime?: string;
480
+ readonly error?: ErrorDetail;
481
+ readonly lastModifiedTime?: string;
482
+ readonly reportFormatVersion?: string;
483
+ readonly resources?: ReportResource[];
484
+ startTime?: string;
485
+ readonly status?: string;
486
+ readonly systemData?: SystemData;
487
+ readonly typePropertiesType?: string;
488
+ }
489
+
490
+ // @public
491
+ export interface ReportList {
492
+ value?: Report[];
493
+ }
494
+
495
+ // @public
496
+ export interface ReportResource {
497
+ readonly error?: ErrorDetail;
498
+ readonly id?: string;
499
+ readonly name?: string;
500
+ readonly status?: string;
501
+ readonly type?: string;
502
+ }
503
+
504
+ // @public
505
+ export interface Reports {
506
+ get(resourceGroupName: string, configurationProfileAssignmentName: string, reportName: string, vmName: string, options?: ReportsGetOptionalParams): Promise<ReportsGetResponse>;
507
+ listByConfigurationProfileAssignments(resourceGroupName: string, configurationProfileAssignmentName: string, vmName: string, options?: ReportsListByConfigurationProfileAssignmentsOptionalParams): PagedAsyncIterableIterator<Report>;
508
+ }
509
+
510
+ // @public
511
+ export interface ReportsGetOptionalParams extends coreClient.OperationOptions {
512
+ }
513
+
514
+ // @public
515
+ export type ReportsGetResponse = Report;
516
+
517
+ // @public
518
+ export interface ReportsListByConfigurationProfileAssignmentsOptionalParams extends coreClient.OperationOptions {
519
+ }
520
+
521
+ // @public
522
+ export type ReportsListByConfigurationProfileAssignmentsResponse = ReportList;
523
+
524
+ // @public
525
+ export interface Resource {
526
+ readonly id?: string;
527
+ readonly name?: string;
528
+ readonly type?: string;
529
+ }
530
+
531
+ // @public
532
+ export interface ServicePrincipal extends ProxyResource {
533
+ readonly authorizationSet?: boolean;
534
+ readonly servicePrincipalId?: string;
535
+ readonly systemData?: SystemData;
536
+ }
537
+
538
+ // @public
539
+ export interface ServicePrincipalListResult {
540
+ value?: ServicePrincipal[];
541
+ }
542
+
543
+ // @public
544
+ export interface ServicePrincipals {
545
+ get(options?: ServicePrincipalsGetOptionalParams): Promise<ServicePrincipalsGetResponse>;
546
+ listBySubscription(options?: ServicePrincipalsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ServicePrincipal>;
547
+ }
548
+
549
+ // @public
550
+ export interface ServicePrincipalsGetOptionalParams extends coreClient.OperationOptions {
551
+ }
552
+
553
+ // @public
554
+ export type ServicePrincipalsGetResponse = ServicePrincipal;
555
+
556
+ // @public
557
+ export interface ServicePrincipalsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
558
+ }
559
+
560
+ // @public
561
+ export type ServicePrincipalsListBySubscriptionResponse = ServicePrincipalListResult;
562
+
563
+ // @public
564
+ export interface SystemData {
565
+ createdAt?: Date;
566
+ createdBy?: string;
567
+ createdByType?: CreatedByType;
568
+ lastModifiedAt?: Date;
569
+ lastModifiedBy?: string;
570
+ lastModifiedByType?: CreatedByType;
571
+ }
572
+
573
+ // @public
574
+ export interface TrackedResource extends Resource {
575
+ location: string;
576
+ tags?: {
577
+ [propertyName: string]: string;
578
+ };
579
+ }
580
+
581
+ // @public
582
+ export interface UpdateResource {
583
+ tags?: {
584
+ [propertyName: string]: string;
585
+ };
586
+ }
587
+
588
+ // (No @packageDocumentation comment for this package)
589
+
590
+ ```