@pulumi/docker 3.3.0-alpha.1658138076 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/container.d.ts +116 -32
- package/container.js +8 -0
- package/container.js.map +1 -1
- package/getNetwork.d.ts +0 -27
- package/getNetwork.js.map +1 -1
- package/getPlugin.d.ts +0 -33
- package/getPlugin.js.map +1 -1
- package/getRegistryImage.d.ts +0 -21
- package/getRegistryImage.js.map +1 -1
- package/getRemoteImage.d.ts +0 -12
- package/getRemoteImage.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/network.d.ts +12 -6
- package/network.js.map +1 -1
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/registryImage.d.ts +6 -3
- package/registryImage.js.map +1 -1
- package/remoteImage.d.ts +18 -9
- package/remoteImage.js.map +1 -1
- package/tag.d.ts +71 -0
- package/tag.js +62 -0
- package/tag.js.map +1 -0
- package/types/input.d.ts +0 -423
- package/types/output.d.ts +0 -423
package/container.d.ts
CHANGED
|
@@ -71,7 +71,8 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
71
71
|
*/
|
|
72
72
|
readonly capabilities: pulumi.Output<outputs.ContainerCapabilities | undefined>;
|
|
73
73
|
/**
|
|
74
|
-
* The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be
|
|
74
|
+
* The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be
|
|
75
|
+
* `["/usr/bin/myprogram","-","baz.con"]`.
|
|
75
76
|
*/
|
|
76
77
|
readonly command: pulumi.Output<string[]>;
|
|
77
78
|
/**
|
|
@@ -87,7 +88,8 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
87
88
|
*/
|
|
88
89
|
readonly cpuShares: pulumi.Output<number | undefined>;
|
|
89
90
|
/**
|
|
90
|
-
* If defined will attempt to stop the container before destroying. Container will be destroyed after `n` seconds or on
|
|
91
|
+
* If defined will attempt to stop the container before destroying. Container will be destroyed after `n` seconds or on
|
|
92
|
+
* successful stop.
|
|
91
93
|
*/
|
|
92
94
|
readonly destroyGraceSeconds: pulumi.Output<number | undefined>;
|
|
93
95
|
/**
|
|
@@ -111,7 +113,9 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
111
113
|
*/
|
|
112
114
|
readonly domainname: pulumi.Output<string | undefined>;
|
|
113
115
|
/**
|
|
114
|
-
* The command to use as the Entrypoint for the container. The Entrypoint allows you to configure a container to run as an
|
|
116
|
+
* The command to use as the Entrypoint for the container. The Entrypoint allows you to configure a container to run as an
|
|
117
|
+
* executable. For example, to run `/usr/bin/myprogram` when starting a container, set the entrypoint to be
|
|
118
|
+
* `"/usr/bin/myprogra"]`.
|
|
115
119
|
*/
|
|
116
120
|
readonly entrypoints: pulumi.Output<string[]>;
|
|
117
121
|
/**
|
|
@@ -119,7 +123,7 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
119
123
|
*/
|
|
120
124
|
readonly envs: pulumi.Output<string[]>;
|
|
121
125
|
/**
|
|
122
|
-
* The exit code of the container if its execution is done (`
|
|
126
|
+
* The exit code of the container if its execution is done (`must_run` must be disabled).
|
|
123
127
|
*/
|
|
124
128
|
readonly exitCode: pulumi.Output<number>;
|
|
125
129
|
/**
|
|
@@ -128,6 +132,11 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
128
132
|
* @deprecated Use `network_data` instead. The network gateway of the container as read from its NetworkSettings.
|
|
129
133
|
*/
|
|
130
134
|
readonly gateway: pulumi.Output<string>;
|
|
135
|
+
/**
|
|
136
|
+
* GPU devices to add to the container. Currently, only the value `all` is supported. Passing any other value will result
|
|
137
|
+
* in unexpected behavior.
|
|
138
|
+
*/
|
|
139
|
+
readonly gpus: pulumi.Output<string | undefined>;
|
|
131
140
|
/**
|
|
132
141
|
* Additional groups for the container user
|
|
133
142
|
*/
|
|
@@ -145,11 +154,13 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
145
154
|
*/
|
|
146
155
|
readonly hosts: pulumi.Output<outputs.ContainerHost[] | undefined>;
|
|
147
156
|
/**
|
|
148
|
-
* The ID of the image to back this container. The easiest way to get this value is to use the `
|
|
157
|
+
* The ID of the image to back this container. The easiest way to get this value is to use the `docker_image` resource as
|
|
158
|
+
* is shown in the example.
|
|
149
159
|
*/
|
|
150
160
|
readonly image: pulumi.Output<string>;
|
|
151
161
|
/**
|
|
152
|
-
* Configured whether an init process should be injected for this container. If unset this will default to the `dockerd`
|
|
162
|
+
* Configured whether an init process should be injected for this container. If unset this will default to the `dockerd`
|
|
163
|
+
* defaults.
|
|
153
164
|
*/
|
|
154
165
|
readonly init: pulumi.Output<boolean>;
|
|
155
166
|
/**
|
|
@@ -165,7 +176,8 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
165
176
|
*/
|
|
166
177
|
readonly ipPrefixLength: pulumi.Output<number>;
|
|
167
178
|
/**
|
|
168
|
-
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or
|
|
179
|
+
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or
|
|
180
|
+
* `host`.
|
|
169
181
|
*/
|
|
170
182
|
readonly ipcMode: pulumi.Output<string>;
|
|
171
183
|
/**
|
|
@@ -275,7 +287,12 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
275
287
|
*/
|
|
276
288
|
readonly rm: pulumi.Output<boolean | undefined>;
|
|
277
289
|
/**
|
|
278
|
-
*
|
|
290
|
+
* Runtime to use for the container.
|
|
291
|
+
*/
|
|
292
|
+
readonly runtime: pulumi.Output<string>;
|
|
293
|
+
/**
|
|
294
|
+
* List of string values to customize labels for MLS systems, such as SELinux. See
|
|
295
|
+
* https://docs.docker.com/engine/reference/run/#security-configuration.
|
|
279
296
|
*/
|
|
280
297
|
readonly securityOpts: pulumi.Output<string[]>;
|
|
281
298
|
/**
|
|
@@ -283,13 +300,22 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
283
300
|
*/
|
|
284
301
|
readonly shmSize: pulumi.Output<number>;
|
|
285
302
|
/**
|
|
286
|
-
* If `true`, then the Docker container will be started after creation. If `false`, then the container is only created.
|
|
303
|
+
* If `true`, then the Docker container will be started after creation. If `false`, then the container is only created.
|
|
304
|
+
* Defaults to `true`.
|
|
287
305
|
*/
|
|
288
306
|
readonly start: pulumi.Output<boolean | undefined>;
|
|
289
307
|
/**
|
|
290
308
|
* If `true`, keep STDIN open even if not attached (`docker run -i`). Defaults to `false`.
|
|
291
309
|
*/
|
|
292
310
|
readonly stdinOpen: pulumi.Output<boolean | undefined>;
|
|
311
|
+
/**
|
|
312
|
+
* Signal to stop a container (default `SIGTERM`).
|
|
313
|
+
*/
|
|
314
|
+
readonly stopSignal: pulumi.Output<string>;
|
|
315
|
+
/**
|
|
316
|
+
* Timeout (in seconds) to stop a container.
|
|
317
|
+
*/
|
|
318
|
+
readonly stopTimeout: pulumi.Output<number>;
|
|
293
319
|
/**
|
|
294
320
|
* Key/value pairs for the storage driver options, e.g. `size`: `120G`
|
|
295
321
|
*/
|
|
@@ -317,11 +343,13 @@ export declare class Container extends pulumi.CustomResource {
|
|
|
317
343
|
*/
|
|
318
344
|
readonly ulimits: pulumi.Output<outputs.ContainerUlimit[] | undefined>;
|
|
319
345
|
/**
|
|
320
|
-
* Specifies files to upload to the container before starting it. Only one of `content` or `
|
|
346
|
+
* Specifies files to upload to the container before starting it. Only one of `content` or `content_base64` can be set and
|
|
347
|
+
* at least one of them has to be set.
|
|
321
348
|
*/
|
|
322
349
|
readonly uploads: pulumi.Output<outputs.ContainerUpload[] | undefined>;
|
|
323
350
|
/**
|
|
324
|
-
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by
|
|
351
|
+
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by
|
|
352
|
+
* name.
|
|
325
353
|
*/
|
|
326
354
|
readonly user: pulumi.Output<string | undefined>;
|
|
327
355
|
/**
|
|
@@ -362,7 +390,8 @@ export interface ContainerState {
|
|
|
362
390
|
*/
|
|
363
391
|
capabilities?: pulumi.Input<inputs.ContainerCapabilities>;
|
|
364
392
|
/**
|
|
365
|
-
* The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be
|
|
393
|
+
* The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be
|
|
394
|
+
* `["/usr/bin/myprogram","-","baz.con"]`.
|
|
366
395
|
*/
|
|
367
396
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
368
397
|
/**
|
|
@@ -378,7 +407,8 @@ export interface ContainerState {
|
|
|
378
407
|
*/
|
|
379
408
|
cpuShares?: pulumi.Input<number>;
|
|
380
409
|
/**
|
|
381
|
-
* If defined will attempt to stop the container before destroying. Container will be destroyed after `n` seconds or on
|
|
410
|
+
* If defined will attempt to stop the container before destroying. Container will be destroyed after `n` seconds or on
|
|
411
|
+
* successful stop.
|
|
382
412
|
*/
|
|
383
413
|
destroyGraceSeconds?: pulumi.Input<number>;
|
|
384
414
|
/**
|
|
@@ -402,7 +432,9 @@ export interface ContainerState {
|
|
|
402
432
|
*/
|
|
403
433
|
domainname?: pulumi.Input<string>;
|
|
404
434
|
/**
|
|
405
|
-
* The command to use as the Entrypoint for the container. The Entrypoint allows you to configure a container to run as an
|
|
435
|
+
* The command to use as the Entrypoint for the container. The Entrypoint allows you to configure a container to run as an
|
|
436
|
+
* executable. For example, to run `/usr/bin/myprogram` when starting a container, set the entrypoint to be
|
|
437
|
+
* `"/usr/bin/myprogra"]`.
|
|
406
438
|
*/
|
|
407
439
|
entrypoints?: pulumi.Input<pulumi.Input<string>[]>;
|
|
408
440
|
/**
|
|
@@ -410,7 +442,7 @@ export interface ContainerState {
|
|
|
410
442
|
*/
|
|
411
443
|
envs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
412
444
|
/**
|
|
413
|
-
* The exit code of the container if its execution is done (`
|
|
445
|
+
* The exit code of the container if its execution is done (`must_run` must be disabled).
|
|
414
446
|
*/
|
|
415
447
|
exitCode?: pulumi.Input<number>;
|
|
416
448
|
/**
|
|
@@ -419,6 +451,11 @@ export interface ContainerState {
|
|
|
419
451
|
* @deprecated Use `network_data` instead. The network gateway of the container as read from its NetworkSettings.
|
|
420
452
|
*/
|
|
421
453
|
gateway?: pulumi.Input<string>;
|
|
454
|
+
/**
|
|
455
|
+
* GPU devices to add to the container. Currently, only the value `all` is supported. Passing any other value will result
|
|
456
|
+
* in unexpected behavior.
|
|
457
|
+
*/
|
|
458
|
+
gpus?: pulumi.Input<string>;
|
|
422
459
|
/**
|
|
423
460
|
* Additional groups for the container user
|
|
424
461
|
*/
|
|
@@ -436,11 +473,13 @@ export interface ContainerState {
|
|
|
436
473
|
*/
|
|
437
474
|
hosts?: pulumi.Input<pulumi.Input<inputs.ContainerHost>[]>;
|
|
438
475
|
/**
|
|
439
|
-
* The ID of the image to back this container. The easiest way to get this value is to use the `
|
|
476
|
+
* The ID of the image to back this container. The easiest way to get this value is to use the `docker_image` resource as
|
|
477
|
+
* is shown in the example.
|
|
440
478
|
*/
|
|
441
479
|
image?: pulumi.Input<string>;
|
|
442
480
|
/**
|
|
443
|
-
* Configured whether an init process should be injected for this container. If unset this will default to the `dockerd`
|
|
481
|
+
* Configured whether an init process should be injected for this container. If unset this will default to the `dockerd`
|
|
482
|
+
* defaults.
|
|
444
483
|
*/
|
|
445
484
|
init?: pulumi.Input<boolean>;
|
|
446
485
|
/**
|
|
@@ -456,7 +495,8 @@ export interface ContainerState {
|
|
|
456
495
|
*/
|
|
457
496
|
ipPrefixLength?: pulumi.Input<number>;
|
|
458
497
|
/**
|
|
459
|
-
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or
|
|
498
|
+
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or
|
|
499
|
+
* `host`.
|
|
460
500
|
*/
|
|
461
501
|
ipcMode?: pulumi.Input<string>;
|
|
462
502
|
/**
|
|
@@ -566,7 +606,12 @@ export interface ContainerState {
|
|
|
566
606
|
*/
|
|
567
607
|
rm?: pulumi.Input<boolean>;
|
|
568
608
|
/**
|
|
569
|
-
*
|
|
609
|
+
* Runtime to use for the container.
|
|
610
|
+
*/
|
|
611
|
+
runtime?: pulumi.Input<string>;
|
|
612
|
+
/**
|
|
613
|
+
* List of string values to customize labels for MLS systems, such as SELinux. See
|
|
614
|
+
* https://docs.docker.com/engine/reference/run/#security-configuration.
|
|
570
615
|
*/
|
|
571
616
|
securityOpts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
572
617
|
/**
|
|
@@ -574,13 +619,22 @@ export interface ContainerState {
|
|
|
574
619
|
*/
|
|
575
620
|
shmSize?: pulumi.Input<number>;
|
|
576
621
|
/**
|
|
577
|
-
* If `true`, then the Docker container will be started after creation. If `false`, then the container is only created.
|
|
622
|
+
* If `true`, then the Docker container will be started after creation. If `false`, then the container is only created.
|
|
623
|
+
* Defaults to `true`.
|
|
578
624
|
*/
|
|
579
625
|
start?: pulumi.Input<boolean>;
|
|
580
626
|
/**
|
|
581
627
|
* If `true`, keep STDIN open even if not attached (`docker run -i`). Defaults to `false`.
|
|
582
628
|
*/
|
|
583
629
|
stdinOpen?: pulumi.Input<boolean>;
|
|
630
|
+
/**
|
|
631
|
+
* Signal to stop a container (default `SIGTERM`).
|
|
632
|
+
*/
|
|
633
|
+
stopSignal?: pulumi.Input<string>;
|
|
634
|
+
/**
|
|
635
|
+
* Timeout (in seconds) to stop a container.
|
|
636
|
+
*/
|
|
637
|
+
stopTimeout?: pulumi.Input<number>;
|
|
584
638
|
/**
|
|
585
639
|
* Key/value pairs for the storage driver options, e.g. `size`: `120G`
|
|
586
640
|
*/
|
|
@@ -608,11 +662,13 @@ export interface ContainerState {
|
|
|
608
662
|
*/
|
|
609
663
|
ulimits?: pulumi.Input<pulumi.Input<inputs.ContainerUlimit>[]>;
|
|
610
664
|
/**
|
|
611
|
-
* Specifies files to upload to the container before starting it. Only one of `content` or `
|
|
665
|
+
* Specifies files to upload to the container before starting it. Only one of `content` or `content_base64` can be set and
|
|
666
|
+
* at least one of them has to be set.
|
|
612
667
|
*/
|
|
613
668
|
uploads?: pulumi.Input<pulumi.Input<inputs.ContainerUpload>[]>;
|
|
614
669
|
/**
|
|
615
|
-
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by
|
|
670
|
+
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by
|
|
671
|
+
* name.
|
|
616
672
|
*/
|
|
617
673
|
user?: pulumi.Input<string>;
|
|
618
674
|
/**
|
|
@@ -641,7 +697,8 @@ export interface ContainerArgs {
|
|
|
641
697
|
*/
|
|
642
698
|
capabilities?: pulumi.Input<inputs.ContainerCapabilities>;
|
|
643
699
|
/**
|
|
644
|
-
* The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be
|
|
700
|
+
* The command to use to start the container. For example, to run `/usr/bin/myprogram -f baz.conf` set the command to be
|
|
701
|
+
* `["/usr/bin/myprogram","-","baz.con"]`.
|
|
645
702
|
*/
|
|
646
703
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
647
704
|
/**
|
|
@@ -653,7 +710,8 @@ export interface ContainerArgs {
|
|
|
653
710
|
*/
|
|
654
711
|
cpuShares?: pulumi.Input<number>;
|
|
655
712
|
/**
|
|
656
|
-
* If defined will attempt to stop the container before destroying. Container will be destroyed after `n` seconds or on
|
|
713
|
+
* If defined will attempt to stop the container before destroying. Container will be destroyed after `n` seconds or on
|
|
714
|
+
* successful stop.
|
|
657
715
|
*/
|
|
658
716
|
destroyGraceSeconds?: pulumi.Input<number>;
|
|
659
717
|
/**
|
|
@@ -677,13 +735,20 @@ export interface ContainerArgs {
|
|
|
677
735
|
*/
|
|
678
736
|
domainname?: pulumi.Input<string>;
|
|
679
737
|
/**
|
|
680
|
-
* The command to use as the Entrypoint for the container. The Entrypoint allows you to configure a container to run as an
|
|
738
|
+
* The command to use as the Entrypoint for the container. The Entrypoint allows you to configure a container to run as an
|
|
739
|
+
* executable. For example, to run `/usr/bin/myprogram` when starting a container, set the entrypoint to be
|
|
740
|
+
* `"/usr/bin/myprogra"]`.
|
|
681
741
|
*/
|
|
682
742
|
entrypoints?: pulumi.Input<pulumi.Input<string>[]>;
|
|
683
743
|
/**
|
|
684
744
|
* Environment variables to set in the form of `KEY=VALUE`, e.g. `DEBUG=0`
|
|
685
745
|
*/
|
|
686
746
|
envs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
747
|
+
/**
|
|
748
|
+
* GPU devices to add to the container. Currently, only the value `all` is supported. Passing any other value will result
|
|
749
|
+
* in unexpected behavior.
|
|
750
|
+
*/
|
|
751
|
+
gpus?: pulumi.Input<string>;
|
|
687
752
|
/**
|
|
688
753
|
* Additional groups for the container user
|
|
689
754
|
*/
|
|
@@ -701,15 +766,18 @@ export interface ContainerArgs {
|
|
|
701
766
|
*/
|
|
702
767
|
hosts?: pulumi.Input<pulumi.Input<inputs.ContainerHost>[]>;
|
|
703
768
|
/**
|
|
704
|
-
* The ID of the image to back this container. The easiest way to get this value is to use the `
|
|
769
|
+
* The ID of the image to back this container. The easiest way to get this value is to use the `docker_image` resource as
|
|
770
|
+
* is shown in the example.
|
|
705
771
|
*/
|
|
706
772
|
image: pulumi.Input<string>;
|
|
707
773
|
/**
|
|
708
|
-
* Configured whether an init process should be injected for this container. If unset this will default to the `dockerd`
|
|
774
|
+
* Configured whether an init process should be injected for this container. If unset this will default to the `dockerd`
|
|
775
|
+
* defaults.
|
|
709
776
|
*/
|
|
710
777
|
init?: pulumi.Input<boolean>;
|
|
711
778
|
/**
|
|
712
|
-
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or
|
|
779
|
+
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or
|
|
780
|
+
* `host`.
|
|
713
781
|
*/
|
|
714
782
|
ipcMode?: pulumi.Input<string>;
|
|
715
783
|
/**
|
|
@@ -815,7 +883,12 @@ export interface ContainerArgs {
|
|
|
815
883
|
*/
|
|
816
884
|
rm?: pulumi.Input<boolean>;
|
|
817
885
|
/**
|
|
818
|
-
*
|
|
886
|
+
* Runtime to use for the container.
|
|
887
|
+
*/
|
|
888
|
+
runtime?: pulumi.Input<string>;
|
|
889
|
+
/**
|
|
890
|
+
* List of string values to customize labels for MLS systems, such as SELinux. See
|
|
891
|
+
* https://docs.docker.com/engine/reference/run/#security-configuration.
|
|
819
892
|
*/
|
|
820
893
|
securityOpts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
821
894
|
/**
|
|
@@ -823,13 +896,22 @@ export interface ContainerArgs {
|
|
|
823
896
|
*/
|
|
824
897
|
shmSize?: pulumi.Input<number>;
|
|
825
898
|
/**
|
|
826
|
-
* If `true`, then the Docker container will be started after creation. If `false`, then the container is only created.
|
|
899
|
+
* If `true`, then the Docker container will be started after creation. If `false`, then the container is only created.
|
|
900
|
+
* Defaults to `true`.
|
|
827
901
|
*/
|
|
828
902
|
start?: pulumi.Input<boolean>;
|
|
829
903
|
/**
|
|
830
904
|
* If `true`, keep STDIN open even if not attached (`docker run -i`). Defaults to `false`.
|
|
831
905
|
*/
|
|
832
906
|
stdinOpen?: pulumi.Input<boolean>;
|
|
907
|
+
/**
|
|
908
|
+
* Signal to stop a container (default `SIGTERM`).
|
|
909
|
+
*/
|
|
910
|
+
stopSignal?: pulumi.Input<string>;
|
|
911
|
+
/**
|
|
912
|
+
* Timeout (in seconds) to stop a container.
|
|
913
|
+
*/
|
|
914
|
+
stopTimeout?: pulumi.Input<number>;
|
|
833
915
|
/**
|
|
834
916
|
* Key/value pairs for the storage driver options, e.g. `size`: `120G`
|
|
835
917
|
*/
|
|
@@ -857,11 +939,13 @@ export interface ContainerArgs {
|
|
|
857
939
|
*/
|
|
858
940
|
ulimits?: pulumi.Input<pulumi.Input<inputs.ContainerUlimit>[]>;
|
|
859
941
|
/**
|
|
860
|
-
* Specifies files to upload to the container before starting it. Only one of `content` or `
|
|
942
|
+
* Specifies files to upload to the container before starting it. Only one of `content` or `content_base64` can be set and
|
|
943
|
+
* at least one of them has to be set.
|
|
861
944
|
*/
|
|
862
945
|
uploads?: pulumi.Input<pulumi.Input<inputs.ContainerUpload>[]>;
|
|
863
946
|
/**
|
|
864
|
-
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by
|
|
947
|
+
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by
|
|
948
|
+
* name.
|
|
865
949
|
*/
|
|
866
950
|
user?: pulumi.Input<string>;
|
|
867
951
|
/**
|
package/container.js
CHANGED
|
@@ -70,6 +70,7 @@ class Container extends pulumi.CustomResource {
|
|
|
70
70
|
resourceInputs["envs"] = state ? state.envs : undefined;
|
|
71
71
|
resourceInputs["exitCode"] = state ? state.exitCode : undefined;
|
|
72
72
|
resourceInputs["gateway"] = state ? state.gateway : undefined;
|
|
73
|
+
resourceInputs["gpus"] = state ? state.gpus : undefined;
|
|
73
74
|
resourceInputs["groupAdds"] = state ? state.groupAdds : undefined;
|
|
74
75
|
resourceInputs["healthcheck"] = state ? state.healthcheck : undefined;
|
|
75
76
|
resourceInputs["hostname"] = state ? state.hostname : undefined;
|
|
@@ -103,10 +104,13 @@ class Container extends pulumi.CustomResource {
|
|
|
103
104
|
resourceInputs["removeVolumes"] = state ? state.removeVolumes : undefined;
|
|
104
105
|
resourceInputs["restart"] = state ? state.restart : undefined;
|
|
105
106
|
resourceInputs["rm"] = state ? state.rm : undefined;
|
|
107
|
+
resourceInputs["runtime"] = state ? state.runtime : undefined;
|
|
106
108
|
resourceInputs["securityOpts"] = state ? state.securityOpts : undefined;
|
|
107
109
|
resourceInputs["shmSize"] = state ? state.shmSize : undefined;
|
|
108
110
|
resourceInputs["start"] = state ? state.start : undefined;
|
|
109
111
|
resourceInputs["stdinOpen"] = state ? state.stdinOpen : undefined;
|
|
112
|
+
resourceInputs["stopSignal"] = state ? state.stopSignal : undefined;
|
|
113
|
+
resourceInputs["stopTimeout"] = state ? state.stopTimeout : undefined;
|
|
110
114
|
resourceInputs["storageOpts"] = state ? state.storageOpts : undefined;
|
|
111
115
|
resourceInputs["sysctls"] = state ? state.sysctls : undefined;
|
|
112
116
|
resourceInputs["tmpfs"] = state ? state.tmpfs : undefined;
|
|
@@ -136,6 +140,7 @@ class Container extends pulumi.CustomResource {
|
|
|
136
140
|
resourceInputs["domainname"] = args ? args.domainname : undefined;
|
|
137
141
|
resourceInputs["entrypoints"] = args ? args.entrypoints : undefined;
|
|
138
142
|
resourceInputs["envs"] = args ? args.envs : undefined;
|
|
143
|
+
resourceInputs["gpus"] = args ? args.gpus : undefined;
|
|
139
144
|
resourceInputs["groupAdds"] = args ? args.groupAdds : undefined;
|
|
140
145
|
resourceInputs["healthcheck"] = args ? args.healthcheck : undefined;
|
|
141
146
|
resourceInputs["hostname"] = args ? args.hostname : undefined;
|
|
@@ -166,10 +171,13 @@ class Container extends pulumi.CustomResource {
|
|
|
166
171
|
resourceInputs["removeVolumes"] = args ? args.removeVolumes : undefined;
|
|
167
172
|
resourceInputs["restart"] = args ? args.restart : undefined;
|
|
168
173
|
resourceInputs["rm"] = args ? args.rm : undefined;
|
|
174
|
+
resourceInputs["runtime"] = args ? args.runtime : undefined;
|
|
169
175
|
resourceInputs["securityOpts"] = args ? args.securityOpts : undefined;
|
|
170
176
|
resourceInputs["shmSize"] = args ? args.shmSize : undefined;
|
|
171
177
|
resourceInputs["start"] = args ? args.start : undefined;
|
|
172
178
|
resourceInputs["stdinOpen"] = args ? args.stdinOpen : undefined;
|
|
179
|
+
resourceInputs["stopSignal"] = args ? args.stopSignal : undefined;
|
|
180
|
+
resourceInputs["stopTimeout"] = args ? args.stopTimeout : undefined;
|
|
173
181
|
resourceInputs["storageOpts"] = args ? args.storageOpts : undefined;
|
|
174
182
|
resourceInputs["sysctls"] = args ? args.sysctls : undefined;
|
|
175
183
|
resourceInputs["tmpfs"] = args ? args.tmpfs : undefined;
|
package/container.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"container.js","sourceRoot":"","sources":["../container.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"container.js","sourceRoot":"","sources":["../container.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyCG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IA+UhD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACpD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACtD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;IAneD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;;AA1BL,8BAqeC;AAvdG,gBAAgB;AACO,sBAAY,GAAG,kCAAkC,CAAC"}
|
package/getNetwork.d.ts
CHANGED
|
@@ -19,44 +19,20 @@ export declare function getNetwork(args: GetNetworkArgs, opts?: pulumi.InvokeOpt
|
|
|
19
19
|
* A collection of arguments for invoking getNetwork.
|
|
20
20
|
*/
|
|
21
21
|
export interface GetNetworkArgs {
|
|
22
|
-
/**
|
|
23
|
-
* The name of the Docker network.
|
|
24
|
-
*/
|
|
25
22
|
name: string;
|
|
26
23
|
}
|
|
27
24
|
/**
|
|
28
25
|
* A collection of values returned by getNetwork.
|
|
29
26
|
*/
|
|
30
27
|
export interface GetNetworkResult {
|
|
31
|
-
/**
|
|
32
|
-
* The driver of the Docker network. Possible values are `bridge`, `host`, `overlay`, `macvlan`. See [network docs](https://docs.docker.com/network/#network-drivers) for more details.
|
|
33
|
-
*/
|
|
34
28
|
readonly driver: string;
|
|
35
|
-
/**
|
|
36
|
-
* The ID of this resource.
|
|
37
|
-
*/
|
|
38
29
|
readonly id: string;
|
|
39
|
-
/**
|
|
40
|
-
* If `true`, the network is internal.
|
|
41
|
-
*/
|
|
42
30
|
readonly internal: boolean;
|
|
43
|
-
/**
|
|
44
|
-
* The IPAM configuration options
|
|
45
|
-
*/
|
|
46
31
|
readonly ipamConfigs: outputs.GetNetworkIpamConfig[];
|
|
47
|
-
/**
|
|
48
|
-
* The name of the Docker network.
|
|
49
|
-
*/
|
|
50
32
|
readonly name: string;
|
|
51
|
-
/**
|
|
52
|
-
* Only available with bridge networks. See [bridge options docs](https://docs.docker.com/engine/reference/commandline/network_create/#bridge-driver-options) for more details.
|
|
53
|
-
*/
|
|
54
33
|
readonly options: {
|
|
55
34
|
[key: string]: any;
|
|
56
35
|
};
|
|
57
|
-
/**
|
|
58
|
-
* Scope of the network. One of `swarm`, `global`, or `local`.
|
|
59
|
-
*/
|
|
60
36
|
readonly scope: string;
|
|
61
37
|
}
|
|
62
38
|
export declare function getNetworkOutput(args: GetNetworkOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNetworkResult>;
|
|
@@ -64,8 +40,5 @@ export declare function getNetworkOutput(args: GetNetworkOutputArgs, opts?: pulu
|
|
|
64
40
|
* A collection of arguments for invoking getNetwork.
|
|
65
41
|
*/
|
|
66
42
|
export interface GetNetworkOutputArgs {
|
|
67
|
-
/**
|
|
68
|
-
* The name of the Docker network.
|
|
69
|
-
*/
|
|
70
43
|
name: pulumi.Input<string>;
|
|
71
44
|
}
|
package/getNetwork.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gCASC;
|
|
1
|
+
{"version":3,"file":"getNetwork.js","sourceRoot":"","sources":["../getNetwork.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gCASC;AAsBD,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9D,CAAC;AAFD,4CAEC"}
|
package/getPlugin.d.ts
CHANGED
|
@@ -14,46 +14,19 @@ export declare function getPlugin(args?: GetPluginArgs, opts?: pulumi.InvokeOpti
|
|
|
14
14
|
* A collection of arguments for invoking getPlugin.
|
|
15
15
|
*/
|
|
16
16
|
export interface GetPluginArgs {
|
|
17
|
-
/**
|
|
18
|
-
* The alias of the Docker plugin. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
19
|
-
*/
|
|
20
17
|
alias?: string;
|
|
21
|
-
/**
|
|
22
|
-
* The ID of the plugin, which has precedence over the `alias` of both are given
|
|
23
|
-
*/
|
|
24
18
|
id?: string;
|
|
25
19
|
}
|
|
26
20
|
/**
|
|
27
21
|
* A collection of values returned by getPlugin.
|
|
28
22
|
*/
|
|
29
23
|
export interface GetPluginResult {
|
|
30
|
-
/**
|
|
31
|
-
* The alias of the Docker plugin. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
32
|
-
*/
|
|
33
24
|
readonly alias?: string;
|
|
34
|
-
/**
|
|
35
|
-
* If `true` the plugin is enabled
|
|
36
|
-
*/
|
|
37
25
|
readonly enabled: boolean;
|
|
38
|
-
/**
|
|
39
|
-
* The environment variables in the form of `KEY=VALUE`, e.g. `DEBUG=0`
|
|
40
|
-
*/
|
|
41
26
|
readonly envs: string[];
|
|
42
|
-
/**
|
|
43
|
-
* If true, grant all permissions necessary to run the plugin
|
|
44
|
-
*/
|
|
45
27
|
readonly grantAllPermissions: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* The ID of the plugin, which has precedence over the `alias` of both are given
|
|
48
|
-
*/
|
|
49
28
|
readonly id?: string;
|
|
50
|
-
/**
|
|
51
|
-
* The plugin name. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
52
|
-
*/
|
|
53
29
|
readonly name: string;
|
|
54
|
-
/**
|
|
55
|
-
* The Docker Plugin Reference
|
|
56
|
-
*/
|
|
57
30
|
readonly pluginReference: string;
|
|
58
31
|
}
|
|
59
32
|
export declare function getPluginOutput(args?: GetPluginOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPluginResult>;
|
|
@@ -61,12 +34,6 @@ export declare function getPluginOutput(args?: GetPluginOutputArgs, opts?: pulum
|
|
|
61
34
|
* A collection of arguments for invoking getPlugin.
|
|
62
35
|
*/
|
|
63
36
|
export interface GetPluginOutputArgs {
|
|
64
|
-
/**
|
|
65
|
-
* The alias of the Docker plugin. If the tag is omitted, `:latest` is complemented to the attribute value.
|
|
66
|
-
*/
|
|
67
37
|
alias?: pulumi.Input<string>;
|
|
68
|
-
/**
|
|
69
|
-
* The ID of the plugin, which has precedence over the `alias` of both are given
|
|
70
|
-
*/
|
|
71
38
|
id?: pulumi.Input<string>;
|
|
72
39
|
}
|
package/getPlugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPlugin.js","sourceRoot":"","sources":["../getPlugin.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;GASG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;
|
|
1
|
+
{"version":3,"file":"getPlugin.js","sourceRoot":"","sources":["../getPlugin.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;GASG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;AAuBD,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getRegistryImage.d.ts
CHANGED
|
@@ -22,13 +22,7 @@ export declare function getRegistryImage(args: GetRegistryImageArgs, opts?: pulu
|
|
|
22
22
|
* A collection of arguments for invoking getRegistryImage.
|
|
23
23
|
*/
|
|
24
24
|
export interface GetRegistryImageArgs {
|
|
25
|
-
/**
|
|
26
|
-
* If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
27
|
-
*/
|
|
28
25
|
insecureSkipVerify?: boolean;
|
|
29
|
-
/**
|
|
30
|
-
* The name of the Docker image, including any tags. e.g. `alpine:latest`
|
|
31
|
-
*/
|
|
32
26
|
name: string;
|
|
33
27
|
}
|
|
34
28
|
/**
|
|
@@ -39,17 +33,8 @@ export interface GetRegistryImageResult {
|
|
|
39
33
|
* The provider-assigned unique ID for this managed resource.
|
|
40
34
|
*/
|
|
41
35
|
readonly id: string;
|
|
42
|
-
/**
|
|
43
|
-
* If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
44
|
-
*/
|
|
45
36
|
readonly insecureSkipVerify?: boolean;
|
|
46
|
-
/**
|
|
47
|
-
* The name of the Docker image, including any tags. e.g. `alpine:latest`
|
|
48
|
-
*/
|
|
49
37
|
readonly name: string;
|
|
50
|
-
/**
|
|
51
|
-
* The content digest of the image, as stored in the registry.
|
|
52
|
-
*/
|
|
53
38
|
readonly sha256Digest: string;
|
|
54
39
|
}
|
|
55
40
|
export declare function getRegistryImageOutput(args: GetRegistryImageOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRegistryImageResult>;
|
|
@@ -57,12 +42,6 @@ export declare function getRegistryImageOutput(args: GetRegistryImageOutputArgs,
|
|
|
57
42
|
* A collection of arguments for invoking getRegistryImage.
|
|
58
43
|
*/
|
|
59
44
|
export interface GetRegistryImageOutputArgs {
|
|
60
|
-
/**
|
|
61
|
-
* If `true`, the verification of TLS certificates of the server/registry is disabled. Defaults to `false`
|
|
62
|
-
*/
|
|
63
45
|
insecureSkipVerify?: pulumi.Input<boolean>;
|
|
64
|
-
/**
|
|
65
|
-
* The name of the Docker image, including any tags. e.g. `alpine:latest`
|
|
66
|
-
*/
|
|
67
46
|
name: pulumi.Input<string>;
|
|
68
47
|
}
|