@azure/arm-springappdiscovery 1.0.0-alpha.20250620.1 → 1.0.0-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.
@@ -1,696 +1,696 @@
1
- ## API Report File for "@azure/arm-springappdiscovery"
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 { OperationState } from '@azure/core-lro';
10
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
11
- import { SimplePollerLike } from '@azure/core-lro';
12
-
13
- // @public
14
- export type ActionType = string;
15
-
16
- // @public
17
- export type CreatedByType = string;
18
-
19
- // @public
20
- export interface ErrorAdditionalInfo {
21
- readonly info?: Record<string, unknown>;
22
- readonly type?: string;
23
- }
24
-
25
- // @public
26
- export interface ErrorDetail {
27
- readonly additionalInfo?: ErrorAdditionalInfo[];
28
- readonly code?: string;
29
- readonly details?: ErrorDetail[];
30
- readonly message?: string;
31
- readonly target?: string;
32
- }
33
-
34
- // @public
35
- export interface ErrorModel {
36
- code?: string;
37
- id?: number;
38
- message?: string;
39
- possibleCauses?: string;
40
- recommendedAction?: string;
41
- runAsAccountId?: string;
42
- severity?: string;
43
- summaryMessage?: string;
44
- updatedTimeStamp?: Date;
45
- }
46
-
47
- // @public
48
- export interface ErrorResponse {
49
- error?: ErrorDetail;
50
- }
51
-
52
- // @public
53
- export interface ErrorSummaries {
54
- get(resourceGroupName: string, siteName: string, errorSummaryName: string, options?: ErrorSummariesGetOptionalParams): Promise<ErrorSummariesGetResponse>;
55
- listBySite(resourceGroupName: string, siteName: string, options?: ErrorSummariesListBySiteOptionalParams): PagedAsyncIterableIterator<ErrorSummary>;
56
- }
57
-
58
- // @public
59
- export interface ErrorSummariesGetOptionalParams extends coreClient.OperationOptions {
60
- }
61
-
62
- // @public
63
- export type ErrorSummariesGetResponse = ErrorSummary;
64
-
65
- // @public
66
- export interface ErrorSummariesListBySiteNextOptionalParams extends coreClient.OperationOptions {
67
- }
68
-
69
- // @public
70
- export type ErrorSummariesListBySiteNextResponse = ErrorSummaryList;
71
-
72
- // @public
73
- export interface ErrorSummariesListBySiteOptionalParams extends coreClient.OperationOptions {
74
- }
75
-
76
- // @public
77
- export type ErrorSummariesListBySiteResponse = ErrorSummaryList;
78
-
79
- // @public
80
- export interface ErrorSummariesProperties {
81
- discoveryScopeErrorSummaries?: ErrorSummaryModel[];
82
- errors?: ErrorModel[];
83
- provisioningState?: ProvisioningState;
84
- }
85
-
86
- // @public
87
- export interface ErrorSummariesResourcePatch {
88
- properties?: ErrorSummariesProperties;
89
- tags?: {
90
- [propertyName: string]: string;
91
- };
92
- }
93
-
94
- // @public
95
- export interface ErrorSummary extends ProxyResource {
96
- properties?: ErrorSummariesProperties;
97
- tags?: {
98
- [propertyName: string]: string;
99
- };
100
- }
101
-
102
- // @public
103
- export interface ErrorSummaryList {
104
- nextLink?: string;
105
- value?: ErrorSummary[];
106
- }
107
-
108
- // @public
109
- export interface ErrorSummaryModel {
110
- affectedObjectsCount?: number;
111
- affectedResourceType?: string;
112
- }
113
-
114
- // @public
115
- export function getContinuationToken(page: unknown): string | undefined;
116
-
117
- // @public
118
- export enum KnownActionType {
119
- Internal = "Internal"
120
- }
121
-
122
- // @public
123
- export enum KnownCreatedByType {
124
- Application = "Application",
125
- Key = "Key",
126
- ManagedIdentity = "ManagedIdentity",
127
- User = "User"
128
- }
129
-
130
- // @public
131
- export enum KnownOrigin {
132
- System = "system",
133
- User = "user",
134
- UserSystem = "user,system"
135
- }
136
-
137
- // @public
138
- export enum KnownProvisioningState {
139
- Accepted = "Accepted",
140
- Canceled = "Canceled",
141
- Deleting = "Deleting",
142
- Failed = "Failed",
143
- Provisioning = "Provisioning",
144
- Succeeded = "Succeeded",
145
- Unknown = "Unknown"
146
- }
147
-
148
- // @public
149
- export interface Operation {
150
- readonly actionType?: ActionType;
151
- display?: OperationDisplay;
152
- readonly isDataAction?: boolean;
153
- readonly name?: string;
154
- readonly origin?: Origin;
155
- }
156
-
157
- // @public
158
- export interface OperationDisplay {
159
- readonly description?: string;
160
- readonly operation?: string;
161
- readonly provider?: string;
162
- readonly resource?: string;
163
- }
164
-
165
- // @public
166
- export interface OperationListResult {
167
- readonly nextLink?: string;
168
- readonly value?: Operation[];
169
- }
170
-
171
- // @public
172
- export interface Operations {
173
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
174
- }
175
-
176
- // @public
177
- export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
178
- }
179
-
180
- // @public
181
- export type OperationsListNextResponse = OperationListResult;
182
-
183
- // @public
184
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
185
- }
186
-
187
- // @public
188
- export type OperationsListResponse = OperationListResult;
189
-
190
- // @public
191
- export type Origin = string;
192
-
193
- // @public
194
- export type ProvisioningState = string;
195
-
196
- // @public
197
- export interface ProxyResource extends Resource {
198
- }
199
-
200
- // @public
201
- export interface Resource {
202
- readonly id?: string;
203
- readonly name?: string;
204
- readonly systemData?: SystemData;
205
- readonly type?: string;
206
- }
207
-
208
- // @public (undocumented)
209
- export class SpringAppDiscoveryManagementClient extends coreClient.ServiceClient {
210
- // (undocumented)
211
- $host: string;
212
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: SpringAppDiscoveryManagementClientOptionalParams);
213
- // (undocumented)
214
- apiVersion: string;
215
- // (undocumented)
216
- errorSummaries: ErrorSummaries;
217
- // (undocumented)
218
- operations: Operations;
219
- // (undocumented)
220
- springbootapps: Springbootapps;
221
- // (undocumented)
222
- springbootservers: Springbootservers;
223
- // (undocumented)
224
- springbootsites: Springbootsites;
225
- // (undocumented)
226
- subscriptionId: string;
227
- // (undocumented)
228
- summaries: Summaries;
229
- }
230
-
231
- // @public
232
- export interface SpringAppDiscoveryManagementClientOptionalParams extends coreClient.ServiceClientOptions {
233
- $host?: string;
234
- apiVersion?: string;
235
- endpoint?: string;
236
- }
237
-
238
- // @public
239
- export interface Springbootapps {
240
- beginUpdate(resourceGroupName: string, siteName: string, springbootappsName: string, springbootapps: SpringbootappsPatch, options?: SpringbootappsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootappsUpdateResponse>, SpringbootappsUpdateResponse>>;
241
- beginUpdateAndWait(resourceGroupName: string, siteName: string, springbootappsName: string, springbootapps: SpringbootappsPatch, options?: SpringbootappsUpdateOptionalParams): Promise<SpringbootappsUpdateResponse>;
242
- get(resourceGroupName: string, siteName: string, springbootappsName: string, options?: SpringbootappsGetOptionalParams): Promise<SpringbootappsGetResponse>;
243
- listByResourceGroup(resourceGroupName: string, siteName: string, options?: SpringbootappsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SpringbootappsModel>;
244
- listBySubscription(siteName: string, options?: SpringbootappsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SpringbootappsModel>;
245
- }
246
-
247
- // @public
248
- export interface SpringbootappsGetOptionalParams extends coreClient.OperationOptions {
249
- }
250
-
251
- // @public
252
- export type SpringbootappsGetResponse = SpringbootappsModel;
253
-
254
- // @public
255
- export interface SpringbootappsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
256
- }
257
-
258
- // @public
259
- export type SpringbootappsListByResourceGroupNextResponse = SpringbootappsListResult;
260
-
261
- // @public
262
- export interface SpringbootappsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
263
- }
264
-
265
- // @public
266
- export type SpringbootappsListByResourceGroupResponse = SpringbootappsListResult;
267
-
268
- // @public
269
- export interface SpringbootappsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
270
- }
271
-
272
- // @public
273
- export type SpringbootappsListBySubscriptionNextResponse = SpringbootappsListResult;
274
-
275
- // @public
276
- export interface SpringbootappsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
277
- }
278
-
279
- // @public
280
- export type SpringbootappsListBySubscriptionResponse = SpringbootappsListResult;
281
-
282
- // @public
283
- export interface SpringbootappsListResult {
284
- nextLink?: string;
285
- value?: SpringbootappsModel[];
286
- }
287
-
288
- // @public
289
- export interface SpringbootappsModel extends ProxyResource {
290
- properties?: SpringbootappsProperties;
291
- tags?: {
292
- [propertyName: string]: string;
293
- };
294
- }
295
-
296
- // @public
297
- export interface SpringbootappsPatch extends ProxyResource {
298
- properties?: SpringbootappsProperties;
299
- tags?: {
300
- [propertyName: string]: string;
301
- };
302
- }
303
-
304
- // @public
305
- export interface SpringbootappsProperties {
306
- applicationConfigurations?: SpringbootappsPropertiesApplicationConfigurationsItem[];
307
- appName?: string;
308
- appPort?: number;
309
- appType?: string;
310
- artifactName?: string;
311
- bindingPorts?: number[];
312
- buildJdkVersion?: string;
313
- certificates?: string[];
314
- checksum?: string;
315
- connectionStrings?: string[];
316
- dependencies?: string[];
317
- environments?: string[];
318
- errors?: ErrorModel[];
319
- instanceCount?: number;
320
- instances?: SpringbootappsPropertiesInstancesItem[];
321
- jarFileLocation?: string;
322
- jvmMemoryInMB?: number;
323
- jvmOptions?: string[];
324
- lastModifiedTime?: Date;
325
- lastUpdatedTime?: Date;
326
- machineArmIds?: string[];
327
- miscs?: SpringbootappsPropertiesMiscsItem[];
328
- provisioningState?: ProvisioningState;
329
- runtimeJdkVersion?: string;
330
- servers?: string[];
331
- siteName?: string;
332
- springBootVersion?: string;
333
- staticContentLocations?: string[];
334
- }
335
-
336
- // @public (undocumented)
337
- export interface SpringbootappsPropertiesApplicationConfigurationsItem {
338
- key: string;
339
- value?: string;
340
- }
341
-
342
- // @public (undocumented)
343
- export interface SpringbootappsPropertiesInstancesItem {
344
- instanceCount?: number;
345
- jvmMemoryInMB?: number;
346
- machineArmId: string;
347
- }
348
-
349
- // @public (undocumented)
350
- export interface SpringbootappsPropertiesMiscsItem {
351
- key: string;
352
- value?: string;
353
- }
354
-
355
- // @public
356
- export interface SpringbootappsUpdateHeaders {
357
- // (undocumented)
358
- location?: string;
359
- }
360
-
361
- // @public
362
- export interface SpringbootappsUpdateOptionalParams extends coreClient.OperationOptions {
363
- resumeFrom?: string;
364
- updateIntervalInMs?: number;
365
- }
366
-
367
- // @public
368
- export type SpringbootappsUpdateResponse = SpringbootappsModel;
369
-
370
- // @public
371
- export interface Springbootservers {
372
- beginDelete(resourceGroupName: string, siteName: string, springbootserversName: string, options?: SpringbootserversDeleteOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootserversDeleteResponse>, SpringbootserversDeleteResponse>>;
373
- beginDeleteAndWait(resourceGroupName: string, siteName: string, springbootserversName: string, options?: SpringbootserversDeleteOptionalParams): Promise<SpringbootserversDeleteResponse>;
374
- beginUpdate(resourceGroupName: string, siteName: string, springbootserversName: string, springbootservers: SpringbootserversPatch, options?: SpringbootserversUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootserversUpdateResponse>, SpringbootserversUpdateResponse>>;
375
- beginUpdateAndWait(resourceGroupName: string, siteName: string, springbootserversName: string, springbootservers: SpringbootserversPatch, options?: SpringbootserversUpdateOptionalParams): Promise<SpringbootserversUpdateResponse>;
376
- createOrUpdate(resourceGroupName: string, siteName: string, springbootserversName: string, springbootservers: SpringbootserversModel, options?: SpringbootserversCreateOrUpdateOptionalParams): Promise<SpringbootserversCreateOrUpdateResponse>;
377
- get(resourceGroupName: string, siteName: string, springbootserversName: string, options?: SpringbootserversGetOptionalParams): Promise<SpringbootserversGetResponse>;
378
- listByResourceGroup(resourceGroupName: string, siteName: string, options?: SpringbootserversListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SpringbootserversModel>;
379
- listBySubscription(siteName: string, options?: SpringbootserversListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SpringbootserversModel>;
380
- }
381
-
382
- // @public
383
- export interface SpringbootserversCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
384
- }
385
-
386
- // @public
387
- export type SpringbootserversCreateOrUpdateResponse = SpringbootserversModel;
388
-
389
- // @public
390
- export interface SpringbootserversDeleteHeaders {
391
- // (undocumented)
392
- location?: string;
393
- }
394
-
395
- // @public
396
- export interface SpringbootserversDeleteOptionalParams extends coreClient.OperationOptions {
397
- resumeFrom?: string;
398
- updateIntervalInMs?: number;
399
- }
400
-
401
- // @public
402
- export type SpringbootserversDeleteResponse = SpringbootserversDeleteHeaders;
403
-
404
- // @public
405
- export interface SpringbootserversGetOptionalParams extends coreClient.OperationOptions {
406
- }
407
-
408
- // @public
409
- export type SpringbootserversGetResponse = SpringbootserversModel;
410
-
411
- // @public
412
- export interface SpringbootserversListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
413
- }
414
-
415
- // @public
416
- export type SpringbootserversListByResourceGroupNextResponse = SpringbootserversListResult;
417
-
418
- // @public
419
- export interface SpringbootserversListByResourceGroupOptionalParams extends coreClient.OperationOptions {
420
- }
421
-
422
- // @public
423
- export type SpringbootserversListByResourceGroupResponse = SpringbootserversListResult;
424
-
425
- // @public
426
- export interface SpringbootserversListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
427
- }
428
-
429
- // @public
430
- export type SpringbootserversListBySubscriptionNextResponse = SpringbootserversListResult;
431
-
432
- // @public
433
- export interface SpringbootserversListBySubscriptionOptionalParams extends coreClient.OperationOptions {
434
- }
435
-
436
- // @public
437
- export type SpringbootserversListBySubscriptionResponse = SpringbootserversListResult;
438
-
439
- // @public
440
- export interface SpringbootserversListResult {
441
- nextLink?: string;
442
- value?: SpringbootserversModel[];
443
- }
444
-
445
- // @public
446
- export interface SpringbootserversModel extends ProxyResource {
447
- properties?: SpringbootserversProperties;
448
- tags?: {
449
- [propertyName: string]: string;
450
- };
451
- }
452
-
453
- // @public
454
- export interface SpringbootserversPatch extends ProxyResource {
455
- properties?: SpringbootserversProperties;
456
- tags?: {
457
- [propertyName: string]: string;
458
- };
459
- }
460
-
461
- // @public
462
- export interface SpringbootserversProperties {
463
- errors?: ErrorModel[];
464
- fqdnAndIpAddressList?: string[];
465
- machineArmId?: string;
466
- port?: number;
467
- provisioningState?: ProvisioningState;
468
- server: string;
469
- springBootApps?: number;
470
- totalApps?: number;
471
- }
472
-
473
- // @public
474
- export interface SpringbootserversUpdateHeaders {
475
- // (undocumented)
476
- location?: string;
477
- }
478
-
479
- // @public
480
- export interface SpringbootserversUpdateOptionalParams extends coreClient.OperationOptions {
481
- resumeFrom?: string;
482
- updateIntervalInMs?: number;
483
- }
484
-
485
- // @public
486
- export type SpringbootserversUpdateResponse = SpringbootserversModel;
487
-
488
- // @public
489
- export interface Springbootsites {
490
- beginDelete(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootsitesDeleteResponse>, SpringbootsitesDeleteResponse>>;
491
- beginDeleteAndWait(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesDeleteOptionalParams): Promise<SpringbootsitesDeleteResponse>;
492
- beginTriggerRefreshSite(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesTriggerRefreshSiteOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootsitesTriggerRefreshSiteResponse>, SpringbootsitesTriggerRefreshSiteResponse>>;
493
- beginTriggerRefreshSiteAndWait(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesTriggerRefreshSiteOptionalParams): Promise<SpringbootsitesTriggerRefreshSiteResponse>;
494
- beginUpdate(resourceGroupName: string, springbootsitesName: string, springbootsites: SpringbootsitesPatch, options?: SpringbootsitesUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootsitesUpdateResponse>, SpringbootsitesUpdateResponse>>;
495
- beginUpdateAndWait(resourceGroupName: string, springbootsitesName: string, springbootsites: SpringbootsitesPatch, options?: SpringbootsitesUpdateOptionalParams): Promise<SpringbootsitesUpdateResponse>;
496
- createOrUpdate(resourceGroupName: string, springbootsitesName: string, springbootsites: SpringbootsitesModel, options?: SpringbootsitesCreateOrUpdateOptionalParams): Promise<SpringbootsitesCreateOrUpdateResponse>;
497
- get(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesGetOptionalParams): Promise<SpringbootsitesGetResponse>;
498
- listByResourceGroup(resourceGroupName: string, options?: SpringbootsitesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SpringbootsitesModel>;
499
- listBySubscription(options?: SpringbootsitesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SpringbootsitesModel>;
500
- }
501
-
502
- // @public
503
- export interface SpringbootsitesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
504
- }
505
-
506
- // @public
507
- export type SpringbootsitesCreateOrUpdateResponse = SpringbootsitesModel;
508
-
509
- // @public
510
- export interface SpringbootsitesDeleteHeaders {
511
- // (undocumented)
512
- location?: string;
513
- }
514
-
515
- // @public
516
- export interface SpringbootsitesDeleteOptionalParams extends coreClient.OperationOptions {
517
- resumeFrom?: string;
518
- updateIntervalInMs?: number;
519
- }
520
-
521
- // @public
522
- export type SpringbootsitesDeleteResponse = SpringbootsitesDeleteHeaders;
523
-
524
- // @public
525
- export interface SpringbootsitesGetOptionalParams extends coreClient.OperationOptions {
526
- }
527
-
528
- // @public
529
- export type SpringbootsitesGetResponse = SpringbootsitesModel;
530
-
531
- // @public
532
- export interface SpringbootsitesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
533
- }
534
-
535
- // @public
536
- export type SpringbootsitesListByResourceGroupNextResponse = SpringbootsitesListResult;
537
-
538
- // @public
539
- export interface SpringbootsitesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
540
- }
541
-
542
- // @public
543
- export type SpringbootsitesListByResourceGroupResponse = SpringbootsitesListResult;
544
-
545
- // @public
546
- export interface SpringbootsitesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
547
- }
548
-
549
- // @public
550
- export type SpringbootsitesListBySubscriptionNextResponse = SpringbootsitesListResult;
551
-
552
- // @public
553
- export interface SpringbootsitesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
554
- }
555
-
556
- // @public
557
- export type SpringbootsitesListBySubscriptionResponse = SpringbootsitesListResult;
558
-
559
- // @public
560
- export interface SpringbootsitesListResult {
561
- nextLink?: string;
562
- value?: SpringbootsitesModel[];
563
- }
564
-
565
- // @public
566
- export interface SpringbootsitesModel extends TrackedResource {
567
- extendedLocation?: SpringbootsitesModelExtendedLocation;
568
- properties?: SpringbootsitesProperties;
569
- }
570
-
571
- // @public
572
- export interface SpringbootsitesModelExtendedLocation {
573
- name?: string;
574
- type?: string;
575
- }
576
-
577
- // @public
578
- export interface SpringbootsitesPatch extends TrackedResource {
579
- properties?: SpringbootsitesProperties;
580
- }
581
-
582
- // @public
583
- export interface SpringbootsitesProperties {
584
- masterSiteId?: string;
585
- migrateProjectId?: string;
586
- provisioningState?: ProvisioningState;
587
- }
588
-
589
- // @public
590
- export interface SpringbootsitesTriggerRefreshSiteHeaders {
591
- // (undocumented)
592
- location?: string;
593
- }
594
-
595
- // @public
596
- export interface SpringbootsitesTriggerRefreshSiteOptionalParams extends coreClient.OperationOptions {
597
- resumeFrom?: string;
598
- updateIntervalInMs?: number;
599
- }
600
-
601
- // @public
602
- export type SpringbootsitesTriggerRefreshSiteResponse = SpringbootsitesTriggerRefreshSiteHeaders;
603
-
604
- // @public
605
- export interface SpringbootsitesUpdateHeaders {
606
- // (undocumented)
607
- location?: string;
608
- }
609
-
610
- // @public
611
- export interface SpringbootsitesUpdateOptionalParams extends coreClient.OperationOptions {
612
- resumeFrom?: string;
613
- updateIntervalInMs?: number;
614
- }
615
-
616
- // @public
617
- export type SpringbootsitesUpdateResponse = SpringbootsitesModel;
618
-
619
- // @public
620
- export interface Summaries {
621
- get(resourceGroupName: string, siteName: string, summaryName: string, options?: SummariesGetOptionalParams): Promise<SummariesGetResponse>;
622
- listBySite(resourceGroupName: string, siteName: string, options?: SummariesListBySiteOptionalParams): PagedAsyncIterableIterator<Summary>;
623
- }
624
-
625
- // @public
626
- export interface SummariesGetOptionalParams extends coreClient.OperationOptions {
627
- }
628
-
629
- // @public
630
- export type SummariesGetResponse = Summary;
631
-
632
- // @public
633
- export interface SummariesListBySiteNextOptionalParams extends coreClient.OperationOptions {
634
- }
635
-
636
- // @public
637
- export type SummariesListBySiteNextResponse = SummaryList;
638
-
639
- // @public
640
- export interface SummariesListBySiteOptionalParams extends coreClient.OperationOptions {
641
- }
642
-
643
- // @public
644
- export type SummariesListBySiteResponse = SummaryList;
645
-
646
- // @public
647
- export interface SummariesProperties {
648
- discoveredApps?: number;
649
- discoveredServers?: number;
650
- errors?: ErrorModel[];
651
- provisioningState?: ProvisioningState;
652
- }
653
-
654
- // @public
655
- export interface SummariesResourcePatch {
656
- properties?: SummariesProperties;
657
- tags?: {
658
- [propertyName: string]: string;
659
- };
660
- }
661
-
662
- // @public
663
- export interface Summary extends ProxyResource {
664
- properties?: SummariesProperties;
665
- tags?: {
666
- [propertyName: string]: string;
667
- };
668
- }
669
-
670
- // @public
671
- export interface SummaryList {
672
- nextLink?: string;
673
- value?: Summary[];
674
- }
675
-
676
- // @public
677
- export interface SystemData {
678
- createdAt?: Date;
679
- createdBy?: string;
680
- createdByType?: CreatedByType;
681
- lastModifiedAt?: Date;
682
- lastModifiedBy?: string;
683
- lastModifiedByType?: CreatedByType;
684
- }
685
-
686
- // @public
687
- export interface TrackedResource extends Resource {
688
- location: string;
689
- tags?: {
690
- [propertyName: string]: string;
691
- };
692
- }
693
-
694
- // (No @packageDocumentation comment for this package)
695
-
696
- ```
1
+ ## API Report File for "@azure/arm-springappdiscovery"
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 { OperationState } from '@azure/core-lro';
10
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
11
+ import { SimplePollerLike } from '@azure/core-lro';
12
+
13
+ // @public
14
+ export type ActionType = string;
15
+
16
+ // @public
17
+ export type CreatedByType = string;
18
+
19
+ // @public
20
+ export interface ErrorAdditionalInfo {
21
+ readonly info?: Record<string, unknown>;
22
+ readonly type?: string;
23
+ }
24
+
25
+ // @public
26
+ export interface ErrorDetail {
27
+ readonly additionalInfo?: ErrorAdditionalInfo[];
28
+ readonly code?: string;
29
+ readonly details?: ErrorDetail[];
30
+ readonly message?: string;
31
+ readonly target?: string;
32
+ }
33
+
34
+ // @public
35
+ export interface ErrorModel {
36
+ code?: string;
37
+ id?: number;
38
+ message?: string;
39
+ possibleCauses?: string;
40
+ recommendedAction?: string;
41
+ runAsAccountId?: string;
42
+ severity?: string;
43
+ summaryMessage?: string;
44
+ updatedTimeStamp?: Date;
45
+ }
46
+
47
+ // @public
48
+ export interface ErrorResponse {
49
+ error?: ErrorDetail;
50
+ }
51
+
52
+ // @public
53
+ export interface ErrorSummaries {
54
+ get(resourceGroupName: string, siteName: string, errorSummaryName: string, options?: ErrorSummariesGetOptionalParams): Promise<ErrorSummariesGetResponse>;
55
+ listBySite(resourceGroupName: string, siteName: string, options?: ErrorSummariesListBySiteOptionalParams): PagedAsyncIterableIterator<ErrorSummary>;
56
+ }
57
+
58
+ // @public
59
+ export interface ErrorSummariesGetOptionalParams extends coreClient.OperationOptions {
60
+ }
61
+
62
+ // @public
63
+ export type ErrorSummariesGetResponse = ErrorSummary;
64
+
65
+ // @public
66
+ export interface ErrorSummariesListBySiteNextOptionalParams extends coreClient.OperationOptions {
67
+ }
68
+
69
+ // @public
70
+ export type ErrorSummariesListBySiteNextResponse = ErrorSummaryList;
71
+
72
+ // @public
73
+ export interface ErrorSummariesListBySiteOptionalParams extends coreClient.OperationOptions {
74
+ }
75
+
76
+ // @public
77
+ export type ErrorSummariesListBySiteResponse = ErrorSummaryList;
78
+
79
+ // @public
80
+ export interface ErrorSummariesProperties {
81
+ discoveryScopeErrorSummaries?: ErrorSummaryModel[];
82
+ errors?: ErrorModel[];
83
+ provisioningState?: ProvisioningState;
84
+ }
85
+
86
+ // @public
87
+ export interface ErrorSummariesResourcePatch {
88
+ properties?: ErrorSummariesProperties;
89
+ tags?: {
90
+ [propertyName: string]: string;
91
+ };
92
+ }
93
+
94
+ // @public
95
+ export interface ErrorSummary extends ProxyResource {
96
+ properties?: ErrorSummariesProperties;
97
+ tags?: {
98
+ [propertyName: string]: string;
99
+ };
100
+ }
101
+
102
+ // @public
103
+ export interface ErrorSummaryList {
104
+ nextLink?: string;
105
+ value?: ErrorSummary[];
106
+ }
107
+
108
+ // @public
109
+ export interface ErrorSummaryModel {
110
+ affectedObjectsCount?: number;
111
+ affectedResourceType?: string;
112
+ }
113
+
114
+ // @public
115
+ export function getContinuationToken(page: unknown): string | undefined;
116
+
117
+ // @public
118
+ export enum KnownActionType {
119
+ Internal = "Internal"
120
+ }
121
+
122
+ // @public
123
+ export enum KnownCreatedByType {
124
+ Application = "Application",
125
+ Key = "Key",
126
+ ManagedIdentity = "ManagedIdentity",
127
+ User = "User"
128
+ }
129
+
130
+ // @public
131
+ export enum KnownOrigin {
132
+ System = "system",
133
+ User = "user",
134
+ UserSystem = "user,system"
135
+ }
136
+
137
+ // @public
138
+ export enum KnownProvisioningState {
139
+ Accepted = "Accepted",
140
+ Canceled = "Canceled",
141
+ Deleting = "Deleting",
142
+ Failed = "Failed",
143
+ Provisioning = "Provisioning",
144
+ Succeeded = "Succeeded",
145
+ Unknown = "Unknown"
146
+ }
147
+
148
+ // @public
149
+ export interface Operation {
150
+ readonly actionType?: ActionType;
151
+ display?: OperationDisplay;
152
+ readonly isDataAction?: boolean;
153
+ readonly name?: string;
154
+ readonly origin?: Origin;
155
+ }
156
+
157
+ // @public
158
+ export interface OperationDisplay {
159
+ readonly description?: string;
160
+ readonly operation?: string;
161
+ readonly provider?: string;
162
+ readonly resource?: string;
163
+ }
164
+
165
+ // @public
166
+ export interface OperationListResult {
167
+ readonly nextLink?: string;
168
+ readonly value?: Operation[];
169
+ }
170
+
171
+ // @public
172
+ export interface Operations {
173
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
174
+ }
175
+
176
+ // @public
177
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
178
+ }
179
+
180
+ // @public
181
+ export type OperationsListNextResponse = OperationListResult;
182
+
183
+ // @public
184
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
185
+ }
186
+
187
+ // @public
188
+ export type OperationsListResponse = OperationListResult;
189
+
190
+ // @public
191
+ export type Origin = string;
192
+
193
+ // @public
194
+ export type ProvisioningState = string;
195
+
196
+ // @public
197
+ export interface ProxyResource extends Resource {
198
+ }
199
+
200
+ // @public
201
+ export interface Resource {
202
+ readonly id?: string;
203
+ readonly name?: string;
204
+ readonly systemData?: SystemData;
205
+ readonly type?: string;
206
+ }
207
+
208
+ // @public (undocumented)
209
+ export class SpringAppDiscoveryManagementClient extends coreClient.ServiceClient {
210
+ // (undocumented)
211
+ $host: string;
212
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: SpringAppDiscoveryManagementClientOptionalParams);
213
+ // (undocumented)
214
+ apiVersion: string;
215
+ // (undocumented)
216
+ errorSummaries: ErrorSummaries;
217
+ // (undocumented)
218
+ operations: Operations;
219
+ // (undocumented)
220
+ springbootapps: Springbootapps;
221
+ // (undocumented)
222
+ springbootservers: Springbootservers;
223
+ // (undocumented)
224
+ springbootsites: Springbootsites;
225
+ // (undocumented)
226
+ subscriptionId: string;
227
+ // (undocumented)
228
+ summaries: Summaries;
229
+ }
230
+
231
+ // @public
232
+ export interface SpringAppDiscoveryManagementClientOptionalParams extends coreClient.ServiceClientOptions {
233
+ $host?: string;
234
+ apiVersion?: string;
235
+ endpoint?: string;
236
+ }
237
+
238
+ // @public
239
+ export interface Springbootapps {
240
+ beginUpdate(resourceGroupName: string, siteName: string, springbootappsName: string, springbootapps: SpringbootappsPatch, options?: SpringbootappsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootappsUpdateResponse>, SpringbootappsUpdateResponse>>;
241
+ beginUpdateAndWait(resourceGroupName: string, siteName: string, springbootappsName: string, springbootapps: SpringbootappsPatch, options?: SpringbootappsUpdateOptionalParams): Promise<SpringbootappsUpdateResponse>;
242
+ get(resourceGroupName: string, siteName: string, springbootappsName: string, options?: SpringbootappsGetOptionalParams): Promise<SpringbootappsGetResponse>;
243
+ listByResourceGroup(resourceGroupName: string, siteName: string, options?: SpringbootappsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SpringbootappsModel>;
244
+ listBySubscription(siteName: string, options?: SpringbootappsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SpringbootappsModel>;
245
+ }
246
+
247
+ // @public
248
+ export interface SpringbootappsGetOptionalParams extends coreClient.OperationOptions {
249
+ }
250
+
251
+ // @public
252
+ export type SpringbootappsGetResponse = SpringbootappsModel;
253
+
254
+ // @public
255
+ export interface SpringbootappsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
256
+ }
257
+
258
+ // @public
259
+ export type SpringbootappsListByResourceGroupNextResponse = SpringbootappsListResult;
260
+
261
+ // @public
262
+ export interface SpringbootappsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
263
+ }
264
+
265
+ // @public
266
+ export type SpringbootappsListByResourceGroupResponse = SpringbootappsListResult;
267
+
268
+ // @public
269
+ export interface SpringbootappsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
270
+ }
271
+
272
+ // @public
273
+ export type SpringbootappsListBySubscriptionNextResponse = SpringbootappsListResult;
274
+
275
+ // @public
276
+ export interface SpringbootappsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
277
+ }
278
+
279
+ // @public
280
+ export type SpringbootappsListBySubscriptionResponse = SpringbootappsListResult;
281
+
282
+ // @public
283
+ export interface SpringbootappsListResult {
284
+ nextLink?: string;
285
+ value?: SpringbootappsModel[];
286
+ }
287
+
288
+ // @public
289
+ export interface SpringbootappsModel extends ProxyResource {
290
+ properties?: SpringbootappsProperties;
291
+ tags?: {
292
+ [propertyName: string]: string;
293
+ };
294
+ }
295
+
296
+ // @public
297
+ export interface SpringbootappsPatch extends ProxyResource {
298
+ properties?: SpringbootappsProperties;
299
+ tags?: {
300
+ [propertyName: string]: string;
301
+ };
302
+ }
303
+
304
+ // @public
305
+ export interface SpringbootappsProperties {
306
+ applicationConfigurations?: SpringbootappsPropertiesApplicationConfigurationsItem[];
307
+ appName?: string;
308
+ appPort?: number;
309
+ appType?: string;
310
+ artifactName?: string;
311
+ bindingPorts?: number[];
312
+ buildJdkVersion?: string;
313
+ certificates?: string[];
314
+ checksum?: string;
315
+ connectionStrings?: string[];
316
+ dependencies?: string[];
317
+ environments?: string[];
318
+ errors?: ErrorModel[];
319
+ instanceCount?: number;
320
+ instances?: SpringbootappsPropertiesInstancesItem[];
321
+ jarFileLocation?: string;
322
+ jvmMemoryInMB?: number;
323
+ jvmOptions?: string[];
324
+ lastModifiedTime?: Date;
325
+ lastUpdatedTime?: Date;
326
+ machineArmIds?: string[];
327
+ miscs?: SpringbootappsPropertiesMiscsItem[];
328
+ provisioningState?: ProvisioningState;
329
+ runtimeJdkVersion?: string;
330
+ servers?: string[];
331
+ siteName?: string;
332
+ springBootVersion?: string;
333
+ staticContentLocations?: string[];
334
+ }
335
+
336
+ // @public (undocumented)
337
+ export interface SpringbootappsPropertiesApplicationConfigurationsItem {
338
+ key: string;
339
+ value?: string;
340
+ }
341
+
342
+ // @public (undocumented)
343
+ export interface SpringbootappsPropertiesInstancesItem {
344
+ instanceCount?: number;
345
+ jvmMemoryInMB?: number;
346
+ machineArmId: string;
347
+ }
348
+
349
+ // @public (undocumented)
350
+ export interface SpringbootappsPropertiesMiscsItem {
351
+ key: string;
352
+ value?: string;
353
+ }
354
+
355
+ // @public
356
+ export interface SpringbootappsUpdateHeaders {
357
+ // (undocumented)
358
+ location?: string;
359
+ }
360
+
361
+ // @public
362
+ export interface SpringbootappsUpdateOptionalParams extends coreClient.OperationOptions {
363
+ resumeFrom?: string;
364
+ updateIntervalInMs?: number;
365
+ }
366
+
367
+ // @public
368
+ export type SpringbootappsUpdateResponse = SpringbootappsModel;
369
+
370
+ // @public
371
+ export interface Springbootservers {
372
+ beginDelete(resourceGroupName: string, siteName: string, springbootserversName: string, options?: SpringbootserversDeleteOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootserversDeleteResponse>, SpringbootserversDeleteResponse>>;
373
+ beginDeleteAndWait(resourceGroupName: string, siteName: string, springbootserversName: string, options?: SpringbootserversDeleteOptionalParams): Promise<SpringbootserversDeleteResponse>;
374
+ beginUpdate(resourceGroupName: string, siteName: string, springbootserversName: string, springbootservers: SpringbootserversPatch, options?: SpringbootserversUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootserversUpdateResponse>, SpringbootserversUpdateResponse>>;
375
+ beginUpdateAndWait(resourceGroupName: string, siteName: string, springbootserversName: string, springbootservers: SpringbootserversPatch, options?: SpringbootserversUpdateOptionalParams): Promise<SpringbootserversUpdateResponse>;
376
+ createOrUpdate(resourceGroupName: string, siteName: string, springbootserversName: string, springbootservers: SpringbootserversModel, options?: SpringbootserversCreateOrUpdateOptionalParams): Promise<SpringbootserversCreateOrUpdateResponse>;
377
+ get(resourceGroupName: string, siteName: string, springbootserversName: string, options?: SpringbootserversGetOptionalParams): Promise<SpringbootserversGetResponse>;
378
+ listByResourceGroup(resourceGroupName: string, siteName: string, options?: SpringbootserversListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SpringbootserversModel>;
379
+ listBySubscription(siteName: string, options?: SpringbootserversListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SpringbootserversModel>;
380
+ }
381
+
382
+ // @public
383
+ export interface SpringbootserversCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
384
+ }
385
+
386
+ // @public
387
+ export type SpringbootserversCreateOrUpdateResponse = SpringbootserversModel;
388
+
389
+ // @public
390
+ export interface SpringbootserversDeleteHeaders {
391
+ // (undocumented)
392
+ location?: string;
393
+ }
394
+
395
+ // @public
396
+ export interface SpringbootserversDeleteOptionalParams extends coreClient.OperationOptions {
397
+ resumeFrom?: string;
398
+ updateIntervalInMs?: number;
399
+ }
400
+
401
+ // @public
402
+ export type SpringbootserversDeleteResponse = SpringbootserversDeleteHeaders;
403
+
404
+ // @public
405
+ export interface SpringbootserversGetOptionalParams extends coreClient.OperationOptions {
406
+ }
407
+
408
+ // @public
409
+ export type SpringbootserversGetResponse = SpringbootserversModel;
410
+
411
+ // @public
412
+ export interface SpringbootserversListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
413
+ }
414
+
415
+ // @public
416
+ export type SpringbootserversListByResourceGroupNextResponse = SpringbootserversListResult;
417
+
418
+ // @public
419
+ export interface SpringbootserversListByResourceGroupOptionalParams extends coreClient.OperationOptions {
420
+ }
421
+
422
+ // @public
423
+ export type SpringbootserversListByResourceGroupResponse = SpringbootserversListResult;
424
+
425
+ // @public
426
+ export interface SpringbootserversListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
427
+ }
428
+
429
+ // @public
430
+ export type SpringbootserversListBySubscriptionNextResponse = SpringbootserversListResult;
431
+
432
+ // @public
433
+ export interface SpringbootserversListBySubscriptionOptionalParams extends coreClient.OperationOptions {
434
+ }
435
+
436
+ // @public
437
+ export type SpringbootserversListBySubscriptionResponse = SpringbootserversListResult;
438
+
439
+ // @public
440
+ export interface SpringbootserversListResult {
441
+ nextLink?: string;
442
+ value?: SpringbootserversModel[];
443
+ }
444
+
445
+ // @public
446
+ export interface SpringbootserversModel extends ProxyResource {
447
+ properties?: SpringbootserversProperties;
448
+ tags?: {
449
+ [propertyName: string]: string;
450
+ };
451
+ }
452
+
453
+ // @public
454
+ export interface SpringbootserversPatch extends ProxyResource {
455
+ properties?: SpringbootserversProperties;
456
+ tags?: {
457
+ [propertyName: string]: string;
458
+ };
459
+ }
460
+
461
+ // @public
462
+ export interface SpringbootserversProperties {
463
+ errors?: ErrorModel[];
464
+ fqdnAndIpAddressList?: string[];
465
+ machineArmId?: string;
466
+ port?: number;
467
+ provisioningState?: ProvisioningState;
468
+ server: string;
469
+ springBootApps?: number;
470
+ totalApps?: number;
471
+ }
472
+
473
+ // @public
474
+ export interface SpringbootserversUpdateHeaders {
475
+ // (undocumented)
476
+ location?: string;
477
+ }
478
+
479
+ // @public
480
+ export interface SpringbootserversUpdateOptionalParams extends coreClient.OperationOptions {
481
+ resumeFrom?: string;
482
+ updateIntervalInMs?: number;
483
+ }
484
+
485
+ // @public
486
+ export type SpringbootserversUpdateResponse = SpringbootserversModel;
487
+
488
+ // @public
489
+ export interface Springbootsites {
490
+ beginDelete(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesDeleteOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootsitesDeleteResponse>, SpringbootsitesDeleteResponse>>;
491
+ beginDeleteAndWait(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesDeleteOptionalParams): Promise<SpringbootsitesDeleteResponse>;
492
+ beginTriggerRefreshSite(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesTriggerRefreshSiteOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootsitesTriggerRefreshSiteResponse>, SpringbootsitesTriggerRefreshSiteResponse>>;
493
+ beginTriggerRefreshSiteAndWait(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesTriggerRefreshSiteOptionalParams): Promise<SpringbootsitesTriggerRefreshSiteResponse>;
494
+ beginUpdate(resourceGroupName: string, springbootsitesName: string, springbootsites: SpringbootsitesPatch, options?: SpringbootsitesUpdateOptionalParams): Promise<SimplePollerLike<OperationState<SpringbootsitesUpdateResponse>, SpringbootsitesUpdateResponse>>;
495
+ beginUpdateAndWait(resourceGroupName: string, springbootsitesName: string, springbootsites: SpringbootsitesPatch, options?: SpringbootsitesUpdateOptionalParams): Promise<SpringbootsitesUpdateResponse>;
496
+ createOrUpdate(resourceGroupName: string, springbootsitesName: string, springbootsites: SpringbootsitesModel, options?: SpringbootsitesCreateOrUpdateOptionalParams): Promise<SpringbootsitesCreateOrUpdateResponse>;
497
+ get(resourceGroupName: string, springbootsitesName: string, options?: SpringbootsitesGetOptionalParams): Promise<SpringbootsitesGetResponse>;
498
+ listByResourceGroup(resourceGroupName: string, options?: SpringbootsitesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SpringbootsitesModel>;
499
+ listBySubscription(options?: SpringbootsitesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SpringbootsitesModel>;
500
+ }
501
+
502
+ // @public
503
+ export interface SpringbootsitesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
504
+ }
505
+
506
+ // @public
507
+ export type SpringbootsitesCreateOrUpdateResponse = SpringbootsitesModel;
508
+
509
+ // @public
510
+ export interface SpringbootsitesDeleteHeaders {
511
+ // (undocumented)
512
+ location?: string;
513
+ }
514
+
515
+ // @public
516
+ export interface SpringbootsitesDeleteOptionalParams extends coreClient.OperationOptions {
517
+ resumeFrom?: string;
518
+ updateIntervalInMs?: number;
519
+ }
520
+
521
+ // @public
522
+ export type SpringbootsitesDeleteResponse = SpringbootsitesDeleteHeaders;
523
+
524
+ // @public
525
+ export interface SpringbootsitesGetOptionalParams extends coreClient.OperationOptions {
526
+ }
527
+
528
+ // @public
529
+ export type SpringbootsitesGetResponse = SpringbootsitesModel;
530
+
531
+ // @public
532
+ export interface SpringbootsitesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
533
+ }
534
+
535
+ // @public
536
+ export type SpringbootsitesListByResourceGroupNextResponse = SpringbootsitesListResult;
537
+
538
+ // @public
539
+ export interface SpringbootsitesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
540
+ }
541
+
542
+ // @public
543
+ export type SpringbootsitesListByResourceGroupResponse = SpringbootsitesListResult;
544
+
545
+ // @public
546
+ export interface SpringbootsitesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
547
+ }
548
+
549
+ // @public
550
+ export type SpringbootsitesListBySubscriptionNextResponse = SpringbootsitesListResult;
551
+
552
+ // @public
553
+ export interface SpringbootsitesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
554
+ }
555
+
556
+ // @public
557
+ export type SpringbootsitesListBySubscriptionResponse = SpringbootsitesListResult;
558
+
559
+ // @public
560
+ export interface SpringbootsitesListResult {
561
+ nextLink?: string;
562
+ value?: SpringbootsitesModel[];
563
+ }
564
+
565
+ // @public
566
+ export interface SpringbootsitesModel extends TrackedResource {
567
+ extendedLocation?: SpringbootsitesModelExtendedLocation;
568
+ properties?: SpringbootsitesProperties;
569
+ }
570
+
571
+ // @public
572
+ export interface SpringbootsitesModelExtendedLocation {
573
+ name?: string;
574
+ type?: string;
575
+ }
576
+
577
+ // @public
578
+ export interface SpringbootsitesPatch extends TrackedResource {
579
+ properties?: SpringbootsitesProperties;
580
+ }
581
+
582
+ // @public
583
+ export interface SpringbootsitesProperties {
584
+ masterSiteId?: string;
585
+ migrateProjectId?: string;
586
+ provisioningState?: ProvisioningState;
587
+ }
588
+
589
+ // @public
590
+ export interface SpringbootsitesTriggerRefreshSiteHeaders {
591
+ // (undocumented)
592
+ location?: string;
593
+ }
594
+
595
+ // @public
596
+ export interface SpringbootsitesTriggerRefreshSiteOptionalParams extends coreClient.OperationOptions {
597
+ resumeFrom?: string;
598
+ updateIntervalInMs?: number;
599
+ }
600
+
601
+ // @public
602
+ export type SpringbootsitesTriggerRefreshSiteResponse = SpringbootsitesTriggerRefreshSiteHeaders;
603
+
604
+ // @public
605
+ export interface SpringbootsitesUpdateHeaders {
606
+ // (undocumented)
607
+ location?: string;
608
+ }
609
+
610
+ // @public
611
+ export interface SpringbootsitesUpdateOptionalParams extends coreClient.OperationOptions {
612
+ resumeFrom?: string;
613
+ updateIntervalInMs?: number;
614
+ }
615
+
616
+ // @public
617
+ export type SpringbootsitesUpdateResponse = SpringbootsitesModel;
618
+
619
+ // @public
620
+ export interface Summaries {
621
+ get(resourceGroupName: string, siteName: string, summaryName: string, options?: SummariesGetOptionalParams): Promise<SummariesGetResponse>;
622
+ listBySite(resourceGroupName: string, siteName: string, options?: SummariesListBySiteOptionalParams): PagedAsyncIterableIterator<Summary>;
623
+ }
624
+
625
+ // @public
626
+ export interface SummariesGetOptionalParams extends coreClient.OperationOptions {
627
+ }
628
+
629
+ // @public
630
+ export type SummariesGetResponse = Summary;
631
+
632
+ // @public
633
+ export interface SummariesListBySiteNextOptionalParams extends coreClient.OperationOptions {
634
+ }
635
+
636
+ // @public
637
+ export type SummariesListBySiteNextResponse = SummaryList;
638
+
639
+ // @public
640
+ export interface SummariesListBySiteOptionalParams extends coreClient.OperationOptions {
641
+ }
642
+
643
+ // @public
644
+ export type SummariesListBySiteResponse = SummaryList;
645
+
646
+ // @public
647
+ export interface SummariesProperties {
648
+ discoveredApps?: number;
649
+ discoveredServers?: number;
650
+ errors?: ErrorModel[];
651
+ provisioningState?: ProvisioningState;
652
+ }
653
+
654
+ // @public
655
+ export interface SummariesResourcePatch {
656
+ properties?: SummariesProperties;
657
+ tags?: {
658
+ [propertyName: string]: string;
659
+ };
660
+ }
661
+
662
+ // @public
663
+ export interface Summary extends ProxyResource {
664
+ properties?: SummariesProperties;
665
+ tags?: {
666
+ [propertyName: string]: string;
667
+ };
668
+ }
669
+
670
+ // @public
671
+ export interface SummaryList {
672
+ nextLink?: string;
673
+ value?: Summary[];
674
+ }
675
+
676
+ // @public
677
+ export interface SystemData {
678
+ createdAt?: Date;
679
+ createdBy?: string;
680
+ createdByType?: CreatedByType;
681
+ lastModifiedAt?: Date;
682
+ lastModifiedBy?: string;
683
+ lastModifiedByType?: CreatedByType;
684
+ }
685
+
686
+ // @public
687
+ export interface TrackedResource extends Resource {
688
+ location: string;
689
+ tags?: {
690
+ [propertyName: string]: string;
691
+ };
692
+ }
693
+
694
+ // (No @packageDocumentation comment for this package)
695
+
696
+ ```