@azure/arm-servicefabricmesh 3.0.0-alpha.20250619.1 → 3.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,1219 +1,1219 @@
1
- ## API Report File for "@azure/arm-servicefabricmesh"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import * as coreAuth from '@azure/core-auth';
8
- import * as coreClient from '@azure/core-client';
9
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
-
11
- // @public
12
- export interface AddRemoveReplicaScalingMechanism extends AutoScalingMechanism {
13
- kind: "AddRemoveReplica";
14
- maxCount: number;
15
- minCount: number;
16
- scaleIncrement: number;
17
- }
18
-
19
- // @public
20
- export interface Application {
21
- create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options?: ApplicationCreateOptionalParams): Promise<ApplicationCreateResponse>;
22
- delete(resourceGroupName: string, applicationResourceName: string, options?: ApplicationDeleteOptionalParams): Promise<void>;
23
- get(resourceGroupName: string, applicationResourceName: string, options?: ApplicationGetOptionalParams): Promise<ApplicationGetResponse>;
24
- listByResourceGroup(resourceGroupName: string, options?: ApplicationListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
25
- listBySubscription(options?: ApplicationListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
26
- }
27
-
28
- // @public
29
- export interface ApplicationCreateOptionalParams extends coreClient.OperationOptions {
30
- }
31
-
32
- // @public
33
- export type ApplicationCreateResponse = ApplicationResourceDescription;
34
-
35
- // @public
36
- export interface ApplicationDeleteOptionalParams extends coreClient.OperationOptions {
37
- }
38
-
39
- // @public
40
- export interface ApplicationGetOptionalParams extends coreClient.OperationOptions {
41
- }
42
-
43
- // @public
44
- export type ApplicationGetResponse = ApplicationResourceDescription;
45
-
46
- // @public
47
- export interface ApplicationListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
48
- }
49
-
50
- // @public
51
- export type ApplicationListByResourceGroupNextResponse = ApplicationResourceDescriptionList;
52
-
53
- // @public
54
- export interface ApplicationListByResourceGroupOptionalParams extends coreClient.OperationOptions {
55
- }
56
-
57
- // @public
58
- export type ApplicationListByResourceGroupResponse = ApplicationResourceDescriptionList;
59
-
60
- // @public
61
- export interface ApplicationListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
62
- }
63
-
64
- // @public
65
- export type ApplicationListBySubscriptionNextResponse = ApplicationResourceDescriptionList;
66
-
67
- // @public
68
- export interface ApplicationListBySubscriptionOptionalParams extends coreClient.OperationOptions {
69
- }
70
-
71
- // @public
72
- export type ApplicationListBySubscriptionResponse = ApplicationResourceDescriptionList;
73
-
74
- // @public
75
- export interface ApplicationProperties {
76
- debugParams?: string;
77
- description?: string;
78
- diagnostics?: DiagnosticsDescription;
79
- readonly healthState?: HealthState;
80
- readonly serviceNames?: string[];
81
- services?: ServiceResourceDescription[];
82
- readonly status?: ResourceStatus;
83
- readonly statusDetails?: string;
84
- readonly unhealthyEvaluation?: string;
85
- }
86
-
87
- // @public
88
- export interface ApplicationResourceDescription extends TrackedResource {
89
- debugParams?: string;
90
- description?: string;
91
- diagnostics?: DiagnosticsDescription;
92
- readonly healthState?: HealthState;
93
- readonly provisioningState?: string;
94
- readonly serviceNames?: string[];
95
- services?: ServiceResourceDescription[];
96
- readonly status?: ResourceStatus;
97
- readonly statusDetails?: string;
98
- readonly unhealthyEvaluation?: string;
99
- }
100
-
101
- // @public
102
- export interface ApplicationResourceDescriptionList {
103
- nextLink?: string;
104
- value?: ApplicationResourceDescription[];
105
- }
106
-
107
- // @public
108
- export interface ApplicationResourceProperties extends ProvisionedResourceProperties, ApplicationProperties {
109
- }
110
-
111
- // @public
112
- export interface ApplicationScopedVolume extends VolumeReference {
113
- creationParameters: ApplicationScopedVolumeCreationParametersUnion;
114
- }
115
-
116
- // @public
117
- export interface ApplicationScopedVolumeCreationParameters {
118
- description?: string;
119
- kind: "ServiceFabricVolumeDisk";
120
- }
121
-
122
- // @public
123
- export interface ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk extends ApplicationScopedVolumeCreationParameters {
124
- kind: "ServiceFabricVolumeDisk";
125
- sizeDisk: SizeTypes;
126
- }
127
-
128
- // @public (undocumented)
129
- export type ApplicationScopedVolumeCreationParametersUnion = ApplicationScopedVolumeCreationParameters | ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk;
130
-
131
- // @public
132
- export type ApplicationScopedVolumeKind = string;
133
-
134
- // @public
135
- export interface AutoScalingMechanism {
136
- kind: "AddRemoveReplica";
137
- }
138
-
139
- // @public
140
- export type AutoScalingMechanismKind = string;
141
-
142
- // @public (undocumented)
143
- export type AutoScalingMechanismUnion = AutoScalingMechanism | AddRemoveReplicaScalingMechanism;
144
-
145
- // @public
146
- export interface AutoScalingMetric {
147
- kind: "Resource";
148
- }
149
-
150
- // @public
151
- export type AutoScalingMetricKind = string;
152
-
153
- // @public (undocumented)
154
- export type AutoScalingMetricUnion = AutoScalingMetric | AutoScalingResourceMetric;
155
-
156
- // @public
157
- export interface AutoScalingPolicy {
158
- mechanism: AutoScalingMechanismUnion;
159
- name: string;
160
- trigger: AutoScalingTriggerUnion;
161
- }
162
-
163
- // @public
164
- export interface AutoScalingResourceMetric extends AutoScalingMetric {
165
- kind: "Resource";
166
- name: AutoScalingResourceMetricName;
167
- }
168
-
169
- // @public
170
- export type AutoScalingResourceMetricName = string;
171
-
172
- // @public
173
- export interface AutoScalingTrigger {
174
- kind: "AverageLoad";
175
- }
176
-
177
- // @public
178
- export type AutoScalingTriggerKind = string;
179
-
180
- // @public (undocumented)
181
- export type AutoScalingTriggerUnion = AutoScalingTrigger | AverageLoadScalingTrigger;
182
-
183
- // @public
184
- export interface AvailableOperationDisplay {
185
- description?: string;
186
- operation?: string;
187
- provider?: string;
188
- resource?: string;
189
- }
190
-
191
- // @public
192
- export interface AverageLoadScalingTrigger extends AutoScalingTrigger {
193
- kind: "AverageLoad";
194
- lowerLoadThreshold: number;
195
- metric: AutoScalingMetricUnion;
196
- scaleIntervalInSeconds: number;
197
- upperLoadThreshold: number;
198
- }
199
-
200
- // @public
201
- export interface AzureInternalMonitoringPipelineSinkDescription extends DiagnosticsSinkProperties {
202
- accountName?: string;
203
- autoKeyConfigUrl?: string;
204
- fluentdConfigUrl?: any;
205
- kind: "AzureInternalMonitoringPipeline";
206
- maConfigUrl?: string;
207
- namespace?: string;
208
- }
209
-
210
- // @public
211
- export interface CodePackage {
212
- getContainerLogs(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, codePackageName: string, options?: CodePackageGetContainerLogsOptionalParams): Promise<CodePackageGetContainerLogsResponse>;
213
- }
214
-
215
- // @public
216
- export interface CodePackageGetContainerLogsOptionalParams extends coreClient.OperationOptions {
217
- tail?: number;
218
- }
219
-
220
- // @public
221
- export type CodePackageGetContainerLogsResponse = ContainerLogs;
222
-
223
- // @public
224
- export interface ContainerCodePackageProperties {
225
- commands?: string[];
226
- diagnostics?: DiagnosticsRef;
227
- endpoints?: EndpointProperties[];
228
- entrypoint?: string;
229
- environmentVariables?: EnvironmentVariable[];
230
- image: string;
231
- imageRegistryCredential?: ImageRegistryCredential;
232
- readonly instanceView?: ContainerInstanceView;
233
- labels?: ContainerLabel[];
234
- name: string;
235
- reliableCollectionsRefs?: ReliableCollectionsRef[];
236
- resources: ResourceRequirements;
237
- settings?: Setting[];
238
- volumeRefs?: VolumeReference[];
239
- volumes?: ApplicationScopedVolume[];
240
- }
241
-
242
- // @public
243
- export interface ContainerEvent {
244
- count?: number;
245
- firstTimestamp?: string;
246
- lastTimestamp?: string;
247
- message?: string;
248
- name?: string;
249
- type?: string;
250
- }
251
-
252
- // @public
253
- export interface ContainerInstanceView {
254
- currentState?: ContainerState;
255
- events?: ContainerEvent[];
256
- previousState?: ContainerState;
257
- restartCount?: number;
258
- }
259
-
260
- // @public
261
- export interface ContainerLabel {
262
- name: string;
263
- value: string;
264
- }
265
-
266
- // @public
267
- export interface ContainerLogs {
268
- content?: string;
269
- }
270
-
271
- // @public
272
- export interface ContainerState {
273
- detailStatus?: string;
274
- exitCode?: string;
275
- finishTime?: Date;
276
- startTime?: Date;
277
- state?: string;
278
- }
279
-
280
- // @public
281
- export interface DiagnosticsDescription {
282
- defaultSinkRefs?: string[];
283
- enabled?: boolean;
284
- sinks?: DiagnosticsSinkPropertiesUnion[];
285
- }
286
-
287
- // @public
288
- export interface DiagnosticsRef {
289
- enabled?: boolean;
290
- sinkRefs?: string[];
291
- }
292
-
293
- // @public
294
- export type DiagnosticsSinkKind = string;
295
-
296
- // @public
297
- export interface DiagnosticsSinkProperties {
298
- description?: string;
299
- kind: "AzureInternalMonitoringPipeline";
300
- name?: string;
301
- }
302
-
303
- // @public (undocumented)
304
- export type DiagnosticsSinkPropertiesUnion = DiagnosticsSinkProperties | AzureInternalMonitoringPipelineSinkDescription;
305
-
306
- // @public
307
- export interface EndpointProperties {
308
- name: string;
309
- port?: number;
310
- }
311
-
312
- // @public
313
- export interface EndpointRef {
314
- name?: string;
315
- }
316
-
317
- // @public
318
- export interface EnvironmentVariable {
319
- name?: string;
320
- value?: string;
321
- }
322
-
323
- // @public
324
- export interface ErrorDetailsModel {
325
- // (undocumented)
326
- code: string;
327
- message: string;
328
- }
329
-
330
- // @public
331
- export interface ErrorErrorModel {
332
- // (undocumented)
333
- code: string;
334
- details?: ErrorDetailsModel[];
335
- // (undocumented)
336
- innerError?: string;
337
- message?: string;
338
- }
339
-
340
- // @public
341
- export interface ErrorModel {
342
- error: ErrorErrorModel;
343
- }
344
-
345
- // @public
346
- export interface Gateway {
347
- create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: GatewayResourceDescription, options?: GatewayCreateOptionalParams): Promise<GatewayCreateResponse>;
348
- delete(resourceGroupName: string, gatewayResourceName: string, options?: GatewayDeleteOptionalParams): Promise<void>;
349
- get(resourceGroupName: string, gatewayResourceName: string, options?: GatewayGetOptionalParams): Promise<GatewayGetResponse>;
350
- listByResourceGroup(resourceGroupName: string, options?: GatewayListByResourceGroupOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
351
- listBySubscription(options?: GatewayListBySubscriptionOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
352
- }
353
-
354
- // @public
355
- export interface GatewayCreateOptionalParams extends coreClient.OperationOptions {
356
- }
357
-
358
- // @public
359
- export type GatewayCreateResponse = GatewayResourceDescription;
360
-
361
- // @public
362
- export interface GatewayDeleteOptionalParams extends coreClient.OperationOptions {
363
- }
364
-
365
- // @public
366
- export interface GatewayDestination {
367
- applicationName: string;
368
- endpointName: string;
369
- serviceName: string;
370
- }
371
-
372
- // @public
373
- export interface GatewayGetOptionalParams extends coreClient.OperationOptions {
374
- }
375
-
376
- // @public
377
- export type GatewayGetResponse = GatewayResourceDescription;
378
-
379
- // @public
380
- export interface GatewayListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
381
- }
382
-
383
- // @public
384
- export type GatewayListByResourceGroupNextResponse = GatewayResourceDescriptionList;
385
-
386
- // @public
387
- export interface GatewayListByResourceGroupOptionalParams extends coreClient.OperationOptions {
388
- }
389
-
390
- // @public
391
- export type GatewayListByResourceGroupResponse = GatewayResourceDescriptionList;
392
-
393
- // @public
394
- export interface GatewayListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
395
- }
396
-
397
- // @public
398
- export type GatewayListBySubscriptionNextResponse = GatewayResourceDescriptionList;
399
-
400
- // @public
401
- export interface GatewayListBySubscriptionOptionalParams extends coreClient.OperationOptions {
402
- }
403
-
404
- // @public
405
- export type GatewayListBySubscriptionResponse = GatewayResourceDescriptionList;
406
-
407
- // @public
408
- export interface GatewayProperties {
409
- description?: string;
410
- destinationNetwork: NetworkRef;
411
- http?: HttpConfig[];
412
- readonly ipAddress?: string;
413
- sourceNetwork: NetworkRef;
414
- readonly status?: ResourceStatus;
415
- readonly statusDetails?: string;
416
- tcp?: TcpConfig[];
417
- }
418
-
419
- // @public
420
- export interface GatewayResourceDescription extends TrackedResource {
421
- description?: string;
422
- destinationNetwork: NetworkRef;
423
- http?: HttpConfig[];
424
- readonly ipAddress?: string;
425
- readonly provisioningState?: string;
426
- sourceNetwork: NetworkRef;
427
- readonly status?: ResourceStatus;
428
- readonly statusDetails?: string;
429
- tcp?: TcpConfig[];
430
- }
431
-
432
- // @public
433
- export interface GatewayResourceDescriptionList {
434
- nextLink?: string;
435
- value?: GatewayResourceDescription[];
436
- }
437
-
438
- // @public
439
- export interface GatewayResourceProperties extends ProvisionedResourceProperties, GatewayProperties {
440
- }
441
-
442
- // @public
443
- export function getContinuationToken(page: unknown): string | undefined;
444
-
445
- // @public
446
- export type HeaderMatchType = string;
447
-
448
- // @public
449
- export type HealthState = string;
450
-
451
- // @public
452
- export interface HttpConfig {
453
- hosts: HttpHostConfig[];
454
- name: string;
455
- port: number;
456
- }
457
-
458
- // @public
459
- export interface HttpHostConfig {
460
- name: string;
461
- routes: HttpRouteConfig[];
462
- }
463
-
464
- // @public
465
- export interface HttpRouteConfig {
466
- destination: GatewayDestination;
467
- match: HttpRouteMatchRule;
468
- name: string;
469
- }
470
-
471
- // @public
472
- export interface HttpRouteMatchHeader {
473
- name: string;
474
- type?: HeaderMatchType;
475
- value?: string;
476
- }
477
-
478
- // @public
479
- export interface HttpRouteMatchPath {
480
- rewrite?: string;
481
- type: PathMatchType;
482
- value: string;
483
- }
484
-
485
- // @public
486
- export interface HttpRouteMatchRule {
487
- headers?: HttpRouteMatchHeader[];
488
- path: HttpRouteMatchPath;
489
- }
490
-
491
- // @public
492
- export interface ImageRegistryCredential {
493
- password?: string;
494
- server: string;
495
- username: string;
496
- }
497
-
498
- // @public
499
- export interface InlinedValueSecretResourceProperties extends SecretResourceProperties {
500
- kind: "inlinedValue";
501
- }
502
-
503
- // @public
504
- export enum KnownApplicationScopedVolumeKind {
505
- ServiceFabricVolumeDisk = "ServiceFabricVolumeDisk"
506
- }
507
-
508
- // @public
509
- export enum KnownAutoScalingMechanismKind {
510
- AddRemoveReplica = "AddRemoveReplica"
511
- }
512
-
513
- // @public
514
- export enum KnownAutoScalingMetricKind {
515
- Resource = "Resource"
516
- }
517
-
518
- // @public
519
- export enum KnownAutoScalingResourceMetricName {
520
- Cpu = "cpu",
521
- MemoryInGB = "memoryInGB"
522
- }
523
-
524
- // @public
525
- export enum KnownAutoScalingTriggerKind {
526
- AverageLoad = "AverageLoad"
527
- }
528
-
529
- // @public
530
- export enum KnownDiagnosticsSinkKind {
531
- AzureInternalMonitoringPipeline = "AzureInternalMonitoringPipeline",
532
- Invalid = "Invalid"
533
- }
534
-
535
- // @public
536
- export enum KnownHeaderMatchType {
537
- Exact = "exact"
538
- }
539
-
540
- // @public
541
- export enum KnownHealthState {
542
- Error = "Error",
543
- Invalid = "Invalid",
544
- Ok = "Ok",
545
- Unknown = "Unknown",
546
- Warning = "Warning"
547
- }
548
-
549
- // @public
550
- export enum KnownNetworkKind {
551
- Local = "Local"
552
- }
553
-
554
- // @public
555
- export enum KnownOperatingSystemType {
556
- Linux = "Linux",
557
- Windows = "Windows"
558
- }
559
-
560
- // @public
561
- export enum KnownPathMatchType {
562
- Prefix = "prefix"
563
- }
564
-
565
- // @public
566
- export enum KnownResourceStatus {
567
- Creating = "Creating",
568
- Deleting = "Deleting",
569
- Failed = "Failed",
570
- Ready = "Ready",
571
- Unknown = "Unknown",
572
- Upgrading = "Upgrading"
573
- }
574
-
575
- // @public
576
- export enum KnownSecretKind {
577
- InlinedValue = "inlinedValue"
578
- }
579
-
580
- // @public
581
- export enum KnownSizeTypes {
582
- Large = "Large",
583
- Medium = "Medium",
584
- Small = "Small"
585
- }
586
-
587
- // @public
588
- export enum KnownVolumeProvider {
589
- SFAzureFile = "SFAzureFile"
590
- }
591
-
592
- // @public
593
- export interface LocalNetworkResourceProperties extends NetworkResourceProperties {
594
- kind: "Local";
595
- networkAddressPrefix?: string;
596
- }
597
-
598
- // @public
599
- export interface ManagedProxyResource {
600
- readonly id?: string;
601
- name?: string;
602
- readonly type?: string;
603
- }
604
-
605
- // @public
606
- export interface Network {
607
- create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: NetworkResourceDescription, options?: NetworkCreateOptionalParams): Promise<NetworkCreateResponse>;
608
- delete(resourceGroupName: string, networkResourceName: string, options?: NetworkDeleteOptionalParams): Promise<void>;
609
- get(resourceGroupName: string, networkResourceName: string, options?: NetworkGetOptionalParams): Promise<NetworkGetResponse>;
610
- listByResourceGroup(resourceGroupName: string, options?: NetworkListByResourceGroupOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
611
- listBySubscription(options?: NetworkListBySubscriptionOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
612
- }
613
-
614
- // @public
615
- export interface NetworkCreateOptionalParams extends coreClient.OperationOptions {
616
- }
617
-
618
- // @public
619
- export type NetworkCreateResponse = NetworkResourceDescription;
620
-
621
- // @public
622
- export interface NetworkDeleteOptionalParams extends coreClient.OperationOptions {
623
- }
624
-
625
- // @public
626
- export interface NetworkGetOptionalParams extends coreClient.OperationOptions {
627
- }
628
-
629
- // @public
630
- export type NetworkGetResponse = NetworkResourceDescription;
631
-
632
- // @public
633
- export type NetworkKind = string;
634
-
635
- // @public
636
- export interface NetworkListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
637
- }
638
-
639
- // @public
640
- export type NetworkListByResourceGroupNextResponse = NetworkResourceDescriptionList;
641
-
642
- // @public
643
- export interface NetworkListByResourceGroupOptionalParams extends coreClient.OperationOptions {
644
- }
645
-
646
- // @public
647
- export type NetworkListByResourceGroupResponse = NetworkResourceDescriptionList;
648
-
649
- // @public
650
- export interface NetworkListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
651
- }
652
-
653
- // @public
654
- export type NetworkListBySubscriptionNextResponse = NetworkResourceDescriptionList;
655
-
656
- // @public
657
- export interface NetworkListBySubscriptionOptionalParams extends coreClient.OperationOptions {
658
- }
659
-
660
- // @public
661
- export type NetworkListBySubscriptionResponse = NetworkResourceDescriptionList;
662
-
663
- // @public
664
- export interface NetworkRef {
665
- endpointRefs?: EndpointRef[];
666
- name?: string;
667
- }
668
-
669
- // @public
670
- export interface NetworkResourceDescription extends TrackedResource {
671
- properties: NetworkResourcePropertiesUnion;
672
- }
673
-
674
- // @public
675
- export interface NetworkResourceDescriptionList {
676
- nextLink?: string;
677
- value?: NetworkResourceDescription[];
678
- }
679
-
680
- // @public
681
- export interface NetworkResourceProperties extends NetworkResourcePropertiesBase {
682
- description?: string;
683
- kind: "NetworkResourceProperties" | "Local";
684
- readonly status?: ResourceStatus;
685
- readonly statusDetails?: string;
686
- }
687
-
688
- // @public
689
- export interface NetworkResourcePropertiesBase extends ProvisionedResourceProperties {
690
- kind: NetworkKind;
691
- }
692
-
693
- // @public (undocumented)
694
- export type NetworkResourcePropertiesBaseUnion = NetworkResourcePropertiesBase | NetworkResourcePropertiesUnion;
695
-
696
- // @public (undocumented)
697
- export type NetworkResourcePropertiesUnion = NetworkResourceProperties | LocalNetworkResourceProperties;
698
-
699
- // @public
700
- export type OperatingSystemType = string;
701
-
702
- // @public
703
- export interface OperationListResult {
704
- readonly nextLink?: string;
705
- value?: OperationResult[];
706
- }
707
-
708
- // @public
709
- export interface OperationResult {
710
- display?: AvailableOperationDisplay;
711
- name?: string;
712
- nextLink?: string;
713
- origin?: string;
714
- }
715
-
716
- // @public
717
- export interface Operations {
718
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationResult>;
719
- }
720
-
721
- // @public
722
- export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
723
- }
724
-
725
- // @public
726
- export type OperationsListNextResponse = OperationListResult;
727
-
728
- // @public
729
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
730
- }
731
-
732
- // @public
733
- export type OperationsListResponse = OperationListResult;
734
-
735
- // @public
736
- export type PathMatchType = string;
737
-
738
- // @public
739
- export interface ProvisionedResourceProperties {
740
- readonly provisioningState?: string;
741
- }
742
-
743
- // @public
744
- export interface ProxyResource extends Resource {
745
- }
746
-
747
- // @public
748
- export interface ReliableCollectionsRef {
749
- doNotPersistState?: boolean;
750
- name: string;
751
- }
752
-
753
- // @public
754
- export interface Resource {
755
- readonly id?: string;
756
- readonly name?: string;
757
- readonly type?: string;
758
- }
759
-
760
- // @public
761
- export interface ResourceLimits {
762
- cpu?: number;
763
- memoryInGB?: number;
764
- }
765
-
766
- // @public
767
- export interface ResourceRequests {
768
- cpu: number;
769
- memoryInGB: number;
770
- }
771
-
772
- // @public
773
- export interface ResourceRequirements {
774
- limits?: ResourceLimits;
775
- requests: ResourceRequests;
776
- }
777
-
778
- // @public
779
- export type ResourceStatus = string;
780
-
781
- // @public
782
- export interface Secret {
783
- create(resourceGroupName: string, secretResourceName: string, secretResourceDescription: SecretResourceDescription, options?: SecretCreateOptionalParams): Promise<SecretCreateResponse>;
784
- delete(resourceGroupName: string, secretResourceName: string, options?: SecretDeleteOptionalParams): Promise<void>;
785
- get(resourceGroupName: string, secretResourceName: string, options?: SecretGetOptionalParams): Promise<SecretGetResponse>;
786
- listByResourceGroup(resourceGroupName: string, options?: SecretListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
787
- listBySubscription(options?: SecretListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
788
- }
789
-
790
- // @public
791
- export interface SecretCreateOptionalParams extends coreClient.OperationOptions {
792
- }
793
-
794
- // @public
795
- export type SecretCreateResponse = SecretResourceDescription;
796
-
797
- // @public
798
- export interface SecretDeleteOptionalParams extends coreClient.OperationOptions {
799
- }
800
-
801
- // @public
802
- export interface SecretGetOptionalParams extends coreClient.OperationOptions {
803
- }
804
-
805
- // @public
806
- export type SecretGetResponse = SecretResourceDescription;
807
-
808
- // @public
809
- export type SecretKind = string;
810
-
811
- // @public
812
- export interface SecretListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
813
- }
814
-
815
- // @public
816
- export type SecretListByResourceGroupNextResponse = SecretResourceDescriptionList;
817
-
818
- // @public
819
- export interface SecretListByResourceGroupOptionalParams extends coreClient.OperationOptions {
820
- }
821
-
822
- // @public
823
- export type SecretListByResourceGroupResponse = SecretResourceDescriptionList;
824
-
825
- // @public
826
- export interface SecretListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
827
- }
828
-
829
- // @public
830
- export type SecretListBySubscriptionNextResponse = SecretResourceDescriptionList;
831
-
832
- // @public
833
- export interface SecretListBySubscriptionOptionalParams extends coreClient.OperationOptions {
834
- }
835
-
836
- // @public
837
- export type SecretListBySubscriptionResponse = SecretResourceDescriptionList;
838
-
839
- // @public
840
- export interface SecretResourceDescription extends TrackedResource {
841
- properties: SecretResourcePropertiesUnion;
842
- }
843
-
844
- // @public
845
- export interface SecretResourceDescriptionList {
846
- nextLink?: string;
847
- value?: SecretResourceDescription[];
848
- }
849
-
850
- // @public
851
- export interface SecretResourceProperties extends SecretResourcePropertiesBase {
852
- contentType?: string;
853
- description?: string;
854
- kind: "SecretResourceProperties" | "inlinedValue";
855
- readonly status?: ResourceStatus;
856
- readonly statusDetails?: string;
857
- }
858
-
859
- // @public
860
- export interface SecretResourcePropertiesBase extends ProvisionedResourceProperties {
861
- kind: SecretKind;
862
- }
863
-
864
- // @public (undocumented)
865
- export type SecretResourcePropertiesBaseUnion = SecretResourcePropertiesBase | SecretResourcePropertiesUnion;
866
-
867
- // @public (undocumented)
868
- export type SecretResourcePropertiesUnion = SecretResourceProperties | InlinedValueSecretResourceProperties;
869
-
870
- // @public
871
- export interface SecretValue {
872
- value?: string;
873
- }
874
-
875
- // @public
876
- export interface SecretValueCreateOptionalParams extends coreClient.OperationOptions {
877
- }
878
-
879
- // @public
880
- export type SecretValueCreateResponse = SecretValueResourceDescription;
881
-
882
- // @public
883
- export interface SecretValueDeleteOptionalParams extends coreClient.OperationOptions {
884
- }
885
-
886
- // @public
887
- export interface SecretValueGetOptionalParams extends coreClient.OperationOptions {
888
- }
889
-
890
- // @public
891
- export type SecretValueGetResponse = SecretValueResourceDescription;
892
-
893
- // @public
894
- export interface SecretValueListNextOptionalParams extends coreClient.OperationOptions {
895
- }
896
-
897
- // @public
898
- export type SecretValueListNextResponse = SecretValueResourceDescriptionList;
899
-
900
- // @public
901
- export interface SecretValueListOptionalParams extends coreClient.OperationOptions {
902
- }
903
-
904
- // @public
905
- export type SecretValueListResponse = SecretValueResourceDescriptionList;
906
-
907
- // @public
908
- export interface SecretValueListValueOptionalParams extends coreClient.OperationOptions {
909
- }
910
-
911
- // @public
912
- export type SecretValueListValueResponse = SecretValue;
913
-
914
- // @public
915
- export interface SecretValueOperations {
916
- create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, options?: SecretValueCreateOptionalParams): Promise<SecretValueCreateResponse>;
917
- delete(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueDeleteOptionalParams): Promise<void>;
918
- get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueGetOptionalParams): Promise<SecretValueGetResponse>;
919
- list(resourceGroupName: string, secretResourceName: string, options?: SecretValueListOptionalParams): PagedAsyncIterableIterator<SecretValueResourceDescription>;
920
- listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueListValueOptionalParams): Promise<SecretValueListValueResponse>;
921
- }
922
-
923
- // @public
924
- export interface SecretValueProperties {
925
- value?: string;
926
- }
927
-
928
- // @public
929
- export interface SecretValueResourceDescription extends TrackedResource {
930
- readonly provisioningState?: string;
931
- value?: string;
932
- }
933
-
934
- // @public
935
- export interface SecretValueResourceDescriptionList {
936
- nextLink?: string;
937
- value?: SecretValueResourceDescription[];
938
- }
939
-
940
- // @public
941
- export interface SecretValueResourceProperties extends ProvisionedResourceProperties, SecretValueProperties {
942
- }
943
-
944
- // @public
945
- export interface Service {
946
- get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceGetOptionalParams): Promise<ServiceGetResponse>;
947
- list(resourceGroupName: string, applicationResourceName: string, options?: ServiceListOptionalParams): PagedAsyncIterableIterator<ServiceResourceDescription>;
948
- }
949
-
950
- // @public (undocumented)
951
- export class ServiceFabricMeshManagementClient extends coreClient.ServiceClient {
952
- // (undocumented)
953
- $host: string;
954
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ServiceFabricMeshManagementClientOptionalParams);
955
- // (undocumented)
956
- apiVersion: string;
957
- // (undocumented)
958
- application: Application;
959
- // (undocumented)
960
- codePackage: CodePackage;
961
- // (undocumented)
962
- gateway: Gateway;
963
- // (undocumented)
964
- network: Network;
965
- // (undocumented)
966
- operations: Operations;
967
- // (undocumented)
968
- secret: Secret;
969
- // (undocumented)
970
- secretValueOperations: SecretValueOperations;
971
- // (undocumented)
972
- service: Service;
973
- // (undocumented)
974
- serviceReplica: ServiceReplica;
975
- // (undocumented)
976
- subscriptionId: string;
977
- // (undocumented)
978
- volume: Volume;
979
- }
980
-
981
- // @public
982
- export interface ServiceFabricMeshManagementClientOptionalParams extends coreClient.ServiceClientOptions {
983
- $host?: string;
984
- apiVersion?: string;
985
- endpoint?: string;
986
- }
987
-
988
- // @public
989
- export interface ServiceGetOptionalParams extends coreClient.OperationOptions {
990
- }
991
-
992
- // @public
993
- export type ServiceGetResponse = ServiceResourceDescription;
994
-
995
- // @public
996
- export interface ServiceListNextOptionalParams extends coreClient.OperationOptions {
997
- }
998
-
999
- // @public
1000
- export type ServiceListNextResponse = ServiceResourceDescriptionList;
1001
-
1002
- // @public
1003
- export interface ServiceListOptionalParams extends coreClient.OperationOptions {
1004
- }
1005
-
1006
- // @public
1007
- export type ServiceListResponse = ServiceResourceDescriptionList;
1008
-
1009
- // @public
1010
- export interface ServiceProperties {
1011
- autoScalingPolicies?: AutoScalingPolicy[];
1012
- description?: string;
1013
- readonly healthState?: HealthState;
1014
- replicaCount?: number;
1015
- readonly status?: ResourceStatus;
1016
- readonly statusDetails?: string;
1017
- readonly unhealthyEvaluation?: string;
1018
- }
1019
-
1020
- // @public
1021
- export interface ServiceReplica {
1022
- get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, options?: ServiceReplicaGetOptionalParams): Promise<ServiceReplicaGetResponse>;
1023
- list(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceReplicaListOptionalParams): PagedAsyncIterableIterator<ServiceReplicaDescription>;
1024
- }
1025
-
1026
- // @public
1027
- export interface ServiceReplicaDescription extends ServiceReplicaProperties {
1028
- replicaName: string;
1029
- }
1030
-
1031
- // @public
1032
- export interface ServiceReplicaDescriptionList {
1033
- nextLink?: string;
1034
- value?: ServiceReplicaDescription[];
1035
- }
1036
-
1037
- // @public
1038
- export interface ServiceReplicaGetOptionalParams extends coreClient.OperationOptions {
1039
- }
1040
-
1041
- // @public
1042
- export type ServiceReplicaGetResponse = ServiceReplicaDescription;
1043
-
1044
- // @public
1045
- export interface ServiceReplicaListNextOptionalParams extends coreClient.OperationOptions {
1046
- }
1047
-
1048
- // @public
1049
- export type ServiceReplicaListNextResponse = ServiceReplicaDescriptionList;
1050
-
1051
- // @public
1052
- export interface ServiceReplicaListOptionalParams extends coreClient.OperationOptions {
1053
- }
1054
-
1055
- // @public
1056
- export type ServiceReplicaListResponse = ServiceReplicaDescriptionList;
1057
-
1058
- // @public
1059
- export interface ServiceReplicaProperties {
1060
- codePackages: ContainerCodePackageProperties[];
1061
- diagnostics?: DiagnosticsRef;
1062
- networkRefs?: NetworkRef[];
1063
- osType: OperatingSystemType;
1064
- }
1065
-
1066
- // @public
1067
- export interface ServiceResourceDescription extends ManagedProxyResource {
1068
- autoScalingPolicies?: AutoScalingPolicy[];
1069
- codePackages: ContainerCodePackageProperties[];
1070
- description?: string;
1071
- diagnostics?: DiagnosticsRef;
1072
- readonly healthState?: HealthState;
1073
- networkRefs?: NetworkRef[];
1074
- osType: OperatingSystemType;
1075
- readonly provisioningState?: string;
1076
- replicaCount?: number;
1077
- readonly status?: ResourceStatus;
1078
- readonly statusDetails?: string;
1079
- readonly unhealthyEvaluation?: string;
1080
- }
1081
-
1082
- // @public
1083
- export interface ServiceResourceDescriptionList {
1084
- nextLink?: string;
1085
- value?: ServiceResourceDescription[];
1086
- }
1087
-
1088
- // @public
1089
- export interface ServiceResourceProperties extends ProvisionedResourceProperties, ServiceReplicaProperties, ServiceProperties {
1090
- }
1091
-
1092
- // @public
1093
- export interface Setting {
1094
- name?: string;
1095
- value?: string;
1096
- }
1097
-
1098
- // @public
1099
- export type SizeTypes = string;
1100
-
1101
- // @public
1102
- export interface TcpConfig {
1103
- destination: GatewayDestination;
1104
- name: string;
1105
- port: number;
1106
- }
1107
-
1108
- // @public
1109
- export interface TrackedResource extends Resource {
1110
- location: string;
1111
- tags?: {
1112
- [propertyName: string]: string;
1113
- };
1114
- }
1115
-
1116
- // @public
1117
- export interface Volume {
1118
- create(resourceGroupName: string, volumeResourceName: string, volumeResourceDescription: VolumeResourceDescription, options?: VolumeCreateOptionalParams): Promise<VolumeCreateResponse>;
1119
- delete(resourceGroupName: string, volumeResourceName: string, options?: VolumeDeleteOptionalParams): Promise<void>;
1120
- get(resourceGroupName: string, volumeResourceName: string, options?: VolumeGetOptionalParams): Promise<VolumeGetResponse>;
1121
- listByResourceGroup(resourceGroupName: string, options?: VolumeListByResourceGroupOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
1122
- listBySubscription(options?: VolumeListBySubscriptionOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
1123
- }
1124
-
1125
- // @public
1126
- export interface VolumeCreateOptionalParams extends coreClient.OperationOptions {
1127
- }
1128
-
1129
- // @public
1130
- export type VolumeCreateResponse = VolumeResourceDescription;
1131
-
1132
- // @public
1133
- export interface VolumeDeleteOptionalParams extends coreClient.OperationOptions {
1134
- }
1135
-
1136
- // @public
1137
- export interface VolumeGetOptionalParams extends coreClient.OperationOptions {
1138
- }
1139
-
1140
- // @public
1141
- export type VolumeGetResponse = VolumeResourceDescription;
1142
-
1143
- // @public
1144
- export interface VolumeListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1145
- }
1146
-
1147
- // @public
1148
- export type VolumeListByResourceGroupNextResponse = VolumeResourceDescriptionList;
1149
-
1150
- // @public
1151
- export interface VolumeListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1152
- }
1153
-
1154
- // @public
1155
- export type VolumeListByResourceGroupResponse = VolumeResourceDescriptionList;
1156
-
1157
- // @public
1158
- export interface VolumeListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1159
- }
1160
-
1161
- // @public
1162
- export type VolumeListBySubscriptionNextResponse = VolumeResourceDescriptionList;
1163
-
1164
- // @public
1165
- export interface VolumeListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1166
- }
1167
-
1168
- // @public
1169
- export type VolumeListBySubscriptionResponse = VolumeResourceDescriptionList;
1170
-
1171
- // @public
1172
- export interface VolumeProperties {
1173
- azureFileParameters?: VolumeProviderParametersAzureFile;
1174
- description?: string;
1175
- provider: VolumeProvider;
1176
- readonly status?: ResourceStatus;
1177
- readonly statusDetails?: string;
1178
- }
1179
-
1180
- // @public
1181
- export type VolumeProvider = string;
1182
-
1183
- // @public
1184
- export interface VolumeProviderParametersAzureFile {
1185
- accountKey?: string;
1186
- accountName: string;
1187
- shareName: string;
1188
- }
1189
-
1190
- // @public
1191
- export interface VolumeReference {
1192
- destinationPath: string;
1193
- name: string;
1194
- readOnly?: boolean;
1195
- }
1196
-
1197
- // @public
1198
- export interface VolumeResourceDescription extends TrackedResource {
1199
- azureFileParameters?: VolumeProviderParametersAzureFile;
1200
- description?: string;
1201
- provider: VolumeProvider;
1202
- readonly provisioningState?: string;
1203
- readonly status?: ResourceStatus;
1204
- readonly statusDetails?: string;
1205
- }
1206
-
1207
- // @public
1208
- export interface VolumeResourceDescriptionList {
1209
- nextLink?: string;
1210
- value?: VolumeResourceDescription[];
1211
- }
1212
-
1213
- // @public
1214
- export interface VolumeResourceProperties extends ProvisionedResourceProperties, VolumeProperties {
1215
- }
1216
-
1217
- // (No @packageDocumentation comment for this package)
1218
-
1219
- ```
1
+ ## API Report File for "@azure/arm-servicefabricmesh"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+
11
+ // @public
12
+ export interface AddRemoveReplicaScalingMechanism extends AutoScalingMechanism {
13
+ kind: "AddRemoveReplica";
14
+ maxCount: number;
15
+ minCount: number;
16
+ scaleIncrement: number;
17
+ }
18
+
19
+ // @public
20
+ export interface Application {
21
+ create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options?: ApplicationCreateOptionalParams): Promise<ApplicationCreateResponse>;
22
+ delete(resourceGroupName: string, applicationResourceName: string, options?: ApplicationDeleteOptionalParams): Promise<void>;
23
+ get(resourceGroupName: string, applicationResourceName: string, options?: ApplicationGetOptionalParams): Promise<ApplicationGetResponse>;
24
+ listByResourceGroup(resourceGroupName: string, options?: ApplicationListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
25
+ listBySubscription(options?: ApplicationListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
26
+ }
27
+
28
+ // @public
29
+ export interface ApplicationCreateOptionalParams extends coreClient.OperationOptions {
30
+ }
31
+
32
+ // @public
33
+ export type ApplicationCreateResponse = ApplicationResourceDescription;
34
+
35
+ // @public
36
+ export interface ApplicationDeleteOptionalParams extends coreClient.OperationOptions {
37
+ }
38
+
39
+ // @public
40
+ export interface ApplicationGetOptionalParams extends coreClient.OperationOptions {
41
+ }
42
+
43
+ // @public
44
+ export type ApplicationGetResponse = ApplicationResourceDescription;
45
+
46
+ // @public
47
+ export interface ApplicationListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
48
+ }
49
+
50
+ // @public
51
+ export type ApplicationListByResourceGroupNextResponse = ApplicationResourceDescriptionList;
52
+
53
+ // @public
54
+ export interface ApplicationListByResourceGroupOptionalParams extends coreClient.OperationOptions {
55
+ }
56
+
57
+ // @public
58
+ export type ApplicationListByResourceGroupResponse = ApplicationResourceDescriptionList;
59
+
60
+ // @public
61
+ export interface ApplicationListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
62
+ }
63
+
64
+ // @public
65
+ export type ApplicationListBySubscriptionNextResponse = ApplicationResourceDescriptionList;
66
+
67
+ // @public
68
+ export interface ApplicationListBySubscriptionOptionalParams extends coreClient.OperationOptions {
69
+ }
70
+
71
+ // @public
72
+ export type ApplicationListBySubscriptionResponse = ApplicationResourceDescriptionList;
73
+
74
+ // @public
75
+ export interface ApplicationProperties {
76
+ debugParams?: string;
77
+ description?: string;
78
+ diagnostics?: DiagnosticsDescription;
79
+ readonly healthState?: HealthState;
80
+ readonly serviceNames?: string[];
81
+ services?: ServiceResourceDescription[];
82
+ readonly status?: ResourceStatus;
83
+ readonly statusDetails?: string;
84
+ readonly unhealthyEvaluation?: string;
85
+ }
86
+
87
+ // @public
88
+ export interface ApplicationResourceDescription extends TrackedResource {
89
+ debugParams?: string;
90
+ description?: string;
91
+ diagnostics?: DiagnosticsDescription;
92
+ readonly healthState?: HealthState;
93
+ readonly provisioningState?: string;
94
+ readonly serviceNames?: string[];
95
+ services?: ServiceResourceDescription[];
96
+ readonly status?: ResourceStatus;
97
+ readonly statusDetails?: string;
98
+ readonly unhealthyEvaluation?: string;
99
+ }
100
+
101
+ // @public
102
+ export interface ApplicationResourceDescriptionList {
103
+ nextLink?: string;
104
+ value?: ApplicationResourceDescription[];
105
+ }
106
+
107
+ // @public
108
+ export interface ApplicationResourceProperties extends ProvisionedResourceProperties, ApplicationProperties {
109
+ }
110
+
111
+ // @public
112
+ export interface ApplicationScopedVolume extends VolumeReference {
113
+ creationParameters: ApplicationScopedVolumeCreationParametersUnion;
114
+ }
115
+
116
+ // @public
117
+ export interface ApplicationScopedVolumeCreationParameters {
118
+ description?: string;
119
+ kind: "ServiceFabricVolumeDisk";
120
+ }
121
+
122
+ // @public
123
+ export interface ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk extends ApplicationScopedVolumeCreationParameters {
124
+ kind: "ServiceFabricVolumeDisk";
125
+ sizeDisk: SizeTypes;
126
+ }
127
+
128
+ // @public (undocumented)
129
+ export type ApplicationScopedVolumeCreationParametersUnion = ApplicationScopedVolumeCreationParameters | ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk;
130
+
131
+ // @public
132
+ export type ApplicationScopedVolumeKind = string;
133
+
134
+ // @public
135
+ export interface AutoScalingMechanism {
136
+ kind: "AddRemoveReplica";
137
+ }
138
+
139
+ // @public
140
+ export type AutoScalingMechanismKind = string;
141
+
142
+ // @public (undocumented)
143
+ export type AutoScalingMechanismUnion = AutoScalingMechanism | AddRemoveReplicaScalingMechanism;
144
+
145
+ // @public
146
+ export interface AutoScalingMetric {
147
+ kind: "Resource";
148
+ }
149
+
150
+ // @public
151
+ export type AutoScalingMetricKind = string;
152
+
153
+ // @public (undocumented)
154
+ export type AutoScalingMetricUnion = AutoScalingMetric | AutoScalingResourceMetric;
155
+
156
+ // @public
157
+ export interface AutoScalingPolicy {
158
+ mechanism: AutoScalingMechanismUnion;
159
+ name: string;
160
+ trigger: AutoScalingTriggerUnion;
161
+ }
162
+
163
+ // @public
164
+ export interface AutoScalingResourceMetric extends AutoScalingMetric {
165
+ kind: "Resource";
166
+ name: AutoScalingResourceMetricName;
167
+ }
168
+
169
+ // @public
170
+ export type AutoScalingResourceMetricName = string;
171
+
172
+ // @public
173
+ export interface AutoScalingTrigger {
174
+ kind: "AverageLoad";
175
+ }
176
+
177
+ // @public
178
+ export type AutoScalingTriggerKind = string;
179
+
180
+ // @public (undocumented)
181
+ export type AutoScalingTriggerUnion = AutoScalingTrigger | AverageLoadScalingTrigger;
182
+
183
+ // @public
184
+ export interface AvailableOperationDisplay {
185
+ description?: string;
186
+ operation?: string;
187
+ provider?: string;
188
+ resource?: string;
189
+ }
190
+
191
+ // @public
192
+ export interface AverageLoadScalingTrigger extends AutoScalingTrigger {
193
+ kind: "AverageLoad";
194
+ lowerLoadThreshold: number;
195
+ metric: AutoScalingMetricUnion;
196
+ scaleIntervalInSeconds: number;
197
+ upperLoadThreshold: number;
198
+ }
199
+
200
+ // @public
201
+ export interface AzureInternalMonitoringPipelineSinkDescription extends DiagnosticsSinkProperties {
202
+ accountName?: string;
203
+ autoKeyConfigUrl?: string;
204
+ fluentdConfigUrl?: any;
205
+ kind: "AzureInternalMonitoringPipeline";
206
+ maConfigUrl?: string;
207
+ namespace?: string;
208
+ }
209
+
210
+ // @public
211
+ export interface CodePackage {
212
+ getContainerLogs(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, codePackageName: string, options?: CodePackageGetContainerLogsOptionalParams): Promise<CodePackageGetContainerLogsResponse>;
213
+ }
214
+
215
+ // @public
216
+ export interface CodePackageGetContainerLogsOptionalParams extends coreClient.OperationOptions {
217
+ tail?: number;
218
+ }
219
+
220
+ // @public
221
+ export type CodePackageGetContainerLogsResponse = ContainerLogs;
222
+
223
+ // @public
224
+ export interface ContainerCodePackageProperties {
225
+ commands?: string[];
226
+ diagnostics?: DiagnosticsRef;
227
+ endpoints?: EndpointProperties[];
228
+ entrypoint?: string;
229
+ environmentVariables?: EnvironmentVariable[];
230
+ image: string;
231
+ imageRegistryCredential?: ImageRegistryCredential;
232
+ readonly instanceView?: ContainerInstanceView;
233
+ labels?: ContainerLabel[];
234
+ name: string;
235
+ reliableCollectionsRefs?: ReliableCollectionsRef[];
236
+ resources: ResourceRequirements;
237
+ settings?: Setting[];
238
+ volumeRefs?: VolumeReference[];
239
+ volumes?: ApplicationScopedVolume[];
240
+ }
241
+
242
+ // @public
243
+ export interface ContainerEvent {
244
+ count?: number;
245
+ firstTimestamp?: string;
246
+ lastTimestamp?: string;
247
+ message?: string;
248
+ name?: string;
249
+ type?: string;
250
+ }
251
+
252
+ // @public
253
+ export interface ContainerInstanceView {
254
+ currentState?: ContainerState;
255
+ events?: ContainerEvent[];
256
+ previousState?: ContainerState;
257
+ restartCount?: number;
258
+ }
259
+
260
+ // @public
261
+ export interface ContainerLabel {
262
+ name: string;
263
+ value: string;
264
+ }
265
+
266
+ // @public
267
+ export interface ContainerLogs {
268
+ content?: string;
269
+ }
270
+
271
+ // @public
272
+ export interface ContainerState {
273
+ detailStatus?: string;
274
+ exitCode?: string;
275
+ finishTime?: Date;
276
+ startTime?: Date;
277
+ state?: string;
278
+ }
279
+
280
+ // @public
281
+ export interface DiagnosticsDescription {
282
+ defaultSinkRefs?: string[];
283
+ enabled?: boolean;
284
+ sinks?: DiagnosticsSinkPropertiesUnion[];
285
+ }
286
+
287
+ // @public
288
+ export interface DiagnosticsRef {
289
+ enabled?: boolean;
290
+ sinkRefs?: string[];
291
+ }
292
+
293
+ // @public
294
+ export type DiagnosticsSinkKind = string;
295
+
296
+ // @public
297
+ export interface DiagnosticsSinkProperties {
298
+ description?: string;
299
+ kind: "AzureInternalMonitoringPipeline";
300
+ name?: string;
301
+ }
302
+
303
+ // @public (undocumented)
304
+ export type DiagnosticsSinkPropertiesUnion = DiagnosticsSinkProperties | AzureInternalMonitoringPipelineSinkDescription;
305
+
306
+ // @public
307
+ export interface EndpointProperties {
308
+ name: string;
309
+ port?: number;
310
+ }
311
+
312
+ // @public
313
+ export interface EndpointRef {
314
+ name?: string;
315
+ }
316
+
317
+ // @public
318
+ export interface EnvironmentVariable {
319
+ name?: string;
320
+ value?: string;
321
+ }
322
+
323
+ // @public
324
+ export interface ErrorDetailsModel {
325
+ // (undocumented)
326
+ code: string;
327
+ message: string;
328
+ }
329
+
330
+ // @public
331
+ export interface ErrorErrorModel {
332
+ // (undocumented)
333
+ code: string;
334
+ details?: ErrorDetailsModel[];
335
+ // (undocumented)
336
+ innerError?: string;
337
+ message?: string;
338
+ }
339
+
340
+ // @public
341
+ export interface ErrorModel {
342
+ error: ErrorErrorModel;
343
+ }
344
+
345
+ // @public
346
+ export interface Gateway {
347
+ create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: GatewayResourceDescription, options?: GatewayCreateOptionalParams): Promise<GatewayCreateResponse>;
348
+ delete(resourceGroupName: string, gatewayResourceName: string, options?: GatewayDeleteOptionalParams): Promise<void>;
349
+ get(resourceGroupName: string, gatewayResourceName: string, options?: GatewayGetOptionalParams): Promise<GatewayGetResponse>;
350
+ listByResourceGroup(resourceGroupName: string, options?: GatewayListByResourceGroupOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
351
+ listBySubscription(options?: GatewayListBySubscriptionOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
352
+ }
353
+
354
+ // @public
355
+ export interface GatewayCreateOptionalParams extends coreClient.OperationOptions {
356
+ }
357
+
358
+ // @public
359
+ export type GatewayCreateResponse = GatewayResourceDescription;
360
+
361
+ // @public
362
+ export interface GatewayDeleteOptionalParams extends coreClient.OperationOptions {
363
+ }
364
+
365
+ // @public
366
+ export interface GatewayDestination {
367
+ applicationName: string;
368
+ endpointName: string;
369
+ serviceName: string;
370
+ }
371
+
372
+ // @public
373
+ export interface GatewayGetOptionalParams extends coreClient.OperationOptions {
374
+ }
375
+
376
+ // @public
377
+ export type GatewayGetResponse = GatewayResourceDescription;
378
+
379
+ // @public
380
+ export interface GatewayListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
381
+ }
382
+
383
+ // @public
384
+ export type GatewayListByResourceGroupNextResponse = GatewayResourceDescriptionList;
385
+
386
+ // @public
387
+ export interface GatewayListByResourceGroupOptionalParams extends coreClient.OperationOptions {
388
+ }
389
+
390
+ // @public
391
+ export type GatewayListByResourceGroupResponse = GatewayResourceDescriptionList;
392
+
393
+ // @public
394
+ export interface GatewayListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
395
+ }
396
+
397
+ // @public
398
+ export type GatewayListBySubscriptionNextResponse = GatewayResourceDescriptionList;
399
+
400
+ // @public
401
+ export interface GatewayListBySubscriptionOptionalParams extends coreClient.OperationOptions {
402
+ }
403
+
404
+ // @public
405
+ export type GatewayListBySubscriptionResponse = GatewayResourceDescriptionList;
406
+
407
+ // @public
408
+ export interface GatewayProperties {
409
+ description?: string;
410
+ destinationNetwork: NetworkRef;
411
+ http?: HttpConfig[];
412
+ readonly ipAddress?: string;
413
+ sourceNetwork: NetworkRef;
414
+ readonly status?: ResourceStatus;
415
+ readonly statusDetails?: string;
416
+ tcp?: TcpConfig[];
417
+ }
418
+
419
+ // @public
420
+ export interface GatewayResourceDescription extends TrackedResource {
421
+ description?: string;
422
+ destinationNetwork: NetworkRef;
423
+ http?: HttpConfig[];
424
+ readonly ipAddress?: string;
425
+ readonly provisioningState?: string;
426
+ sourceNetwork: NetworkRef;
427
+ readonly status?: ResourceStatus;
428
+ readonly statusDetails?: string;
429
+ tcp?: TcpConfig[];
430
+ }
431
+
432
+ // @public
433
+ export interface GatewayResourceDescriptionList {
434
+ nextLink?: string;
435
+ value?: GatewayResourceDescription[];
436
+ }
437
+
438
+ // @public
439
+ export interface GatewayResourceProperties extends ProvisionedResourceProperties, GatewayProperties {
440
+ }
441
+
442
+ // @public
443
+ export function getContinuationToken(page: unknown): string | undefined;
444
+
445
+ // @public
446
+ export type HeaderMatchType = string;
447
+
448
+ // @public
449
+ export type HealthState = string;
450
+
451
+ // @public
452
+ export interface HttpConfig {
453
+ hosts: HttpHostConfig[];
454
+ name: string;
455
+ port: number;
456
+ }
457
+
458
+ // @public
459
+ export interface HttpHostConfig {
460
+ name: string;
461
+ routes: HttpRouteConfig[];
462
+ }
463
+
464
+ // @public
465
+ export interface HttpRouteConfig {
466
+ destination: GatewayDestination;
467
+ match: HttpRouteMatchRule;
468
+ name: string;
469
+ }
470
+
471
+ // @public
472
+ export interface HttpRouteMatchHeader {
473
+ name: string;
474
+ type?: HeaderMatchType;
475
+ value?: string;
476
+ }
477
+
478
+ // @public
479
+ export interface HttpRouteMatchPath {
480
+ rewrite?: string;
481
+ type: PathMatchType;
482
+ value: string;
483
+ }
484
+
485
+ // @public
486
+ export interface HttpRouteMatchRule {
487
+ headers?: HttpRouteMatchHeader[];
488
+ path: HttpRouteMatchPath;
489
+ }
490
+
491
+ // @public
492
+ export interface ImageRegistryCredential {
493
+ password?: string;
494
+ server: string;
495
+ username: string;
496
+ }
497
+
498
+ // @public
499
+ export interface InlinedValueSecretResourceProperties extends SecretResourceProperties {
500
+ kind: "inlinedValue";
501
+ }
502
+
503
+ // @public
504
+ export enum KnownApplicationScopedVolumeKind {
505
+ ServiceFabricVolumeDisk = "ServiceFabricVolumeDisk"
506
+ }
507
+
508
+ // @public
509
+ export enum KnownAutoScalingMechanismKind {
510
+ AddRemoveReplica = "AddRemoveReplica"
511
+ }
512
+
513
+ // @public
514
+ export enum KnownAutoScalingMetricKind {
515
+ Resource = "Resource"
516
+ }
517
+
518
+ // @public
519
+ export enum KnownAutoScalingResourceMetricName {
520
+ Cpu = "cpu",
521
+ MemoryInGB = "memoryInGB"
522
+ }
523
+
524
+ // @public
525
+ export enum KnownAutoScalingTriggerKind {
526
+ AverageLoad = "AverageLoad"
527
+ }
528
+
529
+ // @public
530
+ export enum KnownDiagnosticsSinkKind {
531
+ AzureInternalMonitoringPipeline = "AzureInternalMonitoringPipeline",
532
+ Invalid = "Invalid"
533
+ }
534
+
535
+ // @public
536
+ export enum KnownHeaderMatchType {
537
+ Exact = "exact"
538
+ }
539
+
540
+ // @public
541
+ export enum KnownHealthState {
542
+ Error = "Error",
543
+ Invalid = "Invalid",
544
+ Ok = "Ok",
545
+ Unknown = "Unknown",
546
+ Warning = "Warning"
547
+ }
548
+
549
+ // @public
550
+ export enum KnownNetworkKind {
551
+ Local = "Local"
552
+ }
553
+
554
+ // @public
555
+ export enum KnownOperatingSystemType {
556
+ Linux = "Linux",
557
+ Windows = "Windows"
558
+ }
559
+
560
+ // @public
561
+ export enum KnownPathMatchType {
562
+ Prefix = "prefix"
563
+ }
564
+
565
+ // @public
566
+ export enum KnownResourceStatus {
567
+ Creating = "Creating",
568
+ Deleting = "Deleting",
569
+ Failed = "Failed",
570
+ Ready = "Ready",
571
+ Unknown = "Unknown",
572
+ Upgrading = "Upgrading"
573
+ }
574
+
575
+ // @public
576
+ export enum KnownSecretKind {
577
+ InlinedValue = "inlinedValue"
578
+ }
579
+
580
+ // @public
581
+ export enum KnownSizeTypes {
582
+ Large = "Large",
583
+ Medium = "Medium",
584
+ Small = "Small"
585
+ }
586
+
587
+ // @public
588
+ export enum KnownVolumeProvider {
589
+ SFAzureFile = "SFAzureFile"
590
+ }
591
+
592
+ // @public
593
+ export interface LocalNetworkResourceProperties extends NetworkResourceProperties {
594
+ kind: "Local";
595
+ networkAddressPrefix?: string;
596
+ }
597
+
598
+ // @public
599
+ export interface ManagedProxyResource {
600
+ readonly id?: string;
601
+ name?: string;
602
+ readonly type?: string;
603
+ }
604
+
605
+ // @public
606
+ export interface Network {
607
+ create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: NetworkResourceDescription, options?: NetworkCreateOptionalParams): Promise<NetworkCreateResponse>;
608
+ delete(resourceGroupName: string, networkResourceName: string, options?: NetworkDeleteOptionalParams): Promise<void>;
609
+ get(resourceGroupName: string, networkResourceName: string, options?: NetworkGetOptionalParams): Promise<NetworkGetResponse>;
610
+ listByResourceGroup(resourceGroupName: string, options?: NetworkListByResourceGroupOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
611
+ listBySubscription(options?: NetworkListBySubscriptionOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
612
+ }
613
+
614
+ // @public
615
+ export interface NetworkCreateOptionalParams extends coreClient.OperationOptions {
616
+ }
617
+
618
+ // @public
619
+ export type NetworkCreateResponse = NetworkResourceDescription;
620
+
621
+ // @public
622
+ export interface NetworkDeleteOptionalParams extends coreClient.OperationOptions {
623
+ }
624
+
625
+ // @public
626
+ export interface NetworkGetOptionalParams extends coreClient.OperationOptions {
627
+ }
628
+
629
+ // @public
630
+ export type NetworkGetResponse = NetworkResourceDescription;
631
+
632
+ // @public
633
+ export type NetworkKind = string;
634
+
635
+ // @public
636
+ export interface NetworkListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
637
+ }
638
+
639
+ // @public
640
+ export type NetworkListByResourceGroupNextResponse = NetworkResourceDescriptionList;
641
+
642
+ // @public
643
+ export interface NetworkListByResourceGroupOptionalParams extends coreClient.OperationOptions {
644
+ }
645
+
646
+ // @public
647
+ export type NetworkListByResourceGroupResponse = NetworkResourceDescriptionList;
648
+
649
+ // @public
650
+ export interface NetworkListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
651
+ }
652
+
653
+ // @public
654
+ export type NetworkListBySubscriptionNextResponse = NetworkResourceDescriptionList;
655
+
656
+ // @public
657
+ export interface NetworkListBySubscriptionOptionalParams extends coreClient.OperationOptions {
658
+ }
659
+
660
+ // @public
661
+ export type NetworkListBySubscriptionResponse = NetworkResourceDescriptionList;
662
+
663
+ // @public
664
+ export interface NetworkRef {
665
+ endpointRefs?: EndpointRef[];
666
+ name?: string;
667
+ }
668
+
669
+ // @public
670
+ export interface NetworkResourceDescription extends TrackedResource {
671
+ properties: NetworkResourcePropertiesUnion;
672
+ }
673
+
674
+ // @public
675
+ export interface NetworkResourceDescriptionList {
676
+ nextLink?: string;
677
+ value?: NetworkResourceDescription[];
678
+ }
679
+
680
+ // @public
681
+ export interface NetworkResourceProperties extends NetworkResourcePropertiesBase {
682
+ description?: string;
683
+ kind: "NetworkResourceProperties" | "Local";
684
+ readonly status?: ResourceStatus;
685
+ readonly statusDetails?: string;
686
+ }
687
+
688
+ // @public
689
+ export interface NetworkResourcePropertiesBase extends ProvisionedResourceProperties {
690
+ kind: NetworkKind;
691
+ }
692
+
693
+ // @public (undocumented)
694
+ export type NetworkResourcePropertiesBaseUnion = NetworkResourcePropertiesBase | NetworkResourcePropertiesUnion;
695
+
696
+ // @public (undocumented)
697
+ export type NetworkResourcePropertiesUnion = NetworkResourceProperties | LocalNetworkResourceProperties;
698
+
699
+ // @public
700
+ export type OperatingSystemType = string;
701
+
702
+ // @public
703
+ export interface OperationListResult {
704
+ readonly nextLink?: string;
705
+ value?: OperationResult[];
706
+ }
707
+
708
+ // @public
709
+ export interface OperationResult {
710
+ display?: AvailableOperationDisplay;
711
+ name?: string;
712
+ nextLink?: string;
713
+ origin?: string;
714
+ }
715
+
716
+ // @public
717
+ export interface Operations {
718
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationResult>;
719
+ }
720
+
721
+ // @public
722
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
723
+ }
724
+
725
+ // @public
726
+ export type OperationsListNextResponse = OperationListResult;
727
+
728
+ // @public
729
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
730
+ }
731
+
732
+ // @public
733
+ export type OperationsListResponse = OperationListResult;
734
+
735
+ // @public
736
+ export type PathMatchType = string;
737
+
738
+ // @public
739
+ export interface ProvisionedResourceProperties {
740
+ readonly provisioningState?: string;
741
+ }
742
+
743
+ // @public
744
+ export interface ProxyResource extends Resource {
745
+ }
746
+
747
+ // @public
748
+ export interface ReliableCollectionsRef {
749
+ doNotPersistState?: boolean;
750
+ name: string;
751
+ }
752
+
753
+ // @public
754
+ export interface Resource {
755
+ readonly id?: string;
756
+ readonly name?: string;
757
+ readonly type?: string;
758
+ }
759
+
760
+ // @public
761
+ export interface ResourceLimits {
762
+ cpu?: number;
763
+ memoryInGB?: number;
764
+ }
765
+
766
+ // @public
767
+ export interface ResourceRequests {
768
+ cpu: number;
769
+ memoryInGB: number;
770
+ }
771
+
772
+ // @public
773
+ export interface ResourceRequirements {
774
+ limits?: ResourceLimits;
775
+ requests: ResourceRequests;
776
+ }
777
+
778
+ // @public
779
+ export type ResourceStatus = string;
780
+
781
+ // @public
782
+ export interface Secret {
783
+ create(resourceGroupName: string, secretResourceName: string, secretResourceDescription: SecretResourceDescription, options?: SecretCreateOptionalParams): Promise<SecretCreateResponse>;
784
+ delete(resourceGroupName: string, secretResourceName: string, options?: SecretDeleteOptionalParams): Promise<void>;
785
+ get(resourceGroupName: string, secretResourceName: string, options?: SecretGetOptionalParams): Promise<SecretGetResponse>;
786
+ listByResourceGroup(resourceGroupName: string, options?: SecretListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
787
+ listBySubscription(options?: SecretListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
788
+ }
789
+
790
+ // @public
791
+ export interface SecretCreateOptionalParams extends coreClient.OperationOptions {
792
+ }
793
+
794
+ // @public
795
+ export type SecretCreateResponse = SecretResourceDescription;
796
+
797
+ // @public
798
+ export interface SecretDeleteOptionalParams extends coreClient.OperationOptions {
799
+ }
800
+
801
+ // @public
802
+ export interface SecretGetOptionalParams extends coreClient.OperationOptions {
803
+ }
804
+
805
+ // @public
806
+ export type SecretGetResponse = SecretResourceDescription;
807
+
808
+ // @public
809
+ export type SecretKind = string;
810
+
811
+ // @public
812
+ export interface SecretListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
813
+ }
814
+
815
+ // @public
816
+ export type SecretListByResourceGroupNextResponse = SecretResourceDescriptionList;
817
+
818
+ // @public
819
+ export interface SecretListByResourceGroupOptionalParams extends coreClient.OperationOptions {
820
+ }
821
+
822
+ // @public
823
+ export type SecretListByResourceGroupResponse = SecretResourceDescriptionList;
824
+
825
+ // @public
826
+ export interface SecretListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
827
+ }
828
+
829
+ // @public
830
+ export type SecretListBySubscriptionNextResponse = SecretResourceDescriptionList;
831
+
832
+ // @public
833
+ export interface SecretListBySubscriptionOptionalParams extends coreClient.OperationOptions {
834
+ }
835
+
836
+ // @public
837
+ export type SecretListBySubscriptionResponse = SecretResourceDescriptionList;
838
+
839
+ // @public
840
+ export interface SecretResourceDescription extends TrackedResource {
841
+ properties: SecretResourcePropertiesUnion;
842
+ }
843
+
844
+ // @public
845
+ export interface SecretResourceDescriptionList {
846
+ nextLink?: string;
847
+ value?: SecretResourceDescription[];
848
+ }
849
+
850
+ // @public
851
+ export interface SecretResourceProperties extends SecretResourcePropertiesBase {
852
+ contentType?: string;
853
+ description?: string;
854
+ kind: "SecretResourceProperties" | "inlinedValue";
855
+ readonly status?: ResourceStatus;
856
+ readonly statusDetails?: string;
857
+ }
858
+
859
+ // @public
860
+ export interface SecretResourcePropertiesBase extends ProvisionedResourceProperties {
861
+ kind: SecretKind;
862
+ }
863
+
864
+ // @public (undocumented)
865
+ export type SecretResourcePropertiesBaseUnion = SecretResourcePropertiesBase | SecretResourcePropertiesUnion;
866
+
867
+ // @public (undocumented)
868
+ export type SecretResourcePropertiesUnion = SecretResourceProperties | InlinedValueSecretResourceProperties;
869
+
870
+ // @public
871
+ export interface SecretValue {
872
+ value?: string;
873
+ }
874
+
875
+ // @public
876
+ export interface SecretValueCreateOptionalParams extends coreClient.OperationOptions {
877
+ }
878
+
879
+ // @public
880
+ export type SecretValueCreateResponse = SecretValueResourceDescription;
881
+
882
+ // @public
883
+ export interface SecretValueDeleteOptionalParams extends coreClient.OperationOptions {
884
+ }
885
+
886
+ // @public
887
+ export interface SecretValueGetOptionalParams extends coreClient.OperationOptions {
888
+ }
889
+
890
+ // @public
891
+ export type SecretValueGetResponse = SecretValueResourceDescription;
892
+
893
+ // @public
894
+ export interface SecretValueListNextOptionalParams extends coreClient.OperationOptions {
895
+ }
896
+
897
+ // @public
898
+ export type SecretValueListNextResponse = SecretValueResourceDescriptionList;
899
+
900
+ // @public
901
+ export interface SecretValueListOptionalParams extends coreClient.OperationOptions {
902
+ }
903
+
904
+ // @public
905
+ export type SecretValueListResponse = SecretValueResourceDescriptionList;
906
+
907
+ // @public
908
+ export interface SecretValueListValueOptionalParams extends coreClient.OperationOptions {
909
+ }
910
+
911
+ // @public
912
+ export type SecretValueListValueResponse = SecretValue;
913
+
914
+ // @public
915
+ export interface SecretValueOperations {
916
+ create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, options?: SecretValueCreateOptionalParams): Promise<SecretValueCreateResponse>;
917
+ delete(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueDeleteOptionalParams): Promise<void>;
918
+ get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueGetOptionalParams): Promise<SecretValueGetResponse>;
919
+ list(resourceGroupName: string, secretResourceName: string, options?: SecretValueListOptionalParams): PagedAsyncIterableIterator<SecretValueResourceDescription>;
920
+ listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueListValueOptionalParams): Promise<SecretValueListValueResponse>;
921
+ }
922
+
923
+ // @public
924
+ export interface SecretValueProperties {
925
+ value?: string;
926
+ }
927
+
928
+ // @public
929
+ export interface SecretValueResourceDescription extends TrackedResource {
930
+ readonly provisioningState?: string;
931
+ value?: string;
932
+ }
933
+
934
+ // @public
935
+ export interface SecretValueResourceDescriptionList {
936
+ nextLink?: string;
937
+ value?: SecretValueResourceDescription[];
938
+ }
939
+
940
+ // @public
941
+ export interface SecretValueResourceProperties extends ProvisionedResourceProperties, SecretValueProperties {
942
+ }
943
+
944
+ // @public
945
+ export interface Service {
946
+ get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceGetOptionalParams): Promise<ServiceGetResponse>;
947
+ list(resourceGroupName: string, applicationResourceName: string, options?: ServiceListOptionalParams): PagedAsyncIterableIterator<ServiceResourceDescription>;
948
+ }
949
+
950
+ // @public (undocumented)
951
+ export class ServiceFabricMeshManagementClient extends coreClient.ServiceClient {
952
+ // (undocumented)
953
+ $host: string;
954
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ServiceFabricMeshManagementClientOptionalParams);
955
+ // (undocumented)
956
+ apiVersion: string;
957
+ // (undocumented)
958
+ application: Application;
959
+ // (undocumented)
960
+ codePackage: CodePackage;
961
+ // (undocumented)
962
+ gateway: Gateway;
963
+ // (undocumented)
964
+ network: Network;
965
+ // (undocumented)
966
+ operations: Operations;
967
+ // (undocumented)
968
+ secret: Secret;
969
+ // (undocumented)
970
+ secretValueOperations: SecretValueOperations;
971
+ // (undocumented)
972
+ service: Service;
973
+ // (undocumented)
974
+ serviceReplica: ServiceReplica;
975
+ // (undocumented)
976
+ subscriptionId: string;
977
+ // (undocumented)
978
+ volume: Volume;
979
+ }
980
+
981
+ // @public
982
+ export interface ServiceFabricMeshManagementClientOptionalParams extends coreClient.ServiceClientOptions {
983
+ $host?: string;
984
+ apiVersion?: string;
985
+ endpoint?: string;
986
+ }
987
+
988
+ // @public
989
+ export interface ServiceGetOptionalParams extends coreClient.OperationOptions {
990
+ }
991
+
992
+ // @public
993
+ export type ServiceGetResponse = ServiceResourceDescription;
994
+
995
+ // @public
996
+ export interface ServiceListNextOptionalParams extends coreClient.OperationOptions {
997
+ }
998
+
999
+ // @public
1000
+ export type ServiceListNextResponse = ServiceResourceDescriptionList;
1001
+
1002
+ // @public
1003
+ export interface ServiceListOptionalParams extends coreClient.OperationOptions {
1004
+ }
1005
+
1006
+ // @public
1007
+ export type ServiceListResponse = ServiceResourceDescriptionList;
1008
+
1009
+ // @public
1010
+ export interface ServiceProperties {
1011
+ autoScalingPolicies?: AutoScalingPolicy[];
1012
+ description?: string;
1013
+ readonly healthState?: HealthState;
1014
+ replicaCount?: number;
1015
+ readonly status?: ResourceStatus;
1016
+ readonly statusDetails?: string;
1017
+ readonly unhealthyEvaluation?: string;
1018
+ }
1019
+
1020
+ // @public
1021
+ export interface ServiceReplica {
1022
+ get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, options?: ServiceReplicaGetOptionalParams): Promise<ServiceReplicaGetResponse>;
1023
+ list(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceReplicaListOptionalParams): PagedAsyncIterableIterator<ServiceReplicaDescription>;
1024
+ }
1025
+
1026
+ // @public
1027
+ export interface ServiceReplicaDescription extends ServiceReplicaProperties {
1028
+ replicaName: string;
1029
+ }
1030
+
1031
+ // @public
1032
+ export interface ServiceReplicaDescriptionList {
1033
+ nextLink?: string;
1034
+ value?: ServiceReplicaDescription[];
1035
+ }
1036
+
1037
+ // @public
1038
+ export interface ServiceReplicaGetOptionalParams extends coreClient.OperationOptions {
1039
+ }
1040
+
1041
+ // @public
1042
+ export type ServiceReplicaGetResponse = ServiceReplicaDescription;
1043
+
1044
+ // @public
1045
+ export interface ServiceReplicaListNextOptionalParams extends coreClient.OperationOptions {
1046
+ }
1047
+
1048
+ // @public
1049
+ export type ServiceReplicaListNextResponse = ServiceReplicaDescriptionList;
1050
+
1051
+ // @public
1052
+ export interface ServiceReplicaListOptionalParams extends coreClient.OperationOptions {
1053
+ }
1054
+
1055
+ // @public
1056
+ export type ServiceReplicaListResponse = ServiceReplicaDescriptionList;
1057
+
1058
+ // @public
1059
+ export interface ServiceReplicaProperties {
1060
+ codePackages: ContainerCodePackageProperties[];
1061
+ diagnostics?: DiagnosticsRef;
1062
+ networkRefs?: NetworkRef[];
1063
+ osType: OperatingSystemType;
1064
+ }
1065
+
1066
+ // @public
1067
+ export interface ServiceResourceDescription extends ManagedProxyResource {
1068
+ autoScalingPolicies?: AutoScalingPolicy[];
1069
+ codePackages: ContainerCodePackageProperties[];
1070
+ description?: string;
1071
+ diagnostics?: DiagnosticsRef;
1072
+ readonly healthState?: HealthState;
1073
+ networkRefs?: NetworkRef[];
1074
+ osType: OperatingSystemType;
1075
+ readonly provisioningState?: string;
1076
+ replicaCount?: number;
1077
+ readonly status?: ResourceStatus;
1078
+ readonly statusDetails?: string;
1079
+ readonly unhealthyEvaluation?: string;
1080
+ }
1081
+
1082
+ // @public
1083
+ export interface ServiceResourceDescriptionList {
1084
+ nextLink?: string;
1085
+ value?: ServiceResourceDescription[];
1086
+ }
1087
+
1088
+ // @public
1089
+ export interface ServiceResourceProperties extends ProvisionedResourceProperties, ServiceReplicaProperties, ServiceProperties {
1090
+ }
1091
+
1092
+ // @public
1093
+ export interface Setting {
1094
+ name?: string;
1095
+ value?: string;
1096
+ }
1097
+
1098
+ // @public
1099
+ export type SizeTypes = string;
1100
+
1101
+ // @public
1102
+ export interface TcpConfig {
1103
+ destination: GatewayDestination;
1104
+ name: string;
1105
+ port: number;
1106
+ }
1107
+
1108
+ // @public
1109
+ export interface TrackedResource extends Resource {
1110
+ location: string;
1111
+ tags?: {
1112
+ [propertyName: string]: string;
1113
+ };
1114
+ }
1115
+
1116
+ // @public
1117
+ export interface Volume {
1118
+ create(resourceGroupName: string, volumeResourceName: string, volumeResourceDescription: VolumeResourceDescription, options?: VolumeCreateOptionalParams): Promise<VolumeCreateResponse>;
1119
+ delete(resourceGroupName: string, volumeResourceName: string, options?: VolumeDeleteOptionalParams): Promise<void>;
1120
+ get(resourceGroupName: string, volumeResourceName: string, options?: VolumeGetOptionalParams): Promise<VolumeGetResponse>;
1121
+ listByResourceGroup(resourceGroupName: string, options?: VolumeListByResourceGroupOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
1122
+ listBySubscription(options?: VolumeListBySubscriptionOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
1123
+ }
1124
+
1125
+ // @public
1126
+ export interface VolumeCreateOptionalParams extends coreClient.OperationOptions {
1127
+ }
1128
+
1129
+ // @public
1130
+ export type VolumeCreateResponse = VolumeResourceDescription;
1131
+
1132
+ // @public
1133
+ export interface VolumeDeleteOptionalParams extends coreClient.OperationOptions {
1134
+ }
1135
+
1136
+ // @public
1137
+ export interface VolumeGetOptionalParams extends coreClient.OperationOptions {
1138
+ }
1139
+
1140
+ // @public
1141
+ export type VolumeGetResponse = VolumeResourceDescription;
1142
+
1143
+ // @public
1144
+ export interface VolumeListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1145
+ }
1146
+
1147
+ // @public
1148
+ export type VolumeListByResourceGroupNextResponse = VolumeResourceDescriptionList;
1149
+
1150
+ // @public
1151
+ export interface VolumeListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1152
+ }
1153
+
1154
+ // @public
1155
+ export type VolumeListByResourceGroupResponse = VolumeResourceDescriptionList;
1156
+
1157
+ // @public
1158
+ export interface VolumeListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1159
+ }
1160
+
1161
+ // @public
1162
+ export type VolumeListBySubscriptionNextResponse = VolumeResourceDescriptionList;
1163
+
1164
+ // @public
1165
+ export interface VolumeListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1166
+ }
1167
+
1168
+ // @public
1169
+ export type VolumeListBySubscriptionResponse = VolumeResourceDescriptionList;
1170
+
1171
+ // @public
1172
+ export interface VolumeProperties {
1173
+ azureFileParameters?: VolumeProviderParametersAzureFile;
1174
+ description?: string;
1175
+ provider: VolumeProvider;
1176
+ readonly status?: ResourceStatus;
1177
+ readonly statusDetails?: string;
1178
+ }
1179
+
1180
+ // @public
1181
+ export type VolumeProvider = string;
1182
+
1183
+ // @public
1184
+ export interface VolumeProviderParametersAzureFile {
1185
+ accountKey?: string;
1186
+ accountName: string;
1187
+ shareName: string;
1188
+ }
1189
+
1190
+ // @public
1191
+ export interface VolumeReference {
1192
+ destinationPath: string;
1193
+ name: string;
1194
+ readOnly?: boolean;
1195
+ }
1196
+
1197
+ // @public
1198
+ export interface VolumeResourceDescription extends TrackedResource {
1199
+ azureFileParameters?: VolumeProviderParametersAzureFile;
1200
+ description?: string;
1201
+ provider: VolumeProvider;
1202
+ readonly provisioningState?: string;
1203
+ readonly status?: ResourceStatus;
1204
+ readonly statusDetails?: string;
1205
+ }
1206
+
1207
+ // @public
1208
+ export interface VolumeResourceDescriptionList {
1209
+ nextLink?: string;
1210
+ value?: VolumeResourceDescription[];
1211
+ }
1212
+
1213
+ // @public
1214
+ export interface VolumeResourceProperties extends ProvisionedResourceProperties, VolumeProperties {
1215
+ }
1216
+
1217
+ // (No @packageDocumentation comment for this package)
1218
+
1219
+ ```