@cdktn/provider-docker 12.1.0 → 13.0.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/.jsii +800 -797
- package/README.md +12 -12
- package/lib/buildx-builder/index.d.ts +50 -50
- package/lib/buildx-builder/index.js +144 -144
- package/lib/config/index.d.ts +6 -6
- package/lib/config/index.js +12 -12
- package/lib/container/index.d.ts +219 -219
- package/lib/container/index.js +377 -377
- package/lib/data-docker-image/index.d.ts +6 -6
- package/lib/data-docker-image/index.js +10 -10
- package/lib/data-docker-logs/index.d.ts +34 -34
- package/lib/data-docker-logs/index.js +30 -30
- package/lib/data-docker-network/index.d.ts +14 -14
- package/lib/data-docker-network/index.js +18 -18
- package/lib/data-docker-plugin/index.d.ts +8 -8
- package/lib/data-docker-plugin/index.js +11 -11
- package/lib/data-docker-registry-image/index.d.ts +10 -10
- package/lib/data-docker-registry-image/index.js +12 -12
- package/lib/data-docker-registry-image-manifests/index.d.ts +17 -17
- package/lib/data-docker-registry-image-manifests/index.js +32 -32
- package/lib/image/index.d.ts +86 -86
- package/lib/image/index.js +167 -167
- package/lib/index.d.ts +1 -1
- package/lib/index.js +3 -3
- package/lib/lazy-index.d.ts +1 -1
- package/lib/lazy-index.js +3 -3
- package/lib/network/index.d.ts +52 -52
- package/lib/network/index.js +62 -62
- package/lib/plugin/index.d.ts +35 -35
- package/lib/plugin/index.js +41 -41
- package/lib/provider/index.d.ts +16 -16
- package/lib/provider/index.js +42 -42
- package/lib/registry-image/index.d.ts +16 -16
- package/lib/registry-image/index.js +28 -28
- package/lib/secret/index.d.ts +19 -19
- package/lib/secret/index.js +27 -27
- package/lib/service/index.d.ts +204 -204
- package/lib/service/index.js +484 -484
- package/lib/tag/index.d.ts +6 -6
- package/lib/tag/index.js +15 -15
- package/lib/volume/index.d.ts +19 -19
- package/lib/volume/index.js +29 -29
- package/package.json +10 -7
package/lib/container/index.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright
|
|
2
|
+
* Copyright IBM Corp. 2021, 2026
|
|
3
3
|
* SPDX-License-Identifier: MPL-2.0
|
|
4
4
|
*/
|
|
5
5
|
import { Construct } from 'constructs';
|
|
6
|
-
import * as
|
|
7
|
-
export interface ContainerConfig extends
|
|
6
|
+
import * as cdktn from 'cdktn';
|
|
7
|
+
export interface ContainerConfig extends cdktn.TerraformMetaArguments {
|
|
8
8
|
/**
|
|
9
9
|
* If `true` attach to the container after its creation and waits the end of its execution. Defaults to `false`.
|
|
10
10
|
*
|
|
11
11
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#attach Container#attach}
|
|
12
12
|
*/
|
|
13
|
-
readonly attach?: boolean |
|
|
13
|
+
readonly attach?: boolean | cdktn.IResolvable;
|
|
14
14
|
/**
|
|
15
15
|
* Optional parent cgroup for the container
|
|
16
16
|
*
|
|
@@ -143,7 +143,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
143
143
|
*
|
|
144
144
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#init Container#init}
|
|
145
145
|
*/
|
|
146
|
-
readonly init?: boolean |
|
|
146
|
+
readonly init?: boolean | cdktn.IResolvable;
|
|
147
147
|
/**
|
|
148
148
|
* IPC sharing mode for the container. Possible values are: `none`, `private`, `shareable`, `container:<name|id>` or `host`.
|
|
149
149
|
*
|
|
@@ -169,7 +169,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
169
169
|
*
|
|
170
170
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#logs Container#logs}
|
|
171
171
|
*/
|
|
172
|
-
readonly logs?: boolean |
|
|
172
|
+
readonly logs?: boolean | cdktn.IResolvable;
|
|
173
173
|
/**
|
|
174
174
|
* The maximum amount of times to an attempt a restart when `restart` is set to 'on-failure'.
|
|
175
175
|
*
|
|
@@ -193,7 +193,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
193
193
|
*
|
|
194
194
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#must_run Container#must_run}
|
|
195
195
|
*/
|
|
196
|
-
readonly mustRun?: boolean |
|
|
196
|
+
readonly mustRun?: boolean | cdktn.IResolvable;
|
|
197
197
|
/**
|
|
198
198
|
* The name of the container.
|
|
199
199
|
*
|
|
@@ -217,25 +217,25 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
217
217
|
*
|
|
218
218
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#privileged Container#privileged}
|
|
219
219
|
*/
|
|
220
|
-
readonly privileged?: boolean |
|
|
220
|
+
readonly privileged?: boolean | cdktn.IResolvable;
|
|
221
221
|
/**
|
|
222
222
|
* Publish all ports of the container.
|
|
223
223
|
*
|
|
224
224
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#publish_all_ports Container#publish_all_ports}
|
|
225
225
|
*/
|
|
226
|
-
readonly publishAllPorts?: boolean |
|
|
226
|
+
readonly publishAllPorts?: boolean | cdktn.IResolvable;
|
|
227
227
|
/**
|
|
228
228
|
* If `true`, the container will be started as readonly. Defaults to `false`.
|
|
229
229
|
*
|
|
230
230
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#read_only Container#read_only}
|
|
231
231
|
*/
|
|
232
|
-
readonly readOnly?: boolean |
|
|
232
|
+
readonly readOnly?: boolean | cdktn.IResolvable;
|
|
233
233
|
/**
|
|
234
234
|
* If `true`, it will remove anonymous volumes associated with the container. Defaults to `true`.
|
|
235
235
|
*
|
|
236
236
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#remove_volumes Container#remove_volumes}
|
|
237
237
|
*/
|
|
238
|
-
readonly removeVolumes?: boolean |
|
|
238
|
+
readonly removeVolumes?: boolean | cdktn.IResolvable;
|
|
239
239
|
/**
|
|
240
240
|
* The restart policy for the container. Must be one of 'no', 'on-failure', 'always', 'unless-stopped'. Defaults to `no`.
|
|
241
241
|
*
|
|
@@ -247,7 +247,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
247
247
|
*
|
|
248
248
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#rm Container#rm}
|
|
249
249
|
*/
|
|
250
|
-
readonly rm?: boolean |
|
|
250
|
+
readonly rm?: boolean | cdktn.IResolvable;
|
|
251
251
|
/**
|
|
252
252
|
* Runtime to use for the container.
|
|
253
253
|
*
|
|
@@ -271,13 +271,13 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
271
271
|
*
|
|
272
272
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#start Container#start}
|
|
273
273
|
*/
|
|
274
|
-
readonly start?: boolean |
|
|
274
|
+
readonly start?: boolean | cdktn.IResolvable;
|
|
275
275
|
/**
|
|
276
276
|
* If `true`, keep STDIN open even if not attached (`docker run -i`). Defaults to `false`.
|
|
277
277
|
*
|
|
278
278
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#stdin_open Container#stdin_open}
|
|
279
279
|
*/
|
|
280
|
-
readonly stdinOpen?: boolean |
|
|
280
|
+
readonly stdinOpen?: boolean | cdktn.IResolvable;
|
|
281
281
|
/**
|
|
282
282
|
* Signal to stop a container (default `SIGTERM`).
|
|
283
283
|
*
|
|
@@ -319,7 +319,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
319
319
|
*
|
|
320
320
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#tty Container#tty}
|
|
321
321
|
*/
|
|
322
|
-
readonly tty?: boolean |
|
|
322
|
+
readonly tty?: boolean | cdktn.IResolvable;
|
|
323
323
|
/**
|
|
324
324
|
* User used for run the first process. Format is `user` or `user:group` which user and group can be passed literraly or by name.
|
|
325
325
|
*
|
|
@@ -337,7 +337,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
337
337
|
*
|
|
338
338
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#wait Container#wait}
|
|
339
339
|
*/
|
|
340
|
-
readonly wait?: boolean |
|
|
340
|
+
readonly wait?: boolean | cdktn.IResolvable;
|
|
341
341
|
/**
|
|
342
342
|
* The timeout in seconds to wait the container to be healthy after creation. Defaults to `60`.
|
|
343
343
|
*
|
|
@@ -361,7 +361,7 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
361
361
|
*
|
|
362
362
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#devices Container#devices}
|
|
363
363
|
*/
|
|
364
|
-
readonly devices?: ContainerDevices[] |
|
|
364
|
+
readonly devices?: ContainerDevices[] | cdktn.IResolvable;
|
|
365
365
|
/**
|
|
366
366
|
* healthcheck block
|
|
367
367
|
*
|
|
@@ -373,55 +373,55 @@ export interface ContainerConfig extends cdktf.TerraformMetaArguments {
|
|
|
373
373
|
*
|
|
374
374
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#host Container#host}
|
|
375
375
|
*/
|
|
376
|
-
readonly host?: ContainerHost[] |
|
|
376
|
+
readonly host?: ContainerHost[] | cdktn.IResolvable;
|
|
377
377
|
/**
|
|
378
378
|
* labels block
|
|
379
379
|
*
|
|
380
380
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#labels Container#labels}
|
|
381
381
|
*/
|
|
382
|
-
readonly labels?: ContainerLabels[] |
|
|
382
|
+
readonly labels?: ContainerLabels[] | cdktn.IResolvable;
|
|
383
383
|
/**
|
|
384
384
|
* mounts block
|
|
385
385
|
*
|
|
386
386
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#mounts Container#mounts}
|
|
387
387
|
*/
|
|
388
|
-
readonly mounts?: ContainerMounts[] |
|
|
388
|
+
readonly mounts?: ContainerMounts[] | cdktn.IResolvable;
|
|
389
389
|
/**
|
|
390
390
|
* networks_advanced block
|
|
391
391
|
*
|
|
392
392
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#networks_advanced Container#networks_advanced}
|
|
393
393
|
*/
|
|
394
|
-
readonly networksAdvanced?: ContainerNetworksAdvanced[] |
|
|
394
|
+
readonly networksAdvanced?: ContainerNetworksAdvanced[] | cdktn.IResolvable;
|
|
395
395
|
/**
|
|
396
396
|
* ports block
|
|
397
397
|
*
|
|
398
398
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#ports Container#ports}
|
|
399
399
|
*/
|
|
400
|
-
readonly ports?: ContainerPorts[] |
|
|
400
|
+
readonly ports?: ContainerPorts[] | cdktn.IResolvable;
|
|
401
401
|
/**
|
|
402
402
|
* ulimit block
|
|
403
403
|
*
|
|
404
404
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#ulimit Container#ulimit}
|
|
405
405
|
*/
|
|
406
|
-
readonly ulimit?: ContainerUlimit[] |
|
|
406
|
+
readonly ulimit?: ContainerUlimit[] | cdktn.IResolvable;
|
|
407
407
|
/**
|
|
408
408
|
* upload block
|
|
409
409
|
*
|
|
410
410
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#upload Container#upload}
|
|
411
411
|
*/
|
|
412
|
-
readonly upload?: ContainerUpload[] |
|
|
412
|
+
readonly upload?: ContainerUpload[] | cdktn.IResolvable;
|
|
413
413
|
/**
|
|
414
414
|
* volumes block
|
|
415
415
|
*
|
|
416
416
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#volumes Container#volumes}
|
|
417
417
|
*/
|
|
418
|
-
readonly volumes?: ContainerVolumes[] |
|
|
418
|
+
readonly volumes?: ContainerVolumes[] | cdktn.IResolvable;
|
|
419
419
|
}
|
|
420
420
|
export interface ContainerNetworkData {
|
|
421
421
|
}
|
|
422
422
|
export declare function containerNetworkDataToTerraform(struct?: ContainerNetworkData): any;
|
|
423
423
|
export declare function containerNetworkDataToHclTerraform(struct?: ContainerNetworkData): any;
|
|
424
|
-
export declare class ContainerNetworkDataOutputReference extends
|
|
424
|
+
export declare class ContainerNetworkDataOutputReference extends cdktn.ComplexObject {
|
|
425
425
|
private isEmptyObject;
|
|
426
426
|
/**
|
|
427
427
|
* @param terraformResource The parent resource
|
|
@@ -429,7 +429,7 @@ export declare class ContainerNetworkDataOutputReference extends cdktf.ComplexOb
|
|
|
429
429
|
* @param complexObjectIndex the index of this item in the list
|
|
430
430
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
431
431
|
*/
|
|
432
|
-
constructor(terraformResource:
|
|
432
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
433
433
|
get internalValue(): ContainerNetworkData | undefined;
|
|
434
434
|
set internalValue(value: ContainerNetworkData | undefined);
|
|
435
435
|
get gateway(): string;
|
|
@@ -441,8 +441,8 @@ export declare class ContainerNetworkDataOutputReference extends cdktf.ComplexOb
|
|
|
441
441
|
get macAddress(): string;
|
|
442
442
|
get networkName(): string;
|
|
443
443
|
}
|
|
444
|
-
export declare class ContainerNetworkDataList extends
|
|
445
|
-
protected terraformResource:
|
|
444
|
+
export declare class ContainerNetworkDataList extends cdktn.ComplexList {
|
|
445
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
446
446
|
protected terraformAttribute: string;
|
|
447
447
|
protected wrapsSet: boolean;
|
|
448
448
|
/**
|
|
@@ -450,7 +450,7 @@ export declare class ContainerNetworkDataList extends cdktf.ComplexList {
|
|
|
450
450
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
451
451
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
452
452
|
*/
|
|
453
|
-
constructor(terraformResource:
|
|
453
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
454
454
|
/**
|
|
455
455
|
* @param index the index of the item to return
|
|
456
456
|
*/
|
|
@@ -472,13 +472,13 @@ export interface ContainerCapabilities {
|
|
|
472
472
|
}
|
|
473
473
|
export declare function containerCapabilitiesToTerraform(struct?: ContainerCapabilitiesOutputReference | ContainerCapabilities): any;
|
|
474
474
|
export declare function containerCapabilitiesToHclTerraform(struct?: ContainerCapabilitiesOutputReference | ContainerCapabilities): any;
|
|
475
|
-
export declare class ContainerCapabilitiesOutputReference extends
|
|
475
|
+
export declare class ContainerCapabilitiesOutputReference extends cdktn.ComplexObject {
|
|
476
476
|
private isEmptyObject;
|
|
477
477
|
/**
|
|
478
478
|
* @param terraformResource The parent resource
|
|
479
479
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
480
480
|
*/
|
|
481
|
-
constructor(terraformResource:
|
|
481
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
482
482
|
get internalValue(): ContainerCapabilities | undefined;
|
|
483
483
|
set internalValue(value: ContainerCapabilities | undefined);
|
|
484
484
|
private _add?;
|
|
@@ -512,9 +512,9 @@ export interface ContainerDevices {
|
|
|
512
512
|
*/
|
|
513
513
|
readonly permissions?: string;
|
|
514
514
|
}
|
|
515
|
-
export declare function containerDevicesToTerraform(struct?: ContainerDevices |
|
|
516
|
-
export declare function containerDevicesToHclTerraform(struct?: ContainerDevices |
|
|
517
|
-
export declare class ContainerDevicesOutputReference extends
|
|
515
|
+
export declare function containerDevicesToTerraform(struct?: ContainerDevices | cdktn.IResolvable): any;
|
|
516
|
+
export declare function containerDevicesToHclTerraform(struct?: ContainerDevices | cdktn.IResolvable): any;
|
|
517
|
+
export declare class ContainerDevicesOutputReference extends cdktn.ComplexObject {
|
|
518
518
|
private isEmptyObject;
|
|
519
519
|
private resolvableValue?;
|
|
520
520
|
/**
|
|
@@ -523,9 +523,9 @@ export declare class ContainerDevicesOutputReference extends cdktf.ComplexObject
|
|
|
523
523
|
* @param complexObjectIndex the index of this item in the list
|
|
524
524
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
525
525
|
*/
|
|
526
|
-
constructor(terraformResource:
|
|
527
|
-
get internalValue(): ContainerDevices |
|
|
528
|
-
set internalValue(value: ContainerDevices |
|
|
526
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
527
|
+
get internalValue(): ContainerDevices | cdktn.IResolvable | undefined;
|
|
528
|
+
set internalValue(value: ContainerDevices | cdktn.IResolvable | undefined);
|
|
529
529
|
private _containerPath?;
|
|
530
530
|
get containerPath(): string;
|
|
531
531
|
set containerPath(value: string);
|
|
@@ -541,17 +541,17 @@ export declare class ContainerDevicesOutputReference extends cdktf.ComplexObject
|
|
|
541
541
|
resetPermissions(): void;
|
|
542
542
|
get permissionsInput(): string | undefined;
|
|
543
543
|
}
|
|
544
|
-
export declare class ContainerDevicesList extends
|
|
545
|
-
protected terraformResource:
|
|
544
|
+
export declare class ContainerDevicesList extends cdktn.ComplexList {
|
|
545
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
546
546
|
protected terraformAttribute: string;
|
|
547
547
|
protected wrapsSet: boolean;
|
|
548
|
-
internalValue?: ContainerDevices[] |
|
|
548
|
+
internalValue?: ContainerDevices[] | cdktn.IResolvable;
|
|
549
549
|
/**
|
|
550
550
|
* @param terraformResource The parent resource
|
|
551
551
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
552
552
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
553
553
|
*/
|
|
554
|
-
constructor(terraformResource:
|
|
554
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
555
555
|
/**
|
|
556
556
|
* @param index the index of the item to return
|
|
557
557
|
*/
|
|
@@ -597,13 +597,13 @@ export interface ContainerHealthcheck {
|
|
|
597
597
|
}
|
|
598
598
|
export declare function containerHealthcheckToTerraform(struct?: ContainerHealthcheckOutputReference | ContainerHealthcheck): any;
|
|
599
599
|
export declare function containerHealthcheckToHclTerraform(struct?: ContainerHealthcheckOutputReference | ContainerHealthcheck): any;
|
|
600
|
-
export declare class ContainerHealthcheckOutputReference extends
|
|
600
|
+
export declare class ContainerHealthcheckOutputReference extends cdktn.ComplexObject {
|
|
601
601
|
private isEmptyObject;
|
|
602
602
|
/**
|
|
603
603
|
* @param terraformResource The parent resource
|
|
604
604
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
605
605
|
*/
|
|
606
|
-
constructor(terraformResource:
|
|
606
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
607
607
|
get internalValue(): ContainerHealthcheck | undefined;
|
|
608
608
|
set internalValue(value: ContainerHealthcheck | undefined);
|
|
609
609
|
private _interval?;
|
|
@@ -650,9 +650,9 @@ export interface ContainerHost {
|
|
|
650
650
|
*/
|
|
651
651
|
readonly ip: string;
|
|
652
652
|
}
|
|
653
|
-
export declare function containerHostToTerraform(struct?: ContainerHost |
|
|
654
|
-
export declare function containerHostToHclTerraform(struct?: ContainerHost |
|
|
655
|
-
export declare class ContainerHostOutputReference extends
|
|
653
|
+
export declare function containerHostToTerraform(struct?: ContainerHost | cdktn.IResolvable): any;
|
|
654
|
+
export declare function containerHostToHclTerraform(struct?: ContainerHost | cdktn.IResolvable): any;
|
|
655
|
+
export declare class ContainerHostOutputReference extends cdktn.ComplexObject {
|
|
656
656
|
private isEmptyObject;
|
|
657
657
|
private resolvableValue?;
|
|
658
658
|
/**
|
|
@@ -661,9 +661,9 @@ export declare class ContainerHostOutputReference extends cdktf.ComplexObject {
|
|
|
661
661
|
* @param complexObjectIndex the index of this item in the list
|
|
662
662
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
663
663
|
*/
|
|
664
|
-
constructor(terraformResource:
|
|
665
|
-
get internalValue(): ContainerHost |
|
|
666
|
-
set internalValue(value: ContainerHost |
|
|
664
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
665
|
+
get internalValue(): ContainerHost | cdktn.IResolvable | undefined;
|
|
666
|
+
set internalValue(value: ContainerHost | cdktn.IResolvable | undefined);
|
|
667
667
|
private _host?;
|
|
668
668
|
get host(): string;
|
|
669
669
|
set host(value: string);
|
|
@@ -673,17 +673,17 @@ export declare class ContainerHostOutputReference extends cdktf.ComplexObject {
|
|
|
673
673
|
set ip(value: string);
|
|
674
674
|
get ipInput(): string | undefined;
|
|
675
675
|
}
|
|
676
|
-
export declare class ContainerHostList extends
|
|
677
|
-
protected terraformResource:
|
|
676
|
+
export declare class ContainerHostList extends cdktn.ComplexList {
|
|
677
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
678
678
|
protected terraformAttribute: string;
|
|
679
679
|
protected wrapsSet: boolean;
|
|
680
|
-
internalValue?: ContainerHost[] |
|
|
680
|
+
internalValue?: ContainerHost[] | cdktn.IResolvable;
|
|
681
681
|
/**
|
|
682
682
|
* @param terraformResource The parent resource
|
|
683
683
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
684
684
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
685
685
|
*/
|
|
686
|
-
constructor(terraformResource:
|
|
686
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
687
687
|
/**
|
|
688
688
|
* @param index the index of the item to return
|
|
689
689
|
*/
|
|
@@ -703,9 +703,9 @@ export interface ContainerLabels {
|
|
|
703
703
|
*/
|
|
704
704
|
readonly value: string;
|
|
705
705
|
}
|
|
706
|
-
export declare function containerLabelsToTerraform(struct?: ContainerLabels |
|
|
707
|
-
export declare function containerLabelsToHclTerraform(struct?: ContainerLabels |
|
|
708
|
-
export declare class ContainerLabelsOutputReference extends
|
|
706
|
+
export declare function containerLabelsToTerraform(struct?: ContainerLabels | cdktn.IResolvable): any;
|
|
707
|
+
export declare function containerLabelsToHclTerraform(struct?: ContainerLabels | cdktn.IResolvable): any;
|
|
708
|
+
export declare class ContainerLabelsOutputReference extends cdktn.ComplexObject {
|
|
709
709
|
private isEmptyObject;
|
|
710
710
|
private resolvableValue?;
|
|
711
711
|
/**
|
|
@@ -714,9 +714,9 @@ export declare class ContainerLabelsOutputReference extends cdktf.ComplexObject
|
|
|
714
714
|
* @param complexObjectIndex the index of this item in the list
|
|
715
715
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
716
716
|
*/
|
|
717
|
-
constructor(terraformResource:
|
|
718
|
-
get internalValue(): ContainerLabels |
|
|
719
|
-
set internalValue(value: ContainerLabels |
|
|
717
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
718
|
+
get internalValue(): ContainerLabels | cdktn.IResolvable | undefined;
|
|
719
|
+
set internalValue(value: ContainerLabels | cdktn.IResolvable | undefined);
|
|
720
720
|
private _label?;
|
|
721
721
|
get label(): string;
|
|
722
722
|
set label(value: string);
|
|
@@ -726,17 +726,17 @@ export declare class ContainerLabelsOutputReference extends cdktf.ComplexObject
|
|
|
726
726
|
set value(value: string);
|
|
727
727
|
get valueInput(): string | undefined;
|
|
728
728
|
}
|
|
729
|
-
export declare class ContainerLabelsList extends
|
|
730
|
-
protected terraformResource:
|
|
729
|
+
export declare class ContainerLabelsList extends cdktn.ComplexList {
|
|
730
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
731
731
|
protected terraformAttribute: string;
|
|
732
732
|
protected wrapsSet: boolean;
|
|
733
|
-
internalValue?: ContainerLabels[] |
|
|
733
|
+
internalValue?: ContainerLabels[] | cdktn.IResolvable;
|
|
734
734
|
/**
|
|
735
735
|
* @param terraformResource The parent resource
|
|
736
736
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
737
737
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
738
738
|
*/
|
|
739
|
-
constructor(terraformResource:
|
|
739
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
740
740
|
/**
|
|
741
741
|
* @param index the index of the item to return
|
|
742
742
|
*/
|
|
@@ -752,13 +752,13 @@ export interface ContainerMountsBindOptions {
|
|
|
752
752
|
}
|
|
753
753
|
export declare function containerMountsBindOptionsToTerraform(struct?: ContainerMountsBindOptionsOutputReference | ContainerMountsBindOptions): any;
|
|
754
754
|
export declare function containerMountsBindOptionsToHclTerraform(struct?: ContainerMountsBindOptionsOutputReference | ContainerMountsBindOptions): any;
|
|
755
|
-
export declare class ContainerMountsBindOptionsOutputReference extends
|
|
755
|
+
export declare class ContainerMountsBindOptionsOutputReference extends cdktn.ComplexObject {
|
|
756
756
|
private isEmptyObject;
|
|
757
757
|
/**
|
|
758
758
|
* @param terraformResource The parent resource
|
|
759
759
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
760
760
|
*/
|
|
761
|
-
constructor(terraformResource:
|
|
761
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
762
762
|
get internalValue(): ContainerMountsBindOptions | undefined;
|
|
763
763
|
set internalValue(value: ContainerMountsBindOptions | undefined);
|
|
764
764
|
private _propagation?;
|
|
@@ -783,13 +783,13 @@ export interface ContainerMountsTmpfsOptions {
|
|
|
783
783
|
}
|
|
784
784
|
export declare function containerMountsTmpfsOptionsToTerraform(struct?: ContainerMountsTmpfsOptionsOutputReference | ContainerMountsTmpfsOptions): any;
|
|
785
785
|
export declare function containerMountsTmpfsOptionsToHclTerraform(struct?: ContainerMountsTmpfsOptionsOutputReference | ContainerMountsTmpfsOptions): any;
|
|
786
|
-
export declare class ContainerMountsTmpfsOptionsOutputReference extends
|
|
786
|
+
export declare class ContainerMountsTmpfsOptionsOutputReference extends cdktn.ComplexObject {
|
|
787
787
|
private isEmptyObject;
|
|
788
788
|
/**
|
|
789
789
|
* @param terraformResource The parent resource
|
|
790
790
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
791
791
|
*/
|
|
792
|
-
constructor(terraformResource:
|
|
792
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
793
793
|
get internalValue(): ContainerMountsTmpfsOptions | undefined;
|
|
794
794
|
set internalValue(value: ContainerMountsTmpfsOptions | undefined);
|
|
795
795
|
private _mode?;
|
|
@@ -817,9 +817,9 @@ export interface ContainerMountsVolumeOptionsLabels {
|
|
|
817
817
|
*/
|
|
818
818
|
readonly value: string;
|
|
819
819
|
}
|
|
820
|
-
export declare function containerMountsVolumeOptionsLabelsToTerraform(struct?: ContainerMountsVolumeOptionsLabels |
|
|
821
|
-
export declare function containerMountsVolumeOptionsLabelsToHclTerraform(struct?: ContainerMountsVolumeOptionsLabels |
|
|
822
|
-
export declare class ContainerMountsVolumeOptionsLabelsOutputReference extends
|
|
820
|
+
export declare function containerMountsVolumeOptionsLabelsToTerraform(struct?: ContainerMountsVolumeOptionsLabels | cdktn.IResolvable): any;
|
|
821
|
+
export declare function containerMountsVolumeOptionsLabelsToHclTerraform(struct?: ContainerMountsVolumeOptionsLabels | cdktn.IResolvable): any;
|
|
822
|
+
export declare class ContainerMountsVolumeOptionsLabelsOutputReference extends cdktn.ComplexObject {
|
|
823
823
|
private isEmptyObject;
|
|
824
824
|
private resolvableValue?;
|
|
825
825
|
/**
|
|
@@ -828,9 +828,9 @@ export declare class ContainerMountsVolumeOptionsLabelsOutputReference extends c
|
|
|
828
828
|
* @param complexObjectIndex the index of this item in the list
|
|
829
829
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
830
830
|
*/
|
|
831
|
-
constructor(terraformResource:
|
|
832
|
-
get internalValue(): ContainerMountsVolumeOptionsLabels |
|
|
833
|
-
set internalValue(value: ContainerMountsVolumeOptionsLabels |
|
|
831
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
832
|
+
get internalValue(): ContainerMountsVolumeOptionsLabels | cdktn.IResolvable | undefined;
|
|
833
|
+
set internalValue(value: ContainerMountsVolumeOptionsLabels | cdktn.IResolvable | undefined);
|
|
834
834
|
private _label?;
|
|
835
835
|
get label(): string;
|
|
836
836
|
set label(value: string);
|
|
@@ -840,17 +840,17 @@ export declare class ContainerMountsVolumeOptionsLabelsOutputReference extends c
|
|
|
840
840
|
set value(value: string);
|
|
841
841
|
get valueInput(): string | undefined;
|
|
842
842
|
}
|
|
843
|
-
export declare class ContainerMountsVolumeOptionsLabelsList extends
|
|
844
|
-
protected terraformResource:
|
|
843
|
+
export declare class ContainerMountsVolumeOptionsLabelsList extends cdktn.ComplexList {
|
|
844
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
845
845
|
protected terraformAttribute: string;
|
|
846
846
|
protected wrapsSet: boolean;
|
|
847
|
-
internalValue?: ContainerMountsVolumeOptionsLabels[] |
|
|
847
|
+
internalValue?: ContainerMountsVolumeOptionsLabels[] | cdktn.IResolvable;
|
|
848
848
|
/**
|
|
849
849
|
* @param terraformResource The parent resource
|
|
850
850
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
851
851
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
852
852
|
*/
|
|
853
|
-
constructor(terraformResource:
|
|
853
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
854
854
|
/**
|
|
855
855
|
* @param index the index of the item to return
|
|
856
856
|
*/
|
|
@@ -876,7 +876,7 @@ export interface ContainerMountsVolumeOptions {
|
|
|
876
876
|
*
|
|
877
877
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#no_copy Container#no_copy}
|
|
878
878
|
*/
|
|
879
|
-
readonly noCopy?: boolean |
|
|
879
|
+
readonly noCopy?: boolean | cdktn.IResolvable;
|
|
880
880
|
/**
|
|
881
881
|
* Path within the volume to mount. Requires docker server version 1.45 or higher.
|
|
882
882
|
*
|
|
@@ -888,17 +888,17 @@ export interface ContainerMountsVolumeOptions {
|
|
|
888
888
|
*
|
|
889
889
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#labels Container#labels}
|
|
890
890
|
*/
|
|
891
|
-
readonly labels?: ContainerMountsVolumeOptionsLabels[] |
|
|
891
|
+
readonly labels?: ContainerMountsVolumeOptionsLabels[] | cdktn.IResolvable;
|
|
892
892
|
}
|
|
893
893
|
export declare function containerMountsVolumeOptionsToTerraform(struct?: ContainerMountsVolumeOptionsOutputReference | ContainerMountsVolumeOptions): any;
|
|
894
894
|
export declare function containerMountsVolumeOptionsToHclTerraform(struct?: ContainerMountsVolumeOptionsOutputReference | ContainerMountsVolumeOptions): any;
|
|
895
|
-
export declare class ContainerMountsVolumeOptionsOutputReference extends
|
|
895
|
+
export declare class ContainerMountsVolumeOptionsOutputReference extends cdktn.ComplexObject {
|
|
896
896
|
private isEmptyObject;
|
|
897
897
|
/**
|
|
898
898
|
* @param terraformResource The parent resource
|
|
899
899
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
900
900
|
*/
|
|
901
|
-
constructor(terraformResource:
|
|
901
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
902
902
|
get internalValue(): ContainerMountsVolumeOptions | undefined;
|
|
903
903
|
set internalValue(value: ContainerMountsVolumeOptions | undefined);
|
|
904
904
|
private _driverName?;
|
|
@@ -918,10 +918,10 @@ export declare class ContainerMountsVolumeOptionsOutputReference extends cdktf.C
|
|
|
918
918
|
[key: string]: string;
|
|
919
919
|
} | undefined;
|
|
920
920
|
private _noCopy?;
|
|
921
|
-
get noCopy(): boolean |
|
|
922
|
-
set noCopy(value: boolean |
|
|
921
|
+
get noCopy(): boolean | cdktn.IResolvable;
|
|
922
|
+
set noCopy(value: boolean | cdktn.IResolvable);
|
|
923
923
|
resetNoCopy(): void;
|
|
924
|
-
get noCopyInput(): boolean |
|
|
924
|
+
get noCopyInput(): boolean | cdktn.IResolvable | undefined;
|
|
925
925
|
private _subpath?;
|
|
926
926
|
get subpath(): string;
|
|
927
927
|
set subpath(value: string);
|
|
@@ -929,9 +929,9 @@ export declare class ContainerMountsVolumeOptionsOutputReference extends cdktf.C
|
|
|
929
929
|
get subpathInput(): string | undefined;
|
|
930
930
|
private _labels;
|
|
931
931
|
get labels(): ContainerMountsVolumeOptionsLabelsList;
|
|
932
|
-
putLabels(value: ContainerMountsVolumeOptionsLabels[] |
|
|
932
|
+
putLabels(value: ContainerMountsVolumeOptionsLabels[] | cdktn.IResolvable): void;
|
|
933
933
|
resetLabels(): void;
|
|
934
|
-
get labelsInput():
|
|
934
|
+
get labelsInput(): cdktn.IResolvable | ContainerMountsVolumeOptionsLabels[] | undefined;
|
|
935
935
|
}
|
|
936
936
|
export interface ContainerMounts {
|
|
937
937
|
/**
|
|
@@ -939,7 +939,7 @@ export interface ContainerMounts {
|
|
|
939
939
|
*
|
|
940
940
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#read_only Container#read_only}
|
|
941
941
|
*/
|
|
942
|
-
readonly readOnly?: boolean |
|
|
942
|
+
readonly readOnly?: boolean | cdktn.IResolvable;
|
|
943
943
|
/**
|
|
944
944
|
* Mount source (e.g. a volume name, a host path).
|
|
945
945
|
*
|
|
@@ -977,9 +977,9 @@ export interface ContainerMounts {
|
|
|
977
977
|
*/
|
|
978
978
|
readonly volumeOptions?: ContainerMountsVolumeOptions;
|
|
979
979
|
}
|
|
980
|
-
export declare function containerMountsToTerraform(struct?: ContainerMounts |
|
|
981
|
-
export declare function containerMountsToHclTerraform(struct?: ContainerMounts |
|
|
982
|
-
export declare class ContainerMountsOutputReference extends
|
|
980
|
+
export declare function containerMountsToTerraform(struct?: ContainerMounts | cdktn.IResolvable): any;
|
|
981
|
+
export declare function containerMountsToHclTerraform(struct?: ContainerMounts | cdktn.IResolvable): any;
|
|
982
|
+
export declare class ContainerMountsOutputReference extends cdktn.ComplexObject {
|
|
983
983
|
private isEmptyObject;
|
|
984
984
|
private resolvableValue?;
|
|
985
985
|
/**
|
|
@@ -988,14 +988,14 @@ export declare class ContainerMountsOutputReference extends cdktf.ComplexObject
|
|
|
988
988
|
* @param complexObjectIndex the index of this item in the list
|
|
989
989
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
990
990
|
*/
|
|
991
|
-
constructor(terraformResource:
|
|
992
|
-
get internalValue(): ContainerMounts |
|
|
993
|
-
set internalValue(value: ContainerMounts |
|
|
991
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
992
|
+
get internalValue(): ContainerMounts | cdktn.IResolvable | undefined;
|
|
993
|
+
set internalValue(value: ContainerMounts | cdktn.IResolvable | undefined);
|
|
994
994
|
private _readOnly?;
|
|
995
|
-
get readOnly(): boolean |
|
|
996
|
-
set readOnly(value: boolean |
|
|
995
|
+
get readOnly(): boolean | cdktn.IResolvable;
|
|
996
|
+
set readOnly(value: boolean | cdktn.IResolvable);
|
|
997
997
|
resetReadOnly(): void;
|
|
998
|
-
get readOnlyInput(): boolean |
|
|
998
|
+
get readOnlyInput(): boolean | cdktn.IResolvable | undefined;
|
|
999
999
|
private _source?;
|
|
1000
1000
|
get source(): string;
|
|
1001
1001
|
set source(value: string);
|
|
@@ -1025,17 +1025,17 @@ export declare class ContainerMountsOutputReference extends cdktf.ComplexObject
|
|
|
1025
1025
|
resetVolumeOptions(): void;
|
|
1026
1026
|
get volumeOptionsInput(): ContainerMountsVolumeOptions | undefined;
|
|
1027
1027
|
}
|
|
1028
|
-
export declare class ContainerMountsList extends
|
|
1029
|
-
protected terraformResource:
|
|
1028
|
+
export declare class ContainerMountsList extends cdktn.ComplexList {
|
|
1029
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1030
1030
|
protected terraformAttribute: string;
|
|
1031
1031
|
protected wrapsSet: boolean;
|
|
1032
|
-
internalValue?: ContainerMounts[] |
|
|
1032
|
+
internalValue?: ContainerMounts[] | cdktn.IResolvable;
|
|
1033
1033
|
/**
|
|
1034
1034
|
* @param terraformResource The parent resource
|
|
1035
1035
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1036
1036
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1037
1037
|
*/
|
|
1038
|
-
constructor(terraformResource:
|
|
1038
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1039
1039
|
/**
|
|
1040
1040
|
* @param index the index of the item to return
|
|
1041
1041
|
*/
|
|
@@ -1067,9 +1067,9 @@ export interface ContainerNetworksAdvanced {
|
|
|
1067
1067
|
*/
|
|
1068
1068
|
readonly name: string;
|
|
1069
1069
|
}
|
|
1070
|
-
export declare function containerNetworksAdvancedToTerraform(struct?: ContainerNetworksAdvanced |
|
|
1071
|
-
export declare function containerNetworksAdvancedToHclTerraform(struct?: ContainerNetworksAdvanced |
|
|
1072
|
-
export declare class ContainerNetworksAdvancedOutputReference extends
|
|
1070
|
+
export declare function containerNetworksAdvancedToTerraform(struct?: ContainerNetworksAdvanced | cdktn.IResolvable): any;
|
|
1071
|
+
export declare function containerNetworksAdvancedToHclTerraform(struct?: ContainerNetworksAdvanced | cdktn.IResolvable): any;
|
|
1072
|
+
export declare class ContainerNetworksAdvancedOutputReference extends cdktn.ComplexObject {
|
|
1073
1073
|
private isEmptyObject;
|
|
1074
1074
|
private resolvableValue?;
|
|
1075
1075
|
/**
|
|
@@ -1078,9 +1078,9 @@ export declare class ContainerNetworksAdvancedOutputReference extends cdktf.Comp
|
|
|
1078
1078
|
* @param complexObjectIndex the index of this item in the list
|
|
1079
1079
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1080
1080
|
*/
|
|
1081
|
-
constructor(terraformResource:
|
|
1082
|
-
get internalValue(): ContainerNetworksAdvanced |
|
|
1083
|
-
set internalValue(value: ContainerNetworksAdvanced |
|
|
1081
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1082
|
+
get internalValue(): ContainerNetworksAdvanced | cdktn.IResolvable | undefined;
|
|
1083
|
+
set internalValue(value: ContainerNetworksAdvanced | cdktn.IResolvable | undefined);
|
|
1084
1084
|
private _aliases?;
|
|
1085
1085
|
get aliases(): string[];
|
|
1086
1086
|
set aliases(value: string[]);
|
|
@@ -1101,17 +1101,17 @@ export declare class ContainerNetworksAdvancedOutputReference extends cdktf.Comp
|
|
|
1101
1101
|
set name(value: string);
|
|
1102
1102
|
get nameInput(): string | undefined;
|
|
1103
1103
|
}
|
|
1104
|
-
export declare class ContainerNetworksAdvancedList extends
|
|
1105
|
-
protected terraformResource:
|
|
1104
|
+
export declare class ContainerNetworksAdvancedList extends cdktn.ComplexList {
|
|
1105
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1106
1106
|
protected terraformAttribute: string;
|
|
1107
1107
|
protected wrapsSet: boolean;
|
|
1108
|
-
internalValue?: ContainerNetworksAdvanced[] |
|
|
1108
|
+
internalValue?: ContainerNetworksAdvanced[] | cdktn.IResolvable;
|
|
1109
1109
|
/**
|
|
1110
1110
|
* @param terraformResource The parent resource
|
|
1111
1111
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1112
1112
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1113
1113
|
*/
|
|
1114
|
-
constructor(terraformResource:
|
|
1114
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1115
1115
|
/**
|
|
1116
1116
|
* @param index the index of the item to return
|
|
1117
1117
|
*/
|
|
@@ -1143,9 +1143,9 @@ export interface ContainerPorts {
|
|
|
1143
1143
|
*/
|
|
1144
1144
|
readonly protocol?: string;
|
|
1145
1145
|
}
|
|
1146
|
-
export declare function containerPortsToTerraform(struct?: ContainerPorts |
|
|
1147
|
-
export declare function containerPortsToHclTerraform(struct?: ContainerPorts |
|
|
1148
|
-
export declare class ContainerPortsOutputReference extends
|
|
1146
|
+
export declare function containerPortsToTerraform(struct?: ContainerPorts | cdktn.IResolvable): any;
|
|
1147
|
+
export declare function containerPortsToHclTerraform(struct?: ContainerPorts | cdktn.IResolvable): any;
|
|
1148
|
+
export declare class ContainerPortsOutputReference extends cdktn.ComplexObject {
|
|
1149
1149
|
private isEmptyObject;
|
|
1150
1150
|
private resolvableValue?;
|
|
1151
1151
|
/**
|
|
@@ -1154,9 +1154,9 @@ export declare class ContainerPortsOutputReference extends cdktf.ComplexObject {
|
|
|
1154
1154
|
* @param complexObjectIndex the index of this item in the list
|
|
1155
1155
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1156
1156
|
*/
|
|
1157
|
-
constructor(terraformResource:
|
|
1158
|
-
get internalValue(): ContainerPorts |
|
|
1159
|
-
set internalValue(value: ContainerPorts |
|
|
1157
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1158
|
+
get internalValue(): ContainerPorts | cdktn.IResolvable | undefined;
|
|
1159
|
+
set internalValue(value: ContainerPorts | cdktn.IResolvable | undefined);
|
|
1160
1160
|
private _external?;
|
|
1161
1161
|
get external(): number;
|
|
1162
1162
|
set external(value: number);
|
|
@@ -1177,17 +1177,17 @@ export declare class ContainerPortsOutputReference extends cdktf.ComplexObject {
|
|
|
1177
1177
|
resetProtocol(): void;
|
|
1178
1178
|
get protocolInput(): string | undefined;
|
|
1179
1179
|
}
|
|
1180
|
-
export declare class ContainerPortsList extends
|
|
1181
|
-
protected terraformResource:
|
|
1180
|
+
export declare class ContainerPortsList extends cdktn.ComplexList {
|
|
1181
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1182
1182
|
protected terraformAttribute: string;
|
|
1183
1183
|
protected wrapsSet: boolean;
|
|
1184
|
-
internalValue?: ContainerPorts[] |
|
|
1184
|
+
internalValue?: ContainerPorts[] | cdktn.IResolvable;
|
|
1185
1185
|
/**
|
|
1186
1186
|
* @param terraformResource The parent resource
|
|
1187
1187
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1188
1188
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1189
1189
|
*/
|
|
1190
|
-
constructor(terraformResource:
|
|
1190
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1191
1191
|
/**
|
|
1192
1192
|
* @param index the index of the item to return
|
|
1193
1193
|
*/
|
|
@@ -1213,9 +1213,9 @@ export interface ContainerUlimit {
|
|
|
1213
1213
|
*/
|
|
1214
1214
|
readonly soft: number;
|
|
1215
1215
|
}
|
|
1216
|
-
export declare function containerUlimitToTerraform(struct?: ContainerUlimit |
|
|
1217
|
-
export declare function containerUlimitToHclTerraform(struct?: ContainerUlimit |
|
|
1218
|
-
export declare class ContainerUlimitOutputReference extends
|
|
1216
|
+
export declare function containerUlimitToTerraform(struct?: ContainerUlimit | cdktn.IResolvable): any;
|
|
1217
|
+
export declare function containerUlimitToHclTerraform(struct?: ContainerUlimit | cdktn.IResolvable): any;
|
|
1218
|
+
export declare class ContainerUlimitOutputReference extends cdktn.ComplexObject {
|
|
1219
1219
|
private isEmptyObject;
|
|
1220
1220
|
private resolvableValue?;
|
|
1221
1221
|
/**
|
|
@@ -1224,9 +1224,9 @@ export declare class ContainerUlimitOutputReference extends cdktf.ComplexObject
|
|
|
1224
1224
|
* @param complexObjectIndex the index of this item in the list
|
|
1225
1225
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1226
1226
|
*/
|
|
1227
|
-
constructor(terraformResource:
|
|
1228
|
-
get internalValue(): ContainerUlimit |
|
|
1229
|
-
set internalValue(value: ContainerUlimit |
|
|
1227
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1228
|
+
get internalValue(): ContainerUlimit | cdktn.IResolvable | undefined;
|
|
1229
|
+
set internalValue(value: ContainerUlimit | cdktn.IResolvable | undefined);
|
|
1230
1230
|
private _hard?;
|
|
1231
1231
|
get hard(): number;
|
|
1232
1232
|
set hard(value: number);
|
|
@@ -1240,17 +1240,17 @@ export declare class ContainerUlimitOutputReference extends cdktf.ComplexObject
|
|
|
1240
1240
|
set soft(value: number);
|
|
1241
1241
|
get softInput(): number | undefined;
|
|
1242
1242
|
}
|
|
1243
|
-
export declare class ContainerUlimitList extends
|
|
1244
|
-
protected terraformResource:
|
|
1243
|
+
export declare class ContainerUlimitList extends cdktn.ComplexList {
|
|
1244
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1245
1245
|
protected terraformAttribute: string;
|
|
1246
1246
|
protected wrapsSet: boolean;
|
|
1247
|
-
internalValue?: ContainerUlimit[] |
|
|
1247
|
+
internalValue?: ContainerUlimit[] | cdktn.IResolvable;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* @param terraformResource The parent resource
|
|
1250
1250
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1251
1251
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1252
1252
|
*/
|
|
1253
|
-
constructor(terraformResource:
|
|
1253
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1254
1254
|
/**
|
|
1255
1255
|
* @param index the index of the item to return
|
|
1256
1256
|
*/
|
|
@@ -1274,7 +1274,7 @@ export interface ContainerUpload {
|
|
|
1274
1274
|
*
|
|
1275
1275
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#executable Container#executable}
|
|
1276
1276
|
*/
|
|
1277
|
-
readonly executable?: boolean |
|
|
1277
|
+
readonly executable?: boolean | cdktn.IResolvable;
|
|
1278
1278
|
/**
|
|
1279
1279
|
* Path to the file in the container where is upload goes to
|
|
1280
1280
|
*
|
|
@@ -1300,9 +1300,9 @@ export interface ContainerUpload {
|
|
|
1300
1300
|
*/
|
|
1301
1301
|
readonly sourceHash?: string;
|
|
1302
1302
|
}
|
|
1303
|
-
export declare function containerUploadToTerraform(struct?: ContainerUpload |
|
|
1304
|
-
export declare function containerUploadToHclTerraform(struct?: ContainerUpload |
|
|
1305
|
-
export declare class ContainerUploadOutputReference extends
|
|
1303
|
+
export declare function containerUploadToTerraform(struct?: ContainerUpload | cdktn.IResolvable): any;
|
|
1304
|
+
export declare function containerUploadToHclTerraform(struct?: ContainerUpload | cdktn.IResolvable): any;
|
|
1305
|
+
export declare class ContainerUploadOutputReference extends cdktn.ComplexObject {
|
|
1306
1306
|
private isEmptyObject;
|
|
1307
1307
|
private resolvableValue?;
|
|
1308
1308
|
/**
|
|
@@ -1311,9 +1311,9 @@ export declare class ContainerUploadOutputReference extends cdktf.ComplexObject
|
|
|
1311
1311
|
* @param complexObjectIndex the index of this item in the list
|
|
1312
1312
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1313
1313
|
*/
|
|
1314
|
-
constructor(terraformResource:
|
|
1315
|
-
get internalValue(): ContainerUpload |
|
|
1316
|
-
set internalValue(value: ContainerUpload |
|
|
1314
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1315
|
+
get internalValue(): ContainerUpload | cdktn.IResolvable | undefined;
|
|
1316
|
+
set internalValue(value: ContainerUpload | cdktn.IResolvable | undefined);
|
|
1317
1317
|
private _content?;
|
|
1318
1318
|
get content(): string;
|
|
1319
1319
|
set content(value: string);
|
|
@@ -1325,10 +1325,10 @@ export declare class ContainerUploadOutputReference extends cdktf.ComplexObject
|
|
|
1325
1325
|
resetContentBase64(): void;
|
|
1326
1326
|
get contentBase64Input(): string | undefined;
|
|
1327
1327
|
private _executable?;
|
|
1328
|
-
get executable(): boolean |
|
|
1329
|
-
set executable(value: boolean |
|
|
1328
|
+
get executable(): boolean | cdktn.IResolvable;
|
|
1329
|
+
set executable(value: boolean | cdktn.IResolvable);
|
|
1330
1330
|
resetExecutable(): void;
|
|
1331
|
-
get executableInput(): boolean |
|
|
1331
|
+
get executableInput(): boolean | cdktn.IResolvable | undefined;
|
|
1332
1332
|
private _file?;
|
|
1333
1333
|
get file(): string;
|
|
1334
1334
|
set file(value: string);
|
|
@@ -1349,17 +1349,17 @@ export declare class ContainerUploadOutputReference extends cdktf.ComplexObject
|
|
|
1349
1349
|
resetSourceHash(): void;
|
|
1350
1350
|
get sourceHashInput(): string | undefined;
|
|
1351
1351
|
}
|
|
1352
|
-
export declare class ContainerUploadList extends
|
|
1353
|
-
protected terraformResource:
|
|
1352
|
+
export declare class ContainerUploadList extends cdktn.ComplexList {
|
|
1353
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1354
1354
|
protected terraformAttribute: string;
|
|
1355
1355
|
protected wrapsSet: boolean;
|
|
1356
|
-
internalValue?: ContainerUpload[] |
|
|
1356
|
+
internalValue?: ContainerUpload[] | cdktn.IResolvable;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* @param terraformResource The parent resource
|
|
1359
1359
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1360
1360
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1361
1361
|
*/
|
|
1362
|
-
constructor(terraformResource:
|
|
1362
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1363
1363
|
/**
|
|
1364
1364
|
* @param index the index of the item to return
|
|
1365
1365
|
*/
|
|
@@ -1389,7 +1389,7 @@ export interface ContainerVolumes {
|
|
|
1389
1389
|
*
|
|
1390
1390
|
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#read_only Container#read_only}
|
|
1391
1391
|
*/
|
|
1392
|
-
readonly readOnly?: boolean |
|
|
1392
|
+
readonly readOnly?: boolean | cdktn.IResolvable;
|
|
1393
1393
|
/**
|
|
1394
1394
|
* The name of the docker volume which should be mounted.
|
|
1395
1395
|
*
|
|
@@ -1397,9 +1397,9 @@ export interface ContainerVolumes {
|
|
|
1397
1397
|
*/
|
|
1398
1398
|
readonly volumeName?: string;
|
|
1399
1399
|
}
|
|
1400
|
-
export declare function containerVolumesToTerraform(struct?: ContainerVolumes |
|
|
1401
|
-
export declare function containerVolumesToHclTerraform(struct?: ContainerVolumes |
|
|
1402
|
-
export declare class ContainerVolumesOutputReference extends
|
|
1400
|
+
export declare function containerVolumesToTerraform(struct?: ContainerVolumes | cdktn.IResolvable): any;
|
|
1401
|
+
export declare function containerVolumesToHclTerraform(struct?: ContainerVolumes | cdktn.IResolvable): any;
|
|
1402
|
+
export declare class ContainerVolumesOutputReference extends cdktn.ComplexObject {
|
|
1403
1403
|
private isEmptyObject;
|
|
1404
1404
|
private resolvableValue?;
|
|
1405
1405
|
/**
|
|
@@ -1408,9 +1408,9 @@ export declare class ContainerVolumesOutputReference extends cdktf.ComplexObject
|
|
|
1408
1408
|
* @param complexObjectIndex the index of this item in the list
|
|
1409
1409
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1410
1410
|
*/
|
|
1411
|
-
constructor(terraformResource:
|
|
1412
|
-
get internalValue(): ContainerVolumes |
|
|
1413
|
-
set internalValue(value: ContainerVolumes |
|
|
1411
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1412
|
+
get internalValue(): ContainerVolumes | cdktn.IResolvable | undefined;
|
|
1413
|
+
set internalValue(value: ContainerVolumes | cdktn.IResolvable | undefined);
|
|
1414
1414
|
private _containerPath?;
|
|
1415
1415
|
get containerPath(): string;
|
|
1416
1416
|
set containerPath(value: string);
|
|
@@ -1427,27 +1427,27 @@ export declare class ContainerVolumesOutputReference extends cdktf.ComplexObject
|
|
|
1427
1427
|
resetHostPath(): void;
|
|
1428
1428
|
get hostPathInput(): string | undefined;
|
|
1429
1429
|
private _readOnly?;
|
|
1430
|
-
get readOnly(): boolean |
|
|
1431
|
-
set readOnly(value: boolean |
|
|
1430
|
+
get readOnly(): boolean | cdktn.IResolvable;
|
|
1431
|
+
set readOnly(value: boolean | cdktn.IResolvable);
|
|
1432
1432
|
resetReadOnly(): void;
|
|
1433
|
-
get readOnlyInput(): boolean |
|
|
1433
|
+
get readOnlyInput(): boolean | cdktn.IResolvable | undefined;
|
|
1434
1434
|
private _volumeName?;
|
|
1435
1435
|
get volumeName(): string;
|
|
1436
1436
|
set volumeName(value: string);
|
|
1437
1437
|
resetVolumeName(): void;
|
|
1438
1438
|
get volumeNameInput(): string | undefined;
|
|
1439
1439
|
}
|
|
1440
|
-
export declare class ContainerVolumesList extends
|
|
1441
|
-
protected terraformResource:
|
|
1440
|
+
export declare class ContainerVolumesList extends cdktn.ComplexList {
|
|
1441
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1442
1442
|
protected terraformAttribute: string;
|
|
1443
1443
|
protected wrapsSet: boolean;
|
|
1444
|
-
internalValue?: ContainerVolumes[] |
|
|
1444
|
+
internalValue?: ContainerVolumes[] | cdktn.IResolvable;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* @param terraformResource The parent resource
|
|
1447
1447
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1448
1448
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1449
1449
|
*/
|
|
1450
|
-
constructor(terraformResource:
|
|
1450
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1451
1451
|
/**
|
|
1452
1452
|
* @param index the index of the item to return
|
|
1453
1453
|
*/
|
|
@@ -1456,16 +1456,16 @@ export declare class ContainerVolumesList extends cdktf.ComplexList {
|
|
|
1456
1456
|
/**
|
|
1457
1457
|
* Represents a {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container docker_container}
|
|
1458
1458
|
*/
|
|
1459
|
-
export declare class Container extends
|
|
1459
|
+
export declare class Container extends cdktn.TerraformResource {
|
|
1460
1460
|
static readonly tfResourceType = "docker_container";
|
|
1461
1461
|
/**
|
|
1462
|
-
* Generates
|
|
1462
|
+
* Generates CDKTN code for importing a Container resource upon running "cdktn plan <stack-name>"
|
|
1463
1463
|
* @param scope The scope in which to define this construct
|
|
1464
1464
|
* @param importToId The construct id used in the generated config for the Container to import
|
|
1465
1465
|
* @param importFromId The id of the existing Container that should be imported. Refer to the {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container#import import section} in the documentation of this resource for the id to use
|
|
1466
1466
|
* @param provider? Optional instance of the provider where the Container to import is found
|
|
1467
1467
|
*/
|
|
1468
|
-
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?:
|
|
1468
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktn.TerraformProvider): cdktn.ImportableResource;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* Create a new {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2/docs/resources/container docker_container} Resource
|
|
1471
1471
|
*
|
|
@@ -1475,10 +1475,10 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1475
1475
|
*/
|
|
1476
1476
|
constructor(scope: Construct, id: string, config: ContainerConfig);
|
|
1477
1477
|
private _attach?;
|
|
1478
|
-
get attach(): boolean |
|
|
1479
|
-
set attach(value: boolean |
|
|
1478
|
+
get attach(): boolean | cdktn.IResolvable;
|
|
1479
|
+
set attach(value: boolean | cdktn.IResolvable);
|
|
1480
1480
|
resetAttach(): void;
|
|
1481
|
-
get attachInput(): boolean |
|
|
1481
|
+
get attachInput(): boolean | cdktn.IResolvable | undefined;
|
|
1482
1482
|
get bridge(): string;
|
|
1483
1483
|
private _cgroupParent?;
|
|
1484
1484
|
get cgroupParent(): string;
|
|
@@ -1587,10 +1587,10 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1587
1587
|
set image(value: string);
|
|
1588
1588
|
get imageInput(): string | undefined;
|
|
1589
1589
|
private _init?;
|
|
1590
|
-
get init(): boolean |
|
|
1591
|
-
set init(value: boolean |
|
|
1590
|
+
get init(): boolean | cdktn.IResolvable;
|
|
1591
|
+
set init(value: boolean | cdktn.IResolvable);
|
|
1592
1592
|
resetInit(): void;
|
|
1593
|
-
get initInput(): boolean |
|
|
1593
|
+
get initInput(): boolean | cdktn.IResolvable | undefined;
|
|
1594
1594
|
private _ipcMode?;
|
|
1595
1595
|
get ipcMode(): string;
|
|
1596
1596
|
set ipcMode(value: string);
|
|
@@ -1613,10 +1613,10 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1613
1613
|
[key: string]: string;
|
|
1614
1614
|
} | undefined;
|
|
1615
1615
|
private _logs?;
|
|
1616
|
-
get logs(): boolean |
|
|
1617
|
-
set logs(value: boolean |
|
|
1616
|
+
get logs(): boolean | cdktn.IResolvable;
|
|
1617
|
+
set logs(value: boolean | cdktn.IResolvable);
|
|
1618
1618
|
resetLogs(): void;
|
|
1619
|
-
get logsInput(): boolean |
|
|
1619
|
+
get logsInput(): boolean | cdktn.IResolvable | undefined;
|
|
1620
1620
|
private _maxRetryCount?;
|
|
1621
1621
|
get maxRetryCount(): number;
|
|
1622
1622
|
set maxRetryCount(value: number);
|
|
@@ -1633,10 +1633,10 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1633
1633
|
resetMemorySwap(): void;
|
|
1634
1634
|
get memorySwapInput(): number | undefined;
|
|
1635
1635
|
private _mustRun?;
|
|
1636
|
-
get mustRun(): boolean |
|
|
1637
|
-
set mustRun(value: boolean |
|
|
1636
|
+
get mustRun(): boolean | cdktn.IResolvable;
|
|
1637
|
+
set mustRun(value: boolean | cdktn.IResolvable);
|
|
1638
1638
|
resetMustRun(): void;
|
|
1639
|
-
get mustRunInput(): boolean |
|
|
1639
|
+
get mustRunInput(): boolean | cdktn.IResolvable | undefined;
|
|
1640
1640
|
private _name?;
|
|
1641
1641
|
get name(): string;
|
|
1642
1642
|
set name(value: string);
|
|
@@ -1654,35 +1654,35 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1654
1654
|
resetPidMode(): void;
|
|
1655
1655
|
get pidModeInput(): string | undefined;
|
|
1656
1656
|
private _privileged?;
|
|
1657
|
-
get privileged(): boolean |
|
|
1658
|
-
set privileged(value: boolean |
|
|
1657
|
+
get privileged(): boolean | cdktn.IResolvable;
|
|
1658
|
+
set privileged(value: boolean | cdktn.IResolvable);
|
|
1659
1659
|
resetPrivileged(): void;
|
|
1660
|
-
get privilegedInput(): boolean |
|
|
1660
|
+
get privilegedInput(): boolean | cdktn.IResolvable | undefined;
|
|
1661
1661
|
private _publishAllPorts?;
|
|
1662
|
-
get publishAllPorts(): boolean |
|
|
1663
|
-
set publishAllPorts(value: boolean |
|
|
1662
|
+
get publishAllPorts(): boolean | cdktn.IResolvable;
|
|
1663
|
+
set publishAllPorts(value: boolean | cdktn.IResolvable);
|
|
1664
1664
|
resetPublishAllPorts(): void;
|
|
1665
|
-
get publishAllPortsInput(): boolean |
|
|
1665
|
+
get publishAllPortsInput(): boolean | cdktn.IResolvable | undefined;
|
|
1666
1666
|
private _readOnly?;
|
|
1667
|
-
get readOnly(): boolean |
|
|
1668
|
-
set readOnly(value: boolean |
|
|
1667
|
+
get readOnly(): boolean | cdktn.IResolvable;
|
|
1668
|
+
set readOnly(value: boolean | cdktn.IResolvable);
|
|
1669
1669
|
resetReadOnly(): void;
|
|
1670
|
-
get readOnlyInput(): boolean |
|
|
1670
|
+
get readOnlyInput(): boolean | cdktn.IResolvable | undefined;
|
|
1671
1671
|
private _removeVolumes?;
|
|
1672
|
-
get removeVolumes(): boolean |
|
|
1673
|
-
set removeVolumes(value: boolean |
|
|
1672
|
+
get removeVolumes(): boolean | cdktn.IResolvable;
|
|
1673
|
+
set removeVolumes(value: boolean | cdktn.IResolvable);
|
|
1674
1674
|
resetRemoveVolumes(): void;
|
|
1675
|
-
get removeVolumesInput(): boolean |
|
|
1675
|
+
get removeVolumesInput(): boolean | cdktn.IResolvable | undefined;
|
|
1676
1676
|
private _restart?;
|
|
1677
1677
|
get restart(): string;
|
|
1678
1678
|
set restart(value: string);
|
|
1679
1679
|
resetRestart(): void;
|
|
1680
1680
|
get restartInput(): string | undefined;
|
|
1681
1681
|
private _rm?;
|
|
1682
|
-
get rm(): boolean |
|
|
1683
|
-
set rm(value: boolean |
|
|
1682
|
+
get rm(): boolean | cdktn.IResolvable;
|
|
1683
|
+
set rm(value: boolean | cdktn.IResolvable);
|
|
1684
1684
|
resetRm(): void;
|
|
1685
|
-
get rmInput(): boolean |
|
|
1685
|
+
get rmInput(): boolean | cdktn.IResolvable | undefined;
|
|
1686
1686
|
private _runtime?;
|
|
1687
1687
|
get runtime(): string;
|
|
1688
1688
|
set runtime(value: string);
|
|
@@ -1699,15 +1699,15 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1699
1699
|
resetShmSize(): void;
|
|
1700
1700
|
get shmSizeInput(): number | undefined;
|
|
1701
1701
|
private _start?;
|
|
1702
|
-
get start(): boolean |
|
|
1703
|
-
set start(value: boolean |
|
|
1702
|
+
get start(): boolean | cdktn.IResolvable;
|
|
1703
|
+
set start(value: boolean | cdktn.IResolvable);
|
|
1704
1704
|
resetStart(): void;
|
|
1705
|
-
get startInput(): boolean |
|
|
1705
|
+
get startInput(): boolean | cdktn.IResolvable | undefined;
|
|
1706
1706
|
private _stdinOpen?;
|
|
1707
|
-
get stdinOpen(): boolean |
|
|
1708
|
-
set stdinOpen(value: boolean |
|
|
1707
|
+
get stdinOpen(): boolean | cdktn.IResolvable;
|
|
1708
|
+
set stdinOpen(value: boolean | cdktn.IResolvable);
|
|
1709
1709
|
resetStdinOpen(): void;
|
|
1710
|
-
get stdinOpenInput(): boolean |
|
|
1710
|
+
get stdinOpenInput(): boolean | cdktn.IResolvable | undefined;
|
|
1711
1711
|
private _stopSignal?;
|
|
1712
1712
|
get stopSignal(): string;
|
|
1713
1713
|
set stopSignal(value: string);
|
|
@@ -1752,10 +1752,10 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1752
1752
|
[key: string]: string;
|
|
1753
1753
|
} | undefined;
|
|
1754
1754
|
private _tty?;
|
|
1755
|
-
get tty(): boolean |
|
|
1756
|
-
set tty(value: boolean |
|
|
1755
|
+
get tty(): boolean | cdktn.IResolvable;
|
|
1756
|
+
set tty(value: boolean | cdktn.IResolvable);
|
|
1757
1757
|
resetTty(): void;
|
|
1758
|
-
get ttyInput(): boolean |
|
|
1758
|
+
get ttyInput(): boolean | cdktn.IResolvable | undefined;
|
|
1759
1759
|
private _user?;
|
|
1760
1760
|
get user(): string;
|
|
1761
1761
|
set user(value: string);
|
|
@@ -1767,10 +1767,10 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1767
1767
|
resetUsernsMode(): void;
|
|
1768
1768
|
get usernsModeInput(): string | undefined;
|
|
1769
1769
|
private _wait?;
|
|
1770
|
-
get wait(): boolean |
|
|
1771
|
-
set wait(value: boolean |
|
|
1770
|
+
get wait(): boolean | cdktn.IResolvable;
|
|
1771
|
+
set wait(value: boolean | cdktn.IResolvable);
|
|
1772
1772
|
resetWait(): void;
|
|
1773
|
-
get waitInput(): boolean |
|
|
1773
|
+
get waitInput(): boolean | cdktn.IResolvable | undefined;
|
|
1774
1774
|
private _waitTimeout?;
|
|
1775
1775
|
get waitTimeout(): number;
|
|
1776
1776
|
set waitTimeout(value: number);
|
|
@@ -1788,9 +1788,9 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1788
1788
|
get capabilitiesInput(): ContainerCapabilities | undefined;
|
|
1789
1789
|
private _devices;
|
|
1790
1790
|
get devices(): ContainerDevicesList;
|
|
1791
|
-
putDevices(value: ContainerDevices[] |
|
|
1791
|
+
putDevices(value: ContainerDevices[] | cdktn.IResolvable): void;
|
|
1792
1792
|
resetDevices(): void;
|
|
1793
|
-
get devicesInput():
|
|
1793
|
+
get devicesInput(): cdktn.IResolvable | ContainerDevices[] | undefined;
|
|
1794
1794
|
private _healthcheck;
|
|
1795
1795
|
get healthcheck(): ContainerHealthcheckOutputReference;
|
|
1796
1796
|
putHealthcheck(value: ContainerHealthcheck): void;
|
|
@@ -1798,44 +1798,44 @@ export declare class Container extends cdktf.TerraformResource {
|
|
|
1798
1798
|
get healthcheckInput(): ContainerHealthcheck | undefined;
|
|
1799
1799
|
private _host;
|
|
1800
1800
|
get host(): ContainerHostList;
|
|
1801
|
-
putHost(value: ContainerHost[] |
|
|
1801
|
+
putHost(value: ContainerHost[] | cdktn.IResolvable): void;
|
|
1802
1802
|
resetHost(): void;
|
|
1803
|
-
get hostInput():
|
|
1803
|
+
get hostInput(): cdktn.IResolvable | ContainerHost[] | undefined;
|
|
1804
1804
|
private _labels;
|
|
1805
1805
|
get labels(): ContainerLabelsList;
|
|
1806
|
-
putLabels(value: ContainerLabels[] |
|
|
1806
|
+
putLabels(value: ContainerLabels[] | cdktn.IResolvable): void;
|
|
1807
1807
|
resetLabels(): void;
|
|
1808
|
-
get labelsInput():
|
|
1808
|
+
get labelsInput(): cdktn.IResolvable | ContainerLabels[] | undefined;
|
|
1809
1809
|
private _mounts;
|
|
1810
1810
|
get mounts(): ContainerMountsList;
|
|
1811
|
-
putMounts(value: ContainerMounts[] |
|
|
1811
|
+
putMounts(value: ContainerMounts[] | cdktn.IResolvable): void;
|
|
1812
1812
|
resetMounts(): void;
|
|
1813
|
-
get mountsInput():
|
|
1813
|
+
get mountsInput(): cdktn.IResolvable | ContainerMounts[] | undefined;
|
|
1814
1814
|
private _networksAdvanced;
|
|
1815
1815
|
get networksAdvanced(): ContainerNetworksAdvancedList;
|
|
1816
|
-
putNetworksAdvanced(value: ContainerNetworksAdvanced[] |
|
|
1816
|
+
putNetworksAdvanced(value: ContainerNetworksAdvanced[] | cdktn.IResolvable): void;
|
|
1817
1817
|
resetNetworksAdvanced(): void;
|
|
1818
|
-
get networksAdvancedInput():
|
|
1818
|
+
get networksAdvancedInput(): cdktn.IResolvable | ContainerNetworksAdvanced[] | undefined;
|
|
1819
1819
|
private _ports;
|
|
1820
1820
|
get ports(): ContainerPortsList;
|
|
1821
|
-
putPorts(value: ContainerPorts[] |
|
|
1821
|
+
putPorts(value: ContainerPorts[] | cdktn.IResolvable): void;
|
|
1822
1822
|
resetPorts(): void;
|
|
1823
|
-
get portsInput():
|
|
1823
|
+
get portsInput(): cdktn.IResolvable | ContainerPorts[] | undefined;
|
|
1824
1824
|
private _ulimit;
|
|
1825
1825
|
get ulimit(): ContainerUlimitList;
|
|
1826
|
-
putUlimit(value: ContainerUlimit[] |
|
|
1826
|
+
putUlimit(value: ContainerUlimit[] | cdktn.IResolvable): void;
|
|
1827
1827
|
resetUlimit(): void;
|
|
1828
|
-
get ulimitInput():
|
|
1828
|
+
get ulimitInput(): cdktn.IResolvable | ContainerUlimit[] | undefined;
|
|
1829
1829
|
private _upload;
|
|
1830
1830
|
get upload(): ContainerUploadList;
|
|
1831
|
-
putUpload(value: ContainerUpload[] |
|
|
1831
|
+
putUpload(value: ContainerUpload[] | cdktn.IResolvable): void;
|
|
1832
1832
|
resetUpload(): void;
|
|
1833
|
-
get uploadInput():
|
|
1833
|
+
get uploadInput(): cdktn.IResolvable | ContainerUpload[] | undefined;
|
|
1834
1834
|
private _volumes;
|
|
1835
1835
|
get volumes(): ContainerVolumesList;
|
|
1836
|
-
putVolumes(value: ContainerVolumes[] |
|
|
1836
|
+
putVolumes(value: ContainerVolumes[] | cdktn.IResolvable): void;
|
|
1837
1837
|
resetVolumes(): void;
|
|
1838
|
-
get volumesInput():
|
|
1838
|
+
get volumesInput(): cdktn.IResolvable | ContainerVolumes[] | undefined;
|
|
1839
1839
|
protected synthesizeAttributes(): {
|
|
1840
1840
|
[name: string]: any;
|
|
1841
1841
|
};
|