@cdktn/provider-docker 12.1.0 → 13.1.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 +9058 -3437
- package/README.md +13 -13
- package/lib/buildx-builder/index.d.ts +110 -110
- package/lib/buildx-builder/index.js +148 -148
- package/lib/config/index.d.ts +12 -12
- package/lib/config/index.js +16 -16
- package/lib/container/index.d.ts +367 -345
- package/lib/container/index.js +428 -381
- package/lib/data-docker-image/index.d.ts +11 -11
- package/lib/data-docker-image/index.js +14 -14
- package/lib/data-docker-logs/index.d.ts +49 -49
- package/lib/data-docker-logs/index.js +34 -34
- package/lib/data-docker-network/index.d.ts +18 -18
- package/lib/data-docker-network/index.js +22 -22
- package/lib/data-docker-plugin/index.d.ts +13 -13
- package/lib/data-docker-plugin/index.js +15 -15
- package/lib/data-docker-registry-image/index.d.ts +16 -16
- package/lib/data-docker-registry-image/index.js +16 -16
- package/lib/data-docker-registry-image-manifests/index.d.ts +27 -27
- package/lib/data-docker-registry-image-manifests/index.js +36 -36
- package/lib/image/index.d.ts +174 -152
- package/lib/image/index.js +223 -171
- 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 +74 -74
- package/lib/network/index.js +66 -66
- package/lib/plugin/index.d.ts +50 -50
- package/lib/plugin/index.js +45 -45
- package/lib/provider/index.d.ts +35 -35
- package/lib/provider/index.js +46 -46
- package/lib/registry-image/index.d.ts +809 -28
- package/lib/registry-image/index.js +1883 -35
- package/lib/secret/index.d.ts +28 -28
- package/lib/secret/index.js +31 -31
- package/lib/service/index.d.ts +352 -351
- package/lib/service/index.js +491 -488
- package/lib/tag/index.d.ts +13 -13
- package/lib/tag/index.js +19 -19
- package/lib/volume/index.d.ts +154 -29
- package/lib/volume/index.js +349 -38
- package/package.json +20 -10
package/lib/service/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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 ServiceConfig extends
|
|
6
|
+
import * as cdktn from 'cdktn';
|
|
7
|
+
export interface ServiceConfig extends cdktn.TerraformMetaArguments {
|
|
8
8
|
/**
|
|
9
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
9
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#id Service#id}
|
|
10
10
|
*
|
|
11
11
|
* Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
|
|
12
12
|
* If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
|
|
@@ -15,55 +15,55 @@ export interface ServiceConfig extends cdktf.TerraformMetaArguments {
|
|
|
15
15
|
/**
|
|
16
16
|
* Name of the service
|
|
17
17
|
*
|
|
18
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
18
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#name Service#name}
|
|
19
19
|
*/
|
|
20
20
|
readonly name: string;
|
|
21
21
|
/**
|
|
22
22
|
* auth block
|
|
23
23
|
*
|
|
24
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
24
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#auth Service#auth}
|
|
25
25
|
*/
|
|
26
26
|
readonly auth?: ServiceAuth;
|
|
27
27
|
/**
|
|
28
28
|
* converge_config block
|
|
29
29
|
*
|
|
30
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
30
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#converge_config Service#converge_config}
|
|
31
31
|
*/
|
|
32
32
|
readonly convergeConfig?: ServiceConvergeConfig;
|
|
33
33
|
/**
|
|
34
34
|
* endpoint_spec block
|
|
35
35
|
*
|
|
36
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
36
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#endpoint_spec Service#endpoint_spec}
|
|
37
37
|
*/
|
|
38
38
|
readonly endpointSpec?: ServiceEndpointSpec;
|
|
39
39
|
/**
|
|
40
40
|
* labels block
|
|
41
41
|
*
|
|
42
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
42
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#labels Service#labels}
|
|
43
43
|
*/
|
|
44
|
-
readonly labels?: ServiceLabels[] |
|
|
44
|
+
readonly labels?: ServiceLabels[] | cdktn.IResolvable;
|
|
45
45
|
/**
|
|
46
46
|
* mode block
|
|
47
47
|
*
|
|
48
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
48
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#mode Service#mode}
|
|
49
49
|
*/
|
|
50
50
|
readonly mode?: ServiceMode;
|
|
51
51
|
/**
|
|
52
52
|
* rollback_config block
|
|
53
53
|
*
|
|
54
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
54
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#rollback_config Service#rollback_config}
|
|
55
55
|
*/
|
|
56
56
|
readonly rollbackConfig?: ServiceRollbackConfig;
|
|
57
57
|
/**
|
|
58
58
|
* task_spec block
|
|
59
59
|
*
|
|
60
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
60
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#task_spec Service#task_spec}
|
|
61
61
|
*/
|
|
62
62
|
readonly taskSpec: ServiceTaskSpec;
|
|
63
63
|
/**
|
|
64
64
|
* update_config block
|
|
65
65
|
*
|
|
66
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
66
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#update_config Service#update_config}
|
|
67
67
|
*/
|
|
68
68
|
readonly updateConfig?: ServiceUpdateConfig;
|
|
69
69
|
}
|
|
@@ -71,31 +71,31 @@ export interface ServiceAuth {
|
|
|
71
71
|
/**
|
|
72
72
|
* The password
|
|
73
73
|
*
|
|
74
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
74
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#password Service#password}
|
|
75
75
|
*/
|
|
76
76
|
readonly password?: string;
|
|
77
77
|
/**
|
|
78
78
|
* The address of the server for the authentication
|
|
79
79
|
*
|
|
80
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
80
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#server_address Service#server_address}
|
|
81
81
|
*/
|
|
82
82
|
readonly serverAddress: string;
|
|
83
83
|
/**
|
|
84
84
|
* The username
|
|
85
85
|
*
|
|
86
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
86
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#username Service#username}
|
|
87
87
|
*/
|
|
88
88
|
readonly username?: string;
|
|
89
89
|
}
|
|
90
90
|
export declare function serviceAuthToTerraform(struct?: ServiceAuthOutputReference | ServiceAuth): any;
|
|
91
91
|
export declare function serviceAuthToHclTerraform(struct?: ServiceAuthOutputReference | ServiceAuth): any;
|
|
92
|
-
export declare class ServiceAuthOutputReference extends
|
|
92
|
+
export declare class ServiceAuthOutputReference extends cdktn.ComplexObject {
|
|
93
93
|
private isEmptyObject;
|
|
94
94
|
/**
|
|
95
95
|
* @param terraformResource The parent resource
|
|
96
96
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
97
97
|
*/
|
|
98
|
-
constructor(terraformResource:
|
|
98
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
99
99
|
get internalValue(): ServiceAuth | undefined;
|
|
100
100
|
set internalValue(value: ServiceAuth | undefined);
|
|
101
101
|
private _password?;
|
|
@@ -117,25 +117,25 @@ export interface ServiceConvergeConfig {
|
|
|
117
117
|
/**
|
|
118
118
|
* The interval to check if the desired state is reached `(ms|s)`. Defaults to `7s`.
|
|
119
119
|
*
|
|
120
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
120
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#delay Service#delay}
|
|
121
121
|
*/
|
|
122
122
|
readonly delay?: string;
|
|
123
123
|
/**
|
|
124
124
|
* The timeout of the service to reach the desired state `(s|m)`. Defaults to `3m`
|
|
125
125
|
*
|
|
126
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
126
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#timeout Service#timeout}
|
|
127
127
|
*/
|
|
128
128
|
readonly timeout?: string;
|
|
129
129
|
}
|
|
130
130
|
export declare function serviceConvergeConfigToTerraform(struct?: ServiceConvergeConfigOutputReference | ServiceConvergeConfig): any;
|
|
131
131
|
export declare function serviceConvergeConfigToHclTerraform(struct?: ServiceConvergeConfigOutputReference | ServiceConvergeConfig): any;
|
|
132
|
-
export declare class ServiceConvergeConfigOutputReference extends
|
|
132
|
+
export declare class ServiceConvergeConfigOutputReference extends cdktn.ComplexObject {
|
|
133
133
|
private isEmptyObject;
|
|
134
134
|
/**
|
|
135
135
|
* @param terraformResource The parent resource
|
|
136
136
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
137
137
|
*/
|
|
138
|
-
constructor(terraformResource:
|
|
138
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
139
139
|
get internalValue(): ServiceConvergeConfig | undefined;
|
|
140
140
|
set internalValue(value: ServiceConvergeConfig | undefined);
|
|
141
141
|
private _delay?;
|
|
@@ -153,37 +153,37 @@ export interface ServiceEndpointSpecPorts {
|
|
|
153
153
|
/**
|
|
154
154
|
* A random name for the port
|
|
155
155
|
*
|
|
156
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
156
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#name Service#name}
|
|
157
157
|
*/
|
|
158
158
|
readonly name?: string;
|
|
159
159
|
/**
|
|
160
160
|
* Rrepresents the protocol of a port: `tcp`, `udp` or `sctp`. Defaults to `tcp`.
|
|
161
161
|
*
|
|
162
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
162
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#protocol Service#protocol}
|
|
163
163
|
*/
|
|
164
164
|
readonly protocol?: string;
|
|
165
165
|
/**
|
|
166
166
|
* Represents the mode in which the port is to be published: 'ingress' or 'host'. Defaults to `ingress`.
|
|
167
167
|
*
|
|
168
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
168
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#publish_mode Service#publish_mode}
|
|
169
169
|
*/
|
|
170
170
|
readonly publishMode?: string;
|
|
171
171
|
/**
|
|
172
172
|
* The port on the swarm hosts
|
|
173
173
|
*
|
|
174
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
174
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#published_port Service#published_port}
|
|
175
175
|
*/
|
|
176
176
|
readonly publishedPort?: number;
|
|
177
177
|
/**
|
|
178
178
|
* The port inside the container
|
|
179
179
|
*
|
|
180
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
180
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#target_port Service#target_port}
|
|
181
181
|
*/
|
|
182
182
|
readonly targetPort: number;
|
|
183
183
|
}
|
|
184
|
-
export declare function serviceEndpointSpecPortsToTerraform(struct?: ServiceEndpointSpecPorts |
|
|
185
|
-
export declare function serviceEndpointSpecPortsToHclTerraform(struct?: ServiceEndpointSpecPorts |
|
|
186
|
-
export declare class ServiceEndpointSpecPortsOutputReference extends
|
|
184
|
+
export declare function serviceEndpointSpecPortsToTerraform(struct?: ServiceEndpointSpecPorts | cdktn.IResolvable): any;
|
|
185
|
+
export declare function serviceEndpointSpecPortsToHclTerraform(struct?: ServiceEndpointSpecPorts | cdktn.IResolvable): any;
|
|
186
|
+
export declare class ServiceEndpointSpecPortsOutputReference extends cdktn.ComplexObject {
|
|
187
187
|
private isEmptyObject;
|
|
188
188
|
private resolvableValue?;
|
|
189
189
|
/**
|
|
@@ -192,9 +192,9 @@ export declare class ServiceEndpointSpecPortsOutputReference extends cdktf.Compl
|
|
|
192
192
|
* @param complexObjectIndex the index of this item in the list
|
|
193
193
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
194
194
|
*/
|
|
195
|
-
constructor(terraformResource:
|
|
196
|
-
get internalValue(): ServiceEndpointSpecPorts |
|
|
197
|
-
set internalValue(value: ServiceEndpointSpecPorts |
|
|
195
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
196
|
+
get internalValue(): ServiceEndpointSpecPorts | cdktn.IResolvable | undefined;
|
|
197
|
+
set internalValue(value: ServiceEndpointSpecPorts | cdktn.IResolvable | undefined);
|
|
198
198
|
private _name?;
|
|
199
199
|
get name(): string;
|
|
200
200
|
set name(value: string);
|
|
@@ -220,17 +220,17 @@ export declare class ServiceEndpointSpecPortsOutputReference extends cdktf.Compl
|
|
|
220
220
|
set targetPort(value: number);
|
|
221
221
|
get targetPortInput(): number | undefined;
|
|
222
222
|
}
|
|
223
|
-
export declare class ServiceEndpointSpecPortsList extends
|
|
224
|
-
protected terraformResource:
|
|
223
|
+
export declare class ServiceEndpointSpecPortsList extends cdktn.ComplexList {
|
|
224
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
225
225
|
protected terraformAttribute: string;
|
|
226
226
|
protected wrapsSet: boolean;
|
|
227
|
-
internalValue?: ServiceEndpointSpecPorts[] |
|
|
227
|
+
internalValue?: ServiceEndpointSpecPorts[] | cdktn.IResolvable;
|
|
228
228
|
/**
|
|
229
229
|
* @param terraformResource The parent resource
|
|
230
230
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
231
231
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
232
232
|
*/
|
|
233
|
-
constructor(terraformResource:
|
|
233
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
234
234
|
/**
|
|
235
235
|
* @param index the index of the item to return
|
|
236
236
|
*/
|
|
@@ -240,25 +240,25 @@ export interface ServiceEndpointSpec {
|
|
|
240
240
|
/**
|
|
241
241
|
* The mode of resolution to use for internal load balancing between tasks
|
|
242
242
|
*
|
|
243
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
243
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#mode Service#mode}
|
|
244
244
|
*/
|
|
245
245
|
readonly mode?: string;
|
|
246
246
|
/**
|
|
247
247
|
* ports block
|
|
248
248
|
*
|
|
249
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
249
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#ports Service#ports}
|
|
250
250
|
*/
|
|
251
|
-
readonly ports?: ServiceEndpointSpecPorts[] |
|
|
251
|
+
readonly ports?: ServiceEndpointSpecPorts[] | cdktn.IResolvable;
|
|
252
252
|
}
|
|
253
253
|
export declare function serviceEndpointSpecToTerraform(struct?: ServiceEndpointSpecOutputReference | ServiceEndpointSpec): any;
|
|
254
254
|
export declare function serviceEndpointSpecToHclTerraform(struct?: ServiceEndpointSpecOutputReference | ServiceEndpointSpec): any;
|
|
255
|
-
export declare class ServiceEndpointSpecOutputReference extends
|
|
255
|
+
export declare class ServiceEndpointSpecOutputReference extends cdktn.ComplexObject {
|
|
256
256
|
private isEmptyObject;
|
|
257
257
|
/**
|
|
258
258
|
* @param terraformResource The parent resource
|
|
259
259
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
260
260
|
*/
|
|
261
|
-
constructor(terraformResource:
|
|
261
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
262
262
|
get internalValue(): ServiceEndpointSpec | undefined;
|
|
263
263
|
set internalValue(value: ServiceEndpointSpec | undefined);
|
|
264
264
|
private _mode?;
|
|
@@ -268,27 +268,27 @@ export declare class ServiceEndpointSpecOutputReference extends cdktf.ComplexObj
|
|
|
268
268
|
get modeInput(): string | undefined;
|
|
269
269
|
private _ports;
|
|
270
270
|
get ports(): ServiceEndpointSpecPortsList;
|
|
271
|
-
putPorts(value: ServiceEndpointSpecPorts[] |
|
|
271
|
+
putPorts(value: ServiceEndpointSpecPorts[] | cdktn.IResolvable): void;
|
|
272
272
|
resetPorts(): void;
|
|
273
|
-
get portsInput():
|
|
273
|
+
get portsInput(): cdktn.IResolvable | ServiceEndpointSpecPorts[] | undefined;
|
|
274
274
|
}
|
|
275
275
|
export interface ServiceLabels {
|
|
276
276
|
/**
|
|
277
277
|
* Name of the label
|
|
278
278
|
*
|
|
279
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
279
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#label Service#label}
|
|
280
280
|
*/
|
|
281
281
|
readonly label: string;
|
|
282
282
|
/**
|
|
283
283
|
* Value of the label
|
|
284
284
|
*
|
|
285
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
285
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#value Service#value}
|
|
286
286
|
*/
|
|
287
287
|
readonly value: string;
|
|
288
288
|
}
|
|
289
|
-
export declare function serviceLabelsToTerraform(struct?: ServiceLabels |
|
|
290
|
-
export declare function serviceLabelsToHclTerraform(struct?: ServiceLabels |
|
|
291
|
-
export declare class ServiceLabelsOutputReference extends
|
|
289
|
+
export declare function serviceLabelsToTerraform(struct?: ServiceLabels | cdktn.IResolvable): any;
|
|
290
|
+
export declare function serviceLabelsToHclTerraform(struct?: ServiceLabels | cdktn.IResolvable): any;
|
|
291
|
+
export declare class ServiceLabelsOutputReference extends cdktn.ComplexObject {
|
|
292
292
|
private isEmptyObject;
|
|
293
293
|
private resolvableValue?;
|
|
294
294
|
/**
|
|
@@ -297,9 +297,9 @@ export declare class ServiceLabelsOutputReference extends cdktf.ComplexObject {
|
|
|
297
297
|
* @param complexObjectIndex the index of this item in the list
|
|
298
298
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
299
299
|
*/
|
|
300
|
-
constructor(terraformResource:
|
|
301
|
-
get internalValue(): ServiceLabels |
|
|
302
|
-
set internalValue(value: ServiceLabels |
|
|
300
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
301
|
+
get internalValue(): ServiceLabels | cdktn.IResolvable | undefined;
|
|
302
|
+
set internalValue(value: ServiceLabels | cdktn.IResolvable | undefined);
|
|
303
303
|
private _label?;
|
|
304
304
|
get label(): string;
|
|
305
305
|
set label(value: string);
|
|
@@ -309,17 +309,17 @@ export declare class ServiceLabelsOutputReference extends cdktf.ComplexObject {
|
|
|
309
309
|
set value(value: string);
|
|
310
310
|
get valueInput(): string | undefined;
|
|
311
311
|
}
|
|
312
|
-
export declare class ServiceLabelsList extends
|
|
313
|
-
protected terraformResource:
|
|
312
|
+
export declare class ServiceLabelsList extends cdktn.ComplexList {
|
|
313
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
314
314
|
protected terraformAttribute: string;
|
|
315
315
|
protected wrapsSet: boolean;
|
|
316
|
-
internalValue?: ServiceLabels[] |
|
|
316
|
+
internalValue?: ServiceLabels[] | cdktn.IResolvable;
|
|
317
317
|
/**
|
|
318
318
|
* @param terraformResource The parent resource
|
|
319
319
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
320
320
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
321
321
|
*/
|
|
322
|
-
constructor(terraformResource:
|
|
322
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
323
323
|
/**
|
|
324
324
|
* @param index the index of the item to return
|
|
325
325
|
*/
|
|
@@ -329,19 +329,19 @@ export interface ServiceModeReplicated {
|
|
|
329
329
|
/**
|
|
330
330
|
* The amount of replicas of the service. Defaults to `1`
|
|
331
331
|
*
|
|
332
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
332
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#replicas Service#replicas}
|
|
333
333
|
*/
|
|
334
334
|
readonly replicas?: number;
|
|
335
335
|
}
|
|
336
336
|
export declare function serviceModeReplicatedToTerraform(struct?: ServiceModeReplicatedOutputReference | ServiceModeReplicated): any;
|
|
337
337
|
export declare function serviceModeReplicatedToHclTerraform(struct?: ServiceModeReplicatedOutputReference | ServiceModeReplicated): any;
|
|
338
|
-
export declare class ServiceModeReplicatedOutputReference extends
|
|
338
|
+
export declare class ServiceModeReplicatedOutputReference extends cdktn.ComplexObject {
|
|
339
339
|
private isEmptyObject;
|
|
340
340
|
/**
|
|
341
341
|
* @param terraformResource The parent resource
|
|
342
342
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
343
343
|
*/
|
|
344
|
-
constructor(terraformResource:
|
|
344
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
345
345
|
get internalValue(): ServiceModeReplicated | undefined;
|
|
346
346
|
set internalValue(value: ServiceModeReplicated | undefined);
|
|
347
347
|
private _replicas?;
|
|
@@ -354,32 +354,32 @@ export interface ServiceMode {
|
|
|
354
354
|
/**
|
|
355
355
|
* The global service mode. Defaults to `false`
|
|
356
356
|
*
|
|
357
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
357
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#global Service#global}
|
|
358
358
|
*/
|
|
359
|
-
readonly global?: boolean |
|
|
359
|
+
readonly global?: boolean | cdktn.IResolvable;
|
|
360
360
|
/**
|
|
361
361
|
* replicated block
|
|
362
362
|
*
|
|
363
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
363
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#replicated Service#replicated}
|
|
364
364
|
*/
|
|
365
365
|
readonly replicated?: ServiceModeReplicated;
|
|
366
366
|
}
|
|
367
367
|
export declare function serviceModeToTerraform(struct?: ServiceModeOutputReference | ServiceMode): any;
|
|
368
368
|
export declare function serviceModeToHclTerraform(struct?: ServiceModeOutputReference | ServiceMode): any;
|
|
369
|
-
export declare class ServiceModeOutputReference extends
|
|
369
|
+
export declare class ServiceModeOutputReference extends cdktn.ComplexObject {
|
|
370
370
|
private isEmptyObject;
|
|
371
371
|
/**
|
|
372
372
|
* @param terraformResource The parent resource
|
|
373
373
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
374
374
|
*/
|
|
375
|
-
constructor(terraformResource:
|
|
375
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
376
376
|
get internalValue(): ServiceMode | undefined;
|
|
377
377
|
set internalValue(value: ServiceMode | undefined);
|
|
378
378
|
private _global?;
|
|
379
|
-
get global(): boolean |
|
|
380
|
-
set global(value: boolean |
|
|
379
|
+
get global(): boolean | cdktn.IResolvable;
|
|
380
|
+
set global(value: boolean | cdktn.IResolvable);
|
|
381
381
|
resetGlobal(): void;
|
|
382
|
-
get globalInput(): boolean |
|
|
382
|
+
get globalInput(): boolean | cdktn.IResolvable | undefined;
|
|
383
383
|
private _replicated;
|
|
384
384
|
get replicated(): ServiceModeReplicatedOutputReference;
|
|
385
385
|
putReplicated(value: ServiceModeReplicated): void;
|
|
@@ -390,49 +390,49 @@ export interface ServiceRollbackConfig {
|
|
|
390
390
|
/**
|
|
391
391
|
* Delay between task rollbacks (ns|us|ms|s|m|h). Defaults to `0s`.
|
|
392
392
|
*
|
|
393
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
393
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#delay Service#delay}
|
|
394
394
|
*/
|
|
395
395
|
readonly delay?: string;
|
|
396
396
|
/**
|
|
397
397
|
* Action on rollback failure: pause | continue. Defaults to `pause`.
|
|
398
398
|
*
|
|
399
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
399
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#failure_action Service#failure_action}
|
|
400
400
|
*/
|
|
401
401
|
readonly failureAction?: string;
|
|
402
402
|
/**
|
|
403
403
|
* Failure rate to tolerate during a rollback. Defaults to `0.0`.
|
|
404
404
|
*
|
|
405
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
405
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#max_failure_ratio Service#max_failure_ratio}
|
|
406
406
|
*/
|
|
407
407
|
readonly maxFailureRatio?: string;
|
|
408
408
|
/**
|
|
409
409
|
* Duration after each task rollback to monitor for failure (ns|us|ms|s|m|h). Defaults to `5s`.
|
|
410
410
|
*
|
|
411
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
411
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#monitor Service#monitor}
|
|
412
412
|
*/
|
|
413
413
|
readonly monitor?: string;
|
|
414
414
|
/**
|
|
415
415
|
* Rollback order: either 'stop-first' or 'start-first'. Defaults to `stop-first`.
|
|
416
416
|
*
|
|
417
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
417
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#order Service#order}
|
|
418
418
|
*/
|
|
419
419
|
readonly order?: string;
|
|
420
420
|
/**
|
|
421
421
|
* Maximum number of tasks to be rollbacked in one iteration. Defaults to `1`
|
|
422
422
|
*
|
|
423
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
423
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#parallelism Service#parallelism}
|
|
424
424
|
*/
|
|
425
425
|
readonly parallelism?: number;
|
|
426
426
|
}
|
|
427
427
|
export declare function serviceRollbackConfigToTerraform(struct?: ServiceRollbackConfigOutputReference | ServiceRollbackConfig): any;
|
|
428
428
|
export declare function serviceRollbackConfigToHclTerraform(struct?: ServiceRollbackConfigOutputReference | ServiceRollbackConfig): any;
|
|
429
|
-
export declare class ServiceRollbackConfigOutputReference extends
|
|
429
|
+
export declare class ServiceRollbackConfigOutputReference extends cdktn.ComplexObject {
|
|
430
430
|
private isEmptyObject;
|
|
431
431
|
/**
|
|
432
432
|
* @param terraformResource The parent resource
|
|
433
433
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
434
434
|
*/
|
|
435
|
-
constructor(terraformResource:
|
|
435
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
436
436
|
get internalValue(): ServiceRollbackConfig | undefined;
|
|
437
437
|
set internalValue(value: ServiceRollbackConfig | undefined);
|
|
438
438
|
private _delay?;
|
|
@@ -470,43 +470,43 @@ export interface ServiceTaskSpecContainerSpecConfigs {
|
|
|
470
470
|
/**
|
|
471
471
|
* ID of the specific config that we're referencing
|
|
472
472
|
*
|
|
473
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
473
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#config_id Service#config_id}
|
|
474
474
|
*/
|
|
475
475
|
readonly configId: string;
|
|
476
476
|
/**
|
|
477
477
|
* Name of the config that this references, but this is just provided for lookup/display purposes. The config in the reference will be identified by its ID
|
|
478
478
|
*
|
|
479
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
479
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#config_name Service#config_name}
|
|
480
480
|
*/
|
|
481
481
|
readonly configName?: string;
|
|
482
482
|
/**
|
|
483
483
|
* Represents the file GID. Defaults to `0`.
|
|
484
484
|
*
|
|
485
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
485
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_gid Service#file_gid}
|
|
486
486
|
*/
|
|
487
487
|
readonly fileGid?: string;
|
|
488
488
|
/**
|
|
489
489
|
* Represents represents the FileMode of the file. Defaults to `0o444`.
|
|
490
490
|
*
|
|
491
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
491
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_mode Service#file_mode}
|
|
492
492
|
*/
|
|
493
493
|
readonly fileMode?: number;
|
|
494
494
|
/**
|
|
495
495
|
* Represents the final filename in the filesystem
|
|
496
496
|
*
|
|
497
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
497
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_name Service#file_name}
|
|
498
498
|
*/
|
|
499
499
|
readonly fileName: string;
|
|
500
500
|
/**
|
|
501
501
|
* Represents the file UID. Defaults to `0`.
|
|
502
502
|
*
|
|
503
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
503
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_uid Service#file_uid}
|
|
504
504
|
*/
|
|
505
505
|
readonly fileUid?: string;
|
|
506
506
|
}
|
|
507
|
-
export declare function serviceTaskSpecContainerSpecConfigsToTerraform(struct?: ServiceTaskSpecContainerSpecConfigs |
|
|
508
|
-
export declare function serviceTaskSpecContainerSpecConfigsToHclTerraform(struct?: ServiceTaskSpecContainerSpecConfigs |
|
|
509
|
-
export declare class ServiceTaskSpecContainerSpecConfigsOutputReference extends
|
|
507
|
+
export declare function serviceTaskSpecContainerSpecConfigsToTerraform(struct?: ServiceTaskSpecContainerSpecConfigs | cdktn.IResolvable): any;
|
|
508
|
+
export declare function serviceTaskSpecContainerSpecConfigsToHclTerraform(struct?: ServiceTaskSpecContainerSpecConfigs | cdktn.IResolvable): any;
|
|
509
|
+
export declare class ServiceTaskSpecContainerSpecConfigsOutputReference extends cdktn.ComplexObject {
|
|
510
510
|
private isEmptyObject;
|
|
511
511
|
private resolvableValue?;
|
|
512
512
|
/**
|
|
@@ -515,9 +515,9 @@ export declare class ServiceTaskSpecContainerSpecConfigsOutputReference extends
|
|
|
515
515
|
* @param complexObjectIndex the index of this item in the list
|
|
516
516
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
517
517
|
*/
|
|
518
|
-
constructor(terraformResource:
|
|
519
|
-
get internalValue(): ServiceTaskSpecContainerSpecConfigs |
|
|
520
|
-
set internalValue(value: ServiceTaskSpecContainerSpecConfigs |
|
|
518
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
519
|
+
get internalValue(): ServiceTaskSpecContainerSpecConfigs | cdktn.IResolvable | undefined;
|
|
520
|
+
set internalValue(value: ServiceTaskSpecContainerSpecConfigs | cdktn.IResolvable | undefined);
|
|
521
521
|
private _configId?;
|
|
522
522
|
get configId(): string;
|
|
523
523
|
set configId(value: string);
|
|
@@ -547,17 +547,17 @@ export declare class ServiceTaskSpecContainerSpecConfigsOutputReference extends
|
|
|
547
547
|
resetFileUid(): void;
|
|
548
548
|
get fileUidInput(): string | undefined;
|
|
549
549
|
}
|
|
550
|
-
export declare class ServiceTaskSpecContainerSpecConfigsList extends
|
|
551
|
-
protected terraformResource:
|
|
550
|
+
export declare class ServiceTaskSpecContainerSpecConfigsList extends cdktn.ComplexList {
|
|
551
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
552
552
|
protected terraformAttribute: string;
|
|
553
553
|
protected wrapsSet: boolean;
|
|
554
|
-
internalValue?: ServiceTaskSpecContainerSpecConfigs[] |
|
|
554
|
+
internalValue?: ServiceTaskSpecContainerSpecConfigs[] | cdktn.IResolvable;
|
|
555
555
|
/**
|
|
556
556
|
* @param terraformResource The parent resource
|
|
557
557
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
558
558
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
559
559
|
*/
|
|
560
|
-
constructor(terraformResource:
|
|
560
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
561
561
|
/**
|
|
562
562
|
* @param index the index of the item to return
|
|
563
563
|
*/
|
|
@@ -567,31 +567,31 @@ export interface ServiceTaskSpecContainerSpecDnsConfig {
|
|
|
567
567
|
/**
|
|
568
568
|
* The IP addresses of the name servers
|
|
569
569
|
*
|
|
570
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
570
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#nameservers Service#nameservers}
|
|
571
571
|
*/
|
|
572
572
|
readonly nameservers: string[];
|
|
573
573
|
/**
|
|
574
574
|
* A list of internal resolver variables to be modified (e.g., `debug`, `ndots:3`, etc.)
|
|
575
575
|
*
|
|
576
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
576
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#options Service#options}
|
|
577
577
|
*/
|
|
578
578
|
readonly options?: string[];
|
|
579
579
|
/**
|
|
580
580
|
* A search list for host-name lookup
|
|
581
581
|
*
|
|
582
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
582
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#search Service#search}
|
|
583
583
|
*/
|
|
584
584
|
readonly search?: string[];
|
|
585
585
|
}
|
|
586
586
|
export declare function serviceTaskSpecContainerSpecDnsConfigToTerraform(struct?: ServiceTaskSpecContainerSpecDnsConfigOutputReference | ServiceTaskSpecContainerSpecDnsConfig): any;
|
|
587
587
|
export declare function serviceTaskSpecContainerSpecDnsConfigToHclTerraform(struct?: ServiceTaskSpecContainerSpecDnsConfigOutputReference | ServiceTaskSpecContainerSpecDnsConfig): any;
|
|
588
|
-
export declare class ServiceTaskSpecContainerSpecDnsConfigOutputReference extends
|
|
588
|
+
export declare class ServiceTaskSpecContainerSpecDnsConfigOutputReference extends cdktn.ComplexObject {
|
|
589
589
|
private isEmptyObject;
|
|
590
590
|
/**
|
|
591
591
|
* @param terraformResource The parent resource
|
|
592
592
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
593
593
|
*/
|
|
594
|
-
constructor(terraformResource:
|
|
594
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
595
595
|
get internalValue(): ServiceTaskSpecContainerSpecDnsConfig | undefined;
|
|
596
596
|
set internalValue(value: ServiceTaskSpecContainerSpecDnsConfig | undefined);
|
|
597
597
|
private _nameservers?;
|
|
@@ -613,43 +613,43 @@ export interface ServiceTaskSpecContainerSpecHealthcheck {
|
|
|
613
613
|
/**
|
|
614
614
|
* Time between running the check (ms|s|m|h). Defaults to `0s`.
|
|
615
615
|
*
|
|
616
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
616
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#interval Service#interval}
|
|
617
617
|
*/
|
|
618
618
|
readonly interval?: string;
|
|
619
619
|
/**
|
|
620
620
|
* Consecutive failures needed to report unhealthy. Defaults to `0`
|
|
621
621
|
*
|
|
622
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
622
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#retries Service#retries}
|
|
623
623
|
*/
|
|
624
624
|
readonly retries?: number;
|
|
625
625
|
/**
|
|
626
626
|
* Start period for the container to initialize before counting retries towards unstable (ms|s|m|h). Defaults to `0s`.
|
|
627
627
|
*
|
|
628
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
628
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#start_period Service#start_period}
|
|
629
629
|
*/
|
|
630
630
|
readonly startPeriod?: string;
|
|
631
631
|
/**
|
|
632
632
|
* The test to perform as list
|
|
633
633
|
*
|
|
634
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
634
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#test Service#test}
|
|
635
635
|
*/
|
|
636
|
-
readonly test
|
|
636
|
+
readonly test?: string[];
|
|
637
637
|
/**
|
|
638
638
|
* Maximum time to allow one check to run (ms|s|m|h). Defaults to `0s`.
|
|
639
639
|
*
|
|
640
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
640
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#timeout Service#timeout}
|
|
641
641
|
*/
|
|
642
642
|
readonly timeout?: string;
|
|
643
643
|
}
|
|
644
644
|
export declare function serviceTaskSpecContainerSpecHealthcheckToTerraform(struct?: ServiceTaskSpecContainerSpecHealthcheckOutputReference | ServiceTaskSpecContainerSpecHealthcheck): any;
|
|
645
645
|
export declare function serviceTaskSpecContainerSpecHealthcheckToHclTerraform(struct?: ServiceTaskSpecContainerSpecHealthcheckOutputReference | ServiceTaskSpecContainerSpecHealthcheck): any;
|
|
646
|
-
export declare class ServiceTaskSpecContainerSpecHealthcheckOutputReference extends
|
|
646
|
+
export declare class ServiceTaskSpecContainerSpecHealthcheckOutputReference extends cdktn.ComplexObject {
|
|
647
647
|
private isEmptyObject;
|
|
648
648
|
/**
|
|
649
649
|
* @param terraformResource The parent resource
|
|
650
650
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
651
651
|
*/
|
|
652
|
-
constructor(terraformResource:
|
|
652
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
653
653
|
get internalValue(): ServiceTaskSpecContainerSpecHealthcheck | undefined;
|
|
654
654
|
set internalValue(value: ServiceTaskSpecContainerSpecHealthcheck | undefined);
|
|
655
655
|
private _interval?;
|
|
@@ -670,6 +670,7 @@ export declare class ServiceTaskSpecContainerSpecHealthcheckOutputReference exte
|
|
|
670
670
|
private _test?;
|
|
671
671
|
get test(): string[];
|
|
672
672
|
set test(value: string[]);
|
|
673
|
+
resetTest(): void;
|
|
673
674
|
get testInput(): string[] | undefined;
|
|
674
675
|
private _timeout?;
|
|
675
676
|
get timeout(): string;
|
|
@@ -681,19 +682,19 @@ export interface ServiceTaskSpecContainerSpecHosts {
|
|
|
681
682
|
/**
|
|
682
683
|
* The name of the host
|
|
683
684
|
*
|
|
684
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
685
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#host Service#host}
|
|
685
686
|
*/
|
|
686
687
|
readonly host: string;
|
|
687
688
|
/**
|
|
688
689
|
* The ip of the host
|
|
689
690
|
*
|
|
690
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
691
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#ip Service#ip}
|
|
691
692
|
*/
|
|
692
693
|
readonly ip: string;
|
|
693
694
|
}
|
|
694
|
-
export declare function serviceTaskSpecContainerSpecHostsToTerraform(struct?: ServiceTaskSpecContainerSpecHosts |
|
|
695
|
-
export declare function serviceTaskSpecContainerSpecHostsToHclTerraform(struct?: ServiceTaskSpecContainerSpecHosts |
|
|
696
|
-
export declare class ServiceTaskSpecContainerSpecHostsOutputReference extends
|
|
695
|
+
export declare function serviceTaskSpecContainerSpecHostsToTerraform(struct?: ServiceTaskSpecContainerSpecHosts | cdktn.IResolvable): any;
|
|
696
|
+
export declare function serviceTaskSpecContainerSpecHostsToHclTerraform(struct?: ServiceTaskSpecContainerSpecHosts | cdktn.IResolvable): any;
|
|
697
|
+
export declare class ServiceTaskSpecContainerSpecHostsOutputReference extends cdktn.ComplexObject {
|
|
697
698
|
private isEmptyObject;
|
|
698
699
|
private resolvableValue?;
|
|
699
700
|
/**
|
|
@@ -702,9 +703,9 @@ export declare class ServiceTaskSpecContainerSpecHostsOutputReference extends cd
|
|
|
702
703
|
* @param complexObjectIndex the index of this item in the list
|
|
703
704
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
704
705
|
*/
|
|
705
|
-
constructor(terraformResource:
|
|
706
|
-
get internalValue(): ServiceTaskSpecContainerSpecHosts |
|
|
707
|
-
set internalValue(value: ServiceTaskSpecContainerSpecHosts |
|
|
706
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
707
|
+
get internalValue(): ServiceTaskSpecContainerSpecHosts | cdktn.IResolvable | undefined;
|
|
708
|
+
set internalValue(value: ServiceTaskSpecContainerSpecHosts | cdktn.IResolvable | undefined);
|
|
708
709
|
private _host?;
|
|
709
710
|
get host(): string;
|
|
710
711
|
set host(value: string);
|
|
@@ -714,17 +715,17 @@ export declare class ServiceTaskSpecContainerSpecHostsOutputReference extends cd
|
|
|
714
715
|
set ip(value: string);
|
|
715
716
|
get ipInput(): string | undefined;
|
|
716
717
|
}
|
|
717
|
-
export declare class ServiceTaskSpecContainerSpecHostsList extends
|
|
718
|
-
protected terraformResource:
|
|
718
|
+
export declare class ServiceTaskSpecContainerSpecHostsList extends cdktn.ComplexList {
|
|
719
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
719
720
|
protected terraformAttribute: string;
|
|
720
721
|
protected wrapsSet: boolean;
|
|
721
|
-
internalValue?: ServiceTaskSpecContainerSpecHosts[] |
|
|
722
|
+
internalValue?: ServiceTaskSpecContainerSpecHosts[] | cdktn.IResolvable;
|
|
722
723
|
/**
|
|
723
724
|
* @param terraformResource The parent resource
|
|
724
725
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
725
726
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
726
727
|
*/
|
|
727
|
-
constructor(terraformResource:
|
|
728
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
728
729
|
/**
|
|
729
730
|
* @param index the index of the item to return
|
|
730
731
|
*/
|
|
@@ -734,19 +735,19 @@ export interface ServiceTaskSpecContainerSpecLabels {
|
|
|
734
735
|
/**
|
|
735
736
|
* Name of the label
|
|
736
737
|
*
|
|
737
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
738
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#label Service#label}
|
|
738
739
|
*/
|
|
739
740
|
readonly label: string;
|
|
740
741
|
/**
|
|
741
742
|
* Value of the label
|
|
742
743
|
*
|
|
743
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
744
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#value Service#value}
|
|
744
745
|
*/
|
|
745
746
|
readonly value: string;
|
|
746
747
|
}
|
|
747
|
-
export declare function serviceTaskSpecContainerSpecLabelsToTerraform(struct?: ServiceTaskSpecContainerSpecLabels |
|
|
748
|
-
export declare function serviceTaskSpecContainerSpecLabelsToHclTerraform(struct?: ServiceTaskSpecContainerSpecLabels |
|
|
749
|
-
export declare class ServiceTaskSpecContainerSpecLabelsOutputReference extends
|
|
748
|
+
export declare function serviceTaskSpecContainerSpecLabelsToTerraform(struct?: ServiceTaskSpecContainerSpecLabels | cdktn.IResolvable): any;
|
|
749
|
+
export declare function serviceTaskSpecContainerSpecLabelsToHclTerraform(struct?: ServiceTaskSpecContainerSpecLabels | cdktn.IResolvable): any;
|
|
750
|
+
export declare class ServiceTaskSpecContainerSpecLabelsOutputReference extends cdktn.ComplexObject {
|
|
750
751
|
private isEmptyObject;
|
|
751
752
|
private resolvableValue?;
|
|
752
753
|
/**
|
|
@@ -755,9 +756,9 @@ export declare class ServiceTaskSpecContainerSpecLabelsOutputReference extends c
|
|
|
755
756
|
* @param complexObjectIndex the index of this item in the list
|
|
756
757
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
757
758
|
*/
|
|
758
|
-
constructor(terraformResource:
|
|
759
|
-
get internalValue(): ServiceTaskSpecContainerSpecLabels |
|
|
760
|
-
set internalValue(value: ServiceTaskSpecContainerSpecLabels |
|
|
759
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
760
|
+
get internalValue(): ServiceTaskSpecContainerSpecLabels | cdktn.IResolvable | undefined;
|
|
761
|
+
set internalValue(value: ServiceTaskSpecContainerSpecLabels | cdktn.IResolvable | undefined);
|
|
761
762
|
private _label?;
|
|
762
763
|
get label(): string;
|
|
763
764
|
set label(value: string);
|
|
@@ -767,17 +768,17 @@ export declare class ServiceTaskSpecContainerSpecLabelsOutputReference extends c
|
|
|
767
768
|
set value(value: string);
|
|
768
769
|
get valueInput(): string | undefined;
|
|
769
770
|
}
|
|
770
|
-
export declare class ServiceTaskSpecContainerSpecLabelsList extends
|
|
771
|
-
protected terraformResource:
|
|
771
|
+
export declare class ServiceTaskSpecContainerSpecLabelsList extends cdktn.ComplexList {
|
|
772
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
772
773
|
protected terraformAttribute: string;
|
|
773
774
|
protected wrapsSet: boolean;
|
|
774
|
-
internalValue?: ServiceTaskSpecContainerSpecLabels[] |
|
|
775
|
+
internalValue?: ServiceTaskSpecContainerSpecLabels[] | cdktn.IResolvable;
|
|
775
776
|
/**
|
|
776
777
|
* @param terraformResource The parent resource
|
|
777
778
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
778
779
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
779
780
|
*/
|
|
780
|
-
constructor(terraformResource:
|
|
781
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
781
782
|
/**
|
|
782
783
|
* @param index the index of the item to return
|
|
783
784
|
*/
|
|
@@ -787,19 +788,19 @@ export interface ServiceTaskSpecContainerSpecMountsBindOptions {
|
|
|
787
788
|
/**
|
|
788
789
|
* Bind propagation refers to whether or not mounts created within a given bind-mount or named volume can be propagated to replicas of that mount. See the [docs](https://docs.docker.com/storage/bind-mounts/#configure-bind-propagation) for details. Defaults to `rprivate`
|
|
789
790
|
*
|
|
790
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
791
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#propagation Service#propagation}
|
|
791
792
|
*/
|
|
792
793
|
readonly propagation?: string;
|
|
793
794
|
}
|
|
794
795
|
export declare function serviceTaskSpecContainerSpecMountsBindOptionsToTerraform(struct?: ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference | ServiceTaskSpecContainerSpecMountsBindOptions): any;
|
|
795
796
|
export declare function serviceTaskSpecContainerSpecMountsBindOptionsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference | ServiceTaskSpecContainerSpecMountsBindOptions): any;
|
|
796
|
-
export declare class ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference extends
|
|
797
|
+
export declare class ServiceTaskSpecContainerSpecMountsBindOptionsOutputReference extends cdktn.ComplexObject {
|
|
797
798
|
private isEmptyObject;
|
|
798
799
|
/**
|
|
799
800
|
* @param terraformResource The parent resource
|
|
800
801
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
801
802
|
*/
|
|
802
|
-
constructor(terraformResource:
|
|
803
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
803
804
|
get internalValue(): ServiceTaskSpecContainerSpecMountsBindOptions | undefined;
|
|
804
805
|
set internalValue(value: ServiceTaskSpecContainerSpecMountsBindOptions | undefined);
|
|
805
806
|
private _propagation?;
|
|
@@ -812,25 +813,25 @@ export interface ServiceTaskSpecContainerSpecMountsTmpfsOptions {
|
|
|
812
813
|
/**
|
|
813
814
|
* The permission mode for the tmpfs mount in an integer
|
|
814
815
|
*
|
|
815
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
816
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#mode Service#mode}
|
|
816
817
|
*/
|
|
817
818
|
readonly mode?: number;
|
|
818
819
|
/**
|
|
819
820
|
* The size for the tmpfs mount in bytes
|
|
820
821
|
*
|
|
821
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
822
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#size_bytes Service#size_bytes}
|
|
822
823
|
*/
|
|
823
824
|
readonly sizeBytes?: number;
|
|
824
825
|
}
|
|
825
826
|
export declare function serviceTaskSpecContainerSpecMountsTmpfsOptionsToTerraform(struct?: ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference | ServiceTaskSpecContainerSpecMountsTmpfsOptions): any;
|
|
826
827
|
export declare function serviceTaskSpecContainerSpecMountsTmpfsOptionsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference | ServiceTaskSpecContainerSpecMountsTmpfsOptions): any;
|
|
827
|
-
export declare class ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference extends
|
|
828
|
+
export declare class ServiceTaskSpecContainerSpecMountsTmpfsOptionsOutputReference extends cdktn.ComplexObject {
|
|
828
829
|
private isEmptyObject;
|
|
829
830
|
/**
|
|
830
831
|
* @param terraformResource The parent resource
|
|
831
832
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
832
833
|
*/
|
|
833
|
-
constructor(terraformResource:
|
|
834
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
834
835
|
get internalValue(): ServiceTaskSpecContainerSpecMountsTmpfsOptions | undefined;
|
|
835
836
|
set internalValue(value: ServiceTaskSpecContainerSpecMountsTmpfsOptions | undefined);
|
|
836
837
|
private _mode?;
|
|
@@ -848,19 +849,19 @@ export interface ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels {
|
|
|
848
849
|
/**
|
|
849
850
|
* Name of the label
|
|
850
851
|
*
|
|
851
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
852
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#label Service#label}
|
|
852
853
|
*/
|
|
853
854
|
readonly label: string;
|
|
854
855
|
/**
|
|
855
856
|
* Value of the label
|
|
856
857
|
*
|
|
857
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
858
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#value Service#value}
|
|
858
859
|
*/
|
|
859
860
|
readonly value: string;
|
|
860
861
|
}
|
|
861
|
-
export declare function serviceTaskSpecContainerSpecMountsVolumeOptionsLabelsToTerraform(struct?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels |
|
|
862
|
-
export declare function serviceTaskSpecContainerSpecMountsVolumeOptionsLabelsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels |
|
|
863
|
-
export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference extends
|
|
862
|
+
export declare function serviceTaskSpecContainerSpecMountsVolumeOptionsLabelsToTerraform(struct?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels | cdktn.IResolvable): any;
|
|
863
|
+
export declare function serviceTaskSpecContainerSpecMountsVolumeOptionsLabelsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels | cdktn.IResolvable): any;
|
|
864
|
+
export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutputReference extends cdktn.ComplexObject {
|
|
864
865
|
private isEmptyObject;
|
|
865
866
|
private resolvableValue?;
|
|
866
867
|
/**
|
|
@@ -869,9 +870,9 @@ export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutput
|
|
|
869
870
|
* @param complexObjectIndex the index of this item in the list
|
|
870
871
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
871
872
|
*/
|
|
872
|
-
constructor(terraformResource:
|
|
873
|
-
get internalValue(): ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels |
|
|
874
|
-
set internalValue(value: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels |
|
|
873
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
874
|
+
get internalValue(): ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels | cdktn.IResolvable | undefined;
|
|
875
|
+
set internalValue(value: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels | cdktn.IResolvable | undefined);
|
|
875
876
|
private _label?;
|
|
876
877
|
get label(): string;
|
|
877
878
|
set label(value: string);
|
|
@@ -881,17 +882,17 @@ export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsOutput
|
|
|
881
882
|
set value(value: string);
|
|
882
883
|
get valueInput(): string | undefined;
|
|
883
884
|
}
|
|
884
|
-
export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList extends
|
|
885
|
-
protected terraformResource:
|
|
885
|
+
export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList extends cdktn.ComplexList {
|
|
886
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
886
887
|
protected terraformAttribute: string;
|
|
887
888
|
protected wrapsSet: boolean;
|
|
888
|
-
internalValue?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] |
|
|
889
|
+
internalValue?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] | cdktn.IResolvable;
|
|
889
890
|
/**
|
|
890
891
|
* @param terraformResource The parent resource
|
|
891
892
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
892
893
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
893
894
|
*/
|
|
894
|
-
constructor(terraformResource:
|
|
895
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
895
896
|
/**
|
|
896
897
|
* @param index the index of the item to return
|
|
897
898
|
*/
|
|
@@ -901,13 +902,13 @@ export interface ServiceTaskSpecContainerSpecMountsVolumeOptions {
|
|
|
901
902
|
/**
|
|
902
903
|
* Name of the driver to use to create the volume
|
|
903
904
|
*
|
|
904
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
905
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#driver_name Service#driver_name}
|
|
905
906
|
*/
|
|
906
907
|
readonly driverName?: string;
|
|
907
908
|
/**
|
|
908
909
|
* key/value map of driver specific options
|
|
909
910
|
*
|
|
910
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
911
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#driver_options Service#driver_options}
|
|
911
912
|
*/
|
|
912
913
|
readonly driverOptions?: {
|
|
913
914
|
[key: string]: string;
|
|
@@ -915,25 +916,25 @@ export interface ServiceTaskSpecContainerSpecMountsVolumeOptions {
|
|
|
915
916
|
/**
|
|
916
917
|
* Populate volume with data from the target
|
|
917
918
|
*
|
|
918
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
919
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#no_copy Service#no_copy}
|
|
919
920
|
*/
|
|
920
|
-
readonly noCopy?: boolean |
|
|
921
|
+
readonly noCopy?: boolean | cdktn.IResolvable;
|
|
921
922
|
/**
|
|
922
923
|
* labels block
|
|
923
924
|
*
|
|
924
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
925
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#labels Service#labels}
|
|
925
926
|
*/
|
|
926
|
-
readonly labels?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] |
|
|
927
|
+
readonly labels?: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] | cdktn.IResolvable;
|
|
927
928
|
}
|
|
928
929
|
export declare function serviceTaskSpecContainerSpecMountsVolumeOptionsToTerraform(struct?: ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference | ServiceTaskSpecContainerSpecMountsVolumeOptions): any;
|
|
929
930
|
export declare function serviceTaskSpecContainerSpecMountsVolumeOptionsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference | ServiceTaskSpecContainerSpecMountsVolumeOptions): any;
|
|
930
|
-
export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference extends
|
|
931
|
+
export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputReference extends cdktn.ComplexObject {
|
|
931
932
|
private isEmptyObject;
|
|
932
933
|
/**
|
|
933
934
|
* @param terraformResource The parent resource
|
|
934
935
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
935
936
|
*/
|
|
936
|
-
constructor(terraformResource:
|
|
937
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
937
938
|
get internalValue(): ServiceTaskSpecContainerSpecMountsVolumeOptions | undefined;
|
|
938
939
|
set internalValue(value: ServiceTaskSpecContainerSpecMountsVolumeOptions | undefined);
|
|
939
940
|
private _driverName?;
|
|
@@ -953,63 +954,63 @@ export declare class ServiceTaskSpecContainerSpecMountsVolumeOptionsOutputRefere
|
|
|
953
954
|
[key: string]: string;
|
|
954
955
|
} | undefined;
|
|
955
956
|
private _noCopy?;
|
|
956
|
-
get noCopy(): boolean |
|
|
957
|
-
set noCopy(value: boolean |
|
|
957
|
+
get noCopy(): boolean | cdktn.IResolvable;
|
|
958
|
+
set noCopy(value: boolean | cdktn.IResolvable);
|
|
958
959
|
resetNoCopy(): void;
|
|
959
|
-
get noCopyInput(): boolean |
|
|
960
|
+
get noCopyInput(): boolean | cdktn.IResolvable | undefined;
|
|
960
961
|
private _labels;
|
|
961
962
|
get labels(): ServiceTaskSpecContainerSpecMountsVolumeOptionsLabelsList;
|
|
962
|
-
putLabels(value: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] |
|
|
963
|
+
putLabels(value: ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] | cdktn.IResolvable): void;
|
|
963
964
|
resetLabels(): void;
|
|
964
|
-
get labelsInput():
|
|
965
|
+
get labelsInput(): cdktn.IResolvable | ServiceTaskSpecContainerSpecMountsVolumeOptionsLabels[] | undefined;
|
|
965
966
|
}
|
|
966
967
|
export interface ServiceTaskSpecContainerSpecMounts {
|
|
967
968
|
/**
|
|
968
969
|
* Whether the mount should be read-only
|
|
969
970
|
*
|
|
970
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
971
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#read_only Service#read_only}
|
|
971
972
|
*/
|
|
972
|
-
readonly readOnly?: boolean |
|
|
973
|
+
readonly readOnly?: boolean | cdktn.IResolvable;
|
|
973
974
|
/**
|
|
974
975
|
* Mount source (e.g. a volume name, a host path)
|
|
975
976
|
*
|
|
976
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
977
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#source Service#source}
|
|
977
978
|
*/
|
|
978
979
|
readonly source?: string;
|
|
979
980
|
/**
|
|
980
981
|
* Container path
|
|
981
982
|
*
|
|
982
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
983
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#target Service#target}
|
|
983
984
|
*/
|
|
984
985
|
readonly target: string;
|
|
985
986
|
/**
|
|
986
987
|
* The mount type
|
|
987
988
|
*
|
|
988
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
989
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#type Service#type}
|
|
989
990
|
*/
|
|
990
991
|
readonly type: string;
|
|
991
992
|
/**
|
|
992
993
|
* bind_options block
|
|
993
994
|
*
|
|
994
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
995
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#bind_options Service#bind_options}
|
|
995
996
|
*/
|
|
996
997
|
readonly bindOptions?: ServiceTaskSpecContainerSpecMountsBindOptions;
|
|
997
998
|
/**
|
|
998
999
|
* tmpfs_options block
|
|
999
1000
|
*
|
|
1000
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1001
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#tmpfs_options Service#tmpfs_options}
|
|
1001
1002
|
*/
|
|
1002
1003
|
readonly tmpfsOptions?: ServiceTaskSpecContainerSpecMountsTmpfsOptions;
|
|
1003
1004
|
/**
|
|
1004
1005
|
* volume_options block
|
|
1005
1006
|
*
|
|
1006
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1007
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#volume_options Service#volume_options}
|
|
1007
1008
|
*/
|
|
1008
1009
|
readonly volumeOptions?: ServiceTaskSpecContainerSpecMountsVolumeOptions;
|
|
1009
1010
|
}
|
|
1010
|
-
export declare function serviceTaskSpecContainerSpecMountsToTerraform(struct?: ServiceTaskSpecContainerSpecMounts |
|
|
1011
|
-
export declare function serviceTaskSpecContainerSpecMountsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMounts |
|
|
1012
|
-
export declare class ServiceTaskSpecContainerSpecMountsOutputReference extends
|
|
1011
|
+
export declare function serviceTaskSpecContainerSpecMountsToTerraform(struct?: ServiceTaskSpecContainerSpecMounts | cdktn.IResolvable): any;
|
|
1012
|
+
export declare function serviceTaskSpecContainerSpecMountsToHclTerraform(struct?: ServiceTaskSpecContainerSpecMounts | cdktn.IResolvable): any;
|
|
1013
|
+
export declare class ServiceTaskSpecContainerSpecMountsOutputReference extends cdktn.ComplexObject {
|
|
1013
1014
|
private isEmptyObject;
|
|
1014
1015
|
private resolvableValue?;
|
|
1015
1016
|
/**
|
|
@@ -1018,14 +1019,14 @@ export declare class ServiceTaskSpecContainerSpecMountsOutputReference extends c
|
|
|
1018
1019
|
* @param complexObjectIndex the index of this item in the list
|
|
1019
1020
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1020
1021
|
*/
|
|
1021
|
-
constructor(terraformResource:
|
|
1022
|
-
get internalValue(): ServiceTaskSpecContainerSpecMounts |
|
|
1023
|
-
set internalValue(value: ServiceTaskSpecContainerSpecMounts |
|
|
1022
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1023
|
+
get internalValue(): ServiceTaskSpecContainerSpecMounts | cdktn.IResolvable | undefined;
|
|
1024
|
+
set internalValue(value: ServiceTaskSpecContainerSpecMounts | cdktn.IResolvable | undefined);
|
|
1024
1025
|
private _readOnly?;
|
|
1025
|
-
get readOnly(): boolean |
|
|
1026
|
-
set readOnly(value: boolean |
|
|
1026
|
+
get readOnly(): boolean | cdktn.IResolvable;
|
|
1027
|
+
set readOnly(value: boolean | cdktn.IResolvable);
|
|
1027
1028
|
resetReadOnly(): void;
|
|
1028
|
-
get readOnlyInput(): boolean |
|
|
1029
|
+
get readOnlyInput(): boolean | cdktn.IResolvable | undefined;
|
|
1029
1030
|
private _source?;
|
|
1030
1031
|
get source(): string;
|
|
1031
1032
|
set source(value: string);
|
|
@@ -1055,17 +1056,17 @@ export declare class ServiceTaskSpecContainerSpecMountsOutputReference extends c
|
|
|
1055
1056
|
resetVolumeOptions(): void;
|
|
1056
1057
|
get volumeOptionsInput(): ServiceTaskSpecContainerSpecMountsVolumeOptions | undefined;
|
|
1057
1058
|
}
|
|
1058
|
-
export declare class ServiceTaskSpecContainerSpecMountsList extends
|
|
1059
|
-
protected terraformResource:
|
|
1059
|
+
export declare class ServiceTaskSpecContainerSpecMountsList extends cdktn.ComplexList {
|
|
1060
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1060
1061
|
protected terraformAttribute: string;
|
|
1061
1062
|
protected wrapsSet: boolean;
|
|
1062
|
-
internalValue?: ServiceTaskSpecContainerSpecMounts[] |
|
|
1063
|
+
internalValue?: ServiceTaskSpecContainerSpecMounts[] | cdktn.IResolvable;
|
|
1063
1064
|
/**
|
|
1064
1065
|
* @param terraformResource The parent resource
|
|
1065
1066
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1066
1067
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1067
1068
|
*/
|
|
1068
|
-
constructor(terraformResource:
|
|
1069
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1069
1070
|
/**
|
|
1070
1071
|
* @param index the index of the item to return
|
|
1071
1072
|
*/
|
|
@@ -1075,25 +1076,25 @@ export interface ServiceTaskSpecContainerSpecPrivilegesCredentialSpec {
|
|
|
1075
1076
|
/**
|
|
1076
1077
|
* Load credential spec from this file
|
|
1077
1078
|
*
|
|
1078
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1079
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file Service#file}
|
|
1079
1080
|
*/
|
|
1080
1081
|
readonly file?: string;
|
|
1081
1082
|
/**
|
|
1082
1083
|
* Load credential spec from this value in the Windows registry
|
|
1083
1084
|
*
|
|
1084
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1085
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#registry Service#registry}
|
|
1085
1086
|
*/
|
|
1086
1087
|
readonly registry?: string;
|
|
1087
1088
|
}
|
|
1088
1089
|
export declare function serviceTaskSpecContainerSpecPrivilegesCredentialSpecToTerraform(struct?: ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference | ServiceTaskSpecContainerSpecPrivilegesCredentialSpec): any;
|
|
1089
1090
|
export declare function serviceTaskSpecContainerSpecPrivilegesCredentialSpecToHclTerraform(struct?: ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference | ServiceTaskSpecContainerSpecPrivilegesCredentialSpec): any;
|
|
1090
|
-
export declare class ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference extends
|
|
1091
|
+
export declare class ServiceTaskSpecContainerSpecPrivilegesCredentialSpecOutputReference extends cdktn.ComplexObject {
|
|
1091
1092
|
private isEmptyObject;
|
|
1092
1093
|
/**
|
|
1093
1094
|
* @param terraformResource The parent resource
|
|
1094
1095
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1095
1096
|
*/
|
|
1096
|
-
constructor(terraformResource:
|
|
1097
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1097
1098
|
get internalValue(): ServiceTaskSpecContainerSpecPrivilegesCredentialSpec | undefined;
|
|
1098
1099
|
set internalValue(value: ServiceTaskSpecContainerSpecPrivilegesCredentialSpec | undefined);
|
|
1099
1100
|
private _file?;
|
|
@@ -1111,50 +1112,50 @@ export interface ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext {
|
|
|
1111
1112
|
/**
|
|
1112
1113
|
* Disable SELinux
|
|
1113
1114
|
*
|
|
1114
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1115
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#disable Service#disable}
|
|
1115
1116
|
*/
|
|
1116
|
-
readonly disable?: boolean |
|
|
1117
|
+
readonly disable?: boolean | cdktn.IResolvable;
|
|
1117
1118
|
/**
|
|
1118
1119
|
* SELinux level label
|
|
1119
1120
|
*
|
|
1120
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1121
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#level Service#level}
|
|
1121
1122
|
*/
|
|
1122
1123
|
readonly level?: string;
|
|
1123
1124
|
/**
|
|
1124
1125
|
* SELinux role label
|
|
1125
1126
|
*
|
|
1126
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1127
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#role Service#role}
|
|
1127
1128
|
*/
|
|
1128
1129
|
readonly role?: string;
|
|
1129
1130
|
/**
|
|
1130
1131
|
* SELinux type label
|
|
1131
1132
|
*
|
|
1132
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1133
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#type Service#type}
|
|
1133
1134
|
*/
|
|
1134
1135
|
readonly type?: string;
|
|
1135
1136
|
/**
|
|
1136
1137
|
* SELinux user label
|
|
1137
1138
|
*
|
|
1138
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1139
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#user Service#user}
|
|
1139
1140
|
*/
|
|
1140
1141
|
readonly user?: string;
|
|
1141
1142
|
}
|
|
1142
1143
|
export declare function serviceTaskSpecContainerSpecPrivilegesSeLinuxContextToTerraform(struct?: ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference | ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext): any;
|
|
1143
1144
|
export declare function serviceTaskSpecContainerSpecPrivilegesSeLinuxContextToHclTerraform(struct?: ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference | ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext): any;
|
|
1144
|
-
export declare class ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference extends
|
|
1145
|
+
export declare class ServiceTaskSpecContainerSpecPrivilegesSeLinuxContextOutputReference extends cdktn.ComplexObject {
|
|
1145
1146
|
private isEmptyObject;
|
|
1146
1147
|
/**
|
|
1147
1148
|
* @param terraformResource The parent resource
|
|
1148
1149
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1149
1150
|
*/
|
|
1150
|
-
constructor(terraformResource:
|
|
1151
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1151
1152
|
get internalValue(): ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext | undefined;
|
|
1152
1153
|
set internalValue(value: ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext | undefined);
|
|
1153
1154
|
private _disable?;
|
|
1154
|
-
get disable(): boolean |
|
|
1155
|
-
set disable(value: boolean |
|
|
1155
|
+
get disable(): boolean | cdktn.IResolvable;
|
|
1156
|
+
set disable(value: boolean | cdktn.IResolvable);
|
|
1156
1157
|
resetDisable(): void;
|
|
1157
|
-
get disableInput(): boolean |
|
|
1158
|
+
get disableInput(): boolean | cdktn.IResolvable | undefined;
|
|
1158
1159
|
private _level?;
|
|
1159
1160
|
get level(): string;
|
|
1160
1161
|
set level(value: string);
|
|
@@ -1180,25 +1181,25 @@ export interface ServiceTaskSpecContainerSpecPrivileges {
|
|
|
1180
1181
|
/**
|
|
1181
1182
|
* credential_spec block
|
|
1182
1183
|
*
|
|
1183
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1184
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#credential_spec Service#credential_spec}
|
|
1184
1185
|
*/
|
|
1185
1186
|
readonly credentialSpec?: ServiceTaskSpecContainerSpecPrivilegesCredentialSpec;
|
|
1186
1187
|
/**
|
|
1187
1188
|
* se_linux_context block
|
|
1188
1189
|
*
|
|
1189
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1190
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#se_linux_context Service#se_linux_context}
|
|
1190
1191
|
*/
|
|
1191
1192
|
readonly seLinuxContext?: ServiceTaskSpecContainerSpecPrivilegesSeLinuxContext;
|
|
1192
1193
|
}
|
|
1193
1194
|
export declare function serviceTaskSpecContainerSpecPrivilegesToTerraform(struct?: ServiceTaskSpecContainerSpecPrivilegesOutputReference | ServiceTaskSpecContainerSpecPrivileges): any;
|
|
1194
1195
|
export declare function serviceTaskSpecContainerSpecPrivilegesToHclTerraform(struct?: ServiceTaskSpecContainerSpecPrivilegesOutputReference | ServiceTaskSpecContainerSpecPrivileges): any;
|
|
1195
|
-
export declare class ServiceTaskSpecContainerSpecPrivilegesOutputReference extends
|
|
1196
|
+
export declare class ServiceTaskSpecContainerSpecPrivilegesOutputReference extends cdktn.ComplexObject {
|
|
1196
1197
|
private isEmptyObject;
|
|
1197
1198
|
/**
|
|
1198
1199
|
* @param terraformResource The parent resource
|
|
1199
1200
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1200
1201
|
*/
|
|
1201
|
-
constructor(terraformResource:
|
|
1202
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1202
1203
|
get internalValue(): ServiceTaskSpecContainerSpecPrivileges | undefined;
|
|
1203
1204
|
set internalValue(value: ServiceTaskSpecContainerSpecPrivileges | undefined);
|
|
1204
1205
|
private _credentialSpec;
|
|
@@ -1216,43 +1217,43 @@ export interface ServiceTaskSpecContainerSpecSecrets {
|
|
|
1216
1217
|
/**
|
|
1217
1218
|
* Represents the file GID. Defaults to `0`
|
|
1218
1219
|
*
|
|
1219
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1220
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_gid Service#file_gid}
|
|
1220
1221
|
*/
|
|
1221
1222
|
readonly fileGid?: string;
|
|
1222
1223
|
/**
|
|
1223
1224
|
* Represents represents the FileMode of the file. Defaults to `0o444`
|
|
1224
1225
|
*
|
|
1225
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1226
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_mode Service#file_mode}
|
|
1226
1227
|
*/
|
|
1227
1228
|
readonly fileMode?: number;
|
|
1228
1229
|
/**
|
|
1229
1230
|
* Represents the final filename in the filesystem
|
|
1230
1231
|
*
|
|
1231
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1232
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_name Service#file_name}
|
|
1232
1233
|
*/
|
|
1233
1234
|
readonly fileName: string;
|
|
1234
1235
|
/**
|
|
1235
1236
|
* Represents the file UID. Defaults to `0`
|
|
1236
1237
|
*
|
|
1237
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1238
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#file_uid Service#file_uid}
|
|
1238
1239
|
*/
|
|
1239
1240
|
readonly fileUid?: string;
|
|
1240
1241
|
/**
|
|
1241
1242
|
* ID of the specific secret that we're referencing
|
|
1242
1243
|
*
|
|
1243
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1244
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#secret_id Service#secret_id}
|
|
1244
1245
|
*/
|
|
1245
1246
|
readonly secretId: string;
|
|
1246
1247
|
/**
|
|
1247
1248
|
* Name of the secret that this references, but this is just provided for lookup/display purposes. The config in the reference will be identified by its ID
|
|
1248
1249
|
*
|
|
1249
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1250
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#secret_name Service#secret_name}
|
|
1250
1251
|
*/
|
|
1251
1252
|
readonly secretName?: string;
|
|
1252
1253
|
}
|
|
1253
|
-
export declare function serviceTaskSpecContainerSpecSecretsToTerraform(struct?: ServiceTaskSpecContainerSpecSecrets |
|
|
1254
|
-
export declare function serviceTaskSpecContainerSpecSecretsToHclTerraform(struct?: ServiceTaskSpecContainerSpecSecrets |
|
|
1255
|
-
export declare class ServiceTaskSpecContainerSpecSecretsOutputReference extends
|
|
1254
|
+
export declare function serviceTaskSpecContainerSpecSecretsToTerraform(struct?: ServiceTaskSpecContainerSpecSecrets | cdktn.IResolvable): any;
|
|
1255
|
+
export declare function serviceTaskSpecContainerSpecSecretsToHclTerraform(struct?: ServiceTaskSpecContainerSpecSecrets | cdktn.IResolvable): any;
|
|
1256
|
+
export declare class ServiceTaskSpecContainerSpecSecretsOutputReference extends cdktn.ComplexObject {
|
|
1256
1257
|
private isEmptyObject;
|
|
1257
1258
|
private resolvableValue?;
|
|
1258
1259
|
/**
|
|
@@ -1261,9 +1262,9 @@ export declare class ServiceTaskSpecContainerSpecSecretsOutputReference extends
|
|
|
1261
1262
|
* @param complexObjectIndex the index of this item in the list
|
|
1262
1263
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1263
1264
|
*/
|
|
1264
|
-
constructor(terraformResource:
|
|
1265
|
-
get internalValue(): ServiceTaskSpecContainerSpecSecrets |
|
|
1266
|
-
set internalValue(value: ServiceTaskSpecContainerSpecSecrets |
|
|
1265
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1266
|
+
get internalValue(): ServiceTaskSpecContainerSpecSecrets | cdktn.IResolvable | undefined;
|
|
1267
|
+
set internalValue(value: ServiceTaskSpecContainerSpecSecrets | cdktn.IResolvable | undefined);
|
|
1267
1268
|
private _fileGid?;
|
|
1268
1269
|
get fileGid(): string;
|
|
1269
1270
|
set fileGid(value: string);
|
|
@@ -1293,17 +1294,17 @@ export declare class ServiceTaskSpecContainerSpecSecretsOutputReference extends
|
|
|
1293
1294
|
resetSecretName(): void;
|
|
1294
1295
|
get secretNameInput(): string | undefined;
|
|
1295
1296
|
}
|
|
1296
|
-
export declare class ServiceTaskSpecContainerSpecSecretsList extends
|
|
1297
|
-
protected terraformResource:
|
|
1297
|
+
export declare class ServiceTaskSpecContainerSpecSecretsList extends cdktn.ComplexList {
|
|
1298
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1298
1299
|
protected terraformAttribute: string;
|
|
1299
1300
|
protected wrapsSet: boolean;
|
|
1300
|
-
internalValue?: ServiceTaskSpecContainerSpecSecrets[] |
|
|
1301
|
+
internalValue?: ServiceTaskSpecContainerSpecSecrets[] | cdktn.IResolvable;
|
|
1301
1302
|
/**
|
|
1302
1303
|
* @param terraformResource The parent resource
|
|
1303
1304
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1304
1305
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1305
1306
|
*/
|
|
1306
|
-
constructor(terraformResource:
|
|
1307
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1307
1308
|
/**
|
|
1308
1309
|
* @param index the index of the item to return
|
|
1309
1310
|
*/
|
|
@@ -1313,37 +1314,37 @@ export interface ServiceTaskSpecContainerSpec {
|
|
|
1313
1314
|
/**
|
|
1314
1315
|
* Arguments to the command
|
|
1315
1316
|
*
|
|
1316
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1317
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#args Service#args}
|
|
1317
1318
|
*/
|
|
1318
1319
|
readonly args?: string[];
|
|
1319
1320
|
/**
|
|
1320
1321
|
* List of Linux capabilities to add to the container
|
|
1321
1322
|
*
|
|
1322
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1323
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#cap_add Service#cap_add}
|
|
1323
1324
|
*/
|
|
1324
1325
|
readonly capAdd?: string[];
|
|
1325
1326
|
/**
|
|
1326
1327
|
* List of Linux capabilities to drop from the container
|
|
1327
1328
|
*
|
|
1328
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1329
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#cap_drop Service#cap_drop}
|
|
1329
1330
|
*/
|
|
1330
1331
|
readonly capDrop?: string[];
|
|
1331
1332
|
/**
|
|
1332
1333
|
* The command/entrypoint to be run in the image. According to the [docker cli](https://github.com/docker/cli/blob/v20.10.7/cli/command/service/opts.go#L705) the override of the entrypoint is also passed to the `command` property and there is no `entrypoint` attribute in the `ContainerSpec` of the service.
|
|
1333
1334
|
*
|
|
1334
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1335
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#command Service#command}
|
|
1335
1336
|
*/
|
|
1336
1337
|
readonly command?: string[];
|
|
1337
1338
|
/**
|
|
1338
1339
|
* The working directory for commands to run in
|
|
1339
1340
|
*
|
|
1340
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1341
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#dir Service#dir}
|
|
1341
1342
|
*/
|
|
1342
1343
|
readonly dir?: string;
|
|
1343
1344
|
/**
|
|
1344
1345
|
* A list of environment variables in the form VAR="value"
|
|
1345
1346
|
*
|
|
1346
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1347
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#env Service#env}
|
|
1347
1348
|
*/
|
|
1348
1349
|
readonly env?: {
|
|
1349
1350
|
[key: string]: string;
|
|
@@ -1351,49 +1352,49 @@ export interface ServiceTaskSpecContainerSpec {
|
|
|
1351
1352
|
/**
|
|
1352
1353
|
* A list of additional groups that the container process will run as
|
|
1353
1354
|
*
|
|
1354
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1355
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#groups Service#groups}
|
|
1355
1356
|
*/
|
|
1356
1357
|
readonly groups?: string[];
|
|
1357
1358
|
/**
|
|
1358
1359
|
* The hostname to use for the container, as a valid RFC 1123 hostname
|
|
1359
1360
|
*
|
|
1360
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1361
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#hostname Service#hostname}
|
|
1361
1362
|
*/
|
|
1362
1363
|
readonly hostname?: string;
|
|
1363
1364
|
/**
|
|
1364
1365
|
* The image name to use for the containers of the service, like `nginx:1.17.6`. Also use the data-source or resource of `docker_image` with the `repo_digest` or `docker_registry_image` with the `name` attribute for this, as shown in the examples.
|
|
1365
1366
|
*
|
|
1366
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1367
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#image Service#image}
|
|
1367
1368
|
*/
|
|
1368
1369
|
readonly image: string;
|
|
1369
1370
|
/**
|
|
1370
1371
|
* Isolation technology of the containers running the service. (Windows only). Defaults to `default`.
|
|
1371
1372
|
*
|
|
1372
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1373
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#isolation Service#isolation}
|
|
1373
1374
|
*/
|
|
1374
1375
|
readonly isolation?: string;
|
|
1375
1376
|
/**
|
|
1376
1377
|
* Mount the container's root filesystem as read only
|
|
1377
1378
|
*
|
|
1378
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1379
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#read_only Service#read_only}
|
|
1379
1380
|
*/
|
|
1380
|
-
readonly readOnly?: boolean |
|
|
1381
|
+
readonly readOnly?: boolean | cdktn.IResolvable;
|
|
1381
1382
|
/**
|
|
1382
1383
|
* Amount of time to wait for the container to terminate before forcefully removing it (ms|s|m|h). If not specified or '0s' the destroy will not check if all tasks/containers of the service terminate.
|
|
1383
1384
|
*
|
|
1384
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1385
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#stop_grace_period Service#stop_grace_period}
|
|
1385
1386
|
*/
|
|
1386
1387
|
readonly stopGracePeriod?: string;
|
|
1387
1388
|
/**
|
|
1388
1389
|
* Signal to stop the container
|
|
1389
1390
|
*
|
|
1390
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1391
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#stop_signal Service#stop_signal}
|
|
1391
1392
|
*/
|
|
1392
1393
|
readonly stopSignal?: string;
|
|
1393
1394
|
/**
|
|
1394
1395
|
* Sysctls config (Linux only)
|
|
1395
1396
|
*
|
|
1396
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1397
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#sysctl Service#sysctl}
|
|
1397
1398
|
*/
|
|
1398
1399
|
readonly sysctl?: {
|
|
1399
1400
|
[key: string]: string;
|
|
@@ -1401,67 +1402,67 @@ export interface ServiceTaskSpecContainerSpec {
|
|
|
1401
1402
|
/**
|
|
1402
1403
|
* The user inside the container
|
|
1403
1404
|
*
|
|
1404
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1405
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#user Service#user}
|
|
1405
1406
|
*/
|
|
1406
1407
|
readonly user?: string;
|
|
1407
1408
|
/**
|
|
1408
1409
|
* configs block
|
|
1409
1410
|
*
|
|
1410
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1411
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#configs Service#configs}
|
|
1411
1412
|
*/
|
|
1412
|
-
readonly configs?: ServiceTaskSpecContainerSpecConfigs[] |
|
|
1413
|
+
readonly configs?: ServiceTaskSpecContainerSpecConfigs[] | cdktn.IResolvable;
|
|
1413
1414
|
/**
|
|
1414
1415
|
* dns_config block
|
|
1415
1416
|
*
|
|
1416
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1417
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#dns_config Service#dns_config}
|
|
1417
1418
|
*/
|
|
1418
1419
|
readonly dnsConfig?: ServiceTaskSpecContainerSpecDnsConfig;
|
|
1419
1420
|
/**
|
|
1420
1421
|
* healthcheck block
|
|
1421
1422
|
*
|
|
1422
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1423
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#healthcheck Service#healthcheck}
|
|
1423
1424
|
*/
|
|
1424
1425
|
readonly healthcheck?: ServiceTaskSpecContainerSpecHealthcheck;
|
|
1425
1426
|
/**
|
|
1426
1427
|
* hosts block
|
|
1427
1428
|
*
|
|
1428
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1429
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#hosts Service#hosts}
|
|
1429
1430
|
*/
|
|
1430
|
-
readonly hosts?: ServiceTaskSpecContainerSpecHosts[] |
|
|
1431
|
+
readonly hosts?: ServiceTaskSpecContainerSpecHosts[] | cdktn.IResolvable;
|
|
1431
1432
|
/**
|
|
1432
1433
|
* labels block
|
|
1433
1434
|
*
|
|
1434
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1435
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#labels Service#labels}
|
|
1435
1436
|
*/
|
|
1436
|
-
readonly labels?: ServiceTaskSpecContainerSpecLabels[] |
|
|
1437
|
+
readonly labels?: ServiceTaskSpecContainerSpecLabels[] | cdktn.IResolvable;
|
|
1437
1438
|
/**
|
|
1438
1439
|
* mounts block
|
|
1439
1440
|
*
|
|
1440
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1441
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#mounts Service#mounts}
|
|
1441
1442
|
*/
|
|
1442
|
-
readonly mounts?: ServiceTaskSpecContainerSpecMounts[] |
|
|
1443
|
+
readonly mounts?: ServiceTaskSpecContainerSpecMounts[] | cdktn.IResolvable;
|
|
1443
1444
|
/**
|
|
1444
1445
|
* privileges block
|
|
1445
1446
|
*
|
|
1446
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1447
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#privileges Service#privileges}
|
|
1447
1448
|
*/
|
|
1448
1449
|
readonly privileges?: ServiceTaskSpecContainerSpecPrivileges;
|
|
1449
1450
|
/**
|
|
1450
1451
|
* secrets block
|
|
1451
1452
|
*
|
|
1452
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1453
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#secrets Service#secrets}
|
|
1453
1454
|
*/
|
|
1454
|
-
readonly secrets?: ServiceTaskSpecContainerSpecSecrets[] |
|
|
1455
|
+
readonly secrets?: ServiceTaskSpecContainerSpecSecrets[] | cdktn.IResolvable;
|
|
1455
1456
|
}
|
|
1456
1457
|
export declare function serviceTaskSpecContainerSpecToTerraform(struct?: ServiceTaskSpecContainerSpecOutputReference | ServiceTaskSpecContainerSpec): any;
|
|
1457
1458
|
export declare function serviceTaskSpecContainerSpecToHclTerraform(struct?: ServiceTaskSpecContainerSpecOutputReference | ServiceTaskSpecContainerSpec): any;
|
|
1458
|
-
export declare class ServiceTaskSpecContainerSpecOutputReference extends
|
|
1459
|
+
export declare class ServiceTaskSpecContainerSpecOutputReference extends cdktn.ComplexObject {
|
|
1459
1460
|
private isEmptyObject;
|
|
1460
1461
|
/**
|
|
1461
1462
|
* @param terraformResource The parent resource
|
|
1462
1463
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1463
1464
|
*/
|
|
1464
|
-
constructor(terraformResource:
|
|
1465
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1465
1466
|
get internalValue(): ServiceTaskSpecContainerSpec | undefined;
|
|
1466
1467
|
set internalValue(value: ServiceTaskSpecContainerSpec | undefined);
|
|
1467
1468
|
private _args?;
|
|
@@ -1520,10 +1521,10 @@ export declare class ServiceTaskSpecContainerSpecOutputReference extends cdktf.C
|
|
|
1520
1521
|
resetIsolation(): void;
|
|
1521
1522
|
get isolationInput(): string | undefined;
|
|
1522
1523
|
private _readOnly?;
|
|
1523
|
-
get readOnly(): boolean |
|
|
1524
|
-
set readOnly(value: boolean |
|
|
1524
|
+
get readOnly(): boolean | cdktn.IResolvable;
|
|
1525
|
+
set readOnly(value: boolean | cdktn.IResolvable);
|
|
1525
1526
|
resetReadOnly(): void;
|
|
1526
|
-
get readOnlyInput(): boolean |
|
|
1527
|
+
get readOnlyInput(): boolean | cdktn.IResolvable | undefined;
|
|
1527
1528
|
private _stopGracePeriod?;
|
|
1528
1529
|
get stopGracePeriod(): string;
|
|
1529
1530
|
set stopGracePeriod(value: string);
|
|
@@ -1552,9 +1553,9 @@ export declare class ServiceTaskSpecContainerSpecOutputReference extends cdktf.C
|
|
|
1552
1553
|
get userInput(): string | undefined;
|
|
1553
1554
|
private _configs;
|
|
1554
1555
|
get configs(): ServiceTaskSpecContainerSpecConfigsList;
|
|
1555
|
-
putConfigs(value: ServiceTaskSpecContainerSpecConfigs[] |
|
|
1556
|
+
putConfigs(value: ServiceTaskSpecContainerSpecConfigs[] | cdktn.IResolvable): void;
|
|
1556
1557
|
resetConfigs(): void;
|
|
1557
|
-
get configsInput():
|
|
1558
|
+
get configsInput(): cdktn.IResolvable | ServiceTaskSpecContainerSpecConfigs[] | undefined;
|
|
1558
1559
|
private _dnsConfig;
|
|
1559
1560
|
get dnsConfig(): ServiceTaskSpecContainerSpecDnsConfigOutputReference;
|
|
1560
1561
|
putDnsConfig(value: ServiceTaskSpecContainerSpecDnsConfig): void;
|
|
@@ -1567,19 +1568,19 @@ export declare class ServiceTaskSpecContainerSpecOutputReference extends cdktf.C
|
|
|
1567
1568
|
get healthcheckInput(): ServiceTaskSpecContainerSpecHealthcheck | undefined;
|
|
1568
1569
|
private _hosts;
|
|
1569
1570
|
get hosts(): ServiceTaskSpecContainerSpecHostsList;
|
|
1570
|
-
putHosts(value: ServiceTaskSpecContainerSpecHosts[] |
|
|
1571
|
+
putHosts(value: ServiceTaskSpecContainerSpecHosts[] | cdktn.IResolvable): void;
|
|
1571
1572
|
resetHosts(): void;
|
|
1572
|
-
get hostsInput():
|
|
1573
|
+
get hostsInput(): cdktn.IResolvable | ServiceTaskSpecContainerSpecHosts[] | undefined;
|
|
1573
1574
|
private _labels;
|
|
1574
1575
|
get labels(): ServiceTaskSpecContainerSpecLabelsList;
|
|
1575
|
-
putLabels(value: ServiceTaskSpecContainerSpecLabels[] |
|
|
1576
|
+
putLabels(value: ServiceTaskSpecContainerSpecLabels[] | cdktn.IResolvable): void;
|
|
1576
1577
|
resetLabels(): void;
|
|
1577
|
-
get labelsInput():
|
|
1578
|
+
get labelsInput(): cdktn.IResolvable | ServiceTaskSpecContainerSpecLabels[] | undefined;
|
|
1578
1579
|
private _mounts;
|
|
1579
1580
|
get mounts(): ServiceTaskSpecContainerSpecMountsList;
|
|
1580
|
-
putMounts(value: ServiceTaskSpecContainerSpecMounts[] |
|
|
1581
|
+
putMounts(value: ServiceTaskSpecContainerSpecMounts[] | cdktn.IResolvable): void;
|
|
1581
1582
|
resetMounts(): void;
|
|
1582
|
-
get mountsInput():
|
|
1583
|
+
get mountsInput(): cdktn.IResolvable | ServiceTaskSpecContainerSpecMounts[] | undefined;
|
|
1583
1584
|
private _privileges;
|
|
1584
1585
|
get privileges(): ServiceTaskSpecContainerSpecPrivilegesOutputReference;
|
|
1585
1586
|
putPrivileges(value: ServiceTaskSpecContainerSpecPrivileges): void;
|
|
@@ -1587,21 +1588,21 @@ export declare class ServiceTaskSpecContainerSpecOutputReference extends cdktf.C
|
|
|
1587
1588
|
get privilegesInput(): ServiceTaskSpecContainerSpecPrivileges | undefined;
|
|
1588
1589
|
private _secrets;
|
|
1589
1590
|
get secrets(): ServiceTaskSpecContainerSpecSecretsList;
|
|
1590
|
-
putSecrets(value: ServiceTaskSpecContainerSpecSecrets[] |
|
|
1591
|
+
putSecrets(value: ServiceTaskSpecContainerSpecSecrets[] | cdktn.IResolvable): void;
|
|
1591
1592
|
resetSecrets(): void;
|
|
1592
|
-
get secretsInput():
|
|
1593
|
+
get secretsInput(): cdktn.IResolvable | ServiceTaskSpecContainerSpecSecrets[] | undefined;
|
|
1593
1594
|
}
|
|
1594
1595
|
export interface ServiceTaskSpecLogDriver {
|
|
1595
1596
|
/**
|
|
1596
1597
|
* The logging driver to use
|
|
1597
1598
|
*
|
|
1598
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1599
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#name Service#name}
|
|
1599
1600
|
*/
|
|
1600
1601
|
readonly name: string;
|
|
1601
1602
|
/**
|
|
1602
1603
|
* The options for the logging driver
|
|
1603
1604
|
*
|
|
1604
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1605
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#options Service#options}
|
|
1605
1606
|
*/
|
|
1606
1607
|
readonly options?: {
|
|
1607
1608
|
[key: string]: string;
|
|
@@ -1609,13 +1610,13 @@ export interface ServiceTaskSpecLogDriver {
|
|
|
1609
1610
|
}
|
|
1610
1611
|
export declare function serviceTaskSpecLogDriverToTerraform(struct?: ServiceTaskSpecLogDriverOutputReference | ServiceTaskSpecLogDriver): any;
|
|
1611
1612
|
export declare function serviceTaskSpecLogDriverToHclTerraform(struct?: ServiceTaskSpecLogDriverOutputReference | ServiceTaskSpecLogDriver): any;
|
|
1612
|
-
export declare class ServiceTaskSpecLogDriverOutputReference extends
|
|
1613
|
+
export declare class ServiceTaskSpecLogDriverOutputReference extends cdktn.ComplexObject {
|
|
1613
1614
|
private isEmptyObject;
|
|
1614
1615
|
/**
|
|
1615
1616
|
* @param terraformResource The parent resource
|
|
1616
1617
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1617
1618
|
*/
|
|
1618
|
-
constructor(terraformResource:
|
|
1619
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1619
1620
|
get internalValue(): ServiceTaskSpecLogDriver | undefined;
|
|
1620
1621
|
set internalValue(value: ServiceTaskSpecLogDriver | undefined);
|
|
1621
1622
|
private _name?;
|
|
@@ -1638,25 +1639,25 @@ export interface ServiceTaskSpecNetworksAdvanced {
|
|
|
1638
1639
|
/**
|
|
1639
1640
|
* The network aliases of the container in the specific network.
|
|
1640
1641
|
*
|
|
1641
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1642
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#aliases Service#aliases}
|
|
1642
1643
|
*/
|
|
1643
1644
|
readonly aliases?: string[];
|
|
1644
1645
|
/**
|
|
1645
1646
|
* An array of driver options for the network, e.g. `opts1=value`
|
|
1646
1647
|
*
|
|
1647
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1648
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#driver_opts Service#driver_opts}
|
|
1648
1649
|
*/
|
|
1649
1650
|
readonly driverOpts?: string[];
|
|
1650
1651
|
/**
|
|
1651
1652
|
* The name/id of the network.
|
|
1652
1653
|
*
|
|
1653
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1654
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#name Service#name}
|
|
1654
1655
|
*/
|
|
1655
1656
|
readonly name: string;
|
|
1656
1657
|
}
|
|
1657
|
-
export declare function serviceTaskSpecNetworksAdvancedToTerraform(struct?: ServiceTaskSpecNetworksAdvanced |
|
|
1658
|
-
export declare function serviceTaskSpecNetworksAdvancedToHclTerraform(struct?: ServiceTaskSpecNetworksAdvanced |
|
|
1659
|
-
export declare class ServiceTaskSpecNetworksAdvancedOutputReference extends
|
|
1658
|
+
export declare function serviceTaskSpecNetworksAdvancedToTerraform(struct?: ServiceTaskSpecNetworksAdvanced | cdktn.IResolvable): any;
|
|
1659
|
+
export declare function serviceTaskSpecNetworksAdvancedToHclTerraform(struct?: ServiceTaskSpecNetworksAdvanced | cdktn.IResolvable): any;
|
|
1660
|
+
export declare class ServiceTaskSpecNetworksAdvancedOutputReference extends cdktn.ComplexObject {
|
|
1660
1661
|
private isEmptyObject;
|
|
1661
1662
|
private resolvableValue?;
|
|
1662
1663
|
/**
|
|
@@ -1665,9 +1666,9 @@ export declare class ServiceTaskSpecNetworksAdvancedOutputReference extends cdkt
|
|
|
1665
1666
|
* @param complexObjectIndex the index of this item in the list
|
|
1666
1667
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1667
1668
|
*/
|
|
1668
|
-
constructor(terraformResource:
|
|
1669
|
-
get internalValue(): ServiceTaskSpecNetworksAdvanced |
|
|
1670
|
-
set internalValue(value: ServiceTaskSpecNetworksAdvanced |
|
|
1669
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1670
|
+
get internalValue(): ServiceTaskSpecNetworksAdvanced | cdktn.IResolvable | undefined;
|
|
1671
|
+
set internalValue(value: ServiceTaskSpecNetworksAdvanced | cdktn.IResolvable | undefined);
|
|
1671
1672
|
private _aliases?;
|
|
1672
1673
|
get aliases(): string[];
|
|
1673
1674
|
set aliases(value: string[]);
|
|
@@ -1683,17 +1684,17 @@ export declare class ServiceTaskSpecNetworksAdvancedOutputReference extends cdkt
|
|
|
1683
1684
|
set name(value: string);
|
|
1684
1685
|
get nameInput(): string | undefined;
|
|
1685
1686
|
}
|
|
1686
|
-
export declare class ServiceTaskSpecNetworksAdvancedList extends
|
|
1687
|
-
protected terraformResource:
|
|
1687
|
+
export declare class ServiceTaskSpecNetworksAdvancedList extends cdktn.ComplexList {
|
|
1688
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1688
1689
|
protected terraformAttribute: string;
|
|
1689
1690
|
protected wrapsSet: boolean;
|
|
1690
|
-
internalValue?: ServiceTaskSpecNetworksAdvanced[] |
|
|
1691
|
+
internalValue?: ServiceTaskSpecNetworksAdvanced[] | cdktn.IResolvable;
|
|
1691
1692
|
/**
|
|
1692
1693
|
* @param terraformResource The parent resource
|
|
1693
1694
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1694
1695
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1695
1696
|
*/
|
|
1696
|
-
constructor(terraformResource:
|
|
1697
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1697
1698
|
/**
|
|
1698
1699
|
* @param index the index of the item to return
|
|
1699
1700
|
*/
|
|
@@ -1703,19 +1704,19 @@ export interface ServiceTaskSpecPlacementPlatforms {
|
|
|
1703
1704
|
/**
|
|
1704
1705
|
* The architecture, e.g. `amd64`
|
|
1705
1706
|
*
|
|
1706
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1707
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#architecture Service#architecture}
|
|
1707
1708
|
*/
|
|
1708
1709
|
readonly architecture: string;
|
|
1709
1710
|
/**
|
|
1710
1711
|
* The operation system, e.g. `linux`
|
|
1711
1712
|
*
|
|
1712
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1713
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#os Service#os}
|
|
1713
1714
|
*/
|
|
1714
1715
|
readonly os: string;
|
|
1715
1716
|
}
|
|
1716
|
-
export declare function serviceTaskSpecPlacementPlatformsToTerraform(struct?: ServiceTaskSpecPlacementPlatforms |
|
|
1717
|
-
export declare function serviceTaskSpecPlacementPlatformsToHclTerraform(struct?: ServiceTaskSpecPlacementPlatforms |
|
|
1718
|
-
export declare class ServiceTaskSpecPlacementPlatformsOutputReference extends
|
|
1717
|
+
export declare function serviceTaskSpecPlacementPlatformsToTerraform(struct?: ServiceTaskSpecPlacementPlatforms | cdktn.IResolvable): any;
|
|
1718
|
+
export declare function serviceTaskSpecPlacementPlatformsToHclTerraform(struct?: ServiceTaskSpecPlacementPlatforms | cdktn.IResolvable): any;
|
|
1719
|
+
export declare class ServiceTaskSpecPlacementPlatformsOutputReference extends cdktn.ComplexObject {
|
|
1719
1720
|
private isEmptyObject;
|
|
1720
1721
|
private resolvableValue?;
|
|
1721
1722
|
/**
|
|
@@ -1724,9 +1725,9 @@ export declare class ServiceTaskSpecPlacementPlatformsOutputReference extends cd
|
|
|
1724
1725
|
* @param complexObjectIndex the index of this item in the list
|
|
1725
1726
|
* @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1726
1727
|
*/
|
|
1727
|
-
constructor(terraformResource:
|
|
1728
|
-
get internalValue(): ServiceTaskSpecPlacementPlatforms |
|
|
1729
|
-
set internalValue(value: ServiceTaskSpecPlacementPlatforms |
|
|
1728
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
|
|
1729
|
+
get internalValue(): ServiceTaskSpecPlacementPlatforms | cdktn.IResolvable | undefined;
|
|
1730
|
+
set internalValue(value: ServiceTaskSpecPlacementPlatforms | cdktn.IResolvable | undefined);
|
|
1730
1731
|
private _architecture?;
|
|
1731
1732
|
get architecture(): string;
|
|
1732
1733
|
set architecture(value: string);
|
|
@@ -1736,17 +1737,17 @@ export declare class ServiceTaskSpecPlacementPlatformsOutputReference extends cd
|
|
|
1736
1737
|
set os(value: string);
|
|
1737
1738
|
get osInput(): string | undefined;
|
|
1738
1739
|
}
|
|
1739
|
-
export declare class ServiceTaskSpecPlacementPlatformsList extends
|
|
1740
|
-
protected terraformResource:
|
|
1740
|
+
export declare class ServiceTaskSpecPlacementPlatformsList extends cdktn.ComplexList {
|
|
1741
|
+
protected terraformResource: cdktn.IInterpolatingParent;
|
|
1741
1742
|
protected terraformAttribute: string;
|
|
1742
1743
|
protected wrapsSet: boolean;
|
|
1743
|
-
internalValue?: ServiceTaskSpecPlacementPlatforms[] |
|
|
1744
|
+
internalValue?: ServiceTaskSpecPlacementPlatforms[] | cdktn.IResolvable;
|
|
1744
1745
|
/**
|
|
1745
1746
|
* @param terraformResource The parent resource
|
|
1746
1747
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1747
1748
|
* @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
|
|
1748
1749
|
*/
|
|
1749
|
-
constructor(terraformResource:
|
|
1750
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
|
|
1750
1751
|
/**
|
|
1751
1752
|
* @param index the index of the item to return
|
|
1752
1753
|
*/
|
|
@@ -1756,37 +1757,37 @@ export interface ServiceTaskSpecPlacement {
|
|
|
1756
1757
|
/**
|
|
1757
1758
|
* An array of constraints. e.g.: `node.role==manager`
|
|
1758
1759
|
*
|
|
1759
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1760
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#constraints Service#constraints}
|
|
1760
1761
|
*/
|
|
1761
1762
|
readonly constraints?: string[];
|
|
1762
1763
|
/**
|
|
1763
1764
|
* Maximum number of replicas for per node (default value is `0`, which is unlimited)
|
|
1764
1765
|
*
|
|
1765
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1766
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#max_replicas Service#max_replicas}
|
|
1766
1767
|
*/
|
|
1767
1768
|
readonly maxReplicas?: number;
|
|
1768
1769
|
/**
|
|
1769
1770
|
* Preferences provide a way to make the scheduler aware of factors such as topology. They are provided in order from highest to lowest precedence, e.g.: `spread=node.role.manager`
|
|
1770
1771
|
*
|
|
1771
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1772
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#prefs Service#prefs}
|
|
1772
1773
|
*/
|
|
1773
1774
|
readonly prefs?: string[];
|
|
1774
1775
|
/**
|
|
1775
1776
|
* platforms block
|
|
1776
1777
|
*
|
|
1777
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1778
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#platforms Service#platforms}
|
|
1778
1779
|
*/
|
|
1779
|
-
readonly platforms?: ServiceTaskSpecPlacementPlatforms[] |
|
|
1780
|
+
readonly platforms?: ServiceTaskSpecPlacementPlatforms[] | cdktn.IResolvable;
|
|
1780
1781
|
}
|
|
1781
1782
|
export declare function serviceTaskSpecPlacementToTerraform(struct?: ServiceTaskSpecPlacementOutputReference | ServiceTaskSpecPlacement): any;
|
|
1782
1783
|
export declare function serviceTaskSpecPlacementToHclTerraform(struct?: ServiceTaskSpecPlacementOutputReference | ServiceTaskSpecPlacement): any;
|
|
1783
|
-
export declare class ServiceTaskSpecPlacementOutputReference extends
|
|
1784
|
+
export declare class ServiceTaskSpecPlacementOutputReference extends cdktn.ComplexObject {
|
|
1784
1785
|
private isEmptyObject;
|
|
1785
1786
|
/**
|
|
1786
1787
|
* @param terraformResource The parent resource
|
|
1787
1788
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1788
1789
|
*/
|
|
1789
|
-
constructor(terraformResource:
|
|
1790
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1790
1791
|
get internalValue(): ServiceTaskSpecPlacement | undefined;
|
|
1791
1792
|
set internalValue(value: ServiceTaskSpecPlacement | undefined);
|
|
1792
1793
|
private _constraints?;
|
|
@@ -1806,33 +1807,33 @@ export declare class ServiceTaskSpecPlacementOutputReference extends cdktf.Compl
|
|
|
1806
1807
|
get prefsInput(): string[] | undefined;
|
|
1807
1808
|
private _platforms;
|
|
1808
1809
|
get platforms(): ServiceTaskSpecPlacementPlatformsList;
|
|
1809
|
-
putPlatforms(value: ServiceTaskSpecPlacementPlatforms[] |
|
|
1810
|
+
putPlatforms(value: ServiceTaskSpecPlacementPlatforms[] | cdktn.IResolvable): void;
|
|
1810
1811
|
resetPlatforms(): void;
|
|
1811
|
-
get platformsInput():
|
|
1812
|
+
get platformsInput(): cdktn.IResolvable | ServiceTaskSpecPlacementPlatforms[] | undefined;
|
|
1812
1813
|
}
|
|
1813
1814
|
export interface ServiceTaskSpecResourcesLimits {
|
|
1814
1815
|
/**
|
|
1815
1816
|
* The amounf of memory in bytes the container allocates
|
|
1816
1817
|
*
|
|
1817
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1818
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#memory_bytes Service#memory_bytes}
|
|
1818
1819
|
*/
|
|
1819
1820
|
readonly memoryBytes?: number;
|
|
1820
1821
|
/**
|
|
1821
1822
|
* CPU shares in units of `1/1e9` (or `10^-9`) of the CPU. Should be at least `1000000`
|
|
1822
1823
|
*
|
|
1823
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1824
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#nano_cpus Service#nano_cpus}
|
|
1824
1825
|
*/
|
|
1825
1826
|
readonly nanoCpus?: number;
|
|
1826
1827
|
}
|
|
1827
1828
|
export declare function serviceTaskSpecResourcesLimitsToTerraform(struct?: ServiceTaskSpecResourcesLimitsOutputReference | ServiceTaskSpecResourcesLimits): any;
|
|
1828
1829
|
export declare function serviceTaskSpecResourcesLimitsToHclTerraform(struct?: ServiceTaskSpecResourcesLimitsOutputReference | ServiceTaskSpecResourcesLimits): any;
|
|
1829
|
-
export declare class ServiceTaskSpecResourcesLimitsOutputReference extends
|
|
1830
|
+
export declare class ServiceTaskSpecResourcesLimitsOutputReference extends cdktn.ComplexObject {
|
|
1830
1831
|
private isEmptyObject;
|
|
1831
1832
|
/**
|
|
1832
1833
|
* @param terraformResource The parent resource
|
|
1833
1834
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1834
1835
|
*/
|
|
1835
|
-
constructor(terraformResource:
|
|
1836
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1836
1837
|
get internalValue(): ServiceTaskSpecResourcesLimits | undefined;
|
|
1837
1838
|
set internalValue(value: ServiceTaskSpecResourcesLimits | undefined);
|
|
1838
1839
|
private _memoryBytes?;
|
|
@@ -1850,25 +1851,25 @@ export interface ServiceTaskSpecResourcesReservationGenericResources {
|
|
|
1850
1851
|
/**
|
|
1851
1852
|
* The Integer resources
|
|
1852
1853
|
*
|
|
1853
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1854
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#discrete_resources_spec Service#discrete_resources_spec}
|
|
1854
1855
|
*/
|
|
1855
1856
|
readonly discreteResourcesSpec?: string[];
|
|
1856
1857
|
/**
|
|
1857
1858
|
* The String resources
|
|
1858
1859
|
*
|
|
1859
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1860
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#named_resources_spec Service#named_resources_spec}
|
|
1860
1861
|
*/
|
|
1861
1862
|
readonly namedResourcesSpec?: string[];
|
|
1862
1863
|
}
|
|
1863
1864
|
export declare function serviceTaskSpecResourcesReservationGenericResourcesToTerraform(struct?: ServiceTaskSpecResourcesReservationGenericResourcesOutputReference | ServiceTaskSpecResourcesReservationGenericResources): any;
|
|
1864
1865
|
export declare function serviceTaskSpecResourcesReservationGenericResourcesToHclTerraform(struct?: ServiceTaskSpecResourcesReservationGenericResourcesOutputReference | ServiceTaskSpecResourcesReservationGenericResources): any;
|
|
1865
|
-
export declare class ServiceTaskSpecResourcesReservationGenericResourcesOutputReference extends
|
|
1866
|
+
export declare class ServiceTaskSpecResourcesReservationGenericResourcesOutputReference extends cdktn.ComplexObject {
|
|
1866
1867
|
private isEmptyObject;
|
|
1867
1868
|
/**
|
|
1868
1869
|
* @param terraformResource The parent resource
|
|
1869
1870
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1870
1871
|
*/
|
|
1871
|
-
constructor(terraformResource:
|
|
1872
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1872
1873
|
get internalValue(): ServiceTaskSpecResourcesReservationGenericResources | undefined;
|
|
1873
1874
|
set internalValue(value: ServiceTaskSpecResourcesReservationGenericResources | undefined);
|
|
1874
1875
|
private _discreteResourcesSpec?;
|
|
@@ -1886,31 +1887,31 @@ export interface ServiceTaskSpecResourcesReservation {
|
|
|
1886
1887
|
/**
|
|
1887
1888
|
* The amounf of memory in bytes the container allocates
|
|
1888
1889
|
*
|
|
1889
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1890
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#memory_bytes Service#memory_bytes}
|
|
1890
1891
|
*/
|
|
1891
1892
|
readonly memoryBytes?: number;
|
|
1892
1893
|
/**
|
|
1893
1894
|
* CPU shares in units of 1/1e9 (or 10^-9) of the CPU. Should be at least `1000000`
|
|
1894
1895
|
*
|
|
1895
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1896
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#nano_cpus Service#nano_cpus}
|
|
1896
1897
|
*/
|
|
1897
1898
|
readonly nanoCpus?: number;
|
|
1898
1899
|
/**
|
|
1899
1900
|
* generic_resources block
|
|
1900
1901
|
*
|
|
1901
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1902
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#generic_resources Service#generic_resources}
|
|
1902
1903
|
*/
|
|
1903
1904
|
readonly genericResources?: ServiceTaskSpecResourcesReservationGenericResources;
|
|
1904
1905
|
}
|
|
1905
1906
|
export declare function serviceTaskSpecResourcesReservationToTerraform(struct?: ServiceTaskSpecResourcesReservationOutputReference | ServiceTaskSpecResourcesReservation): any;
|
|
1906
1907
|
export declare function serviceTaskSpecResourcesReservationToHclTerraform(struct?: ServiceTaskSpecResourcesReservationOutputReference | ServiceTaskSpecResourcesReservation): any;
|
|
1907
|
-
export declare class ServiceTaskSpecResourcesReservationOutputReference extends
|
|
1908
|
+
export declare class ServiceTaskSpecResourcesReservationOutputReference extends cdktn.ComplexObject {
|
|
1908
1909
|
private isEmptyObject;
|
|
1909
1910
|
/**
|
|
1910
1911
|
* @param terraformResource The parent resource
|
|
1911
1912
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1912
1913
|
*/
|
|
1913
|
-
constructor(terraformResource:
|
|
1914
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1914
1915
|
get internalValue(): ServiceTaskSpecResourcesReservation | undefined;
|
|
1915
1916
|
set internalValue(value: ServiceTaskSpecResourcesReservation | undefined);
|
|
1916
1917
|
private _memoryBytes?;
|
|
@@ -1933,25 +1934,25 @@ export interface ServiceTaskSpecResources {
|
|
|
1933
1934
|
/**
|
|
1934
1935
|
* limits block
|
|
1935
1936
|
*
|
|
1936
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1937
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#limits Service#limits}
|
|
1937
1938
|
*/
|
|
1938
1939
|
readonly limits?: ServiceTaskSpecResourcesLimits;
|
|
1939
1940
|
/**
|
|
1940
1941
|
* reservation block
|
|
1941
1942
|
*
|
|
1942
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1943
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#reservation Service#reservation}
|
|
1943
1944
|
*/
|
|
1944
1945
|
readonly reservation?: ServiceTaskSpecResourcesReservation;
|
|
1945
1946
|
}
|
|
1946
1947
|
export declare function serviceTaskSpecResourcesToTerraform(struct?: ServiceTaskSpecResourcesOutputReference | ServiceTaskSpecResources): any;
|
|
1947
1948
|
export declare function serviceTaskSpecResourcesToHclTerraform(struct?: ServiceTaskSpecResourcesOutputReference | ServiceTaskSpecResources): any;
|
|
1948
|
-
export declare class ServiceTaskSpecResourcesOutputReference extends
|
|
1949
|
+
export declare class ServiceTaskSpecResourcesOutputReference extends cdktn.ComplexObject {
|
|
1949
1950
|
private isEmptyObject;
|
|
1950
1951
|
/**
|
|
1951
1952
|
* @param terraformResource The parent resource
|
|
1952
1953
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
1953
1954
|
*/
|
|
1954
|
-
constructor(terraformResource:
|
|
1955
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
1955
1956
|
get internalValue(): ServiceTaskSpecResources | undefined;
|
|
1956
1957
|
set internalValue(value: ServiceTaskSpecResources | undefined);
|
|
1957
1958
|
private _limits;
|
|
@@ -1969,37 +1970,37 @@ export interface ServiceTaskSpecRestartPolicy {
|
|
|
1969
1970
|
/**
|
|
1970
1971
|
* Condition for restart
|
|
1971
1972
|
*
|
|
1972
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1973
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#condition Service#condition}
|
|
1973
1974
|
*/
|
|
1974
1975
|
readonly condition?: string;
|
|
1975
1976
|
/**
|
|
1976
1977
|
* Delay between restart attempts (ms|s|m|h)
|
|
1977
1978
|
*
|
|
1978
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1979
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#delay Service#delay}
|
|
1979
1980
|
*/
|
|
1980
1981
|
readonly delay?: string;
|
|
1981
1982
|
/**
|
|
1982
1983
|
* Maximum attempts to restart a given container before giving up (default value is `0`, which is ignored)
|
|
1983
1984
|
*
|
|
1984
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1985
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#max_attempts Service#max_attempts}
|
|
1985
1986
|
*/
|
|
1986
1987
|
readonly maxAttempts?: number;
|
|
1987
1988
|
/**
|
|
1988
1989
|
* The time window used to evaluate the restart policy (default value is `0`, which is unbounded) (ms|s|m|h)
|
|
1989
1990
|
*
|
|
1990
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
1991
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#window Service#window}
|
|
1991
1992
|
*/
|
|
1992
1993
|
readonly window?: string;
|
|
1993
1994
|
}
|
|
1994
1995
|
export declare function serviceTaskSpecRestartPolicyToTerraform(struct?: ServiceTaskSpecRestartPolicyOutputReference | ServiceTaskSpecRestartPolicy): any;
|
|
1995
1996
|
export declare function serviceTaskSpecRestartPolicyToHclTerraform(struct?: ServiceTaskSpecRestartPolicyOutputReference | ServiceTaskSpecRestartPolicy): any;
|
|
1996
|
-
export declare class ServiceTaskSpecRestartPolicyOutputReference extends
|
|
1997
|
+
export declare class ServiceTaskSpecRestartPolicyOutputReference extends cdktn.ComplexObject {
|
|
1997
1998
|
private isEmptyObject;
|
|
1998
1999
|
/**
|
|
1999
2000
|
* @param terraformResource The parent resource
|
|
2000
2001
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
2001
2002
|
*/
|
|
2002
|
-
constructor(terraformResource:
|
|
2003
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
2003
2004
|
get internalValue(): ServiceTaskSpecRestartPolicy | undefined;
|
|
2004
2005
|
set internalValue(value: ServiceTaskSpecRestartPolicy | undefined);
|
|
2005
2006
|
private _condition?;
|
|
@@ -2027,61 +2028,61 @@ export interface ServiceTaskSpec {
|
|
|
2027
2028
|
/**
|
|
2028
2029
|
* A counter that triggers an update even if no relevant parameters have been changed. See the [spec](https://github.com/docker/swarmkit/blob/master/api/specs.proto#L126).
|
|
2029
2030
|
*
|
|
2030
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2031
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#force_update Service#force_update}
|
|
2031
2032
|
*/
|
|
2032
2033
|
readonly forceUpdate?: number;
|
|
2033
2034
|
/**
|
|
2034
2035
|
* Runtime is the type of runtime specified for the task executor. See the [types](https://github.com/moby/moby/blob/master/api/types/swarm/runtime.go).
|
|
2035
2036
|
*
|
|
2036
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2037
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#runtime Service#runtime}
|
|
2037
2038
|
*/
|
|
2038
2039
|
readonly runtime?: string;
|
|
2039
2040
|
/**
|
|
2040
2041
|
* container_spec block
|
|
2041
2042
|
*
|
|
2042
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2043
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#container_spec Service#container_spec}
|
|
2043
2044
|
*/
|
|
2044
2045
|
readonly containerSpec: ServiceTaskSpecContainerSpec;
|
|
2045
2046
|
/**
|
|
2046
2047
|
* log_driver block
|
|
2047
2048
|
*
|
|
2048
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2049
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#log_driver Service#log_driver}
|
|
2049
2050
|
*/
|
|
2050
2051
|
readonly logDriver?: ServiceTaskSpecLogDriver;
|
|
2051
2052
|
/**
|
|
2052
2053
|
* networks_advanced block
|
|
2053
2054
|
*
|
|
2054
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2055
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#networks_advanced Service#networks_advanced}
|
|
2055
2056
|
*/
|
|
2056
|
-
readonly networksAdvanced?: ServiceTaskSpecNetworksAdvanced[] |
|
|
2057
|
+
readonly networksAdvanced?: ServiceTaskSpecNetworksAdvanced[] | cdktn.IResolvable;
|
|
2057
2058
|
/**
|
|
2058
2059
|
* placement block
|
|
2059
2060
|
*
|
|
2060
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2061
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#placement Service#placement}
|
|
2061
2062
|
*/
|
|
2062
2063
|
readonly placement?: ServiceTaskSpecPlacement;
|
|
2063
2064
|
/**
|
|
2064
2065
|
* resources block
|
|
2065
2066
|
*
|
|
2066
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2067
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#resources Service#resources}
|
|
2067
2068
|
*/
|
|
2068
2069
|
readonly resources?: ServiceTaskSpecResources;
|
|
2069
2070
|
/**
|
|
2070
2071
|
* restart_policy block
|
|
2071
2072
|
*
|
|
2072
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2073
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#restart_policy Service#restart_policy}
|
|
2073
2074
|
*/
|
|
2074
2075
|
readonly restartPolicy?: ServiceTaskSpecRestartPolicy;
|
|
2075
2076
|
}
|
|
2076
2077
|
export declare function serviceTaskSpecToTerraform(struct?: ServiceTaskSpecOutputReference | ServiceTaskSpec): any;
|
|
2077
2078
|
export declare function serviceTaskSpecToHclTerraform(struct?: ServiceTaskSpecOutputReference | ServiceTaskSpec): any;
|
|
2078
|
-
export declare class ServiceTaskSpecOutputReference extends
|
|
2079
|
+
export declare class ServiceTaskSpecOutputReference extends cdktn.ComplexObject {
|
|
2079
2080
|
private isEmptyObject;
|
|
2080
2081
|
/**
|
|
2081
2082
|
* @param terraformResource The parent resource
|
|
2082
2083
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
2083
2084
|
*/
|
|
2084
|
-
constructor(terraformResource:
|
|
2085
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
2085
2086
|
get internalValue(): ServiceTaskSpec | undefined;
|
|
2086
2087
|
set internalValue(value: ServiceTaskSpec | undefined);
|
|
2087
2088
|
private _forceUpdate?;
|
|
@@ -2105,9 +2106,9 @@ export declare class ServiceTaskSpecOutputReference extends cdktf.ComplexObject
|
|
|
2105
2106
|
get logDriverInput(): ServiceTaskSpecLogDriver | undefined;
|
|
2106
2107
|
private _networksAdvanced;
|
|
2107
2108
|
get networksAdvanced(): ServiceTaskSpecNetworksAdvancedList;
|
|
2108
|
-
putNetworksAdvanced(value: ServiceTaskSpecNetworksAdvanced[] |
|
|
2109
|
+
putNetworksAdvanced(value: ServiceTaskSpecNetworksAdvanced[] | cdktn.IResolvable): void;
|
|
2109
2110
|
resetNetworksAdvanced(): void;
|
|
2110
|
-
get networksAdvancedInput():
|
|
2111
|
+
get networksAdvancedInput(): cdktn.IResolvable | ServiceTaskSpecNetworksAdvanced[] | undefined;
|
|
2111
2112
|
private _placement;
|
|
2112
2113
|
get placement(): ServiceTaskSpecPlacementOutputReference;
|
|
2113
2114
|
putPlacement(value: ServiceTaskSpecPlacement): void;
|
|
@@ -2128,49 +2129,49 @@ export interface ServiceUpdateConfig {
|
|
|
2128
2129
|
/**
|
|
2129
2130
|
* Delay between task updates `(ns|us|ms|s|m|h)`. Defaults to `0s`.
|
|
2130
2131
|
*
|
|
2131
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2132
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#delay Service#delay}
|
|
2132
2133
|
*/
|
|
2133
2134
|
readonly delay?: string;
|
|
2134
2135
|
/**
|
|
2135
2136
|
* Action on update failure: `pause`, `continue` or `rollback`. Defaults to `pause`.
|
|
2136
2137
|
*
|
|
2137
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2138
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#failure_action Service#failure_action}
|
|
2138
2139
|
*/
|
|
2139
2140
|
readonly failureAction?: string;
|
|
2140
2141
|
/**
|
|
2141
2142
|
* Failure rate to tolerate during an update. Defaults to `0.0`.
|
|
2142
2143
|
*
|
|
2143
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2144
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#max_failure_ratio Service#max_failure_ratio}
|
|
2144
2145
|
*/
|
|
2145
2146
|
readonly maxFailureRatio?: string;
|
|
2146
2147
|
/**
|
|
2147
2148
|
* Duration after each task update to monitor for failure (ns|us|ms|s|m|h). Defaults to `5s`.
|
|
2148
2149
|
*
|
|
2149
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2150
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#monitor Service#monitor}
|
|
2150
2151
|
*/
|
|
2151
2152
|
readonly monitor?: string;
|
|
2152
2153
|
/**
|
|
2153
2154
|
* Update order: either 'stop-first' or 'start-first'. Defaults to `stop-first`.
|
|
2154
2155
|
*
|
|
2155
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2156
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#order Service#order}
|
|
2156
2157
|
*/
|
|
2157
2158
|
readonly order?: string;
|
|
2158
2159
|
/**
|
|
2159
2160
|
* Maximum number of tasks to be updated in one iteration. Defaults to `1`
|
|
2160
2161
|
*
|
|
2161
|
-
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2162
|
+
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#parallelism Service#parallelism}
|
|
2162
2163
|
*/
|
|
2163
2164
|
readonly parallelism?: number;
|
|
2164
2165
|
}
|
|
2165
2166
|
export declare function serviceUpdateConfigToTerraform(struct?: ServiceUpdateConfigOutputReference | ServiceUpdateConfig): any;
|
|
2166
2167
|
export declare function serviceUpdateConfigToHclTerraform(struct?: ServiceUpdateConfigOutputReference | ServiceUpdateConfig): any;
|
|
2167
|
-
export declare class ServiceUpdateConfigOutputReference extends
|
|
2168
|
+
export declare class ServiceUpdateConfigOutputReference extends cdktn.ComplexObject {
|
|
2168
2169
|
private isEmptyObject;
|
|
2169
2170
|
/**
|
|
2170
2171
|
* @param terraformResource The parent resource
|
|
2171
2172
|
* @param terraformAttribute The attribute on the parent resource this class is referencing
|
|
2172
2173
|
*/
|
|
2173
|
-
constructor(terraformResource:
|
|
2174
|
+
constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string);
|
|
2174
2175
|
get internalValue(): ServiceUpdateConfig | undefined;
|
|
2175
2176
|
set internalValue(value: ServiceUpdateConfig | undefined);
|
|
2176
2177
|
private _delay?;
|
|
@@ -2205,20 +2206,20 @@ export declare class ServiceUpdateConfigOutputReference extends cdktf.ComplexObj
|
|
|
2205
2206
|
get parallelismInput(): number | undefined;
|
|
2206
2207
|
}
|
|
2207
2208
|
/**
|
|
2208
|
-
* Represents a {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2209
|
+
* Represents a {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service docker_service}
|
|
2209
2210
|
*/
|
|
2210
|
-
export declare class Service extends
|
|
2211
|
+
export declare class Service extends cdktn.TerraformResource {
|
|
2211
2212
|
static readonly tfResourceType = "docker_service";
|
|
2212
2213
|
/**
|
|
2213
|
-
* Generates
|
|
2214
|
+
* Generates CDKTN code for importing a Service resource upon running "cdktn plan <stack-name>"
|
|
2214
2215
|
* @param scope The scope in which to define this construct
|
|
2215
2216
|
* @param importToId The construct id used in the generated config for the Service to import
|
|
2216
|
-
* @param importFromId The id of the existing Service that should be imported. Refer to the {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2217
|
+
* @param importFromId The id of the existing Service that should be imported. Refer to the {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service#import import section} in the documentation of this resource for the id to use
|
|
2217
2218
|
* @param provider? Optional instance of the provider where the Service to import is found
|
|
2218
2219
|
*/
|
|
2219
|
-
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?:
|
|
2220
|
+
static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktn.TerraformProvider): cdktn.ImportableResource;
|
|
2220
2221
|
/**
|
|
2221
|
-
* Create a new {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
2222
|
+
* Create a new {@link https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs/resources/service docker_service} Resource
|
|
2222
2223
|
*
|
|
2223
2224
|
* @param scope The scope in which to define this construct
|
|
2224
2225
|
* @param id The scoped construct ID. Must be unique amongst siblings in the same scope
|
|
@@ -2251,9 +2252,9 @@ export declare class Service extends cdktf.TerraformResource {
|
|
|
2251
2252
|
get endpointSpecInput(): ServiceEndpointSpec | undefined;
|
|
2252
2253
|
private _labels;
|
|
2253
2254
|
get labels(): ServiceLabelsList;
|
|
2254
|
-
putLabels(value: ServiceLabels[] |
|
|
2255
|
+
putLabels(value: ServiceLabels[] | cdktn.IResolvable): void;
|
|
2255
2256
|
resetLabels(): void;
|
|
2256
|
-
get labelsInput():
|
|
2257
|
+
get labelsInput(): cdktn.IResolvable | ServiceLabels[] | undefined;
|
|
2257
2258
|
private _mode;
|
|
2258
2259
|
get mode(): ServiceModeOutputReference;
|
|
2259
2260
|
putMode(value: ServiceMode): void;
|