@cdktf-providers/aptible 0.9.18 → 0.9.19

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # @cdktf-providers/aptible (v0.9.18)
1
+ # @cdktf-providers/aptible (v0.9.19)
2
2
 
3
- This package provides the prebuilt [Terraform aptible/aptible provider](https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs) bindings for [CDK for Terraform (CDKTF)](https://cdk.tf).
3
+ This package provides the prebuilt [Terraform aptible/aptible provider](https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs) bindings for [CDK for Terraform (CDKTF)](https://cdk.tf).
4
4
 
5
5
  The bindings are **automatically generated** from the upstream provider schema. They are intended for use in TypeScript CDKTF applications, and always match the version of the upstream Terraform provider.
6
6
 
@@ -12,7 +12,7 @@ For more details, see the [cdktf-providers](https://github.com/shunueda/cdktf-pr
12
12
 
13
13
  ## Docs
14
14
 
15
- See provider documentation on [registry.terraform.io](https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs).
15
+ See provider documentation on [registry.terraform.io](https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs).
16
16
 
17
17
  ## Disclaimer
18
18
 
@@ -2,21 +2,21 @@ import { Construct } from 'constructs';
2
2
  import * as cdktf from 'cdktf';
3
3
  export interface AppConfig extends cdktf.TerraformMetaArguments {
4
4
  /**
5
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#config App#config}
5
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#config App#config}
6
6
  */
7
7
  readonly config?: {
8
8
  [key: string]: string;
9
9
  };
10
10
  /**
11
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#env_id App#env_id}
11
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#env_id App#env_id}
12
12
  */
13
13
  readonly envId: number;
14
14
  /**
15
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#handle App#handle}
15
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#handle App#handle}
16
16
  */
17
17
  readonly handle: string;
18
18
  /**
19
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#id App#id}
19
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#id App#id}
20
20
  *
21
21
  * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
22
22
  * 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.
@@ -25,7 +25,7 @@ export interface AppConfig extends cdktf.TerraformMetaArguments {
25
25
  /**
26
26
  * service block
27
27
  *
28
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#service App#service}
28
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#service App#service}
29
29
  */
30
30
  readonly service?: AppService[] | cdktf.IResolvable;
31
31
  }
@@ -33,111 +33,111 @@ export interface AppServiceAutoscalingPolicy {
33
33
  /**
34
34
  * The type of autoscaling, must be either 'vertical' or 'horizontal'.
35
35
  *
36
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#autoscaling_type App#autoscaling_type}
36
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#autoscaling_type App#autoscaling_type}
37
37
  */
38
38
  readonly autoscalingType: string;
39
39
  /**
40
40
  * The maximum number of containers for scaling.
41
41
  *
42
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#max_containers App#max_containers}
42
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#max_containers App#max_containers}
43
43
  */
44
44
  readonly maxContainers?: number;
45
45
  /**
46
46
  * The maximum CPU utilization threshold for scaling.
47
47
  *
48
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#max_cpu_threshold App#max_cpu_threshold}
48
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#max_cpu_threshold App#max_cpu_threshold}
49
49
  */
50
50
  readonly maxCpuThreshold?: number;
51
51
  /**
52
52
  * The maximum memory allocation in MB.
53
53
  *
54
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#maximum_memory App#maximum_memory}
54
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#maximum_memory App#maximum_memory}
55
55
  */
56
56
  readonly maximumMemory?: number;
57
57
  /**
58
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_cpu_ratio_c_threshold App#mem_cpu_ratio_c_threshold}
58
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_cpu_ratio_c_threshold App#mem_cpu_ratio_c_threshold}
59
59
  */
60
60
  readonly memCpuRatioCThreshold?: number;
61
61
  /**
62
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_cpu_ratio_r_threshold App#mem_cpu_ratio_r_threshold}
62
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_cpu_ratio_r_threshold App#mem_cpu_ratio_r_threshold}
63
63
  */
64
64
  readonly memCpuRatioRThreshold?: number;
65
65
  /**
66
66
  * The memory usage threshold for scaling down.
67
67
  *
68
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_scale_down_threshold App#mem_scale_down_threshold}
68
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_scale_down_threshold App#mem_scale_down_threshold}
69
69
  */
70
70
  readonly memScaleDownThreshold?: number;
71
71
  /**
72
72
  * The memory usage threshold for scaling up.
73
73
  *
74
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_scale_up_threshold App#mem_scale_up_threshold}
74
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_scale_up_threshold App#mem_scale_up_threshold}
75
75
  */
76
76
  readonly memScaleUpThreshold?: number;
77
77
  /**
78
78
  * The lookback period for metrics in seconds.
79
79
  *
80
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#metric_lookback_seconds App#metric_lookback_seconds}
80
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#metric_lookback_seconds App#metric_lookback_seconds}
81
81
  */
82
82
  readonly metricLookbackSeconds?: number;
83
83
  /**
84
84
  * The minimum number of containers for scaling.
85
85
  *
86
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#min_containers App#min_containers}
86
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#min_containers App#min_containers}
87
87
  */
88
88
  readonly minContainers?: number;
89
89
  /**
90
90
  * The minimum CPU utilization threshold for scaling.
91
91
  *
92
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#min_cpu_threshold App#min_cpu_threshold}
92
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#min_cpu_threshold App#min_cpu_threshold}
93
93
  */
94
94
  readonly minCpuThreshold?: number;
95
95
  /**
96
96
  * The minimum memory allocation in MB.
97
97
  *
98
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#minimum_memory App#minimum_memory}
98
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#minimum_memory App#minimum_memory}
99
99
  */
100
100
  readonly minimumMemory?: number;
101
101
  /**
102
102
  * The percentile threshold used for scaling.
103
103
  *
104
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#percentile App#percentile}
104
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#percentile App#percentile}
105
105
  */
106
106
  readonly percentile?: number;
107
107
  /**
108
108
  * Seconds to ignore in metrics after a release event.
109
109
  *
110
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#post_release_cooldown_seconds App#post_release_cooldown_seconds}
110
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#post_release_cooldown_seconds App#post_release_cooldown_seconds}
111
111
  */
112
112
  readonly postReleaseCooldownSeconds?: number;
113
113
  /**
114
114
  * Cooldown period in seconds after a scale-down event.
115
115
  *
116
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#post_scale_down_cooldown_seconds App#post_scale_down_cooldown_seconds}
116
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#post_scale_down_cooldown_seconds App#post_scale_down_cooldown_seconds}
117
117
  */
118
118
  readonly postScaleDownCooldownSeconds?: number;
119
119
  /**
120
120
  * Cooldown period in seconds after a scale-up event.
121
121
  *
122
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#post_scale_up_cooldown_seconds App#post_scale_up_cooldown_seconds}
122
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#post_scale_up_cooldown_seconds App#post_scale_up_cooldown_seconds}
123
123
  */
124
124
  readonly postScaleUpCooldownSeconds?: number;
125
125
  /**
126
126
  * The number of containers to remove in each scale-down event.
127
127
  *
128
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#scale_down_step App#scale_down_step}
128
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#scale_down_step App#scale_down_step}
129
129
  */
130
130
  readonly scaleDownStep?: number;
131
131
  /**
132
132
  * The number of containers to add in each scale-up event.
133
133
  *
134
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#scale_up_step App#scale_up_step}
134
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#scale_up_step App#scale_up_step}
135
135
  */
136
136
  readonly scaleUpStep?: number;
137
137
  /**
138
138
  * Whether to use restart-free scaling for this service.
139
139
  *
140
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#use_horizontal_scale App#use_horizontal_scale}
140
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#use_horizontal_scale App#use_horizontal_scale}
141
141
  */
142
142
  readonly useHorizontalScale?: boolean | cdktf.IResolvable;
143
143
  }
@@ -271,111 +271,111 @@ export interface AppServiceServiceSizingPolicy {
271
271
  /**
272
272
  * The type of autoscaling, must be either 'vertical' or 'horizontal'.
273
273
  *
274
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#autoscaling_type App#autoscaling_type}
274
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#autoscaling_type App#autoscaling_type}
275
275
  */
276
276
  readonly autoscalingType: string;
277
277
  /**
278
278
  * The maximum number of containers for scaling.
279
279
  *
280
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#max_containers App#max_containers}
280
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#max_containers App#max_containers}
281
281
  */
282
282
  readonly maxContainers?: number;
283
283
  /**
284
284
  * The maximum CPU utilization threshold for scaling.
285
285
  *
286
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#max_cpu_threshold App#max_cpu_threshold}
286
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#max_cpu_threshold App#max_cpu_threshold}
287
287
  */
288
288
  readonly maxCpuThreshold?: number;
289
289
  /**
290
290
  * The maximum memory allocation in MB.
291
291
  *
292
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#maximum_memory App#maximum_memory}
292
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#maximum_memory App#maximum_memory}
293
293
  */
294
294
  readonly maximumMemory?: number;
295
295
  /**
296
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_cpu_ratio_c_threshold App#mem_cpu_ratio_c_threshold}
296
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_cpu_ratio_c_threshold App#mem_cpu_ratio_c_threshold}
297
297
  */
298
298
  readonly memCpuRatioCThreshold?: number;
299
299
  /**
300
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_cpu_ratio_r_threshold App#mem_cpu_ratio_r_threshold}
300
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_cpu_ratio_r_threshold App#mem_cpu_ratio_r_threshold}
301
301
  */
302
302
  readonly memCpuRatioRThreshold?: number;
303
303
  /**
304
304
  * The memory usage threshold for scaling down.
305
305
  *
306
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_scale_down_threshold App#mem_scale_down_threshold}
306
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_scale_down_threshold App#mem_scale_down_threshold}
307
307
  */
308
308
  readonly memScaleDownThreshold?: number;
309
309
  /**
310
310
  * The memory usage threshold for scaling up.
311
311
  *
312
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#mem_scale_up_threshold App#mem_scale_up_threshold}
312
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#mem_scale_up_threshold App#mem_scale_up_threshold}
313
313
  */
314
314
  readonly memScaleUpThreshold?: number;
315
315
  /**
316
316
  * The lookback period for metrics in seconds.
317
317
  *
318
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#metric_lookback_seconds App#metric_lookback_seconds}
318
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#metric_lookback_seconds App#metric_lookback_seconds}
319
319
  */
320
320
  readonly metricLookbackSeconds?: number;
321
321
  /**
322
322
  * The minimum number of containers for scaling.
323
323
  *
324
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#min_containers App#min_containers}
324
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#min_containers App#min_containers}
325
325
  */
326
326
  readonly minContainers?: number;
327
327
  /**
328
328
  * The minimum CPU utilization threshold for scaling.
329
329
  *
330
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#min_cpu_threshold App#min_cpu_threshold}
330
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#min_cpu_threshold App#min_cpu_threshold}
331
331
  */
332
332
  readonly minCpuThreshold?: number;
333
333
  /**
334
334
  * The minimum memory allocation in MB.
335
335
  *
336
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#minimum_memory App#minimum_memory}
336
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#minimum_memory App#minimum_memory}
337
337
  */
338
338
  readonly minimumMemory?: number;
339
339
  /**
340
340
  * The percentile threshold used for scaling.
341
341
  *
342
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#percentile App#percentile}
342
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#percentile App#percentile}
343
343
  */
344
344
  readonly percentile?: number;
345
345
  /**
346
346
  * Seconds to ignore in metrics after a release event.
347
347
  *
348
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#post_release_cooldown_seconds App#post_release_cooldown_seconds}
348
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#post_release_cooldown_seconds App#post_release_cooldown_seconds}
349
349
  */
350
350
  readonly postReleaseCooldownSeconds?: number;
351
351
  /**
352
352
  * Cooldown period in seconds after a scale-down event.
353
353
  *
354
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#post_scale_down_cooldown_seconds App#post_scale_down_cooldown_seconds}
354
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#post_scale_down_cooldown_seconds App#post_scale_down_cooldown_seconds}
355
355
  */
356
356
  readonly postScaleDownCooldownSeconds?: number;
357
357
  /**
358
358
  * Cooldown period in seconds after a scale-up event.
359
359
  *
360
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#post_scale_up_cooldown_seconds App#post_scale_up_cooldown_seconds}
360
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#post_scale_up_cooldown_seconds App#post_scale_up_cooldown_seconds}
361
361
  */
362
362
  readonly postScaleUpCooldownSeconds?: number;
363
363
  /**
364
364
  * The number of containers to remove in each scale-down event.
365
365
  *
366
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#scale_down_step App#scale_down_step}
366
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#scale_down_step App#scale_down_step}
367
367
  */
368
368
  readonly scaleDownStep?: number;
369
369
  /**
370
370
  * The number of containers to add in each scale-up event.
371
371
  *
372
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#scale_up_step App#scale_up_step}
372
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#scale_up_step App#scale_up_step}
373
373
  */
374
374
  readonly scaleUpStep?: number;
375
375
  /**
376
376
  * Whether to use restart-free scaling for this service.
377
377
  *
378
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#use_horizontal_scale App#use_horizontal_scale}
378
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#use_horizontal_scale App#use_horizontal_scale}
379
379
  */
380
380
  readonly useHorizontalScale?: boolean | cdktf.IResolvable;
381
381
  }
@@ -507,43 +507,47 @@ export declare class AppServiceServiceSizingPolicyList extends cdktf.ComplexList
507
507
  }
508
508
  export interface AppService {
509
509
  /**
510
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#container_count App#container_count}
510
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#container_count App#container_count}
511
511
  */
512
512
  readonly containerCount?: number;
513
513
  /**
514
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#container_memory_limit App#container_memory_limit}
514
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#container_memory_limit App#container_memory_limit}
515
515
  */
516
516
  readonly containerMemoryLimit?: number;
517
517
  /**
518
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#container_profile App#container_profile}
518
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#container_profile App#container_profile}
519
519
  */
520
520
  readonly containerProfile?: string;
521
521
  /**
522
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#force_zero_downtime App#force_zero_downtime}
522
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#force_zero_downtime App#force_zero_downtime}
523
523
  */
524
524
  readonly forceZeroDowntime?: boolean | cdktf.IResolvable;
525
525
  /**
526
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#process_type App#process_type}
526
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#process_type App#process_type}
527
527
  */
528
528
  readonly processType?: string;
529
529
  /**
530
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#simple_health_check App#simple_health_check}
530
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#restart_free_scaling App#restart_free_scaling}
531
+ */
532
+ readonly restartFreeScaling?: boolean | cdktf.IResolvable;
533
+ /**
534
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#simple_health_check App#simple_health_check}
531
535
  */
532
536
  readonly simpleHealthCheck?: boolean | cdktf.IResolvable;
533
537
  /**
534
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#stop_timeout App#stop_timeout}
538
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#stop_timeout App#stop_timeout}
535
539
  */
536
540
  readonly stopTimeout?: number;
537
541
  /**
538
542
  * autoscaling_policy block
539
543
  *
540
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#autoscaling_policy App#autoscaling_policy}
544
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#autoscaling_policy App#autoscaling_policy}
541
545
  */
542
546
  readonly autoscalingPolicy?: AppServiceAutoscalingPolicy[] | cdktf.IResolvable;
543
547
  /**
544
548
  * service_sizing_policy block
545
549
  *
546
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#service_sizing_policy App#service_sizing_policy}
550
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#service_sizing_policy App#service_sizing_policy}
547
551
  */
548
552
  readonly serviceSizingPolicy?: AppServiceServiceSizingPolicy[] | cdktf.IResolvable;
549
553
  }
@@ -586,6 +590,11 @@ export declare class AppServiceOutputReference extends cdktf.ComplexObject {
586
590
  set processType(value: string);
587
591
  resetProcessType(): void;
588
592
  get processTypeInput(): string;
593
+ private _restartFreeScaling?;
594
+ get restartFreeScaling(): boolean | cdktf.IResolvable;
595
+ set restartFreeScaling(value: boolean | cdktf.IResolvable);
596
+ resetRestartFreeScaling(): void;
597
+ get restartFreeScalingInput(): any;
589
598
  private _simpleHealthCheck?;
590
599
  get simpleHealthCheck(): boolean | cdktf.IResolvable;
591
600
  set simpleHealthCheck(value: boolean | cdktf.IResolvable);
@@ -624,7 +633,7 @@ export declare class AppServiceList extends cdktf.ComplexList {
624
633
  get(index: number): AppServiceOutputReference;
625
634
  }
626
635
  /**
627
- * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app aptible_app}
636
+ * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app aptible_app}
628
637
  */
629
638
  export declare class App extends cdktf.TerraformResource {
630
639
  static readonly tfResourceType = "aptible_app";
@@ -632,12 +641,12 @@ export declare class App extends cdktf.TerraformResource {
632
641
  * Generates CDKTF code for importing a App resource upon running "cdktf plan <stack-name>"
633
642
  * @param scope The scope in which to define this construct
634
643
  * @param importToId The construct id used in the generated config for the App to import
635
- * @param importFromId The id of the existing App that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#import import section} in the documentation of this resource for the id to use
644
+ * @param importFromId The id of the existing App that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#import import section} in the documentation of this resource for the id to use
636
645
  * @param provider? Optional instance of the provider where the App to import is found
637
646
  */
638
647
  static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
639
648
  /**
640
- * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app aptible_app} Resource
649
+ * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app aptible_app} Resource
641
650
  *
642
651
  * @param scope The scope in which to define this construct
643
652
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
package/dist/app/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app
1
+ // https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app
2
2
  // generated from terraform resource schema
3
3
  import * as cdktf from 'cdktf';
4
4
  export function appServiceAutoscalingPolicyToTerraform(struct) {
@@ -1240,6 +1240,7 @@ export function appServiceToTerraform(struct) {
1240
1240
  container_profile: cdktf.stringToTerraform(struct.containerProfile),
1241
1241
  force_zero_downtime: cdktf.booleanToTerraform(struct.forceZeroDowntime),
1242
1242
  process_type: cdktf.stringToTerraform(struct.processType),
1243
+ restart_free_scaling: cdktf.booleanToTerraform(struct.restartFreeScaling),
1243
1244
  simple_health_check: cdktf.booleanToTerraform(struct.simpleHealthCheck),
1244
1245
  stop_timeout: cdktf.numberToTerraform(struct.stopTimeout),
1245
1246
  autoscaling_policy: cdktf.listMapper(appServiceAutoscalingPolicyToTerraform, true)(struct.autoscalingPolicy),
@@ -1284,6 +1285,12 @@ export function appServiceToHclTerraform(struct) {
1284
1285
  type: "simple",
1285
1286
  storageClassType: "string",
1286
1287
  },
1288
+ restart_free_scaling: {
1289
+ value: cdktf.booleanToHclTerraform(struct.restartFreeScaling),
1290
+ isBlock: false,
1291
+ type: "simple",
1292
+ storageClassType: "boolean",
1293
+ },
1287
1294
  simple_health_check: {
1288
1295
  value: cdktf.booleanToHclTerraform(struct.simpleHealthCheck),
1289
1296
  isBlock: false,
@@ -1350,6 +1357,10 @@ export class AppServiceOutputReference extends cdktf.ComplexObject {
1350
1357
  hasAnyValues = true;
1351
1358
  internalValueResult.processType = this._processType;
1352
1359
  }
1360
+ if (this._restartFreeScaling !== undefined) {
1361
+ hasAnyValues = true;
1362
+ internalValueResult.restartFreeScaling = this._restartFreeScaling;
1363
+ }
1353
1364
  if (this._simpleHealthCheck !== undefined) {
1354
1365
  hasAnyValues = true;
1355
1366
  internalValueResult.simpleHealthCheck = this._simpleHealthCheck;
@@ -1377,6 +1388,7 @@ export class AppServiceOutputReference extends cdktf.ComplexObject {
1377
1388
  this._containerProfile = undefined;
1378
1389
  this._forceZeroDowntime = undefined;
1379
1390
  this._processType = undefined;
1391
+ this._restartFreeScaling = undefined;
1380
1392
  this._simpleHealthCheck = undefined;
1381
1393
  this._stopTimeout = undefined;
1382
1394
  this._autoscalingPolicy.internalValue = undefined;
@@ -1394,6 +1406,7 @@ export class AppServiceOutputReference extends cdktf.ComplexObject {
1394
1406
  this._containerProfile = value.containerProfile;
1395
1407
  this._forceZeroDowntime = value.forceZeroDowntime;
1396
1408
  this._processType = value.processType;
1409
+ this._restartFreeScaling = value.restartFreeScaling;
1397
1410
  this._simpleHealthCheck = value.simpleHealthCheck;
1398
1411
  this._stopTimeout = value.stopTimeout;
1399
1412
  this._autoscalingPolicy.internalValue = value.autoscalingPolicy;
@@ -1475,6 +1488,21 @@ export class AppServiceOutputReference extends cdktf.ComplexObject {
1475
1488
  get processTypeInput() {
1476
1489
  return this._processType;
1477
1490
  }
1491
+ // restart_free_scaling - computed: false, optional: true, required: false
1492
+ _restartFreeScaling;
1493
+ get restartFreeScaling() {
1494
+ return this.getBooleanAttribute('restart_free_scaling');
1495
+ }
1496
+ set restartFreeScaling(value) {
1497
+ this._restartFreeScaling = value;
1498
+ }
1499
+ resetRestartFreeScaling() {
1500
+ this._restartFreeScaling = undefined;
1501
+ }
1502
+ // Temporarily expose input value. Use with caution.
1503
+ get restartFreeScalingInput() {
1504
+ return this._restartFreeScaling;
1505
+ }
1478
1506
  // simple_health_check - computed: false, optional: true, required: false
1479
1507
  _simpleHealthCheck;
1480
1508
  get simpleHealthCheck() {
@@ -1560,7 +1588,7 @@ export class AppServiceList extends cdktf.ComplexList {
1560
1588
  }
1561
1589
  }
1562
1590
  /**
1563
- * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app aptible_app}
1591
+ * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app aptible_app}
1564
1592
  */
1565
1593
  export class App extends cdktf.TerraformResource {
1566
1594
  // =================
@@ -1574,7 +1602,7 @@ export class App extends cdktf.TerraformResource {
1574
1602
  * Generates CDKTF code for importing a App resource upon running "cdktf plan <stack-name>"
1575
1603
  * @param scope The scope in which to define this construct
1576
1604
  * @param importToId The construct id used in the generated config for the App to import
1577
- * @param importFromId The id of the existing App that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app#import import section} in the documentation of this resource for the id to use
1605
+ * @param importFromId The id of the existing App that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app#import import section} in the documentation of this resource for the id to use
1578
1606
  * @param provider? Optional instance of the provider where the App to import is found
1579
1607
  */
1580
1608
  static generateConfigForImport(scope, importToId, importFromId, provider) {
@@ -1584,7 +1612,7 @@ export class App extends cdktf.TerraformResource {
1584
1612
  // INITIALIZER
1585
1613
  // ===========
1586
1614
  /**
1587
- * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/resources/app aptible_app} Resource
1615
+ * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/resources/app aptible_app} Resource
1588
1616
  *
1589
1617
  * @param scope The scope in which to define this construct
1590
1618
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -1595,8 +1623,8 @@ export class App extends cdktf.TerraformResource {
1595
1623
  terraformResourceType: 'aptible_app',
1596
1624
  terraformGeneratorMetadata: {
1597
1625
  providerName: 'aptible',
1598
- providerVersion: '0.9.18',
1599
- providerVersionConstraint: '0.9.18'
1626
+ providerVersion: '0.9.19',
1627
+ providerVersionConstraint: '0.9.19'
1600
1628
  },
1601
1629
  provider: config.provider,
1602
1630
  dependsOn: config.dependsOn,
@@ -2,11 +2,11 @@ import { Construct } from 'constructs';
2
2
  import * as cdktf from 'cdktf';
3
3
  export interface DataAptibleBackupRetentionPolicyConfig extends cdktf.TerraformMetaArguments {
4
4
  /**
5
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy#env_id DataAptibleBackupRetentionPolicy#env_id}
5
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy#env_id DataAptibleBackupRetentionPolicy#env_id}
6
6
  */
7
7
  readonly envId: number;
8
8
  /**
9
- * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy#id DataAptibleBackupRetentionPolicy#id}
9
+ * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy#id DataAptibleBackupRetentionPolicy#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.
@@ -14,7 +14,7 @@ export interface DataAptibleBackupRetentionPolicyConfig extends cdktf.TerraformM
14
14
  readonly id?: string;
15
15
  }
16
16
  /**
17
- * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy aptible_backup_retention_policy}
17
+ * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy aptible_backup_retention_policy}
18
18
  */
19
19
  export declare class DataAptibleBackupRetentionPolicy extends cdktf.TerraformDataSource {
20
20
  static readonly tfResourceType = "aptible_backup_retention_policy";
@@ -22,12 +22,12 @@ export declare class DataAptibleBackupRetentionPolicy extends cdktf.TerraformDat
22
22
  * Generates CDKTF code for importing a DataAptibleBackupRetentionPolicy resource upon running "cdktf plan <stack-name>"
23
23
  * @param scope The scope in which to define this construct
24
24
  * @param importToId The construct id used in the generated config for the DataAptibleBackupRetentionPolicy to import
25
- * @param importFromId The id of the existing DataAptibleBackupRetentionPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy#import import section} in the documentation of this resource for the id to use
25
+ * @param importFromId The id of the existing DataAptibleBackupRetentionPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy#import import section} in the documentation of this resource for the id to use
26
26
  * @param provider? Optional instance of the provider where the DataAptibleBackupRetentionPolicy to import is found
27
27
  */
28
28
  static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any;
29
29
  /**
30
- * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy aptible_backup_retention_policy} Data Source
30
+ * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy aptible_backup_retention_policy} Data Source
31
31
  *
32
32
  * @param scope The scope in which to define this construct
33
33
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -1,8 +1,8 @@
1
- // https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy
1
+ // https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy
2
2
  // generated from terraform resource schema
3
3
  import * as cdktf from 'cdktf';
4
4
  /**
5
- * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy aptible_backup_retention_policy}
5
+ * Represents a {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy aptible_backup_retention_policy}
6
6
  */
7
7
  export class DataAptibleBackupRetentionPolicy extends cdktf.TerraformDataSource {
8
8
  // =================
@@ -16,7 +16,7 @@ export class DataAptibleBackupRetentionPolicy extends cdktf.TerraformDataSource
16
16
  * Generates CDKTF code for importing a DataAptibleBackupRetentionPolicy resource upon running "cdktf plan <stack-name>"
17
17
  * @param scope The scope in which to define this construct
18
18
  * @param importToId The construct id used in the generated config for the DataAptibleBackupRetentionPolicy to import
19
- * @param importFromId The id of the existing DataAptibleBackupRetentionPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy#import import section} in the documentation of this resource for the id to use
19
+ * @param importFromId The id of the existing DataAptibleBackupRetentionPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy#import import section} in the documentation of this resource for the id to use
20
20
  * @param provider? Optional instance of the provider where the DataAptibleBackupRetentionPolicy to import is found
21
21
  */
22
22
  static generateConfigForImport(scope, importToId, importFromId, provider) {
@@ -26,7 +26,7 @@ export class DataAptibleBackupRetentionPolicy extends cdktf.TerraformDataSource
26
26
  // INITIALIZER
27
27
  // ===========
28
28
  /**
29
- * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.18/docs/data-sources/backup_retention_policy aptible_backup_retention_policy} Data Source
29
+ * Create a new {@link https://registry.terraform.io/providers/aptible/aptible/0.9.19/docs/data-sources/backup_retention_policy aptible_backup_retention_policy} Data Source
30
30
  *
31
31
  * @param scope The scope in which to define this construct
32
32
  * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
@@ -37,8 +37,8 @@ export class DataAptibleBackupRetentionPolicy extends cdktf.TerraformDataSource
37
37
  terraformResourceType: 'aptible_backup_retention_policy',
38
38
  terraformGeneratorMetadata: {
39
39
  providerName: 'aptible',
40
- providerVersion: '0.9.18',
41
- providerVersionConstraint: '0.9.18'
40
+ providerVersion: '0.9.19',
41
+ providerVersionConstraint: '0.9.19'
42
42
  },
43
43
  provider: config.provider,
44
44
  dependsOn: config.dependsOn,