pulumi-aiven 6.43.1__py3-none-any.whl → 6.45.0a1762405690__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.

Files changed (46) hide show
  1. pulumi_aiven/_inputs.py +60 -85
  2. pulumi_aiven/alloydbomni.py +28 -0
  3. pulumi_aiven/cassandra.py +28 -0
  4. pulumi_aiven/clickhouse.py +28 -0
  5. pulumi_aiven/dragonfly.py +28 -0
  6. pulumi_aiven/flink.py +28 -0
  7. pulumi_aiven/get_alloydbomni.py +15 -1
  8. pulumi_aiven/get_cassanda.py +15 -1
  9. pulumi_aiven/get_cassandra.py +15 -1
  10. pulumi_aiven/get_clickhouse.py +15 -1
  11. pulumi_aiven/get_dragonfly.py +15 -1
  12. pulumi_aiven/get_flink.py +15 -1
  13. pulumi_aiven/get_grafana.py +15 -1
  14. pulumi_aiven/get_influx_db.py +12 -1
  15. pulumi_aiven/get_kafka.py +15 -1
  16. pulumi_aiven/get_kafka_connect.py +15 -1
  17. pulumi_aiven/get_kafka_mirror_maker.py +15 -1
  18. pulumi_aiven/get_m3_aggregator.py +12 -1
  19. pulumi_aiven/get_m3_db.py +12 -1
  20. pulumi_aiven/get_my_sql.py +15 -1
  21. pulumi_aiven/get_open_search.py +15 -1
  22. pulumi_aiven/get_organizational_unit.py +4 -0
  23. pulumi_aiven/get_pg.py +15 -1
  24. pulumi_aiven/get_redis.py +15 -1
  25. pulumi_aiven/get_thanos.py +15 -1
  26. pulumi_aiven/get_valkey.py +15 -1
  27. pulumi_aiven/grafana.py +28 -0
  28. pulumi_aiven/influx_db.py +28 -0
  29. pulumi_aiven/kafka.py +28 -0
  30. pulumi_aiven/kafka_connect.py +28 -0
  31. pulumi_aiven/kafka_mirror_maker.py +28 -0
  32. pulumi_aiven/kafka_schema.py +20 -20
  33. pulumi_aiven/m3_aggregator.py +28 -0
  34. pulumi_aiven/m3_db.py +28 -0
  35. pulumi_aiven/my_sql.py +28 -0
  36. pulumi_aiven/open_search.py +28 -0
  37. pulumi_aiven/outputs.py +78 -104
  38. pulumi_aiven/pg.py +28 -0
  39. pulumi_aiven/pulumi-plugin.json +1 -1
  40. pulumi_aiven/redis.py +28 -0
  41. pulumi_aiven/thanos.py +28 -0
  42. pulumi_aiven/valkey.py +28 -0
  43. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/METADATA +1 -1
  44. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/RECORD +46 -46
  45. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/WHEEL +0 -0
  46. {pulumi_aiven-6.43.1.dist-info → pulumi_aiven-6.45.0a1762405690.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetThanosResult:
27
27
  """
28
28
  A collection of values returned by getThanos.
29
29
  """
30
- def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None, thanos=None, thanos_user_configs=None):
30
+ def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_enabled=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None, thanos=None, thanos_user_configs=None):
31
31
  if additional_disk_space and not isinstance(additional_disk_space, str):
32
32
  raise TypeError("Expected argument 'additional_disk_space' to be a str")
33
33
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
@@ -58,6 +58,9 @@ class GetThanosResult:
58
58
  if maintenance_window_dow and not isinstance(maintenance_window_dow, str):
59
59
  raise TypeError("Expected argument 'maintenance_window_dow' to be a str")
60
60
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
61
+ if maintenance_window_enabled and not isinstance(maintenance_window_enabled, bool):
62
+ raise TypeError("Expected argument 'maintenance_window_enabled' to be a bool")
63
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
61
64
  if maintenance_window_time and not isinstance(maintenance_window_time, str):
62
65
  raise TypeError("Expected argument 'maintenance_window_time' to be a str")
63
66
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
@@ -196,6 +199,14 @@ class GetThanosResult:
196
199
  """
197
200
  return pulumi.get(self, "maintenance_window_dow")
198
201
 
202
+ @_builtins.property
203
+ @pulumi.getter(name="maintenanceWindowEnabled")
204
+ def maintenance_window_enabled(self) -> _builtins.bool:
205
+ """
206
+ Indicates whether the maintenance window is currently enabled for this service.
207
+ """
208
+ return pulumi.get(self, "maintenance_window_enabled")
209
+
199
210
  @_builtins.property
200
211
  @pulumi.getter(name="maintenanceWindowTime")
201
212
  def maintenance_window_time(self) -> _builtins.str:
@@ -362,6 +373,7 @@ class AwaitableGetThanosResult(GetThanosResult):
362
373
  disk_space_used=self.disk_space_used,
363
374
  id=self.id,
364
375
  maintenance_window_dow=self.maintenance_window_dow,
376
+ maintenance_window_enabled=self.maintenance_window_enabled,
365
377
  maintenance_window_time=self.maintenance_window_time,
366
378
  plan=self.plan,
367
379
  project=self.project,
@@ -420,6 +432,7 @@ def get_thanos(project: Optional[_builtins.str] = None,
420
432
  disk_space_used=pulumi.get(__ret__, 'disk_space_used'),
421
433
  id=pulumi.get(__ret__, 'id'),
422
434
  maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
435
+ maintenance_window_enabled=pulumi.get(__ret__, 'maintenance_window_enabled'),
423
436
  maintenance_window_time=pulumi.get(__ret__, 'maintenance_window_time'),
424
437
  plan=pulumi.get(__ret__, 'plan'),
425
438
  project=pulumi.get(__ret__, 'project'),
@@ -475,6 +488,7 @@ def get_thanos_output(project: Optional[pulumi.Input[_builtins.str]] = None,
475
488
  disk_space_used=pulumi.get(__response__, 'disk_space_used'),
476
489
  id=pulumi.get(__response__, 'id'),
477
490
  maintenance_window_dow=pulumi.get(__response__, 'maintenance_window_dow'),
491
+ maintenance_window_enabled=pulumi.get(__response__, 'maintenance_window_enabled'),
478
492
  maintenance_window_time=pulumi.get(__response__, 'maintenance_window_time'),
479
493
  plan=pulumi.get(__response__, 'plan'),
480
494
  project=pulumi.get(__response__, 'project'),
@@ -27,7 +27,7 @@ class GetValkeyResult:
27
27
  """
28
28
  A collection of values returned by getValkey.
29
29
  """
30
- def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None, valkey_user_configs=None, valkeys=None):
30
+ def __init__(__self__, additional_disk_space=None, cloud_name=None, components=None, disk_space=None, disk_space_cap=None, disk_space_default=None, disk_space_step=None, disk_space_used=None, id=None, maintenance_window_dow=None, maintenance_window_enabled=None, maintenance_window_time=None, plan=None, project=None, project_vpc_id=None, service_host=None, service_integrations=None, service_name=None, service_password=None, service_port=None, service_type=None, service_uri=None, service_username=None, state=None, static_ips=None, tags=None, tech_emails=None, termination_protection=None, valkey_user_configs=None, valkeys=None):
31
31
  if additional_disk_space and not isinstance(additional_disk_space, str):
32
32
  raise TypeError("Expected argument 'additional_disk_space' to be a str")
33
33
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
@@ -58,6 +58,9 @@ class GetValkeyResult:
58
58
  if maintenance_window_dow and not isinstance(maintenance_window_dow, str):
59
59
  raise TypeError("Expected argument 'maintenance_window_dow' to be a str")
60
60
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
61
+ if maintenance_window_enabled and not isinstance(maintenance_window_enabled, bool):
62
+ raise TypeError("Expected argument 'maintenance_window_enabled' to be a bool")
63
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
61
64
  if maintenance_window_time and not isinstance(maintenance_window_time, str):
62
65
  raise TypeError("Expected argument 'maintenance_window_time' to be a str")
63
66
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
@@ -196,6 +199,14 @@ class GetValkeyResult:
196
199
  """
197
200
  return pulumi.get(self, "maintenance_window_dow")
198
201
 
202
+ @_builtins.property
203
+ @pulumi.getter(name="maintenanceWindowEnabled")
204
+ def maintenance_window_enabled(self) -> _builtins.bool:
205
+ """
206
+ Indicates whether the maintenance window is currently enabled for this service.
207
+ """
208
+ return pulumi.get(self, "maintenance_window_enabled")
209
+
199
210
  @_builtins.property
200
211
  @pulumi.getter(name="maintenanceWindowTime")
201
212
  def maintenance_window_time(self) -> _builtins.str:
@@ -362,6 +373,7 @@ class AwaitableGetValkeyResult(GetValkeyResult):
362
373
  disk_space_used=self.disk_space_used,
363
374
  id=self.id,
364
375
  maintenance_window_dow=self.maintenance_window_dow,
376
+ maintenance_window_enabled=self.maintenance_window_enabled,
365
377
  maintenance_window_time=self.maintenance_window_time,
366
378
  plan=self.plan,
367
379
  project=self.project,
@@ -420,6 +432,7 @@ def get_valkey(project: Optional[_builtins.str] = None,
420
432
  disk_space_used=pulumi.get(__ret__, 'disk_space_used'),
421
433
  id=pulumi.get(__ret__, 'id'),
422
434
  maintenance_window_dow=pulumi.get(__ret__, 'maintenance_window_dow'),
435
+ maintenance_window_enabled=pulumi.get(__ret__, 'maintenance_window_enabled'),
423
436
  maintenance_window_time=pulumi.get(__ret__, 'maintenance_window_time'),
424
437
  plan=pulumi.get(__ret__, 'plan'),
425
438
  project=pulumi.get(__ret__, 'project'),
@@ -475,6 +488,7 @@ def get_valkey_output(project: Optional[pulumi.Input[_builtins.str]] = None,
475
488
  disk_space_used=pulumi.get(__response__, 'disk_space_used'),
476
489
  id=pulumi.get(__response__, 'id'),
477
490
  maintenance_window_dow=pulumi.get(__response__, 'maintenance_window_dow'),
491
+ maintenance_window_enabled=pulumi.get(__response__, 'maintenance_window_enabled'),
478
492
  maintenance_window_time=pulumi.get(__response__, 'maintenance_window_time'),
479
493
  plan=pulumi.get(__response__, 'plan'),
480
494
  project=pulumi.get(__response__, 'project'),
pulumi_aiven/grafana.py CHANGED
@@ -298,6 +298,7 @@ class _GrafanaState:
298
298
  grafana: Optional[pulumi.Input['GrafanaGrafanaArgs']] = None,
299
299
  grafana_user_config: Optional[pulumi.Input['GrafanaGrafanaUserConfigArgs']] = None,
300
300
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
301
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
301
302
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
302
303
  plan: Optional[pulumi.Input[_builtins.str]] = None,
303
304
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -328,6 +329,7 @@ class _GrafanaState:
328
329
  :param pulumi.Input['GrafanaGrafanaArgs'] grafana: Values provided by the Grafana server.
329
330
  :param pulumi.Input['GrafanaGrafanaUserConfigArgs'] grafana_user_config: Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
330
331
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
332
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
331
333
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
332
334
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
333
335
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -370,6 +372,8 @@ class _GrafanaState:
370
372
  pulumi.set(__self__, "grafana_user_config", grafana_user_config)
371
373
  if maintenance_window_dow is not None:
372
374
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
375
+ if maintenance_window_enabled is not None:
376
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
373
377
  if maintenance_window_time is not None:
374
378
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
375
379
  if plan is not None:
@@ -538,6 +542,18 @@ class _GrafanaState:
538
542
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
539
543
  pulumi.set(self, "maintenance_window_dow", value)
540
544
 
545
+ @_builtins.property
546
+ @pulumi.getter(name="maintenanceWindowEnabled")
547
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
548
+ """
549
+ Indicates whether the maintenance window is currently enabled for this service.
550
+ """
551
+ return pulumi.get(self, "maintenance_window_enabled")
552
+
553
+ @maintenance_window_enabled.setter
554
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
555
+ pulumi.set(self, "maintenance_window_enabled", value)
556
+
541
557
  @_builtins.property
542
558
  @pulumi.getter(name="maintenanceWindowTime")
543
559
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -913,6 +929,7 @@ class Grafana(pulumi.CustomResource):
913
929
  __props__.__dict__["disk_space_default"] = None
914
930
  __props__.__dict__["disk_space_step"] = None
915
931
  __props__.__dict__["disk_space_used"] = None
932
+ __props__.__dict__["maintenance_window_enabled"] = None
916
933
  __props__.__dict__["service_host"] = None
917
934
  __props__.__dict__["service_password"] = None
918
935
  __props__.__dict__["service_port"] = None
@@ -943,6 +960,7 @@ class Grafana(pulumi.CustomResource):
943
960
  grafana: Optional[pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']]] = None,
944
961
  grafana_user_config: Optional[pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']]] = None,
945
962
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
963
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
946
964
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
947
965
  plan: Optional[pulumi.Input[_builtins.str]] = None,
948
966
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -978,6 +996,7 @@ class Grafana(pulumi.CustomResource):
978
996
  :param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Values provided by the Grafana server.
979
997
  :param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
980
998
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
999
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
981
1000
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
982
1001
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
983
1002
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -1010,6 +1029,7 @@ class Grafana(pulumi.CustomResource):
1010
1029
  __props__.__dict__["grafana"] = grafana
1011
1030
  __props__.__dict__["grafana_user_config"] = grafana_user_config
1012
1031
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1032
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
1013
1033
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1014
1034
  __props__.__dict__["plan"] = plan
1015
1035
  __props__.__dict__["project"] = project
@@ -1118,6 +1138,14 @@ class Grafana(pulumi.CustomResource):
1118
1138
  """
1119
1139
  return pulumi.get(self, "maintenance_window_dow")
1120
1140
 
1141
+ @_builtins.property
1142
+ @pulumi.getter(name="maintenanceWindowEnabled")
1143
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1144
+ """
1145
+ Indicates whether the maintenance window is currently enabled for this service.
1146
+ """
1147
+ return pulumi.get(self, "maintenance_window_enabled")
1148
+
1121
1149
  @_builtins.property
1122
1150
  @pulumi.getter(name="maintenanceWindowTime")
1123
1151
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
pulumi_aiven/influx_db.py CHANGED
@@ -297,6 +297,7 @@ class _InfluxDbState:
297
297
  influxdb_user_config: Optional[pulumi.Input['InfluxDbInfluxdbUserConfigArgs']] = None,
298
298
  influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]]] = None,
299
299
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
300
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
300
301
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
301
302
  plan: Optional[pulumi.Input[_builtins.str]] = None,
302
303
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -327,6 +328,7 @@ class _InfluxDbState:
327
328
  :param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
328
329
  :param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
329
330
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
331
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
330
332
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
331
333
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
332
334
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -369,6 +371,8 @@ class _InfluxDbState:
369
371
  pulumi.set(__self__, "influxdbs", influxdbs)
370
372
  if maintenance_window_dow is not None:
371
373
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
374
+ if maintenance_window_enabled is not None:
375
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
372
376
  if maintenance_window_time is not None:
373
377
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
374
378
  if plan is not None:
@@ -537,6 +541,18 @@ class _InfluxDbState:
537
541
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
538
542
  pulumi.set(self, "maintenance_window_dow", value)
539
543
 
544
+ @_builtins.property
545
+ @pulumi.getter(name="maintenanceWindowEnabled")
546
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
547
+ """
548
+ Indicates whether the maintenance window is currently enabled for this service.
549
+ """
550
+ return pulumi.get(self, "maintenance_window_enabled")
551
+
552
+ @maintenance_window_enabled.setter
553
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
554
+ pulumi.set(self, "maintenance_window_enabled", value)
555
+
540
556
  @_builtins.property
541
557
  @pulumi.getter(name="maintenanceWindowTime")
542
558
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -858,6 +874,7 @@ class InfluxDb(pulumi.CustomResource):
858
874
  __props__.__dict__["disk_space_default"] = None
859
875
  __props__.__dict__["disk_space_step"] = None
860
876
  __props__.__dict__["disk_space_used"] = None
877
+ __props__.__dict__["maintenance_window_enabled"] = None
861
878
  __props__.__dict__["service_host"] = None
862
879
  __props__.__dict__["service_password"] = None
863
880
  __props__.__dict__["service_port"] = None
@@ -888,6 +905,7 @@ class InfluxDb(pulumi.CustomResource):
888
905
  influxdb_user_config: Optional[pulumi.Input[Union['InfluxDbInfluxdbUserConfigArgs', 'InfluxDbInfluxdbUserConfigArgsDict']]] = None,
889
906
  influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbInfluxdbArgs', 'InfluxDbInfluxdbArgsDict']]]]] = None,
890
907
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
908
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
891
909
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
892
910
  plan: Optional[pulumi.Input[_builtins.str]] = None,
893
911
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -923,6 +941,7 @@ class InfluxDb(pulumi.CustomResource):
923
941
  :param pulumi.Input[Union['InfluxDbInfluxdbUserConfigArgs', 'InfluxDbInfluxdbUserConfigArgsDict']] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
924
942
  :param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbInfluxdbArgs', 'InfluxDbInfluxdbArgsDict']]]] influxdbs: InfluxDB server provided values
925
943
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
944
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
926
945
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
927
946
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
928
947
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -955,6 +974,7 @@ class InfluxDb(pulumi.CustomResource):
955
974
  __props__.__dict__["influxdb_user_config"] = influxdb_user_config
956
975
  __props__.__dict__["influxdbs"] = influxdbs
957
976
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
977
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
958
978
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
959
979
  __props__.__dict__["plan"] = plan
960
980
  __props__.__dict__["project"] = project
@@ -1063,6 +1083,14 @@ class InfluxDb(pulumi.CustomResource):
1063
1083
  """
1064
1084
  return pulumi.get(self, "maintenance_window_dow")
1065
1085
 
1086
+ @_builtins.property
1087
+ @pulumi.getter(name="maintenanceWindowEnabled")
1088
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1089
+ """
1090
+ Indicates whether the maintenance window is currently enabled for this service.
1091
+ """
1092
+ return pulumi.get(self, "maintenance_window_enabled")
1093
+
1066
1094
  @_builtins.property
1067
1095
  @pulumi.getter(name="maintenanceWindowTime")
1068
1096
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
pulumi_aiven/kafka.py CHANGED
@@ -335,6 +335,7 @@ class _KafkaState:
335
335
  kafkas: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]]] = None,
336
336
  karapace: Optional[pulumi.Input[_builtins.bool]] = None,
337
337
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
338
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
338
339
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
339
340
  plan: Optional[pulumi.Input[_builtins.str]] = None,
340
341
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -367,6 +368,7 @@ class _KafkaState:
367
368
  :param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
368
369
  :param pulumi.Input[_builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
369
370
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
371
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
370
372
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
371
373
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
372
374
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -416,6 +418,8 @@ class _KafkaState:
416
418
  pulumi.set(__self__, "karapace", karapace)
417
419
  if maintenance_window_dow is not None:
418
420
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
421
+ if maintenance_window_enabled is not None:
422
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
419
423
  if maintenance_window_time is not None:
420
424
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
421
425
  if plan is not None:
@@ -609,6 +613,18 @@ class _KafkaState:
609
613
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
610
614
  pulumi.set(self, "maintenance_window_dow", value)
611
615
 
616
+ @_builtins.property
617
+ @pulumi.getter(name="maintenanceWindowEnabled")
618
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
619
+ """
620
+ Indicates whether the maintenance window is currently enabled for this service.
621
+ """
622
+ return pulumi.get(self, "maintenance_window_enabled")
623
+
624
+ @maintenance_window_enabled.setter
625
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
626
+ pulumi.set(self, "maintenance_window_enabled", value)
627
+
612
628
  @_builtins.property
613
629
  @pulumi.getter(name="maintenanceWindowTime")
614
630
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -1010,6 +1026,7 @@ class Kafka(pulumi.CustomResource):
1010
1026
  __props__.__dict__["disk_space_default"] = None
1011
1027
  __props__.__dict__["disk_space_step"] = None
1012
1028
  __props__.__dict__["disk_space_used"] = None
1029
+ __props__.__dict__["maintenance_window_enabled"] = None
1013
1030
  __props__.__dict__["service_host"] = None
1014
1031
  __props__.__dict__["service_password"] = None
1015
1032
  __props__.__dict__["service_port"] = None
@@ -1042,6 +1059,7 @@ class Kafka(pulumi.CustomResource):
1042
1059
  kafkas: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]]] = None,
1043
1060
  karapace: Optional[pulumi.Input[_builtins.bool]] = None,
1044
1061
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
1062
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1045
1063
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
1046
1064
  plan: Optional[pulumi.Input[_builtins.str]] = None,
1047
1065
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1079,6 +1097,7 @@ class Kafka(pulumi.CustomResource):
1079
1097
  :param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
1080
1098
  :param pulumi.Input[_builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy. This attribute is deprecated, use `schema_registry` and `kafka_rest` instead.
1081
1099
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
1100
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
1082
1101
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
1083
1102
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
1084
1103
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -1113,6 +1132,7 @@ class Kafka(pulumi.CustomResource):
1113
1132
  __props__.__dict__["kafkas"] = kafkas
1114
1133
  __props__.__dict__["karapace"] = karapace
1115
1134
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1135
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
1116
1136
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1117
1137
  __props__.__dict__["plan"] = plan
1118
1138
  __props__.__dict__["project"] = project
@@ -1238,6 +1258,14 @@ class Kafka(pulumi.CustomResource):
1238
1258
  """
1239
1259
  return pulumi.get(self, "maintenance_window_dow")
1240
1260
 
1261
+ @_builtins.property
1262
+ @pulumi.getter(name="maintenanceWindowEnabled")
1263
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1264
+ """
1265
+ Indicates whether the maintenance window is currently enabled for this service.
1266
+ """
1267
+ return pulumi.get(self, "maintenance_window_enabled")
1268
+
1241
1269
  @_builtins.property
1242
1270
  @pulumi.getter(name="maintenanceWindowTime")
1243
1271
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -280,6 +280,7 @@ class _KafkaConnectState:
280
280
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
281
281
  kafka_connect_user_config: Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs']] = None,
282
282
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
283
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
283
284
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
284
285
  plan: Optional[pulumi.Input[_builtins.str]] = None,
285
286
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -309,6 +310,7 @@ class _KafkaConnectState:
309
310
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
310
311
  :param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
311
312
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
313
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
312
314
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
313
315
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
314
316
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -349,6 +351,8 @@ class _KafkaConnectState:
349
351
  pulumi.set(__self__, "kafka_connect_user_config", kafka_connect_user_config)
350
352
  if maintenance_window_dow is not None:
351
353
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
354
+ if maintenance_window_enabled is not None:
355
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
352
356
  if maintenance_window_time is not None:
353
357
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
354
358
  if plan is not None:
@@ -505,6 +509,18 @@ class _KafkaConnectState:
505
509
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
506
510
  pulumi.set(self, "maintenance_window_dow", value)
507
511
 
512
+ @_builtins.property
513
+ @pulumi.getter(name="maintenanceWindowEnabled")
514
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
515
+ """
516
+ Indicates whether the maintenance window is currently enabled for this service.
517
+ """
518
+ return pulumi.get(self, "maintenance_window_enabled")
519
+
520
+ @maintenance_window_enabled.setter
521
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
522
+ pulumi.set(self, "maintenance_window_enabled", value)
523
+
508
524
  @_builtins.property
509
525
  @pulumi.getter(name="maintenanceWindowTime")
510
526
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -934,6 +950,7 @@ class KafkaConnect(pulumi.CustomResource):
934
950
  __props__.__dict__["disk_space_default"] = None
935
951
  __props__.__dict__["disk_space_step"] = None
936
952
  __props__.__dict__["disk_space_used"] = None
953
+ __props__.__dict__["maintenance_window_enabled"] = None
937
954
  __props__.__dict__["service_host"] = None
938
955
  __props__.__dict__["service_password"] = None
939
956
  __props__.__dict__["service_port"] = None
@@ -963,6 +980,7 @@ class KafkaConnect(pulumi.CustomResource):
963
980
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
964
981
  kafka_connect_user_config: Optional[pulumi.Input[Union['KafkaConnectKafkaConnectUserConfigArgs', 'KafkaConnectKafkaConnectUserConfigArgsDict']]] = None,
965
982
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
983
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
966
984
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
967
985
  plan: Optional[pulumi.Input[_builtins.str]] = None,
968
986
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -997,6 +1015,7 @@ class KafkaConnect(pulumi.CustomResource):
997
1015
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
998
1016
  :param pulumi.Input[Union['KafkaConnectKafkaConnectUserConfigArgs', 'KafkaConnectKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
999
1017
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
1018
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
1000
1019
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
1001
1020
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
1002
1021
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -1028,6 +1047,7 @@ class KafkaConnect(pulumi.CustomResource):
1028
1047
  __props__.__dict__["disk_space_used"] = disk_space_used
1029
1048
  __props__.__dict__["kafka_connect_user_config"] = kafka_connect_user_config
1030
1049
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1050
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
1031
1051
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1032
1052
  __props__.__dict__["plan"] = plan
1033
1053
  __props__.__dict__["project"] = project
@@ -1128,6 +1148,14 @@ class KafkaConnect(pulumi.CustomResource):
1128
1148
  """
1129
1149
  return pulumi.get(self, "maintenance_window_dow")
1130
1150
 
1151
+ @_builtins.property
1152
+ @pulumi.getter(name="maintenanceWindowEnabled")
1153
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1154
+ """
1155
+ Indicates whether the maintenance window is currently enabled for this service.
1156
+ """
1157
+ return pulumi.get(self, "maintenance_window_enabled")
1158
+
1131
1159
  @_builtins.property
1132
1160
  @pulumi.getter(name="maintenanceWindowTime")
1133
1161
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -280,6 +280,7 @@ class _KafkaMirrorMakerState:
280
280
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
281
281
  kafka_mirrormaker_user_config: Optional[pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs']] = None,
282
282
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
283
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
283
284
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
284
285
  plan: Optional[pulumi.Input[_builtins.str]] = None,
285
286
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -309,6 +310,7 @@ class _KafkaMirrorMakerState:
309
310
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
310
311
  :param pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
311
312
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
313
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
312
314
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
313
315
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
314
316
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -349,6 +351,8 @@ class _KafkaMirrorMakerState:
349
351
  pulumi.set(__self__, "kafka_mirrormaker_user_config", kafka_mirrormaker_user_config)
350
352
  if maintenance_window_dow is not None:
351
353
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
354
+ if maintenance_window_enabled is not None:
355
+ pulumi.set(__self__, "maintenance_window_enabled", maintenance_window_enabled)
352
356
  if maintenance_window_time is not None:
353
357
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
354
358
  if plan is not None:
@@ -505,6 +509,18 @@ class _KafkaMirrorMakerState:
505
509
  def maintenance_window_dow(self, value: Optional[pulumi.Input[_builtins.str]]):
506
510
  pulumi.set(self, "maintenance_window_dow", value)
507
511
 
512
+ @_builtins.property
513
+ @pulumi.getter(name="maintenanceWindowEnabled")
514
+ def maintenance_window_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
515
+ """
516
+ Indicates whether the maintenance window is currently enabled for this service.
517
+ """
518
+ return pulumi.get(self, "maintenance_window_enabled")
519
+
520
+ @maintenance_window_enabled.setter
521
+ def maintenance_window_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
522
+ pulumi.set(self, "maintenance_window_enabled", value)
523
+
508
524
  @_builtins.property
509
525
  @pulumi.getter(name="maintenanceWindowTime")
510
526
  def maintenance_window_time(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -878,6 +894,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
878
894
  __props__.__dict__["disk_space_default"] = None
879
895
  __props__.__dict__["disk_space_step"] = None
880
896
  __props__.__dict__["disk_space_used"] = None
897
+ __props__.__dict__["maintenance_window_enabled"] = None
881
898
  __props__.__dict__["service_host"] = None
882
899
  __props__.__dict__["service_password"] = None
883
900
  __props__.__dict__["service_port"] = None
@@ -907,6 +924,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
907
924
  disk_space_used: Optional[pulumi.Input[_builtins.str]] = None,
908
925
  kafka_mirrormaker_user_config: Optional[pulumi.Input[Union['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs', 'KafkaMirrorMakerKafkaMirrormakerUserConfigArgsDict']]] = None,
909
926
  maintenance_window_dow: Optional[pulumi.Input[_builtins.str]] = None,
927
+ maintenance_window_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
910
928
  maintenance_window_time: Optional[pulumi.Input[_builtins.str]] = None,
911
929
  plan: Optional[pulumi.Input[_builtins.str]] = None,
912
930
  project: Optional[pulumi.Input[_builtins.str]] = None,
@@ -941,6 +959,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
941
959
  :param pulumi.Input[_builtins.str] disk_space_used: The disk space that the service is currently using. This is the sum of `disk_space` and `additional_disk_space` in human-readable format (for example: `90GiB`).
942
960
  :param pulumi.Input[Union['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs', 'KafkaMirrorMakerKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
943
961
  :param pulumi.Input[_builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
962
+ :param pulumi.Input[_builtins.bool] maintenance_window_enabled: Indicates whether the maintenance window is currently enabled for this service.
944
963
  :param pulumi.Input[_builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
945
964
  :param pulumi.Input[_builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
946
965
  :param pulumi.Input[_builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -972,6 +991,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
972
991
  __props__.__dict__["disk_space_used"] = disk_space_used
973
992
  __props__.__dict__["kafka_mirrormaker_user_config"] = kafka_mirrormaker_user_config
974
993
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
994
+ __props__.__dict__["maintenance_window_enabled"] = maintenance_window_enabled
975
995
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
976
996
  __props__.__dict__["plan"] = plan
977
997
  __props__.__dict__["project"] = project
@@ -1072,6 +1092,14 @@ class KafkaMirrorMaker(pulumi.CustomResource):
1072
1092
  """
1073
1093
  return pulumi.get(self, "maintenance_window_dow")
1074
1094
 
1095
+ @_builtins.property
1096
+ @pulumi.getter(name="maintenanceWindowEnabled")
1097
+ def maintenance_window_enabled(self) -> pulumi.Output[_builtins.bool]:
1098
+ """
1099
+ Indicates whether the maintenance window is currently enabled for this service.
1100
+ """
1101
+ return pulumi.get(self, "maintenance_window_enabled")
1102
+
1075
1103
  @_builtins.property
1076
1104
  @pulumi.getter(name="maintenanceWindowTime")
1077
1105
  def maintenance_window_time(self) -> pulumi.Output[Optional[_builtins.str]]: