5
5
* and run json-schema-to-typescript to regenerate this file.
6
6
*/
7
7
8
- export type DefinitionsInclude =
8
+ export type Include =
9
9
| string
10
10
| {
11
11
path ?: StringOrList ;
@@ -14,15 +14,16 @@ export type DefinitionsInclude =
14
14
} ;
15
15
export type StringOrList = string | ListOfStrings ;
16
16
export type ListOfStrings = string [ ] ;
17
- export type DefinitionsDevelopment = {
17
+ export type Development = {
18
18
watch ?: {
19
- ignore ?: string [ ] ;
19
+ ignore ?: StringOrList ;
20
+ include ?: StringOrList ;
20
21
path : string ;
21
22
action : "rebuild" | "sync" | "restart" | "sync+restart" | "sync+exec" ;
22
23
target ?: string ;
23
- exec ?: DefinitionsServiceHook ;
24
+ exec ?: ServiceHook ;
24
25
} [ ] ;
25
- } & Development ;
26
+ } & Development1 ;
26
27
export type Command = null | string | string [ ] ;
27
28
export type ListOrDict =
28
29
| {
@@ -33,16 +34,17 @@ export type ListOrDict =
33
34
[ k : string ] : string | number | boolean | null ;
34
35
}
35
36
| string [ ] ;
36
- export type Development = {
37
+ export type Development1 = {
37
38
watch ?: {
38
- ignore ?: string [ ] ;
39
+ ignore ?: StringOrList ;
40
+ include ?: StringOrList ;
39
41
path : string ;
40
42
action : "rebuild" | "sync" | "restart" | "sync+restart" | "sync+exec" ;
41
43
target ?: string ;
42
- exec ?: DefinitionsServiceHook ;
44
+ exec ?: ServiceHook ;
43
45
} [ ] ;
44
46
} | null ;
45
- export type DefinitionsDeployment = {
47
+ export type Deployment = {
46
48
mode ?: string ;
47
49
endpoint_mode ?: string ;
48
50
replicas ?: number | string ;
@@ -72,8 +74,8 @@ export type DefinitionsDeployment = {
72
74
reservations ?: {
73
75
cpus ?: number | string ;
74
76
memory ?: string ;
75
- generic_resources ?: DefinitionsGenericResources ;
76
- devices ?: DefinitionsDevices ;
77
+ generic_resources ?: GenericResources ;
78
+ devices ?: Devices ;
77
79
} ;
78
80
} ;
79
81
restart_policy ?: {
@@ -89,21 +91,21 @@ export type DefinitionsDeployment = {
89
91
} [ ] ;
90
92
max_replicas_per_node ?: number | string ;
91
93
} ;
92
- } & Deployment ;
93
- export type DefinitionsGenericResources = {
94
+ } & Deployment1 ;
95
+ export type GenericResources = {
94
96
discrete_resource_spec ?: {
95
97
kind ?: string ;
96
98
value ?: number | string ;
97
99
} ;
98
100
} [ ] ;
99
- export type DefinitionsDevices = {
101
+ export type Devices = {
100
102
capabilities : ListOfStrings ;
101
103
count ?: string | number ;
102
104
device_ids ?: ListOfStrings ;
103
105
driver ?: string ;
104
106
options ?: ListOrDict ;
105
107
} [ ] ;
106
- export type Deployment = {
108
+ export type Deployment1 = {
107
109
mode ?: string ;
108
110
endpoint_mode ?: string ;
109
111
replicas ?: number | string ;
@@ -133,8 +135,8 @@ export type Deployment = {
133
135
reservations ?: {
134
136
cpus ?: number | string ;
135
137
memory ?: string ;
136
- generic_resources ?: DefinitionsGenericResources ;
137
- devices ?: DefinitionsDevices ;
138
+ generic_resources ?: GenericResources ;
139
+ devices ?: Devices ;
138
140
} ;
139
141
} ;
140
142
restart_policy ?: {
@@ -181,7 +183,7 @@ export type EnvFile =
181
183
}
182
184
) [ ] ;
183
185
export type LabelFile = string | string [ ] ;
184
- export type DefinitionsGpus =
186
+ export type Gpus =
185
187
| "all"
186
188
| {
187
189
capabilities ?: ListOfStrings ;
@@ -192,10 +194,10 @@ export type DefinitionsGpus =
192
194
[ k : string ] : unknown ;
193
195
} [ ] ;
194
196
/**
195
- * This interface was referenced by `PropertiesNetworks `'s JSON-Schema definition
197
+ * This interface was referenced by `undefined `'s JSON-Schema definition
196
198
* via the `patternProperty` "^[a-zA-Z0-9._-]+$".
197
199
*/
198
- export type DefinitionsNetwork = {
200
+ export type Network = {
199
201
name ?: string ;
200
202
driver ?: string ;
201
203
driver_opts ?: {
@@ -241,8 +243,8 @@ export type DefinitionsNetwork = {
241
243
enable_ipv6 ?: boolean | string ;
242
244
attachable ?: boolean | string ;
243
245
labels ?: ListOrDict ;
244
- } & Network ;
245
- export type Network = {
246
+ } & Network1 ;
247
+ export type Network1 = {
246
248
name ?: string ;
247
249
driver ?: string ;
248
250
driver_opts ?: {
@@ -290,10 +292,10 @@ export type Network = {
290
292
labels ?: ListOrDict ;
291
293
} | null ;
292
294
/**
293
- * This interface was referenced by `PropertiesVolumes `'s JSON-Schema definition
295
+ * This interface was referenced by `undefined `'s JSON-Schema definition
294
296
* via the `patternProperty` "^[a-zA-Z0-9._-]+$".
295
297
*/
296
- export type DefinitionsVolume = {
298
+ export type Volume = {
297
299
name ?: string ;
298
300
driver ?: string ;
299
301
driver_opts ?: {
@@ -313,8 +315,8 @@ export type DefinitionsVolume = {
313
315
name ?: string ;
314
316
} ;
315
317
labels ?: ListOrDict ;
316
- } & Volume ;
317
- export type Volume = {
318
+ } & Volume1 ;
319
+ export type Volume1 = {
318
320
name ?: string ;
319
321
driver ?: string ;
320
322
driver_opts ?: {
@@ -351,23 +353,30 @@ export interface Compose {
351
353
/**
352
354
* compose sub-projects to be included.
353
355
*/
354
- include ?: DefinitionsInclude [ ] ;
355
- services ?: PropertiesServices ;
356
- networks ?: PropertiesNetworks ;
357
- volumes ?: PropertiesVolumes ;
358
- secrets ?: PropertiesSecrets ;
359
- configs ?: PropertiesConfigs ;
360
- }
361
- export interface PropertiesServices {
362
- [ k : string ] : DefinitionsService ;
356
+ include ?: Include [ ] ;
357
+ services ?: {
358
+ [ k : string ] : Service ;
359
+ } ;
360
+ networks ?: {
361
+ [ k : string ] : Network ;
362
+ } ;
363
+ volumes ?: {
364
+ [ k : string ] : Volume ;
365
+ } ;
366
+ secrets ?: {
367
+ [ k : string ] : Secret ;
368
+ } ;
369
+ configs ?: {
370
+ [ k : string ] : Config ;
371
+ } ;
363
372
}
364
373
/**
365
- * This interface was referenced by `PropertiesServices `'s JSON-Schema definition
374
+ * This interface was referenced by `undefined `'s JSON-Schema definition
366
375
* via the `patternProperty` "^[a-zA-Z0-9._-]+$".
367
376
*/
368
- export interface DefinitionsService {
369
- develop ?: DefinitionsDevelopment ;
370
- deploy ?: DefinitionsDeployment ;
377
+ export interface Service {
378
+ develop ?: Development ;
379
+ deploy ?: Deployment ;
371
380
annotations ?: ListOrDict ;
372
381
attach ?: boolean | string ;
373
382
build ?:
@@ -464,9 +473,9 @@ export interface DefinitionsService {
464
473
} ;
465
474
external_links ?: string [ ] ;
466
475
extra_hosts ?: ExtraHosts ;
467
- gpus ?: DefinitionsGpus ;
476
+ gpus ?: Gpus ;
468
477
group_add ?: ( string | number ) [ ] ;
469
- healthcheck ?: DefinitionsHealthcheck ;
478
+ healthcheck ?: Healthcheck ;
470
479
hostname ?: string ;
471
480
image ?: string ;
472
481
init ?: boolean | string ;
@@ -511,6 +520,7 @@ export interface DefinitionsService {
511
520
[ k : string ] : string | number ;
512
521
} ;
513
522
priority ?: number ;
523
+ gw_priority ?: number ;
514
524
} | null ;
515
525
} ;
516
526
oom_kill_disable ?: boolean | string ;
@@ -531,11 +541,12 @@ export interface DefinitionsService {
531
541
app_protocol ?: string ;
532
542
}
533
543
) [ ] ;
534
- post_start ?: DefinitionsServiceHook [ ] ;
535
- pre_stop ?: DefinitionsServiceHook [ ] ;
544
+ post_start ?: ServiceHook [ ] ;
545
+ pre_stop ?: ServiceHook [ ] ;
536
546
privileged ?: boolean | string ;
537
547
profiles ?: ListOfStrings ;
538
- pull_policy ?: "always" | "never" | "if_not_present" | "build" | "missing" ;
548
+ pull_policy ?: string ;
549
+ pull_refresh_after ?: string ;
539
550
read_only ?: boolean | string ;
540
551
restart ?: string ;
541
552
runtime ?: string ;
@@ -583,8 +594,8 @@ export interface DefinitionsService {
583
594
volumes_from ?: string [ ] ;
584
595
working_dir ?: string ;
585
596
}
586
- export interface DefinitionsServiceHook {
587
- command ? : Command ;
597
+ export interface ServiceHook {
598
+ command : Command ;
588
599
user ?: string ;
589
600
privileged ?: boolean | string ;
590
601
working_dir ?: string ;
@@ -610,7 +621,7 @@ export interface BlkioWeight {
610
621
path ?: string ;
611
622
weight ?: number | string ;
612
623
}
613
- export interface DefinitionsHealthcheck {
624
+ export interface Healthcheck {
614
625
disable ?: boolean | string ;
615
626
interval ?: string ;
616
627
retries ?: number | string ;
@@ -619,20 +630,11 @@ export interface DefinitionsHealthcheck {
619
630
start_period ?: string ;
620
631
start_interval ?: string ;
621
632
}
622
- export interface PropertiesNetworks {
623
- [ k : string ] : DefinitionsNetwork ;
624
- }
625
- export interface PropertiesVolumes {
626
- [ k : string ] : DefinitionsVolume ;
627
- }
628
- export interface PropertiesSecrets {
629
- [ k : string ] : DefinitionsSecret ;
630
- }
631
633
/**
632
- * This interface was referenced by `PropertiesSecrets `'s JSON-Schema definition
634
+ * This interface was referenced by `undefined `'s JSON-Schema definition
633
635
* via the `patternProperty` "^[a-zA-Z0-9._-]+$".
634
636
*/
635
- export interface DefinitionsSecret {
637
+ export interface Secret {
636
638
name ?: string ;
637
639
environment ?: string ;
638
640
file ?: string ;
@@ -654,14 +656,11 @@ export interface DefinitionsSecret {
654
656
} ;
655
657
template_driver ?: string ;
656
658
}
657
- export interface PropertiesConfigs {
658
- [ k : string ] : DefinitionsConfig ;
659
- }
660
659
/**
661
- * This interface was referenced by `PropertiesConfigs `'s JSON-Schema definition
660
+ * This interface was referenced by `undefined `'s JSON-Schema definition
662
661
* via the `patternProperty` "^[a-zA-Z0-9._-]+$".
663
662
*/
664
- export interface DefinitionsConfig {
663
+ export interface Config {
665
664
name ?: string ;
666
665
content ?: string ;
667
666
environment ?: string ;
0 commit comments