@pulumi/aiven 6.9.0 → 6.10.0-alpha.1704358627
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/package.json +1 -1
- package/types/input.d.ts +12 -0
- package/types/output.d.ts +15 -0
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -1472,6 +1472,14 @@ export interface KafkaTopicConfig {
|
|
|
1472
1472
|
* index.interval.bytes value
|
|
1473
1473
|
*/
|
|
1474
1474
|
indexIntervalBytes?: pulumi.Input<string>;
|
|
1475
|
+
/**
|
|
1476
|
+
* local.retention.bytes value
|
|
1477
|
+
*/
|
|
1478
|
+
localRetentionBytes?: pulumi.Input<string>;
|
|
1479
|
+
/**
|
|
1480
|
+
* local.retention.ms value
|
|
1481
|
+
*/
|
|
1482
|
+
localRetentionMs?: pulumi.Input<string>;
|
|
1475
1483
|
/**
|
|
1476
1484
|
* max.compaction.lag.ms value
|
|
1477
1485
|
*/
|
|
@@ -1512,6 +1520,10 @@ export interface KafkaTopicConfig {
|
|
|
1512
1520
|
* preallocate value
|
|
1513
1521
|
*/
|
|
1514
1522
|
preallocate?: pulumi.Input<boolean>;
|
|
1523
|
+
/**
|
|
1524
|
+
* remote.storage.enable value
|
|
1525
|
+
*/
|
|
1526
|
+
remoteStorageEnable?: pulumi.Input<boolean>;
|
|
1515
1527
|
/**
|
|
1516
1528
|
* retention.bytes value
|
|
1517
1529
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -1230,6 +1230,8 @@ export interface GetKafkaTopicConfig {
|
|
|
1230
1230
|
flushMessages?: string;
|
|
1231
1231
|
flushMs?: string;
|
|
1232
1232
|
indexIntervalBytes?: string;
|
|
1233
|
+
localRetentionBytes?: string;
|
|
1234
|
+
localRetentionMs?: string;
|
|
1233
1235
|
maxCompactionLagMs?: string;
|
|
1234
1236
|
maxMessageBytes?: string;
|
|
1235
1237
|
messageDownconversionEnable?: boolean;
|
|
@@ -1240,6 +1242,7 @@ export interface GetKafkaTopicConfig {
|
|
|
1240
1242
|
minCompactionLagMs?: string;
|
|
1241
1243
|
minInsyncReplicas?: string;
|
|
1242
1244
|
preallocate?: boolean;
|
|
1245
|
+
remoteStorageEnable?: boolean;
|
|
1243
1246
|
retentionBytes?: string;
|
|
1244
1247
|
retentionMs?: string;
|
|
1245
1248
|
segmentBytes?: string;
|
|
@@ -3186,6 +3189,14 @@ export interface KafkaTopicConfig {
|
|
|
3186
3189
|
* index.interval.bytes value
|
|
3187
3190
|
*/
|
|
3188
3191
|
indexIntervalBytes?: string;
|
|
3192
|
+
/**
|
|
3193
|
+
* local.retention.bytes value
|
|
3194
|
+
*/
|
|
3195
|
+
localRetentionBytes?: string;
|
|
3196
|
+
/**
|
|
3197
|
+
* local.retention.ms value
|
|
3198
|
+
*/
|
|
3199
|
+
localRetentionMs?: string;
|
|
3189
3200
|
/**
|
|
3190
3201
|
* max.compaction.lag.ms value
|
|
3191
3202
|
*/
|
|
@@ -3226,6 +3237,10 @@ export interface KafkaTopicConfig {
|
|
|
3226
3237
|
* preallocate value
|
|
3227
3238
|
*/
|
|
3228
3239
|
preallocate?: boolean;
|
|
3240
|
+
/**
|
|
3241
|
+
* remote.storage.enable value
|
|
3242
|
+
*/
|
|
3243
|
+
remoteStorageEnable?: boolean;
|
|
3229
3244
|
/**
|
|
3230
3245
|
* retention.bytes value
|
|
3231
3246
|
*/
|