@pulumi/aiven 6.52.0 → 6.53.0-alpha.1776831455
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/getOrganizationApplicationUser.d.ts +4 -0
- package/getOrganizationApplicationUser.js.map +1 -1
- package/organizationApplicationUser.d.ts +8 -0
- package/organizationApplicationUser.js +2 -0
- package/organizationApplicationUser.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +10 -2
- package/types/output.d.ts +20 -4
|
@@ -23,6 +23,10 @@ export interface GetOrganizationApplicationUserArgs {
|
|
|
23
23
|
* A collection of values returned by getOrganizationApplicationUser.
|
|
24
24
|
*/
|
|
25
25
|
export interface GetOrganizationApplicationUserResult {
|
|
26
|
+
/**
|
|
27
|
+
* Time this application user was created.
|
|
28
|
+
*/
|
|
29
|
+
readonly createTime: string;
|
|
26
30
|
/**
|
|
27
31
|
* User Email.
|
|
28
32
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOrganizationApplicationUser.js","sourceRoot":"","sources":["../getOrganizationApplicationUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wEAOC;
|
|
1
|
+
{"version":3,"file":"getOrganizationApplicationUser.js","sourceRoot":"","sources":["../getOrganizationApplicationUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wEAOC;AAqDD;;GAEG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAAiC;IAClI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2EAA2E,EAAE;QAC5G,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oFAOC"}
|
|
@@ -38,6 +38,10 @@ export declare class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
38
38
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
39
39
|
*/
|
|
40
40
|
static isInstance(obj: any): obj is OrganizationApplicationUser;
|
|
41
|
+
/**
|
|
42
|
+
* Time this application user was created.
|
|
43
|
+
*/
|
|
44
|
+
readonly createTime: pulumi.Output<string>;
|
|
41
45
|
/**
|
|
42
46
|
* User Email.
|
|
43
47
|
*/
|
|
@@ -74,6 +78,10 @@ export declare class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
74
78
|
* Input properties used for looking up and filtering OrganizationApplicationUser resources.
|
|
75
79
|
*/
|
|
76
80
|
export interface OrganizationApplicationUserState {
|
|
81
|
+
/**
|
|
82
|
+
* Time this application user was created.
|
|
83
|
+
*/
|
|
84
|
+
createTime?: pulumi.Input<string>;
|
|
77
85
|
/**
|
|
78
86
|
* User Email.
|
|
79
87
|
*/
|
|
@@ -54,6 +54,7 @@ class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
54
54
|
opts = opts || {};
|
|
55
55
|
if (opts.id) {
|
|
56
56
|
const state = argsOrState;
|
|
57
|
+
resourceInputs["createTime"] = state?.createTime;
|
|
57
58
|
resourceInputs["email"] = state?.email;
|
|
58
59
|
resourceInputs["isSuperAdmin"] = state?.isSuperAdmin;
|
|
59
60
|
resourceInputs["name"] = state?.name;
|
|
@@ -70,6 +71,7 @@ class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
70
71
|
resourceInputs["name"] = args?.name;
|
|
71
72
|
resourceInputs["organizationId"] = args?.organizationId;
|
|
72
73
|
resourceInputs["timeouts"] = args?.timeouts;
|
|
74
|
+
resourceInputs["createTime"] = undefined /*out*/;
|
|
73
75
|
resourceInputs["email"] = undefined /*out*/;
|
|
74
76
|
resourceInputs["userId"] = undefined /*out*/;
|
|
75
77
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizationApplicationUser.js","sourceRoot":"","sources":["../organizationApplicationUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;
|
|
1
|
+
{"version":3,"file":"organizationApplicationUser.js","sourceRoot":"","sources":["../organizationApplicationUser.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IAsCD,YAAY,IAAY,EAAE,WAAgF,EAAE,IAAmC;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2D,CAAC;YAC1E,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAA0D,CAAC;YACxE,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AA3FL,kEA4FC;AA9EG,gBAAgB;AACO,wCAAY,GAAG,qEAAqE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aiven",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.53.0-alpha.1776831455",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Aiven cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "aiven",
|
|
26
|
-
"version": "6.
|
|
26
|
+
"version": "6.53.0-alpha.1776831455"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -4439,6 +4439,14 @@ export interface KafkaTopicConfig {
|
|
|
4439
4439
|
* Specify the message format version the broker will use to append messages to the logs. The value should be a valid ApiVersion. Some examples are: 0.8.2, 0.9.0.0, 0.10.0, check ApiVersion for more details. By setting a particular message format version, the user is certifying that all the existing messages on disk are smaller or equal than the specified version. Setting this value incorrectly will cause consumers with older versions to break as they will receive messages with a format that they don't understand. Deprecated in Kafka 4.0+: this configuration is removed and any supplied value will be ignored; for services upgraded to 4.0+, the returned value may be 'None'. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.0`, `4.0-IV0`, `4.1` and `4.1-IV0`.
|
|
4440
4440
|
*/
|
|
4441
4441
|
messageFormatVersion?: pulumi.Input<string>;
|
|
4442
|
+
/**
|
|
4443
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps later than the broker's timestamp.
|
|
4444
|
+
*/
|
|
4445
|
+
messageTimestampAfterMaxMs?: pulumi.Input<number>;
|
|
4446
|
+
/**
|
|
4447
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps earlier than the broker's timestamp.
|
|
4448
|
+
*/
|
|
4449
|
+
messageTimestampBeforeMaxMs?: pulumi.Input<number>;
|
|
4442
4450
|
/**
|
|
4443
4451
|
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. This configuration is ignored if message.timestamp.type=LogAppendTime.
|
|
4444
4452
|
*/
|
|
@@ -4464,7 +4472,7 @@ export interface KafkaTopicConfig {
|
|
|
4464
4472
|
*/
|
|
4465
4473
|
preallocate?: pulumi.Input<boolean>;
|
|
4466
4474
|
/**
|
|
4467
|
-
* Indicates whether tiered storage should be enabled.
|
|
4475
|
+
* Indicates whether tiered storage should be enabled. This is only available for services with Tiered Storage feature enabled.
|
|
4468
4476
|
*/
|
|
4469
4477
|
remoteStorageEnable?: pulumi.Input<boolean>;
|
|
4470
4478
|
/**
|
|
@@ -4476,7 +4484,7 @@ export interface KafkaTopicConfig {
|
|
|
4476
4484
|
*/
|
|
4477
4485
|
retentionMs?: pulumi.Input<string>;
|
|
4478
4486
|
/**
|
|
4479
|
-
* This configuration controls the size
|
|
4487
|
+
* This configuration controls the segment file size for the log. Retention and cleaning is always done a file at a time so a larger segment size means fewer files but less granular control over retention. Setting this to a very low value has consequences, and the Aiven management plane ignores values less than 10 megabytes.
|
|
4480
4488
|
*/
|
|
4481
4489
|
segmentBytes?: pulumi.Input<string>;
|
|
4482
4490
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -4102,6 +4102,14 @@ export interface GetKafkaTopicConfig {
|
|
|
4102
4102
|
* Specify the message format version the broker will use to append messages to the logs. The value should be a valid ApiVersion. Some examples are: 0.8.2, 0.9.0.0, 0.10.0, check ApiVersion for more details. By setting a particular message format version, the user is certifying that all the existing messages on disk are smaller or equal than the specified version. Setting this value incorrectly will cause consumers with older versions to break as they will receive messages with a format that they don't understand. Deprecated in Kafka 4.0+: this configuration is removed and any supplied value will be ignored; for services upgraded to 4.0+, the returned value may be 'None'. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.0`, `4.0-IV0`, `4.1` and `4.1-IV0`.
|
|
4103
4103
|
*/
|
|
4104
4104
|
messageFormatVersion?: string;
|
|
4105
|
+
/**
|
|
4106
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps later than the broker's timestamp.
|
|
4107
|
+
*/
|
|
4108
|
+
messageTimestampAfterMaxMs?: number;
|
|
4109
|
+
/**
|
|
4110
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps earlier than the broker's timestamp.
|
|
4111
|
+
*/
|
|
4112
|
+
messageTimestampBeforeMaxMs?: number;
|
|
4105
4113
|
/**
|
|
4106
4114
|
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. This configuration is ignored if message.timestamp.type=LogAppendTime.
|
|
4107
4115
|
*/
|
|
@@ -4127,7 +4135,7 @@ export interface GetKafkaTopicConfig {
|
|
|
4127
4135
|
*/
|
|
4128
4136
|
preallocate?: boolean;
|
|
4129
4137
|
/**
|
|
4130
|
-
* Indicates whether tiered storage should be enabled.
|
|
4138
|
+
* Indicates whether tiered storage should be enabled. This is only available for services with Tiered Storage feature enabled.
|
|
4131
4139
|
*/
|
|
4132
4140
|
remoteStorageEnable?: boolean;
|
|
4133
4141
|
/**
|
|
@@ -4139,7 +4147,7 @@ export interface GetKafkaTopicConfig {
|
|
|
4139
4147
|
*/
|
|
4140
4148
|
retentionMs?: string;
|
|
4141
4149
|
/**
|
|
4142
|
-
* This configuration controls the size
|
|
4150
|
+
* This configuration controls the segment file size for the log. Retention and cleaning is always done a file at a time so a larger segment size means fewer files but less granular control over retention. Setting this to a very low value has consequences, and the Aiven management plane ignores values less than 10 megabytes.
|
|
4143
4151
|
*/
|
|
4144
4152
|
segmentBytes?: string;
|
|
4145
4153
|
/**
|
|
@@ -11097,6 +11105,14 @@ export interface KafkaTopicConfig {
|
|
|
11097
11105
|
* Specify the message format version the broker will use to append messages to the logs. The value should be a valid ApiVersion. Some examples are: 0.8.2, 0.9.0.0, 0.10.0, check ApiVersion for more details. By setting a particular message format version, the user is certifying that all the existing messages on disk are smaller or equal than the specified version. Setting this value incorrectly will cause consumers with older versions to break as they will receive messages with a format that they don't understand. Deprecated in Kafka 4.0+: this configuration is removed and any supplied value will be ignored; for services upgraded to 4.0+, the returned value may be 'None'. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0`, `3.9-IV1`, `4.0`, `4.0-IV0`, `4.1` and `4.1-IV0`.
|
|
11098
11106
|
*/
|
|
11099
11107
|
messageFormatVersion?: string;
|
|
11108
|
+
/**
|
|
11109
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps later than the broker's timestamp.
|
|
11110
|
+
*/
|
|
11111
|
+
messageTimestampAfterMaxMs?: number;
|
|
11112
|
+
/**
|
|
11113
|
+
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. Applies only for messages with timestamps earlier than the broker's timestamp.
|
|
11114
|
+
*/
|
|
11115
|
+
messageTimestampBeforeMaxMs?: number;
|
|
11100
11116
|
/**
|
|
11101
11117
|
* The maximum difference allowed between the timestamp when a broker receives a message and the timestamp specified in the message. If message.timestamp.type=CreateTime, a message will be rejected if the difference in timestamp exceeds this threshold. This configuration is ignored if message.timestamp.type=LogAppendTime.
|
|
11102
11118
|
*/
|
|
@@ -11122,7 +11138,7 @@ export interface KafkaTopicConfig {
|
|
|
11122
11138
|
*/
|
|
11123
11139
|
preallocate?: boolean;
|
|
11124
11140
|
/**
|
|
11125
|
-
* Indicates whether tiered storage should be enabled.
|
|
11141
|
+
* Indicates whether tiered storage should be enabled. This is only available for services with Tiered Storage feature enabled.
|
|
11126
11142
|
*/
|
|
11127
11143
|
remoteStorageEnable?: boolean;
|
|
11128
11144
|
/**
|
|
@@ -11134,7 +11150,7 @@ export interface KafkaTopicConfig {
|
|
|
11134
11150
|
*/
|
|
11135
11151
|
retentionMs?: string;
|
|
11136
11152
|
/**
|
|
11137
|
-
* This configuration controls the size
|
|
11153
|
+
* This configuration controls the segment file size for the log. Retention and cleaning is always done a file at a time so a larger segment size means fewer files but less granular control over retention. Setting this to a very low value has consequences, and the Aiven management plane ignores values less than 10 megabytes.
|
|
11138
11154
|
*/
|
|
11139
11155
|
segmentBytes?: string;
|
|
11140
11156
|
/**
|