@pulumi/aiven 6.11.2 → 6.11.3
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/billingGroup.d.ts +46 -46
- package/billingGroup.js +1 -1
- package/getBillingGroup.d.ts +20 -20
- package/getBillingGroup.js +2 -2
- package/package.json +1 -1
- package/types/input.d.ts +6 -1
- package/types/output.d.ts +8 -1
package/billingGroup.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates and manages billing groups and assigns them to projects.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -41,65 +41,65 @@ export declare class BillingGroup extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
static isInstance(obj: any): obj is BillingGroup;
|
|
43
43
|
/**
|
|
44
|
-
* Account
|
|
44
|
+
* Account ID.
|
|
45
45
|
*
|
|
46
46
|
* @deprecated Use parent_id instead. This field will be removed in the next major release.
|
|
47
47
|
*/
|
|
48
48
|
readonly accountId: pulumi.Output<string | undefined>;
|
|
49
49
|
/**
|
|
50
|
-
* Address lines
|
|
50
|
+
* Address lines 1 and 2. For example, street, PO box, or building.
|
|
51
51
|
*/
|
|
52
52
|
readonly addressLines: pulumi.Output<string[] | undefined>;
|
|
53
53
|
/**
|
|
54
|
-
* Billing currency
|
|
54
|
+
* Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
|
|
55
55
|
*/
|
|
56
56
|
readonly billingCurrency: pulumi.Output<string | undefined>;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
|
|
59
59
|
*/
|
|
60
60
|
readonly billingEmails: pulumi.Output<string[] | undefined>;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
62
|
+
* Additional information to include on your invoice (for example, a reference number).
|
|
63
63
|
*/
|
|
64
64
|
readonly billingExtraText: pulumi.Output<string | undefined>;
|
|
65
65
|
/**
|
|
66
|
-
* Credit card
|
|
66
|
+
* Credit card ID.
|
|
67
67
|
*/
|
|
68
68
|
readonly cardId: pulumi.Output<string | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* City
|
|
70
|
+
* City, district, suburb, town, or village.
|
|
71
71
|
*/
|
|
72
72
|
readonly city: pulumi.Output<string | undefined>;
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* Your company name.
|
|
75
75
|
*/
|
|
76
76
|
readonly company: pulumi.Output<string | undefined>;
|
|
77
77
|
/**
|
|
78
|
-
* ID of the billing group to copy from
|
|
78
|
+
* ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
|
|
79
79
|
*/
|
|
80
80
|
readonly copyFromBillingGroup: pulumi.Output<string | undefined>;
|
|
81
81
|
/**
|
|
82
|
-
*
|
|
82
|
+
* Two-letter country code.
|
|
83
83
|
*/
|
|
84
84
|
readonly countryCode: pulumi.Output<string | undefined>;
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Name of the billing group.
|
|
87
87
|
*/
|
|
88
88
|
readonly name: pulumi.Output<string>;
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
91
91
|
*/
|
|
92
92
|
readonly parentId: pulumi.Output<string | undefined>;
|
|
93
93
|
/**
|
|
94
|
-
* State
|
|
94
|
+
* State or province.
|
|
95
95
|
*/
|
|
96
96
|
readonly state: pulumi.Output<string | undefined>;
|
|
97
97
|
/**
|
|
98
|
-
* VAT
|
|
98
|
+
* The VAT identification number for your company.
|
|
99
99
|
*/
|
|
100
100
|
readonly vatId: pulumi.Output<string | undefined>;
|
|
101
101
|
/**
|
|
102
|
-
* Zip
|
|
102
|
+
* Zip or postal code.
|
|
103
103
|
*/
|
|
104
104
|
readonly zipCode: pulumi.Output<string | undefined>;
|
|
105
105
|
/**
|
|
@@ -116,65 +116,65 @@ export declare class BillingGroup extends pulumi.CustomResource {
|
|
|
116
116
|
*/
|
|
117
117
|
export interface BillingGroupState {
|
|
118
118
|
/**
|
|
119
|
-
* Account
|
|
119
|
+
* Account ID.
|
|
120
120
|
*
|
|
121
121
|
* @deprecated Use parent_id instead. This field will be removed in the next major release.
|
|
122
122
|
*/
|
|
123
123
|
accountId?: pulumi.Input<string>;
|
|
124
124
|
/**
|
|
125
|
-
* Address lines
|
|
125
|
+
* Address lines 1 and 2. For example, street, PO box, or building.
|
|
126
126
|
*/
|
|
127
127
|
addressLines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
128
128
|
/**
|
|
129
|
-
* Billing currency
|
|
129
|
+
* Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
|
|
130
130
|
*/
|
|
131
131
|
billingCurrency?: pulumi.Input<string>;
|
|
132
132
|
/**
|
|
133
|
-
*
|
|
133
|
+
* Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
|
|
134
134
|
*/
|
|
135
135
|
billingEmails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136
136
|
/**
|
|
137
|
-
*
|
|
137
|
+
* Additional information to include on your invoice (for example, a reference number).
|
|
138
138
|
*/
|
|
139
139
|
billingExtraText?: pulumi.Input<string>;
|
|
140
140
|
/**
|
|
141
|
-
* Credit card
|
|
141
|
+
* Credit card ID.
|
|
142
142
|
*/
|
|
143
143
|
cardId?: pulumi.Input<string>;
|
|
144
144
|
/**
|
|
145
|
-
* City
|
|
145
|
+
* City, district, suburb, town, or village.
|
|
146
146
|
*/
|
|
147
147
|
city?: pulumi.Input<string>;
|
|
148
148
|
/**
|
|
149
|
-
*
|
|
149
|
+
* Your company name.
|
|
150
150
|
*/
|
|
151
151
|
company?: pulumi.Input<string>;
|
|
152
152
|
/**
|
|
153
|
-
* ID of the billing group to copy from
|
|
153
|
+
* ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
|
|
154
154
|
*/
|
|
155
155
|
copyFromBillingGroup?: pulumi.Input<string>;
|
|
156
156
|
/**
|
|
157
|
-
*
|
|
157
|
+
* Two-letter country code.
|
|
158
158
|
*/
|
|
159
159
|
countryCode?: pulumi.Input<string>;
|
|
160
160
|
/**
|
|
161
|
-
*
|
|
161
|
+
* Name of the billing group.
|
|
162
162
|
*/
|
|
163
163
|
name?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
165
|
-
*
|
|
165
|
+
* Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
166
166
|
*/
|
|
167
167
|
parentId?: pulumi.Input<string>;
|
|
168
168
|
/**
|
|
169
|
-
* State
|
|
169
|
+
* State or province.
|
|
170
170
|
*/
|
|
171
171
|
state?: pulumi.Input<string>;
|
|
172
172
|
/**
|
|
173
|
-
* VAT
|
|
173
|
+
* The VAT identification number for your company.
|
|
174
174
|
*/
|
|
175
175
|
vatId?: pulumi.Input<string>;
|
|
176
176
|
/**
|
|
177
|
-
* Zip
|
|
177
|
+
* Zip or postal code.
|
|
178
178
|
*/
|
|
179
179
|
zipCode?: pulumi.Input<string>;
|
|
180
180
|
}
|
|
@@ -183,65 +183,65 @@ export interface BillingGroupState {
|
|
|
183
183
|
*/
|
|
184
184
|
export interface BillingGroupArgs {
|
|
185
185
|
/**
|
|
186
|
-
* Account
|
|
186
|
+
* Account ID.
|
|
187
187
|
*
|
|
188
188
|
* @deprecated Use parent_id instead. This field will be removed in the next major release.
|
|
189
189
|
*/
|
|
190
190
|
accountId?: pulumi.Input<string>;
|
|
191
191
|
/**
|
|
192
|
-
* Address lines
|
|
192
|
+
* Address lines 1 and 2. For example, street, PO box, or building.
|
|
193
193
|
*/
|
|
194
194
|
addressLines?: pulumi.Input<pulumi.Input<string>[]>;
|
|
195
195
|
/**
|
|
196
|
-
* Billing currency
|
|
196
|
+
* Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
|
|
197
197
|
*/
|
|
198
198
|
billingCurrency?: pulumi.Input<string>;
|
|
199
199
|
/**
|
|
200
|
-
*
|
|
200
|
+
* Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
|
|
201
201
|
*/
|
|
202
202
|
billingEmails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
203
203
|
/**
|
|
204
|
-
*
|
|
204
|
+
* Additional information to include on your invoice (for example, a reference number).
|
|
205
205
|
*/
|
|
206
206
|
billingExtraText?: pulumi.Input<string>;
|
|
207
207
|
/**
|
|
208
|
-
* Credit card
|
|
208
|
+
* Credit card ID.
|
|
209
209
|
*/
|
|
210
210
|
cardId?: pulumi.Input<string>;
|
|
211
211
|
/**
|
|
212
|
-
* City
|
|
212
|
+
* City, district, suburb, town, or village.
|
|
213
213
|
*/
|
|
214
214
|
city?: pulumi.Input<string>;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Your company name.
|
|
217
217
|
*/
|
|
218
218
|
company?: pulumi.Input<string>;
|
|
219
219
|
/**
|
|
220
|
-
* ID of the billing group to copy from
|
|
220
|
+
* ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
|
|
221
221
|
*/
|
|
222
222
|
copyFromBillingGroup?: pulumi.Input<string>;
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
224
|
+
* Two-letter country code.
|
|
225
225
|
*/
|
|
226
226
|
countryCode?: pulumi.Input<string>;
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* Name of the billing group.
|
|
229
229
|
*/
|
|
230
230
|
name?: pulumi.Input<string>;
|
|
231
231
|
/**
|
|
232
|
-
*
|
|
232
|
+
* Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
233
233
|
*/
|
|
234
234
|
parentId?: pulumi.Input<string>;
|
|
235
235
|
/**
|
|
236
|
-
* State
|
|
236
|
+
* State or province.
|
|
237
237
|
*/
|
|
238
238
|
state?: pulumi.Input<string>;
|
|
239
239
|
/**
|
|
240
|
-
* VAT
|
|
240
|
+
* The VAT identification number for your company.
|
|
241
241
|
*/
|
|
242
242
|
vatId?: pulumi.Input<string>;
|
|
243
243
|
/**
|
|
244
|
-
* Zip
|
|
244
|
+
* Zip or postal code.
|
|
245
245
|
*/
|
|
246
246
|
zipCode?: pulumi.Input<string>;
|
|
247
247
|
}
|
package/billingGroup.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.BillingGroup = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Creates and manages billing groups and assigns them to projects.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
package/getBillingGroup.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Provides information about an existing billing group.
|
|
4
4
|
*/
|
|
5
5
|
export declare function getBillingGroup(args: GetBillingGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetBillingGroupResult>;
|
|
6
6
|
/**
|
|
@@ -8,7 +8,7 @@ export declare function getBillingGroup(args: GetBillingGroupArgs, opts?: pulumi
|
|
|
8
8
|
*/
|
|
9
9
|
export interface GetBillingGroupArgs {
|
|
10
10
|
/**
|
|
11
|
-
* The
|
|
11
|
+
* The ID of the billing group. To set up proper dependencies please refer to this variable as a reference.
|
|
12
12
|
*/
|
|
13
13
|
billingGroupId: string;
|
|
14
14
|
}
|
|
@@ -17,47 +17,47 @@ export interface GetBillingGroupArgs {
|
|
|
17
17
|
*/
|
|
18
18
|
export interface GetBillingGroupResult {
|
|
19
19
|
/**
|
|
20
|
-
* Account
|
|
20
|
+
* Account ID.
|
|
21
21
|
*/
|
|
22
22
|
readonly accountId: string;
|
|
23
23
|
/**
|
|
24
|
-
* Address lines
|
|
24
|
+
* Address lines 1 and 2. For example, street, PO box, or building.
|
|
25
25
|
*/
|
|
26
26
|
readonly addressLines: string[];
|
|
27
27
|
/**
|
|
28
|
-
* Billing currency
|
|
28
|
+
* Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
|
|
29
29
|
*/
|
|
30
30
|
readonly billingCurrency: string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
|
|
33
33
|
*/
|
|
34
34
|
readonly billingEmails: string[];
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Additional information to include on your invoice (for example, a reference number).
|
|
37
37
|
*/
|
|
38
38
|
readonly billingExtraText: string;
|
|
39
39
|
/**
|
|
40
|
-
* The
|
|
40
|
+
* The ID of the billing group. To set up proper dependencies please refer to this variable as a reference.
|
|
41
41
|
*/
|
|
42
42
|
readonly billingGroupId: string;
|
|
43
43
|
/**
|
|
44
|
-
* Credit card
|
|
44
|
+
* Credit card ID.
|
|
45
45
|
*/
|
|
46
46
|
readonly cardId: string;
|
|
47
47
|
/**
|
|
48
|
-
* City
|
|
48
|
+
* City, district, suburb, town, or village.
|
|
49
49
|
*/
|
|
50
50
|
readonly city: string;
|
|
51
51
|
/**
|
|
52
|
-
*
|
|
52
|
+
* Your company name.
|
|
53
53
|
*/
|
|
54
54
|
readonly company: string;
|
|
55
55
|
/**
|
|
56
|
-
* ID of the billing group to copy from
|
|
56
|
+
* ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
|
|
57
57
|
*/
|
|
58
58
|
readonly copyFromBillingGroup: string;
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Two-letter country code.
|
|
61
61
|
*/
|
|
62
62
|
readonly countryCode: string;
|
|
63
63
|
/**
|
|
@@ -65,28 +65,28 @@ export interface GetBillingGroupResult {
|
|
|
65
65
|
*/
|
|
66
66
|
readonly id: string;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* Name of the billing group.
|
|
69
69
|
*/
|
|
70
70
|
readonly name: string;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Link a billing group to an existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
73
73
|
*/
|
|
74
74
|
readonly parentId: string;
|
|
75
75
|
/**
|
|
76
|
-
* State
|
|
76
|
+
* State or province.
|
|
77
77
|
*/
|
|
78
78
|
readonly state: string;
|
|
79
79
|
/**
|
|
80
|
-
* VAT
|
|
80
|
+
* The VAT identification number for your company.
|
|
81
81
|
*/
|
|
82
82
|
readonly vatId: string;
|
|
83
83
|
/**
|
|
84
|
-
* Zip
|
|
84
|
+
* Zip or postal code.
|
|
85
85
|
*/
|
|
86
86
|
readonly zipCode: string;
|
|
87
87
|
}
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
89
|
+
* Provides information about an existing billing group.
|
|
90
90
|
*/
|
|
91
91
|
export declare function getBillingGroupOutput(args: GetBillingGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetBillingGroupResult>;
|
|
92
92
|
/**
|
|
@@ -94,7 +94,7 @@ export declare function getBillingGroupOutput(args: GetBillingGroupOutputArgs, o
|
|
|
94
94
|
*/
|
|
95
95
|
export interface GetBillingGroupOutputArgs {
|
|
96
96
|
/**
|
|
97
|
-
* The
|
|
97
|
+
* The ID of the billing group. To set up proper dependencies please refer to this variable as a reference.
|
|
98
98
|
*/
|
|
99
99
|
billingGroupId: pulumi.Input<string>;
|
|
100
100
|
}
|
package/getBillingGroup.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getBillingGroupOutput = exports.getBillingGroup = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Provides information about an existing billing group.
|
|
10
10
|
*/
|
|
11
11
|
function getBillingGroup(args, opts) {
|
|
12
12
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -16,7 +16,7 @@ function getBillingGroup(args, opts) {
|
|
|
16
16
|
}
|
|
17
17
|
exports.getBillingGroup = getBillingGroup;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Provides information about an existing billing group.
|
|
20
20
|
*/
|
|
21
21
|
function getBillingGroupOutput(args, opts) {
|
|
22
22
|
return pulumi.output(args).apply((a) => getBillingGroup(a, opts));
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ export interface CassandraCassandraUserConfig {
|
|
|
42
42
|
*/
|
|
43
43
|
cassandra?: pulumi.Input<inputs.CassandraCassandraUserConfigCassandra>;
|
|
44
44
|
/**
|
|
45
|
-
* Cassandra
|
|
45
|
+
* Cassandra version.
|
|
46
46
|
*/
|
|
47
47
|
cassandraVersion?: pulumi.Input<string>;
|
|
48
48
|
/**
|
|
@@ -1247,6 +1247,10 @@ export interface KafkaKafkaUserConfigKafkaRestConfig {
|
|
|
1247
1247
|
* The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
1248
1248
|
*/
|
|
1249
1249
|
consumerRequestTimeoutMs?: pulumi.Input<number>;
|
|
1250
|
+
/**
|
|
1251
|
+
* Name strategy to use when selecting subject for storing schemas. The default value is `topicName`.
|
|
1252
|
+
*/
|
|
1253
|
+
nameStrategy?: pulumi.Input<string>;
|
|
1250
1254
|
/**
|
|
1251
1255
|
* If true, validate that given schema is registered under expected subject name by the used name strategy when producing messages. The default value is `true`.
|
|
1252
1256
|
*/
|
|
@@ -3001,6 +3005,7 @@ export interface RedisRedisUserConfig {
|
|
|
3001
3005
|
redisPubsubClientOutputBufferLimit?: pulumi.Input<number>;
|
|
3002
3006
|
redisSsl?: pulumi.Input<boolean>;
|
|
3003
3007
|
redisTimeout?: pulumi.Input<number>;
|
|
3008
|
+
redisVersion?: pulumi.Input<string>;
|
|
3004
3009
|
serviceLog?: pulumi.Input<boolean>;
|
|
3005
3010
|
serviceToForkFrom?: pulumi.Input<string>;
|
|
3006
3011
|
staticIps?: pulumi.Input<boolean>;
|
package/types/output.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface CassandraCassandraUserConfig {
|
|
|
41
41
|
*/
|
|
42
42
|
cassandra?: outputs.CassandraCassandraUserConfigCassandra;
|
|
43
43
|
/**
|
|
44
|
-
* Cassandra
|
|
44
|
+
* Cassandra version.
|
|
45
45
|
*/
|
|
46
46
|
cassandraVersion?: string;
|
|
47
47
|
/**
|
|
@@ -1122,6 +1122,7 @@ export interface GetKafkaKafkaUserConfigKafkaRestConfig {
|
|
|
1122
1122
|
consumerEnableAutoCommit?: boolean;
|
|
1123
1123
|
consumerRequestMaxBytes?: number;
|
|
1124
1124
|
consumerRequestTimeoutMs?: number;
|
|
1125
|
+
nameStrategy?: string;
|
|
1125
1126
|
nameStrategyValidation?: boolean;
|
|
1126
1127
|
producerAcks?: string;
|
|
1127
1128
|
producerCompressionType?: string;
|
|
@@ -1929,6 +1930,7 @@ export interface GetRedisRedisUserConfig {
|
|
|
1929
1930
|
redisPubsubClientOutputBufferLimit?: number;
|
|
1930
1931
|
redisSsl?: boolean;
|
|
1931
1932
|
redisTimeout?: number;
|
|
1933
|
+
redisVersion?: string;
|
|
1932
1934
|
serviceLog?: boolean;
|
|
1933
1935
|
serviceToForkFrom?: string;
|
|
1934
1936
|
staticIps?: boolean;
|
|
@@ -2970,6 +2972,10 @@ export interface KafkaKafkaUserConfigKafkaRestConfig {
|
|
|
2970
2972
|
* The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. The default value is `1000`.
|
|
2971
2973
|
*/
|
|
2972
2974
|
consumerRequestTimeoutMs?: number;
|
|
2975
|
+
/**
|
|
2976
|
+
* Name strategy to use when selecting subject for storing schemas. The default value is `topicName`.
|
|
2977
|
+
*/
|
|
2978
|
+
nameStrategy?: string;
|
|
2973
2979
|
/**
|
|
2974
2980
|
* If true, validate that given schema is registered under expected subject name by the used name strategy when producing messages. The default value is `true`.
|
|
2975
2981
|
*/
|
|
@@ -4724,6 +4730,7 @@ export interface RedisRedisUserConfig {
|
|
|
4724
4730
|
redisPubsubClientOutputBufferLimit?: number;
|
|
4725
4731
|
redisSsl?: boolean;
|
|
4726
4732
|
redisTimeout?: number;
|
|
4733
|
+
redisVersion?: string;
|
|
4727
4734
|
serviceLog?: boolean;
|
|
4728
4735
|
serviceToForkFrom?: string;
|
|
4729
4736
|
staticIps?: boolean;
|