pulumi-aiven 6.11.1__py3-none-any.whl → 6.11.3__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-aiven might be problematic. Click here for more details.

pulumi_aiven/_inputs.py CHANGED
@@ -352,7 +352,7 @@ class CassandraCassandraUserConfigArgs:
352
352
  :param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
353
353
  :param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
354
354
  :param pulumi.Input['CassandraCassandraUserConfigCassandraArgs'] cassandra: cassandra configuration values.
355
- :param pulumi.Input[str] cassandra_version: Cassandra major version.
355
+ :param pulumi.Input[str] cassandra_version: Cassandra version.
356
356
  :param pulumi.Input[Sequence[pulumi.Input['CassandraCassandraUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
357
357
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
358
358
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
@@ -453,7 +453,7 @@ class CassandraCassandraUserConfigArgs:
453
453
  @pulumi.getter(name="cassandraVersion")
454
454
  def cassandra_version(self) -> Optional[pulumi.Input[str]]:
455
455
  """
456
- Cassandra major version.
456
+ Cassandra version.
457
457
  """
458
458
  return pulumi.get(self, "cassandra_version")
459
459
 
@@ -6634,6 +6634,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
6634
6634
  consumer_enable_auto_commit: Optional[pulumi.Input[bool]] = None,
6635
6635
  consumer_request_max_bytes: Optional[pulumi.Input[int]] = None,
6636
6636
  consumer_request_timeout_ms: Optional[pulumi.Input[int]] = None,
6637
+ name_strategy: Optional[pulumi.Input[str]] = None,
6637
6638
  name_strategy_validation: Optional[pulumi.Input[bool]] = None,
6638
6639
  producer_acks: Optional[pulumi.Input[str]] = None,
6639
6640
  producer_compression_type: Optional[pulumi.Input[str]] = None,
@@ -6644,6 +6645,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
6644
6645
  :param pulumi.Input[bool] consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. The default value is `true`.
6645
6646
  :param pulumi.Input[int] consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. The default value is `67108864`.
6646
6647
  :param pulumi.Input[int] consumer_request_timeout_ms: 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`.
6648
+ :param pulumi.Input[str] name_strategy: Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
6647
6649
  :param pulumi.Input[bool] name_strategy_validation: 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`.
6648
6650
  :param pulumi.Input[str] producer_acks: The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
6649
6651
  :param pulumi.Input[str] producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
@@ -6657,6 +6659,8 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
6657
6659
  pulumi.set(__self__, "consumer_request_max_bytes", consumer_request_max_bytes)
6658
6660
  if consumer_request_timeout_ms is not None:
6659
6661
  pulumi.set(__self__, "consumer_request_timeout_ms", consumer_request_timeout_ms)
6662
+ if name_strategy is not None:
6663
+ pulumi.set(__self__, "name_strategy", name_strategy)
6660
6664
  if name_strategy_validation is not None:
6661
6665
  pulumi.set(__self__, "name_strategy_validation", name_strategy_validation)
6662
6666
  if producer_acks is not None:
@@ -6706,6 +6710,18 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
6706
6710
  def consumer_request_timeout_ms(self, value: Optional[pulumi.Input[int]]):
6707
6711
  pulumi.set(self, "consumer_request_timeout_ms", value)
6708
6712
 
6713
+ @property
6714
+ @pulumi.getter(name="nameStrategy")
6715
+ def name_strategy(self) -> Optional[pulumi.Input[str]]:
6716
+ """
6717
+ Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
6718
+ """
6719
+ return pulumi.get(self, "name_strategy")
6720
+
6721
+ @name_strategy.setter
6722
+ def name_strategy(self, value: Optional[pulumi.Input[str]]):
6723
+ pulumi.set(self, "name_strategy", value)
6724
+
6709
6725
  @property
6710
6726
  @pulumi.getter(name="nameStrategyValidation")
6711
6727
  def name_strategy_validation(self) -> Optional[pulumi.Input[bool]]:
@@ -7752,8 +7768,8 @@ class KafkaTopicConfigArgs:
7752
7768
  :param pulumi.Input[str] flush_messages: flush.messages value
7753
7769
  :param pulumi.Input[str] flush_ms: flush.ms value
7754
7770
  :param pulumi.Input[str] index_interval_bytes: index.interval.bytes value
7755
- :param pulumi.Input[str] local_retention_bytes: local.retention.bytes value. This field is temporarily disabled.
7756
- :param pulumi.Input[str] local_retention_ms: local.retention.ms value. This field is temporarily disabled.
7771
+ :param pulumi.Input[str] local_retention_bytes: local.retention.bytes value
7772
+ :param pulumi.Input[str] local_retention_ms: local.retention.ms value
7757
7773
  :param pulumi.Input[str] max_compaction_lag_ms: max.compaction.lag.ms value
7758
7774
  :param pulumi.Input[str] max_message_bytes: max.message.bytes value
7759
7775
  :param pulumi.Input[bool] message_downconversion_enable: message.downconversion.enable value
@@ -7919,7 +7935,7 @@ class KafkaTopicConfigArgs:
7919
7935
  @pulumi.getter(name="localRetentionBytes")
7920
7936
  def local_retention_bytes(self) -> Optional[pulumi.Input[str]]:
7921
7937
  """
7922
- local.retention.bytes value. This field is temporarily disabled.
7938
+ local.retention.bytes value
7923
7939
  """
7924
7940
  return pulumi.get(self, "local_retention_bytes")
7925
7941
 
@@ -7931,7 +7947,7 @@ class KafkaTopicConfigArgs:
7931
7947
  @pulumi.getter(name="localRetentionMs")
7932
7948
  def local_retention_ms(self) -> Optional[pulumi.Input[str]]:
7933
7949
  """
7934
- local.retention.ms value. This field is temporarily disabled.
7950
+ local.retention.ms value
7935
7951
  """
7936
7952
  return pulumi.get(self, "local_retention_ms")
7937
7953
 
@@ -15203,6 +15219,7 @@ class RedisRedisUserConfigArgs:
15203
15219
  redis_pubsub_client_output_buffer_limit: Optional[pulumi.Input[int]] = None,
15204
15220
  redis_ssl: Optional[pulumi.Input[bool]] = None,
15205
15221
  redis_timeout: Optional[pulumi.Input[int]] = None,
15222
+ redis_version: Optional[pulumi.Input[str]] = None,
15206
15223
  service_log: Optional[pulumi.Input[bool]] = None,
15207
15224
  service_to_fork_from: Optional[pulumi.Input[str]] = None,
15208
15225
  static_ips: Optional[pulumi.Input[bool]] = None):
@@ -15251,6 +15268,8 @@ class RedisRedisUserConfigArgs:
15251
15268
  pulumi.set(__self__, "redis_ssl", redis_ssl)
15252
15269
  if redis_timeout is not None:
15253
15270
  pulumi.set(__self__, "redis_timeout", redis_timeout)
15271
+ if redis_version is not None:
15272
+ pulumi.set(__self__, "redis_version", redis_version)
15254
15273
  if service_log is not None:
15255
15274
  pulumi.set(__self__, "service_log", service_log)
15256
15275
  if service_to_fork_from is not None:
@@ -15450,6 +15469,15 @@ class RedisRedisUserConfigArgs:
15450
15469
  def redis_timeout(self, value: Optional[pulumi.Input[int]]):
15451
15470
  pulumi.set(self, "redis_timeout", value)
15452
15471
 
15472
+ @property
15473
+ @pulumi.getter(name="redisVersion")
15474
+ def redis_version(self) -> Optional[pulumi.Input[str]]:
15475
+ return pulumi.get(self, "redis_version")
15476
+
15477
+ @redis_version.setter
15478
+ def redis_version(self, value: Optional[pulumi.Input[str]]):
15479
+ pulumi.set(self, "redis_version", value)
15480
+
15453
15481
  @property
15454
15482
  @pulumi.getter(name="serviceLog")
15455
15483
  def service_log(self) -> Optional[pulumi.Input[bool]]:
@@ -31,21 +31,21 @@ class BillingGroupArgs:
31
31
  zip_code: Optional[pulumi.Input[str]] = None):
32
32
  """
33
33
  The set of arguments for constructing a BillingGroup resource.
34
- :param pulumi.Input[str] account_id: Account id
35
- :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines
36
- :param pulumi.Input[str] billing_currency: Billing currency
37
- :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Billing contact emails
38
- :param pulumi.Input[str] billing_extra_text: Billing extra text
39
- :param pulumi.Input[str] card_id: Credit card id
40
- :param pulumi.Input[str] city: City
41
- :param pulumi.Input[str] company: Company name
42
- :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy from
43
- :param pulumi.Input[str] country_code: Country code
44
- :param pulumi.Input[str] name: Billing Group name
45
- :param pulumi.Input[str] parent_id: An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
46
- :param pulumi.Input[str] state: State
47
- :param pulumi.Input[str] vat_id: VAT id
48
- :param pulumi.Input[str] zip_code: Zip Code
34
+ :param pulumi.Input[str] account_id: Account ID.
35
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines 1 and 2. For example, street, PO box, or building.
36
+ :param pulumi.Input[str] billing_currency: Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
37
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
38
+ :param pulumi.Input[str] billing_extra_text: Additional information to include on your invoice (for example, a reference number).
39
+ :param pulumi.Input[str] card_id: Credit card ID.
40
+ :param pulumi.Input[str] city: City, district, suburb, town, or village.
41
+ :param pulumi.Input[str] company: Your company name.
42
+ :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
43
+ :param pulumi.Input[str] country_code: Two-letter country code.
44
+ :param pulumi.Input[str] name: Name of the billing group.
45
+ :param pulumi.Input[str] parent_id: 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.
46
+ :param pulumi.Input[str] state: State or province.
47
+ :param pulumi.Input[str] vat_id: The VAT identification number for your company.
48
+ :param pulumi.Input[str] zip_code: Zip or postal code.
49
49
  """
50
50
  if account_id is not None:
51
51
  warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
@@ -85,7 +85,7 @@ class BillingGroupArgs:
85
85
  @pulumi.getter(name="accountId")
86
86
  def account_id(self) -> Optional[pulumi.Input[str]]:
87
87
  """
88
- Account id
88
+ Account ID.
89
89
  """
90
90
  warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
91
91
  pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
@@ -100,7 +100,7 @@ class BillingGroupArgs:
100
100
  @pulumi.getter(name="addressLines")
101
101
  def address_lines(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
102
102
  """
103
- Address lines
103
+ Address lines 1 and 2. For example, street, PO box, or building.
104
104
  """
105
105
  return pulumi.get(self, "address_lines")
106
106
 
@@ -112,7 +112,7 @@ class BillingGroupArgs:
112
112
  @pulumi.getter(name="billingCurrency")
113
113
  def billing_currency(self) -> Optional[pulumi.Input[str]]:
114
114
  """
115
- Billing currency
115
+ Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
116
116
  """
117
117
  return pulumi.get(self, "billing_currency")
118
118
 
@@ -124,7 +124,7 @@ class BillingGroupArgs:
124
124
  @pulumi.getter(name="billingEmails")
125
125
  def billing_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
126
126
  """
127
- Billing contact emails
127
+ Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
128
128
  """
129
129
  return pulumi.get(self, "billing_emails")
130
130
 
@@ -136,7 +136,7 @@ class BillingGroupArgs:
136
136
  @pulumi.getter(name="billingExtraText")
137
137
  def billing_extra_text(self) -> Optional[pulumi.Input[str]]:
138
138
  """
139
- Billing extra text
139
+ Additional information to include on your invoice (for example, a reference number).
140
140
  """
141
141
  return pulumi.get(self, "billing_extra_text")
142
142
 
@@ -148,7 +148,7 @@ class BillingGroupArgs:
148
148
  @pulumi.getter(name="cardId")
149
149
  def card_id(self) -> Optional[pulumi.Input[str]]:
150
150
  """
151
- Credit card id
151
+ Credit card ID.
152
152
  """
153
153
  return pulumi.get(self, "card_id")
154
154
 
@@ -160,7 +160,7 @@ class BillingGroupArgs:
160
160
  @pulumi.getter
161
161
  def city(self) -> Optional[pulumi.Input[str]]:
162
162
  """
163
- City
163
+ City, district, suburb, town, or village.
164
164
  """
165
165
  return pulumi.get(self, "city")
166
166
 
@@ -172,7 +172,7 @@ class BillingGroupArgs:
172
172
  @pulumi.getter
173
173
  def company(self) -> Optional[pulumi.Input[str]]:
174
174
  """
175
- Company name
175
+ Your company name.
176
176
  """
177
177
  return pulumi.get(self, "company")
178
178
 
@@ -184,7 +184,7 @@ class BillingGroupArgs:
184
184
  @pulumi.getter(name="copyFromBillingGroup")
185
185
  def copy_from_billing_group(self) -> Optional[pulumi.Input[str]]:
186
186
  """
187
- ID of the billing group to copy from
187
+ ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
188
188
  """
189
189
  return pulumi.get(self, "copy_from_billing_group")
190
190
 
@@ -196,7 +196,7 @@ class BillingGroupArgs:
196
196
  @pulumi.getter(name="countryCode")
197
197
  def country_code(self) -> Optional[pulumi.Input[str]]:
198
198
  """
199
- Country code
199
+ Two-letter country code.
200
200
  """
201
201
  return pulumi.get(self, "country_code")
202
202
 
@@ -208,7 +208,7 @@ class BillingGroupArgs:
208
208
  @pulumi.getter
209
209
  def name(self) -> Optional[pulumi.Input[str]]:
210
210
  """
211
- Billing Group name
211
+ Name of the billing group.
212
212
  """
213
213
  return pulumi.get(self, "name")
214
214
 
@@ -220,7 +220,7 @@ class BillingGroupArgs:
220
220
  @pulumi.getter(name="parentId")
221
221
  def parent_id(self) -> Optional[pulumi.Input[str]]:
222
222
  """
223
- An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
223
+ 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.
224
224
  """
225
225
  return pulumi.get(self, "parent_id")
226
226
 
@@ -232,7 +232,7 @@ class BillingGroupArgs:
232
232
  @pulumi.getter
233
233
  def state(self) -> Optional[pulumi.Input[str]]:
234
234
  """
235
- State
235
+ State or province.
236
236
  """
237
237
  return pulumi.get(self, "state")
238
238
 
@@ -244,7 +244,7 @@ class BillingGroupArgs:
244
244
  @pulumi.getter(name="vatId")
245
245
  def vat_id(self) -> Optional[pulumi.Input[str]]:
246
246
  """
247
- VAT id
247
+ The VAT identification number for your company.
248
248
  """
249
249
  return pulumi.get(self, "vat_id")
250
250
 
@@ -256,7 +256,7 @@ class BillingGroupArgs:
256
256
  @pulumi.getter(name="zipCode")
257
257
  def zip_code(self) -> Optional[pulumi.Input[str]]:
258
258
  """
259
- Zip Code
259
+ Zip or postal code.
260
260
  """
261
261
  return pulumi.get(self, "zip_code")
262
262
 
@@ -285,21 +285,21 @@ class _BillingGroupState:
285
285
  zip_code: Optional[pulumi.Input[str]] = None):
286
286
  """
287
287
  Input properties used for looking up and filtering BillingGroup resources.
288
- :param pulumi.Input[str] account_id: Account id
289
- :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines
290
- :param pulumi.Input[str] billing_currency: Billing currency
291
- :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Billing contact emails
292
- :param pulumi.Input[str] billing_extra_text: Billing extra text
293
- :param pulumi.Input[str] card_id: Credit card id
294
- :param pulumi.Input[str] city: City
295
- :param pulumi.Input[str] company: Company name
296
- :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy from
297
- :param pulumi.Input[str] country_code: Country code
298
- :param pulumi.Input[str] name: Billing Group name
299
- :param pulumi.Input[str] parent_id: An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
300
- :param pulumi.Input[str] state: State
301
- :param pulumi.Input[str] vat_id: VAT id
302
- :param pulumi.Input[str] zip_code: Zip Code
288
+ :param pulumi.Input[str] account_id: Account ID.
289
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines 1 and 2. For example, street, PO box, or building.
290
+ :param pulumi.Input[str] billing_currency: Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
291
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
292
+ :param pulumi.Input[str] billing_extra_text: Additional information to include on your invoice (for example, a reference number).
293
+ :param pulumi.Input[str] card_id: Credit card ID.
294
+ :param pulumi.Input[str] city: City, district, suburb, town, or village.
295
+ :param pulumi.Input[str] company: Your company name.
296
+ :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
297
+ :param pulumi.Input[str] country_code: Two-letter country code.
298
+ :param pulumi.Input[str] name: Name of the billing group.
299
+ :param pulumi.Input[str] parent_id: 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.
300
+ :param pulumi.Input[str] state: State or province.
301
+ :param pulumi.Input[str] vat_id: The VAT identification number for your company.
302
+ :param pulumi.Input[str] zip_code: Zip or postal code.
303
303
  """
304
304
  if account_id is not None:
305
305
  warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
@@ -339,7 +339,7 @@ class _BillingGroupState:
339
339
  @pulumi.getter(name="accountId")
340
340
  def account_id(self) -> Optional[pulumi.Input[str]]:
341
341
  """
342
- Account id
342
+ Account ID.
343
343
  """
344
344
  warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
345
345
  pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
@@ -354,7 +354,7 @@ class _BillingGroupState:
354
354
  @pulumi.getter(name="addressLines")
355
355
  def address_lines(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
356
356
  """
357
- Address lines
357
+ Address lines 1 and 2. For example, street, PO box, or building.
358
358
  """
359
359
  return pulumi.get(self, "address_lines")
360
360
 
@@ -366,7 +366,7 @@ class _BillingGroupState:
366
366
  @pulumi.getter(name="billingCurrency")
367
367
  def billing_currency(self) -> Optional[pulumi.Input[str]]:
368
368
  """
369
- Billing currency
369
+ Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
370
370
  """
371
371
  return pulumi.get(self, "billing_currency")
372
372
 
@@ -378,7 +378,7 @@ class _BillingGroupState:
378
378
  @pulumi.getter(name="billingEmails")
379
379
  def billing_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
380
380
  """
381
- Billing contact emails
381
+ Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
382
382
  """
383
383
  return pulumi.get(self, "billing_emails")
384
384
 
@@ -390,7 +390,7 @@ class _BillingGroupState:
390
390
  @pulumi.getter(name="billingExtraText")
391
391
  def billing_extra_text(self) -> Optional[pulumi.Input[str]]:
392
392
  """
393
- Billing extra text
393
+ Additional information to include on your invoice (for example, a reference number).
394
394
  """
395
395
  return pulumi.get(self, "billing_extra_text")
396
396
 
@@ -402,7 +402,7 @@ class _BillingGroupState:
402
402
  @pulumi.getter(name="cardId")
403
403
  def card_id(self) -> Optional[pulumi.Input[str]]:
404
404
  """
405
- Credit card id
405
+ Credit card ID.
406
406
  """
407
407
  return pulumi.get(self, "card_id")
408
408
 
@@ -414,7 +414,7 @@ class _BillingGroupState:
414
414
  @pulumi.getter
415
415
  def city(self) -> Optional[pulumi.Input[str]]:
416
416
  """
417
- City
417
+ City, district, suburb, town, or village.
418
418
  """
419
419
  return pulumi.get(self, "city")
420
420
 
@@ -426,7 +426,7 @@ class _BillingGroupState:
426
426
  @pulumi.getter
427
427
  def company(self) -> Optional[pulumi.Input[str]]:
428
428
  """
429
- Company name
429
+ Your company name.
430
430
  """
431
431
  return pulumi.get(self, "company")
432
432
 
@@ -438,7 +438,7 @@ class _BillingGroupState:
438
438
  @pulumi.getter(name="copyFromBillingGroup")
439
439
  def copy_from_billing_group(self) -> Optional[pulumi.Input[str]]:
440
440
  """
441
- ID of the billing group to copy from
441
+ ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
442
442
  """
443
443
  return pulumi.get(self, "copy_from_billing_group")
444
444
 
@@ -450,7 +450,7 @@ class _BillingGroupState:
450
450
  @pulumi.getter(name="countryCode")
451
451
  def country_code(self) -> Optional[pulumi.Input[str]]:
452
452
  """
453
- Country code
453
+ Two-letter country code.
454
454
  """
455
455
  return pulumi.get(self, "country_code")
456
456
 
@@ -462,7 +462,7 @@ class _BillingGroupState:
462
462
  @pulumi.getter
463
463
  def name(self) -> Optional[pulumi.Input[str]]:
464
464
  """
465
- Billing Group name
465
+ Name of the billing group.
466
466
  """
467
467
  return pulumi.get(self, "name")
468
468
 
@@ -474,7 +474,7 @@ class _BillingGroupState:
474
474
  @pulumi.getter(name="parentId")
475
475
  def parent_id(self) -> Optional[pulumi.Input[str]]:
476
476
  """
477
- An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
477
+ 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.
478
478
  """
479
479
  return pulumi.get(self, "parent_id")
480
480
 
@@ -486,7 +486,7 @@ class _BillingGroupState:
486
486
  @pulumi.getter
487
487
  def state(self) -> Optional[pulumi.Input[str]]:
488
488
  """
489
- State
489
+ State or province.
490
490
  """
491
491
  return pulumi.get(self, "state")
492
492
 
@@ -498,7 +498,7 @@ class _BillingGroupState:
498
498
  @pulumi.getter(name="vatId")
499
499
  def vat_id(self) -> Optional[pulumi.Input[str]]:
500
500
  """
501
- VAT id
501
+ The VAT identification number for your company.
502
502
  """
503
503
  return pulumi.get(self, "vat_id")
504
504
 
@@ -510,7 +510,7 @@ class _BillingGroupState:
510
510
  @pulumi.getter(name="zipCode")
511
511
  def zip_code(self) -> Optional[pulumi.Input[str]]:
512
512
  """
513
- Zip Code
513
+ Zip or postal code.
514
514
  """
515
515
  return pulumi.get(self, "zip_code")
516
516
 
@@ -541,7 +541,7 @@ class BillingGroup(pulumi.CustomResource):
541
541
  zip_code: Optional[pulumi.Input[str]] = None,
542
542
  __props__=None):
543
543
  """
544
- The Billing Group resource allows the creation and management of Aiven Billing Groups and association with the Projects.
544
+ Creates and manages billing groups and assigns them to projects.
545
545
 
546
546
  ## Example Usage
547
547
 
@@ -565,21 +565,21 @@ class BillingGroup(pulumi.CustomResource):
565
565
 
566
566
  :param str resource_name: The name of the resource.
567
567
  :param pulumi.ResourceOptions opts: Options for the resource.
568
- :param pulumi.Input[str] account_id: Account id
569
- :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines
570
- :param pulumi.Input[str] billing_currency: Billing currency
571
- :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Billing contact emails
572
- :param pulumi.Input[str] billing_extra_text: Billing extra text
573
- :param pulumi.Input[str] card_id: Credit card id
574
- :param pulumi.Input[str] city: City
575
- :param pulumi.Input[str] company: Company name
576
- :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy from
577
- :param pulumi.Input[str] country_code: Country code
578
- :param pulumi.Input[str] name: Billing Group name
579
- :param pulumi.Input[str] parent_id: An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
580
- :param pulumi.Input[str] state: State
581
- :param pulumi.Input[str] vat_id: VAT id
582
- :param pulumi.Input[str] zip_code: Zip Code
568
+ :param pulumi.Input[str] account_id: Account ID.
569
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines 1 and 2. For example, street, PO box, or building.
570
+ :param pulumi.Input[str] billing_currency: Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
571
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
572
+ :param pulumi.Input[str] billing_extra_text: Additional information to include on your invoice (for example, a reference number).
573
+ :param pulumi.Input[str] card_id: Credit card ID.
574
+ :param pulumi.Input[str] city: City, district, suburb, town, or village.
575
+ :param pulumi.Input[str] company: Your company name.
576
+ :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
577
+ :param pulumi.Input[str] country_code: Two-letter country code.
578
+ :param pulumi.Input[str] name: Name of the billing group.
579
+ :param pulumi.Input[str] parent_id: 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.
580
+ :param pulumi.Input[str] state: State or province.
581
+ :param pulumi.Input[str] vat_id: The VAT identification number for your company.
582
+ :param pulumi.Input[str] zip_code: Zip or postal code.
583
583
  """
584
584
  ...
585
585
  @overload
@@ -588,7 +588,7 @@ class BillingGroup(pulumi.CustomResource):
588
588
  args: Optional[BillingGroupArgs] = None,
589
589
  opts: Optional[pulumi.ResourceOptions] = None):
590
590
  """
591
- The Billing Group resource allows the creation and management of Aiven Billing Groups and association with the Projects.
591
+ Creates and manages billing groups and assigns them to projects.
592
592
 
593
593
  ## Example Usage
594
594
 
@@ -696,21 +696,21 @@ class BillingGroup(pulumi.CustomResource):
696
696
  :param str resource_name: The unique name of the resulting resource.
697
697
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
698
698
  :param pulumi.ResourceOptions opts: Options for the resource.
699
- :param pulumi.Input[str] account_id: Account id
700
- :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines
701
- :param pulumi.Input[str] billing_currency: Billing currency
702
- :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Billing contact emails
703
- :param pulumi.Input[str] billing_extra_text: Billing extra text
704
- :param pulumi.Input[str] card_id: Credit card id
705
- :param pulumi.Input[str] city: City
706
- :param pulumi.Input[str] company: Company name
707
- :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy from
708
- :param pulumi.Input[str] country_code: Country code
709
- :param pulumi.Input[str] name: Billing Group name
710
- :param pulumi.Input[str] parent_id: An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
711
- :param pulumi.Input[str] state: State
712
- :param pulumi.Input[str] vat_id: VAT id
713
- :param pulumi.Input[str] zip_code: Zip Code
699
+ :param pulumi.Input[str] account_id: Account ID.
700
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] address_lines: Address lines 1 and 2. For example, street, PO box, or building.
701
+ :param pulumi.Input[str] billing_currency: Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
702
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] billing_emails: Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
703
+ :param pulumi.Input[str] billing_extra_text: Additional information to include on your invoice (for example, a reference number).
704
+ :param pulumi.Input[str] card_id: Credit card ID.
705
+ :param pulumi.Input[str] city: City, district, suburb, town, or village.
706
+ :param pulumi.Input[str] company: Your company name.
707
+ :param pulumi.Input[str] copy_from_billing_group: ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
708
+ :param pulumi.Input[str] country_code: Two-letter country code.
709
+ :param pulumi.Input[str] name: Name of the billing group.
710
+ :param pulumi.Input[str] parent_id: 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.
711
+ :param pulumi.Input[str] state: State or province.
712
+ :param pulumi.Input[str] vat_id: The VAT identification number for your company.
713
+ :param pulumi.Input[str] zip_code: Zip or postal code.
714
714
  """
715
715
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
716
716
 
@@ -737,7 +737,7 @@ class BillingGroup(pulumi.CustomResource):
737
737
  @pulumi.getter(name="accountId")
738
738
  def account_id(self) -> pulumi.Output[Optional[str]]:
739
739
  """
740
- Account id
740
+ Account ID.
741
741
  """
742
742
  warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
743
743
  pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
@@ -748,7 +748,7 @@ class BillingGroup(pulumi.CustomResource):
748
748
  @pulumi.getter(name="addressLines")
749
749
  def address_lines(self) -> pulumi.Output[Optional[Sequence[str]]]:
750
750
  """
751
- Address lines
751
+ Address lines 1 and 2. For example, street, PO box, or building.
752
752
  """
753
753
  return pulumi.get(self, "address_lines")
754
754
 
@@ -756,7 +756,7 @@ class BillingGroup(pulumi.CustomResource):
756
756
  @pulumi.getter(name="billingCurrency")
757
757
  def billing_currency(self) -> pulumi.Output[Optional[str]]:
758
758
  """
759
- Billing currency
759
+ Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
760
760
  """
761
761
  return pulumi.get(self, "billing_currency")
762
762
 
@@ -764,7 +764,7 @@ class BillingGroup(pulumi.CustomResource):
764
764
  @pulumi.getter(name="billingEmails")
765
765
  def billing_emails(self) -> pulumi.Output[Optional[Sequence[str]]]:
766
766
  """
767
- Billing contact emails
767
+ Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
768
768
  """
769
769
  return pulumi.get(self, "billing_emails")
770
770
 
@@ -772,7 +772,7 @@ class BillingGroup(pulumi.CustomResource):
772
772
  @pulumi.getter(name="billingExtraText")
773
773
  def billing_extra_text(self) -> pulumi.Output[Optional[str]]:
774
774
  """
775
- Billing extra text
775
+ Additional information to include on your invoice (for example, a reference number).
776
776
  """
777
777
  return pulumi.get(self, "billing_extra_text")
778
778
 
@@ -780,7 +780,7 @@ class BillingGroup(pulumi.CustomResource):
780
780
  @pulumi.getter(name="cardId")
781
781
  def card_id(self) -> pulumi.Output[Optional[str]]:
782
782
  """
783
- Credit card id
783
+ Credit card ID.
784
784
  """
785
785
  return pulumi.get(self, "card_id")
786
786
 
@@ -788,7 +788,7 @@ class BillingGroup(pulumi.CustomResource):
788
788
  @pulumi.getter
789
789
  def city(self) -> pulumi.Output[Optional[str]]:
790
790
  """
791
- City
791
+ City, district, suburb, town, or village.
792
792
  """
793
793
  return pulumi.get(self, "city")
794
794
 
@@ -796,7 +796,7 @@ class BillingGroup(pulumi.CustomResource):
796
796
  @pulumi.getter
797
797
  def company(self) -> pulumi.Output[Optional[str]]:
798
798
  """
799
- Company name
799
+ Your company name.
800
800
  """
801
801
  return pulumi.get(self, "company")
802
802
 
@@ -804,7 +804,7 @@ class BillingGroup(pulumi.CustomResource):
804
804
  @pulumi.getter(name="copyFromBillingGroup")
805
805
  def copy_from_billing_group(self) -> pulumi.Output[Optional[str]]:
806
806
  """
807
- ID of the billing group to copy from
807
+ ID of the billing group to copy the company name, address, currency, billing contacts, and extra text from.
808
808
  """
809
809
  return pulumi.get(self, "copy_from_billing_group")
810
810
 
@@ -812,7 +812,7 @@ class BillingGroup(pulumi.CustomResource):
812
812
  @pulumi.getter(name="countryCode")
813
813
  def country_code(self) -> pulumi.Output[Optional[str]]:
814
814
  """
815
- Country code
815
+ Two-letter country code.
816
816
  """
817
817
  return pulumi.get(self, "country_code")
818
818
 
@@ -820,7 +820,7 @@ class BillingGroup(pulumi.CustomResource):
820
820
  @pulumi.getter
821
821
  def name(self) -> pulumi.Output[str]:
822
822
  """
823
- Billing Group name
823
+ Name of the billing group.
824
824
  """
825
825
  return pulumi.get(self, "name")
826
826
 
@@ -828,7 +828,7 @@ class BillingGroup(pulumi.CustomResource):
828
828
  @pulumi.getter(name="parentId")
829
829
  def parent_id(self) -> pulumi.Output[Optional[str]]:
830
830
  """
831
- An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
831
+ 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.
832
832
  """
833
833
  return pulumi.get(self, "parent_id")
834
834
 
@@ -836,7 +836,7 @@ class BillingGroup(pulumi.CustomResource):
836
836
  @pulumi.getter
837
837
  def state(self) -> pulumi.Output[Optional[str]]:
838
838
  """
839
- State
839
+ State or province.
840
840
  """
841
841
  return pulumi.get(self, "state")
842
842
 
@@ -844,7 +844,7 @@ class BillingGroup(pulumi.CustomResource):
844
844
  @pulumi.getter(name="vatId")
845
845
  def vat_id(self) -> pulumi.Output[Optional[str]]:
846
846
  """
847
- VAT id
847
+ The VAT identification number for your company.
848
848
  """
849
849
  return pulumi.get(self, "vat_id")
850
850
 
@@ -852,7 +852,7 @@ class BillingGroup(pulumi.CustomResource):
852
852
  @pulumi.getter(name="zipCode")
853
853
  def zip_code(self) -> pulumi.Output[Optional[str]]:
854
854
  """
855
- Zip Code
855
+ Zip or postal code.
856
856
  """
857
857
  return pulumi.get(self, "zip_code")
858
858
 
@@ -78,7 +78,7 @@ class GetBillingGroupResult:
78
78
  @pulumi.getter(name="accountId")
79
79
  def account_id(self) -> str:
80
80
  """
81
- Account id
81
+ Account ID.
82
82
  """
83
83
  return pulumi.get(self, "account_id")
84
84
 
@@ -86,7 +86,7 @@ class GetBillingGroupResult:
86
86
  @pulumi.getter(name="addressLines")
87
87
  def address_lines(self) -> Sequence[str]:
88
88
  """
89
- Address lines
89
+ Address lines 1 and 2. For example, street, PO box, or building.
90
90
  """
91
91
  return pulumi.get(self, "address_lines")
92
92
 
@@ -94,7 +94,7 @@ class GetBillingGroupResult:
94
94
  @pulumi.getter(name="billingCurrency")
95
95
  def billing_currency(self) -> str:
96
96
  """
97
- Billing currency
97
+ Billing currency for the billing group. Supported currencies are: AUD, CAD, CHF, DKK, EUR, GBP, JPY, NOK, NZD, SEK, SGD, and USD.
98
98
  """
99
99
  return pulumi.get(self, "billing_currency")
100
100
 
@@ -102,7 +102,7 @@ class GetBillingGroupResult:
102
102
  @pulumi.getter(name="billingEmails")
103
103
  def billing_emails(self) -> Sequence[str]:
104
104
  """
105
- Billing contact emails
105
+ Email address of billing contacts. Invoices and other payment notifications are emailed to all billing contacts.
106
106
  """
107
107
  return pulumi.get(self, "billing_emails")
108
108
 
@@ -110,7 +110,7 @@ class GetBillingGroupResult:
110
110
  @pulumi.getter(name="billingExtraText")
111
111
  def billing_extra_text(self) -> str:
112
112
  """
113
- Billing extra text
113
+ Additional information to include on your invoice (for example, a reference number).
114
114
  """
115
115
  return pulumi.get(self, "billing_extra_text")
116
116
 
@@ -118,7 +118,7 @@ class GetBillingGroupResult:
118
118
  @pulumi.getter(name="billingGroupId")
119
119
  def billing_group_id(self) -> str:
120
120
  """
121
- The id of the billing group. To set up proper dependencies please refer to this variable as a reference.
121
+ The ID of the billing group. To set up proper dependencies please refer to this variable as a reference.
122
122
  """
123
123
  return pulumi.get(self, "billing_group_id")
124
124
 
@@ -126,7 +126,7 @@ class GetBillingGroupResult:
126
126
  @pulumi.getter(name="cardId")
127
127
  def card_id(self) -> str:
128
128
  """
129
- Credit card id
129
+ Credit card ID.
130
130
  """
131
131
  return pulumi.get(self, "card_id")
132
132
 
@@ -134,7 +134,7 @@ class GetBillingGroupResult:
134
134
  @pulumi.getter
135
135
  def city(self) -> str:
136
136
  """
137
- City
137
+ City, district, suburb, town, or village.
138
138
  """
139
139
  return pulumi.get(self, "city")
140
140
 
@@ -142,7 +142,7 @@ class GetBillingGroupResult:
142
142
  @pulumi.getter
143
143
  def company(self) -> str:
144
144
  """
145
- Company name
145
+ Your company name.
146
146
  """
147
147
  return pulumi.get(self, "company")
148
148
 
@@ -150,7 +150,7 @@ class GetBillingGroupResult:
150
150
  @pulumi.getter(name="copyFromBillingGroup")
151
151
  def copy_from_billing_group(self) -> str:
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
  return pulumi.get(self, "copy_from_billing_group")
156
156
 
@@ -158,7 +158,7 @@ class GetBillingGroupResult:
158
158
  @pulumi.getter(name="countryCode")
159
159
  def country_code(self) -> str:
160
160
  """
161
- Country code
161
+ Two-letter country code.
162
162
  """
163
163
  return pulumi.get(self, "country_code")
164
164
 
@@ -174,7 +174,7 @@ class GetBillingGroupResult:
174
174
  @pulumi.getter
175
175
  def name(self) -> str:
176
176
  """
177
- Billing Group name
177
+ Name of the billing group.
178
178
  """
179
179
  return pulumi.get(self, "name")
180
180
 
@@ -182,7 +182,7 @@ class GetBillingGroupResult:
182
182
  @pulumi.getter(name="parentId")
183
183
  def parent_id(self) -> str:
184
184
  """
185
- An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
185
+ 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.
186
186
  """
187
187
  return pulumi.get(self, "parent_id")
188
188
 
@@ -190,7 +190,7 @@ class GetBillingGroupResult:
190
190
  @pulumi.getter
191
191
  def state(self) -> str:
192
192
  """
193
- State
193
+ State or province.
194
194
  """
195
195
  return pulumi.get(self, "state")
196
196
 
@@ -198,7 +198,7 @@ class GetBillingGroupResult:
198
198
  @pulumi.getter(name="vatId")
199
199
  def vat_id(self) -> str:
200
200
  """
201
- VAT id
201
+ The VAT identification number for your company.
202
202
  """
203
203
  return pulumi.get(self, "vat_id")
204
204
 
@@ -206,7 +206,7 @@ class GetBillingGroupResult:
206
206
  @pulumi.getter(name="zipCode")
207
207
  def zip_code(self) -> str:
208
208
  """
209
- Zip Code
209
+ Zip or postal code.
210
210
  """
211
211
  return pulumi.get(self, "zip_code")
212
212
 
@@ -239,10 +239,10 @@ class AwaitableGetBillingGroupResult(GetBillingGroupResult):
239
239
  def get_billing_group(billing_group_id: Optional[str] = None,
240
240
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBillingGroupResult:
241
241
  """
242
- The Billing Group data source provides information about the existing Aiven Account.
242
+ Provides information about an existing billing group.
243
243
 
244
244
 
245
- :param str billing_group_id: The id of the billing group. To set up proper dependencies please refer to this variable as a reference.
245
+ :param str billing_group_id: The ID of the billing group. To set up proper dependencies please refer to this variable as a reference.
246
246
  """
247
247
  __args__ = dict()
248
248
  __args__['billingGroupId'] = billing_group_id
@@ -273,9 +273,9 @@ def get_billing_group(billing_group_id: Optional[str] = None,
273
273
  def get_billing_group_output(billing_group_id: Optional[pulumi.Input[str]] = None,
274
274
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBillingGroupResult]:
275
275
  """
276
- The Billing Group data source provides information about the existing Aiven Account.
276
+ Provides information about an existing billing group.
277
277
 
278
278
 
279
- :param str billing_group_id: The id of the billing group. To set up proper dependencies please refer to this variable as a reference.
279
+ :param str billing_group_id: The ID of the billing group. To set up proper dependencies please refer to this variable as a reference.
280
280
  """
281
281
  ...
@@ -174,6 +174,7 @@ class OrganizationUser(pulumi.CustomResource):
174
174
  user_email: Optional[pulumi.Input[str]] = None,
175
175
  __props__=None):
176
176
  """
177
+ This resource is deprecated; please use OrganizationUser data source instead.
177
178
  The Organization User resource allows the creation and management of an Aiven Organization User.
178
179
 
179
180
  During the creation of `OrganizationUser`resource, an email invitation will be sent
@@ -194,6 +195,7 @@ class OrganizationUser(pulumi.CustomResource):
194
195
  args: OrganizationUserArgs,
195
196
  opts: Optional[pulumi.ResourceOptions] = None):
196
197
  """
198
+ This resource is deprecated; please use OrganizationUser data source instead.
197
199
  The Organization User resource allows the creation and management of an Aiven Organization User.
198
200
 
199
201
  During the creation of `OrganizationUser`resource, an email invitation will be sent
pulumi_aiven/outputs.py CHANGED
@@ -629,7 +629,7 @@ class CassandraCassandraUserConfig(dict):
629
629
  :param int backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
630
630
  :param int backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
631
631
  :param 'CassandraCassandraUserConfigCassandraArgs' cassandra: cassandra configuration values.
632
- :param str cassandra_version: Cassandra major version.
632
+ :param str cassandra_version: Cassandra version.
633
633
  :param Sequence['CassandraCassandraUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
634
634
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
635
635
  :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
@@ -711,7 +711,7 @@ class CassandraCassandraUserConfig(dict):
711
711
  @pulumi.getter(name="cassandraVersion")
712
712
  def cassandra_version(self) -> Optional[str]:
713
713
  """
714
- Cassandra major version.
714
+ Cassandra version.
715
715
  """
716
716
  return pulumi.get(self, "cassandra_version")
717
717
 
@@ -6461,6 +6461,8 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
6461
6461
  suggest = "consumer_request_max_bytes"
6462
6462
  elif key == "consumerRequestTimeoutMs":
6463
6463
  suggest = "consumer_request_timeout_ms"
6464
+ elif key == "nameStrategy":
6465
+ suggest = "name_strategy"
6464
6466
  elif key == "nameStrategyValidation":
6465
6467
  suggest = "name_strategy_validation"
6466
6468
  elif key == "producerAcks":
@@ -6489,6 +6491,7 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
6489
6491
  consumer_enable_auto_commit: Optional[bool] = None,
6490
6492
  consumer_request_max_bytes: Optional[int] = None,
6491
6493
  consumer_request_timeout_ms: Optional[int] = None,
6494
+ name_strategy: Optional[str] = None,
6492
6495
  name_strategy_validation: Optional[bool] = None,
6493
6496
  producer_acks: Optional[str] = None,
6494
6497
  producer_compression_type: Optional[str] = None,
@@ -6499,6 +6502,7 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
6499
6502
  :param bool consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. The default value is `true`.
6500
6503
  :param int consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. The default value is `67108864`.
6501
6504
  :param int consumer_request_timeout_ms: 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`.
6505
+ :param str name_strategy: Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
6502
6506
  :param bool name_strategy_validation: 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`.
6503
6507
  :param str producer_acks: The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to 'all' or '-1', the leader will wait for the full set of in-sync replicas to acknowledge the record. The default value is `1`.
6504
6508
  :param str producer_compression_type: Specify the default compression type for producers. This configuration accepts the standard compression codecs ('gzip', 'snappy', 'lz4', 'zstd'). It additionally accepts 'none' which is the default and equivalent to no compression.
@@ -6512,6 +6516,8 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
6512
6516
  pulumi.set(__self__, "consumer_request_max_bytes", consumer_request_max_bytes)
6513
6517
  if consumer_request_timeout_ms is not None:
6514
6518
  pulumi.set(__self__, "consumer_request_timeout_ms", consumer_request_timeout_ms)
6519
+ if name_strategy is not None:
6520
+ pulumi.set(__self__, "name_strategy", name_strategy)
6515
6521
  if name_strategy_validation is not None:
6516
6522
  pulumi.set(__self__, "name_strategy_validation", name_strategy_validation)
6517
6523
  if producer_acks is not None:
@@ -6549,6 +6555,14 @@ class KafkaKafkaUserConfigKafkaRestConfig(dict):
6549
6555
  """
6550
6556
  return pulumi.get(self, "consumer_request_timeout_ms")
6551
6557
 
6558
+ @property
6559
+ @pulumi.getter(name="nameStrategy")
6560
+ def name_strategy(self) -> Optional[str]:
6561
+ """
6562
+ Name strategy to use when selecting subject for storing schemas. The default value is `topic_name`.
6563
+ """
6564
+ return pulumi.get(self, "name_strategy")
6565
+
6552
6566
  @property
6553
6567
  @pulumi.getter(name="nameStrategyValidation")
6554
6568
  def name_strategy_validation(self) -> Optional[bool]:
@@ -7615,8 +7629,8 @@ class KafkaTopicConfig(dict):
7615
7629
  :param str flush_messages: flush.messages value
7616
7630
  :param str flush_ms: flush.ms value
7617
7631
  :param str index_interval_bytes: index.interval.bytes value
7618
- :param str local_retention_bytes: local.retention.bytes value. This field is temporarily disabled.
7619
- :param str local_retention_ms: local.retention.ms value. This field is temporarily disabled.
7632
+ :param str local_retention_bytes: local.retention.bytes value
7633
+ :param str local_retention_ms: local.retention.ms value
7620
7634
  :param str max_compaction_lag_ms: max.compaction.lag.ms value
7621
7635
  :param str max_message_bytes: max.message.bytes value
7622
7636
  :param bool message_downconversion_enable: message.downconversion.enable value
@@ -7751,7 +7765,7 @@ class KafkaTopicConfig(dict):
7751
7765
  @pulumi.getter(name="localRetentionBytes")
7752
7766
  def local_retention_bytes(self) -> Optional[str]:
7753
7767
  """
7754
- local.retention.bytes value. This field is temporarily disabled.
7768
+ local.retention.bytes value
7755
7769
  """
7756
7770
  return pulumi.get(self, "local_retention_bytes")
7757
7771
 
@@ -7759,7 +7773,7 @@ class KafkaTopicConfig(dict):
7759
7773
  @pulumi.getter(name="localRetentionMs")
7760
7774
  def local_retention_ms(self) -> Optional[str]:
7761
7775
  """
7762
- local.retention.ms value. This field is temporarily disabled.
7776
+ local.retention.ms value
7763
7777
  """
7764
7778
  return pulumi.get(self, "local_retention_ms")
7765
7779
 
@@ -14368,6 +14382,8 @@ class RedisRedisUserConfig(dict):
14368
14382
  suggest = "redis_ssl"
14369
14383
  elif key == "redisTimeout":
14370
14384
  suggest = "redis_timeout"
14385
+ elif key == "redisVersion":
14386
+ suggest = "redis_version"
14371
14387
  elif key == "serviceLog":
14372
14388
  suggest = "service_log"
14373
14389
  elif key == "serviceToForkFrom":
@@ -14408,6 +14424,7 @@ class RedisRedisUserConfig(dict):
14408
14424
  redis_pubsub_client_output_buffer_limit: Optional[int] = None,
14409
14425
  redis_ssl: Optional[bool] = None,
14410
14426
  redis_timeout: Optional[int] = None,
14427
+ redis_version: Optional[str] = None,
14411
14428
  service_log: Optional[bool] = None,
14412
14429
  service_to_fork_from: Optional[str] = None,
14413
14430
  static_ips: Optional[bool] = None):
@@ -14453,6 +14470,8 @@ class RedisRedisUserConfig(dict):
14453
14470
  pulumi.set(__self__, "redis_ssl", redis_ssl)
14454
14471
  if redis_timeout is not None:
14455
14472
  pulumi.set(__self__, "redis_timeout", redis_timeout)
14473
+ if redis_version is not None:
14474
+ pulumi.set(__self__, "redis_version", redis_version)
14456
14475
  if service_log is not None:
14457
14476
  pulumi.set(__self__, "service_log", service_log)
14458
14477
  if service_to_fork_from is not None:
@@ -14568,6 +14587,11 @@ class RedisRedisUserConfig(dict):
14568
14587
  def redis_timeout(self) -> Optional[int]:
14569
14588
  return pulumi.get(self, "redis_timeout")
14570
14589
 
14590
+ @property
14591
+ @pulumi.getter(name="redisVersion")
14592
+ def redis_version(self) -> Optional[str]:
14593
+ return pulumi.get(self, "redis_version")
14594
+
14571
14595
  @property
14572
14596
  @pulumi.getter(name="serviceLog")
14573
14597
  def service_log(self) -> Optional[bool]:
@@ -21318,6 +21342,7 @@ class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
21318
21342
  consumer_enable_auto_commit: Optional[bool] = None,
21319
21343
  consumer_request_max_bytes: Optional[int] = None,
21320
21344
  consumer_request_timeout_ms: Optional[int] = None,
21345
+ name_strategy: Optional[str] = None,
21321
21346
  name_strategy_validation: Optional[bool] = None,
21322
21347
  producer_acks: Optional[str] = None,
21323
21348
  producer_compression_type: Optional[str] = None,
@@ -21330,6 +21355,8 @@ class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
21330
21355
  pulumi.set(__self__, "consumer_request_max_bytes", consumer_request_max_bytes)
21331
21356
  if consumer_request_timeout_ms is not None:
21332
21357
  pulumi.set(__self__, "consumer_request_timeout_ms", consumer_request_timeout_ms)
21358
+ if name_strategy is not None:
21359
+ pulumi.set(__self__, "name_strategy", name_strategy)
21333
21360
  if name_strategy_validation is not None:
21334
21361
  pulumi.set(__self__, "name_strategy_validation", name_strategy_validation)
21335
21362
  if producer_acks is not None:
@@ -21358,6 +21385,11 @@ class GetKafkaKafkaUserConfigKafkaRestConfigResult(dict):
21358
21385
  def consumer_request_timeout_ms(self) -> Optional[int]:
21359
21386
  return pulumi.get(self, "consumer_request_timeout_ms")
21360
21387
 
21388
+ @property
21389
+ @pulumi.getter(name="nameStrategy")
21390
+ def name_strategy(self) -> Optional[str]:
21391
+ return pulumi.get(self, "name_strategy")
21392
+
21361
21393
  @property
21362
21394
  @pulumi.getter(name="nameStrategyValidation")
21363
21395
  def name_strategy_validation(self) -> Optional[bool]:
@@ -26150,6 +26182,7 @@ class GetRedisRedisUserConfigResult(dict):
26150
26182
  redis_pubsub_client_output_buffer_limit: Optional[int] = None,
26151
26183
  redis_ssl: Optional[bool] = None,
26152
26184
  redis_timeout: Optional[int] = None,
26185
+ redis_version: Optional[str] = None,
26153
26186
  service_log: Optional[bool] = None,
26154
26187
  service_to_fork_from: Optional[str] = None,
26155
26188
  static_ips: Optional[bool] = None):
@@ -26195,6 +26228,8 @@ class GetRedisRedisUserConfigResult(dict):
26195
26228
  pulumi.set(__self__, "redis_ssl", redis_ssl)
26196
26229
  if redis_timeout is not None:
26197
26230
  pulumi.set(__self__, "redis_timeout", redis_timeout)
26231
+ if redis_version is not None:
26232
+ pulumi.set(__self__, "redis_version", redis_version)
26198
26233
  if service_log is not None:
26199
26234
  pulumi.set(__self__, "service_log", service_log)
26200
26235
  if service_to_fork_from is not None:
@@ -26310,6 +26345,11 @@ class GetRedisRedisUserConfigResult(dict):
26310
26345
  def redis_timeout(self) -> Optional[int]:
26311
26346
  return pulumi.get(self, "redis_timeout")
26312
26347
 
26348
+ @property
26349
+ @pulumi.getter(name="redisVersion")
26350
+ def redis_version(self) -> Optional[str]:
26351
+ return pulumi.get(self, "redis_version")
26352
+
26313
26353
  @property
26314
26354
  @pulumi.getter(name="serviceLog")
26315
26355
  def service_log(self) -> Optional[bool]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.11.1
3
+ Version: 6.11.3
4
4
  Summary: A Pulumi package for creating and managing Aiven cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
1
  pulumi_aiven/__init__.py,sha256=Xb19hmFsqhQIuFfc3V5VkFre2S-Xtv5zCDBj1bXU28c,16645
2
- pulumi_aiven/_inputs.py,sha256=ESfSTpUIE28jqA3R7GY2Mp_pvYf_AxDC7Jr3OGwLCkw,805762
2
+ pulumi_aiven/_inputs.py,sha256=e2M_lCB9mOCNrhia_-2rtblLsw8rpZ9iCr-mKsxR6vg,806834
3
3
  pulumi_aiven/_utilities.py,sha256=nNKRJyG0bkCleVzIGnszB5TSQOVUqAHks2baneWhujg,9249
4
4
  pulumi_aiven/account.py,sha256=uVBXiO3qthEAJ5Ae52JD4nOvfHcqPUJ-VDRPsvkwGko,18336
5
5
  pulumi_aiven/account_authentication.py,sha256=Gf4_QSFID78RKXLmm7cv_SL6sQs3R0ak2jEalISwFFc,36913
@@ -11,7 +11,7 @@ pulumi_aiven/aws_vpc_peering_connection.py,sha256=zwxkSZWXQNgg1JNAVgY6lbH_tVIbqk
11
11
  pulumi_aiven/azure_privatelink.py,sha256=xxSjFc0YJmqQSeJiDSEbJMR9Hrrdyn2nXOTfHXEc_gs,18159
12
12
  pulumi_aiven/azure_privatelink_connection_approval.py,sha256=CRqLvKHhaFi4_mrkYDFQr7eOU-Mw3hkIaYH4CKmm-Rg,15298
13
13
  pulumi_aiven/azure_vpc_peering_connection.py,sha256=34Uxd4wQ5K_nQ_2WEHYOjwOZ20qTwoXAqXGXehVaeLg,24958
14
- pulumi_aiven/billing_group.py,sha256=4d_wT5O4HPZY7NKZvVre449sRKzfckdslKjEd2x3NQw,33976
14
+ pulumi_aiven/billing_group.py,sha256=0zTWB_f1Xyo8XRKQVlxFwKCA8tsKJOATGutO7_WXvTM,37287
15
15
  pulumi_aiven/cassandra.py,sha256=EsSQ5ehBL1n8-AnnE-cLVXmhMimvejCqJGGxEOSsmxU,77687
16
16
  pulumi_aiven/cassandra_user.py,sha256=IhhhI6mEbpPsGwDWGZIMOE1Sl2rjogbQf6PmdahGn1g,19426
17
17
  pulumi_aiven/clickhouse.py,sha256=iHRi7Ewc7OA0d1pUxS5FcGBbYNrpqHbWHTmhFC7ZMN8,77872
@@ -36,7 +36,7 @@ pulumi_aiven/get_aws_privatelink.py,sha256=DFNwweSn3erntarP-QKy47Ft8rG9f-JSLlCPR
36
36
  pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=AOXN4Y-t-sDRYeMD8IO9Bi7Ck9luR7cJZcAfhqpoVE4,8738
37
37
  pulumi_aiven/get_azure_privatelink.py,sha256=qK146yM8dMWMIAm9ahbuJVBo2YZeNXQTyUzFGHQBSHc,7967
38
38
  pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=h-4D1dvuOGne7j9JbZXvEKqdqccyVOwtvqgljJUx7qg,10992
39
- pulumi_aiven/get_billing_group.py,sha256=kMYS5w7c8Ev5oyeg5xxmqPBZY2O5IggsOKRl150_0RE,10510
39
+ pulumi_aiven/get_billing_group.py,sha256=EnuheoCDgekstkxd0oohOtBR9wvh3rhg0f1nXtSN6cY,10937
40
40
  pulumi_aiven/get_cassanda.py,sha256=WDu4PZViG0pJ8C1a6HRYuAKJhQ4OGpZXGoZm9I2RpQM,22935
41
41
  pulumi_aiven/get_cassandra.py,sha256=CVJQ2_2WbvRSyxiSv0Qry5gReI-hgHGfqCwOlfjQ-VM,22604
42
42
  pulumi_aiven/get_cassandra_user.py,sha256=XXeH08mxtoWf2sieYVrGUrKUTeYyazZPDMng6D4DMjM,8322
@@ -118,10 +118,10 @@ pulumi_aiven/open_search_acl_rule.py,sha256=MZ3y9qx-kyzG6_1uqfm5UxNkCbviWQdD62oO
118
118
  pulumi_aiven/opensearch_security_plugin_config.py,sha256=IrINkwhobhkw-F6CppS-FisPnArF7bvyPrRI3NOeEYw,17263
119
119
  pulumi_aiven/opensearch_user.py,sha256=04lyk7TOygiKnxm9iMriDCqVsvyEUJ60CAP3ddRPeK4,16994
120
120
  pulumi_aiven/organization.py,sha256=zlKk5kqpcpxvJkWINNpSzp7cdY7fCT-yHzsxPUDsIBc,10803
121
- pulumi_aiven/organization_user.py,sha256=wh7sRrSN7zAQPkFjfy4PK8l0JaBTF0FWdAWrQqUuA24,17367
121
+ pulumi_aiven/organization_user.py,sha256=30L0HOrtdUOr5D4RqY6Jfv5hPer3MvvHn65MYHpUNAM,17539
122
122
  pulumi_aiven/organization_user_group.py,sha256=683wo0I40VZ393Zb5yv6HCYfjXUfkpxOCdh5TOKSWss,13986
123
123
  pulumi_aiven/organizational_unit.py,sha256=n6hEP52m9ARkGJM2bVND4j6qyhIqPn7s8QVYw24lh5A,10927
124
- pulumi_aiven/outputs.py,sha256=KpCM-xbiwpwQPKoXKw2HGqYbb2zhMxKkcQ2lQl3H4Kg,1132954
124
+ pulumi_aiven/outputs.py,sha256=dLxwwAtydHUqrWIchGSv4unfo3Im97iA4jrLq2RMwNw,1134436
125
125
  pulumi_aiven/pg.py,sha256=TwD_RoNGEZAntCg53DZpwLgJ0Crqa1jOR4-PaF_0xR4,75652
126
126
  pulumi_aiven/pg_database.py,sha256=ttUxo4XLy3aUkkYEVjVLYAemqKXNb_GffywUN516-QA,22840
127
127
  pulumi_aiven/pg_user.py,sha256=buSz9kFIAJJ_9kFPsyDKl8XkLxho5ThTug3KN4OWco8,21265
@@ -140,7 +140,7 @@ pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=lsWmGOEeZboQu8JU5WMeDv9LZT
140
140
  pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
141
141
  pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
142
142
  pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
143
- pulumi_aiven-6.11.1.dist-info/METADATA,sha256=w_Lb3BVM8k_eLm7WJrtExRIT5o8_mzRSVFjfzl-F46c,2521
144
- pulumi_aiven-6.11.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
145
- pulumi_aiven-6.11.1.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
146
- pulumi_aiven-6.11.1.dist-info/RECORD,,
143
+ pulumi_aiven-6.11.3.dist-info/METADATA,sha256=YudHEJz7IVUWYBC7bh4qvpRStoPftpObfio0AcKXukE,2521
144
+ pulumi_aiven-6.11.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
145
+ pulumi_aiven-6.11.3.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
146
+ pulumi_aiven-6.11.3.dist-info/RECORD,,