pulumi-aiven 6.28.0a1731647682__py3-none-any.whl → 6.28.0a1731670317__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 +635 -203
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_component.py +9 -9
- pulumi_aiven/get_service_integration.py +17 -17
- pulumi_aiven/get_service_integration_endpoint.py +59 -31
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +15 -8
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_group_project.py +17 -9
- pulumi_aiven/organization_permission.py +49 -49
- pulumi_aiven/outputs.py +883 -263
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +15 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +139 -123
- pulumi_aiven/service_integration_endpoint.py +302 -140
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/RECORD +54 -54
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/top_level.txt +0 -0
pulumi_aiven/grafana.py
CHANGED
|
@@ -45,7 +45,7 @@ class GrafanaArgs:
|
|
|
45
45
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
46
46
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
47
47
|
:param pulumi.Input['GrafanaGrafanaArgs'] grafana: Values provided by the Grafana server.
|
|
48
|
-
:param pulumi.Input['GrafanaGrafanaUserConfigArgs'] grafana_user_config: Grafana user configurable settings
|
|
48
|
+
: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
|
|
49
49
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
51
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -167,7 +167,7 @@ class GrafanaArgs:
|
|
|
167
167
|
@pulumi.getter(name="grafanaUserConfig")
|
|
168
168
|
def grafana_user_config(self) -> Optional[pulumi.Input['GrafanaGrafanaUserConfigArgs']]:
|
|
169
169
|
"""
|
|
170
|
-
Grafana user configurable settings
|
|
170
|
+
Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
171
171
|
"""
|
|
172
172
|
return pulumi.get(self, "grafana_user_config")
|
|
173
173
|
|
|
@@ -326,7 +326,7 @@ class _GrafanaState:
|
|
|
326
326
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
327
327
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
328
328
|
:param pulumi.Input['GrafanaGrafanaArgs'] grafana: Values provided by the Grafana server.
|
|
329
|
-
:param pulumi.Input['GrafanaGrafanaUserConfigArgs'] grafana_user_config: Grafana user configurable settings
|
|
329
|
+
: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
330
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
331
331
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
332
332
|
:param pulumi.Input[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).
|
|
@@ -523,7 +523,7 @@ class _GrafanaState:
|
|
|
523
523
|
@pulumi.getter(name="grafanaUserConfig")
|
|
524
524
|
def grafana_user_config(self) -> Optional[pulumi.Input['GrafanaGrafanaUserConfigArgs']]:
|
|
525
525
|
"""
|
|
526
|
-
Grafana user configurable settings
|
|
526
|
+
Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
527
527
|
"""
|
|
528
528
|
return pulumi.get(self, "grafana_user_config")
|
|
529
529
|
|
|
@@ -806,7 +806,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
806
806
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
807
807
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
808
808
|
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Values provided by the Grafana server.
|
|
809
|
-
:param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings
|
|
809
|
+
: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
|
|
810
810
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
811
811
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
812
812
|
:param pulumi.Input[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,7 +983,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
983
983
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
984
984
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
985
985
|
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Values provided by the Grafana server.
|
|
986
|
-
:param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings
|
|
986
|
+
: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
|
|
987
987
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
988
988
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
989
989
|
:param pulumi.Input[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).
|
|
@@ -1039,7 +1039,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1039
1039
|
|
|
1040
1040
|
@property
|
|
1041
1041
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1042
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1042
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1043
1043
|
"""
|
|
1044
1044
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1045
1045
|
"""
|
|
@@ -1115,7 +1115,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1115
1115
|
@pulumi.getter(name="grafanaUserConfig")
|
|
1116
1116
|
def grafana_user_config(self) -> pulumi.Output[Optional['outputs.GrafanaGrafanaUserConfig']]:
|
|
1117
1117
|
"""
|
|
1118
|
-
Grafana user configurable settings
|
|
1118
|
+
Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1119
1119
|
"""
|
|
1120
1120
|
return pulumi.get(self, "grafana_user_config")
|
|
1121
1121
|
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -60,7 +60,8 @@ class InfluxDbArgs:
|
|
|
60
60
|
AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
61
61
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
62
62
|
will result in the service rebalancing.
|
|
63
|
-
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings
|
|
63
|
+
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default.
|
|
64
|
+
Options that you add cannot be removed later
|
|
64
65
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
65
66
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
66
67
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -203,7 +204,8 @@ class InfluxDbArgs:
|
|
|
203
204
|
@pulumi.getter(name="influxdbUserConfig")
|
|
204
205
|
def influxdb_user_config(self) -> Optional[pulumi.Input['InfluxDbInfluxdbUserConfigArgs']]:
|
|
205
206
|
"""
|
|
206
|
-
Influxdb user configurable settings
|
|
207
|
+
Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default.
|
|
208
|
+
Options that you add cannot be removed later
|
|
207
209
|
"""
|
|
208
210
|
return pulumi.get(self, "influxdb_user_config")
|
|
209
211
|
|
|
@@ -378,7 +380,8 @@ class _InfluxDbState:
|
|
|
378
380
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the
|
|
379
381
|
project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
380
382
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
381
|
-
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings
|
|
383
|
+
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default.
|
|
384
|
+
Options that you add cannot be removed later
|
|
382
385
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
383
386
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
384
387
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -588,7 +591,8 @@ class _InfluxDbState:
|
|
|
588
591
|
@pulumi.getter(name="influxdbUserConfig")
|
|
589
592
|
def influxdb_user_config(self) -> Optional[pulumi.Input['InfluxDbInfluxdbUserConfigArgs']]:
|
|
590
593
|
"""
|
|
591
|
-
Influxdb user configurable settings
|
|
594
|
+
Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default.
|
|
595
|
+
Options that you add cannot be removed later
|
|
592
596
|
"""
|
|
593
597
|
return pulumi.get(self, "influxdb_user_config")
|
|
594
598
|
|
|
@@ -876,7 +880,8 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
876
880
|
AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
877
881
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
878
882
|
will result in the service rebalancing.
|
|
879
|
-
:param pulumi.Input[Union['InfluxDbInfluxdbUserConfigArgs', 'InfluxDbInfluxdbUserConfigArgsDict']] influxdb_user_config: Influxdb user configurable settings
|
|
883
|
+
: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.
|
|
884
|
+
Options that you add cannot be removed later
|
|
880
885
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbInfluxdbArgs', 'InfluxDbInfluxdbArgsDict']]]] influxdbs: InfluxDB server provided values
|
|
881
886
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
882
887
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -1051,7 +1056,8 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1051
1056
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the
|
|
1052
1057
|
project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
1053
1058
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
1054
|
-
:param pulumi.Input[Union['InfluxDbInfluxdbUserConfigArgs', 'InfluxDbInfluxdbUserConfigArgsDict']] influxdb_user_config: Influxdb user configurable settings
|
|
1059
|
+
: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.
|
|
1060
|
+
Options that you add cannot be removed later
|
|
1055
1061
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbInfluxdbArgs', 'InfluxDbInfluxdbArgsDict']]]] influxdbs: InfluxDB server provided values
|
|
1056
1062
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
1057
1063
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -1122,7 +1128,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1122
1128
|
|
|
1123
1129
|
@property
|
|
1124
1130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1125
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1131
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1126
1132
|
"""
|
|
1127
1133
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your
|
|
1128
1134
|
service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the
|
|
@@ -1200,7 +1206,8 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1200
1206
|
@pulumi.getter(name="influxdbUserConfig")
|
|
1201
1207
|
def influxdb_user_config(self) -> pulumi.Output[Optional['outputs.InfluxDbInfluxdbUserConfig']]:
|
|
1202
1208
|
"""
|
|
1203
|
-
Influxdb user configurable settings
|
|
1209
|
+
Influxdb user configurable settings. **Warning:** There's no way to reset advanced configuration options to default.
|
|
1210
|
+
Options that you add cannot be removed later
|
|
1204
1211
|
"""
|
|
1205
1212
|
return pulumi.get(self, "influxdb_user_config")
|
|
1206
1213
|
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -48,7 +48,7 @@ class KafkaArgs:
|
|
|
48
48
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
49
49
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
50
50
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
51
|
-
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings
|
|
51
|
+
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
53
53
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
54
54
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -189,7 +189,7 @@ class KafkaArgs:
|
|
|
189
189
|
@pulumi.getter(name="kafkaUserConfig")
|
|
190
190
|
def kafka_user_config(self) -> Optional[pulumi.Input['KafkaKafkaUserConfigArgs']]:
|
|
191
191
|
"""
|
|
192
|
-
Kafka user configurable settings
|
|
192
|
+
Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
193
193
|
"""
|
|
194
194
|
return pulumi.get(self, "kafka_user_config")
|
|
195
195
|
|
|
@@ -363,7 +363,7 @@ class _KafkaState:
|
|
|
363
363
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
364
364
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
365
365
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
366
|
-
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings
|
|
366
|
+
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
367
367
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
368
368
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
369
369
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -569,7 +569,7 @@ class _KafkaState:
|
|
|
569
569
|
@pulumi.getter(name="kafkaUserConfig")
|
|
570
570
|
def kafka_user_config(self) -> Optional[pulumi.Input['KafkaKafkaUserConfigArgs']]:
|
|
571
571
|
"""
|
|
572
|
-
Kafka user configurable settings
|
|
572
|
+
Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
573
573
|
"""
|
|
574
574
|
return pulumi.get(self, "kafka_user_config")
|
|
575
575
|
|
|
@@ -887,7 +887,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
887
887
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
888
888
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
889
889
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
890
|
-
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings
|
|
890
|
+
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
891
891
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
892
892
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
893
893
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -1082,7 +1082,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1082
1082
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
1083
1083
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
1084
1084
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
1085
|
-
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings
|
|
1085
|
+
:param pulumi.Input[Union['KafkaKafkaUserConfigArgs', 'KafkaKafkaUserConfigArgsDict']] kafka_user_config: Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1086
1086
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaKafkaArgs', 'KafkaKafkaArgsDict']]]] kafkas: Kafka server connection details.
|
|
1087
1087
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
1088
1088
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -1142,7 +1142,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1142
1142
|
|
|
1143
1143
|
@property
|
|
1144
1144
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1145
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1145
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1146
1146
|
"""
|
|
1147
1147
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1148
1148
|
"""
|
|
@@ -1218,7 +1218,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1218
1218
|
@pulumi.getter(name="kafkaUserConfig")
|
|
1219
1219
|
def kafka_user_config(self) -> pulumi.Output[Optional['outputs.KafkaKafkaUserConfig']]:
|
|
1220
1220
|
"""
|
|
1221
|
-
Kafka user configurable settings
|
|
1221
|
+
Kafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1222
1222
|
"""
|
|
1223
1223
|
return pulumi.get(self, "kafka_user_config")
|
|
1224
1224
|
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -44,7 +44,7 @@ class KafkaConnectArgs:
|
|
|
44
44
|
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
45
45
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
46
46
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
47
|
-
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
47
|
+
: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
|
|
48
48
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
49
49
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
50
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -162,7 +162,7 @@ class KafkaConnectArgs:
|
|
|
162
162
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
163
163
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs']]:
|
|
164
164
|
"""
|
|
165
|
-
KafkaConnect user configurable settings
|
|
165
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
166
166
|
"""
|
|
167
167
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
168
168
|
|
|
@@ -307,7 +307,7 @@ class _KafkaConnectState:
|
|
|
307
307
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
308
308
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
309
309
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
310
|
-
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
310
|
+
: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
311
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
312
312
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
313
313
|
:param pulumi.Input[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).
|
|
@@ -490,7 +490,7 @@ class _KafkaConnectState:
|
|
|
490
490
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
491
491
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs']]:
|
|
492
492
|
"""
|
|
493
|
-
KafkaConnect user configurable settings
|
|
493
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
494
494
|
"""
|
|
495
495
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
496
496
|
|
|
@@ -799,7 +799,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
799
799
|
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
800
800
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
801
801
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
802
|
-
:param pulumi.Input[Union['KafkaConnectKafkaConnectUserConfigArgs', 'KafkaConnectKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
802
|
+
: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
|
|
803
803
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
804
804
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
805
805
|
:param pulumi.Input[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,7 +1002,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1002
1002
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
1003
1003
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
1004
1004
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
1005
|
-
:param pulumi.Input[Union['KafkaConnectKafkaConnectUserConfigArgs', 'KafkaConnectKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
1005
|
+
: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
|
|
1006
1006
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
1007
1007
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1008
1008
|
:param pulumi.Input[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).
|
|
@@ -1057,7 +1057,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1057
1057
|
|
|
1058
1058
|
@property
|
|
1059
1059
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1060
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1060
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1061
1061
|
"""
|
|
1062
1062
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1063
1063
|
"""
|
|
@@ -1125,7 +1125,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1125
1125
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
1126
1126
|
def kafka_connect_user_config(self) -> pulumi.Output[Optional['outputs.KafkaConnectKafkaConnectUserConfig']]:
|
|
1127
1127
|
"""
|
|
1128
|
-
KafkaConnect user configurable settings
|
|
1128
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1129
1129
|
"""
|
|
1130
1130
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
1131
1131
|
|
|
@@ -44,7 +44,7 @@ class KafkaMirrorMakerArgs:
|
|
|
44
44
|
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
45
45
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
46
46
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
47
|
-
:param pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
47
|
+
: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
|
|
48
48
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
49
49
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
50
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -162,7 +162,7 @@ class KafkaMirrorMakerArgs:
|
|
|
162
162
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
163
163
|
def kafka_mirrormaker_user_config(self) -> Optional[pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs']]:
|
|
164
164
|
"""
|
|
165
|
-
KafkaMirrormaker user configurable settings
|
|
165
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
166
166
|
"""
|
|
167
167
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
168
168
|
|
|
@@ -307,7 +307,7 @@ class _KafkaMirrorMakerState:
|
|
|
307
307
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
308
308
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
309
309
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
310
|
-
:param pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
310
|
+
: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
311
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
312
312
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
313
313
|
:param pulumi.Input[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).
|
|
@@ -490,7 +490,7 @@ class _KafkaMirrorMakerState:
|
|
|
490
490
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
491
491
|
def kafka_mirrormaker_user_config(self) -> Optional[pulumi.Input['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs']]:
|
|
492
492
|
"""
|
|
493
|
-
KafkaMirrormaker user configurable settings
|
|
493
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
494
494
|
"""
|
|
495
495
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
496
496
|
|
|
@@ -771,7 +771,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
771
771
|
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
772
772
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
773
773
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
774
|
-
:param pulumi.Input[Union['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs', 'KafkaMirrorMakerKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
774
|
+
: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
|
|
775
775
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
776
776
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
777
777
|
:param pulumi.Input[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,7 +946,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
946
946
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
947
947
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
948
948
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
949
|
-
:param pulumi.Input[Union['KafkaMirrorMakerKafkaMirrormakerUserConfigArgs', 'KafkaMirrorMakerKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
949
|
+
: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
|
|
950
950
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
951
951
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
952
952
|
:param pulumi.Input[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).
|
|
@@ -1001,7 +1001,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1001
1001
|
|
|
1002
1002
|
@property
|
|
1003
1003
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1004
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1004
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1005
1005
|
"""
|
|
1006
1006
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1007
1007
|
"""
|
|
@@ -1069,7 +1069,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1069
1069
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
1070
1070
|
def kafka_mirrormaker_user_config(self) -> pulumi.Output[Optional['outputs.KafkaMirrorMakerKafkaMirrormakerUserConfig']]:
|
|
1071
1071
|
"""
|
|
1072
|
-
KafkaMirrormaker user configurable settings
|
|
1072
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1073
1073
|
"""
|
|
1074
1074
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
1075
1075
|
|
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -46,7 +46,7 @@ class M3AggregatorArgs:
|
|
|
46
46
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
47
47
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
48
48
|
:param pulumi.Input['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
49
|
-
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator user configurable settings
|
|
49
|
+
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
50
50
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
51
51
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
52
52
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -178,7 +178,7 @@ class M3AggregatorArgs:
|
|
|
178
178
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
179
179
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
180
180
|
"""
|
|
181
|
-
M3aggregator user configurable settings
|
|
181
|
+
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
182
182
|
"""
|
|
183
183
|
return pulumi.get(self, "m3aggregator_user_config")
|
|
184
184
|
|
|
@@ -325,7 +325,7 @@ class _M3AggregatorState:
|
|
|
325
325
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
326
326
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
327
327
|
:param pulumi.Input['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
328
|
-
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator user configurable settings
|
|
328
|
+
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
329
329
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
330
330
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
331
331
|
:param pulumi.Input[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).
|
|
@@ -522,7 +522,7 @@ class _M3AggregatorState:
|
|
|
522
522
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
523
523
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
524
524
|
"""
|
|
525
|
-
M3aggregator user configurable settings
|
|
525
|
+
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
526
526
|
"""
|
|
527
527
|
return pulumi.get(self, "m3aggregator_user_config")
|
|
528
528
|
|
|
@@ -802,7 +802,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
802
802
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
803
803
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
804
804
|
:param pulumi.Input[Union['M3AggregatorM3aggregatorArgs', 'M3AggregatorM3aggregatorArgsDict']] m3aggregator: M3 Aggregator server provided values
|
|
805
|
-
:param pulumi.Input[Union['M3AggregatorM3aggregatorUserConfigArgs', 'M3AggregatorM3aggregatorUserConfigArgsDict']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
805
|
+
:param pulumi.Input[Union['M3AggregatorM3aggregatorUserConfigArgs', 'M3AggregatorM3aggregatorUserConfigArgsDict']] m3aggregator_user_config: M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
806
806
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
807
807
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
808
808
|
:param pulumi.Input[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).
|
|
@@ -978,7 +978,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
978
978
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
979
979
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
980
980
|
:param pulumi.Input[Union['M3AggregatorM3aggregatorArgs', 'M3AggregatorM3aggregatorArgsDict']] m3aggregator: M3 Aggregator server provided values
|
|
981
|
-
:param pulumi.Input[Union['M3AggregatorM3aggregatorUserConfigArgs', 'M3AggregatorM3aggregatorUserConfigArgsDict']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
981
|
+
:param pulumi.Input[Union['M3AggregatorM3aggregatorUserConfigArgs', 'M3AggregatorM3aggregatorUserConfigArgsDict']] m3aggregator_user_config: M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
982
982
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
983
983
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
984
984
|
:param pulumi.Input[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).
|
|
@@ -1034,7 +1034,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1034
1034
|
|
|
1035
1035
|
@property
|
|
1036
1036
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1037
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1037
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1038
1038
|
"""
|
|
1039
1039
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1040
1040
|
"""
|
|
@@ -1110,7 +1110,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1110
1110
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
1111
1111
|
def m3aggregator_user_config(self) -> pulumi.Output[Optional['outputs.M3AggregatorM3aggregatorUserConfig']]:
|
|
1112
1112
|
"""
|
|
1113
|
-
M3aggregator user configurable settings
|
|
1113
|
+
M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1114
1114
|
"""
|
|
1115
1115
|
return pulumi.get(self, "m3aggregator_user_config")
|
|
1116
1116
|
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -46,7 +46,7 @@ class M3DbArgs:
|
|
|
46
46
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
47
47
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
48
48
|
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
49
|
-
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings
|
|
49
|
+
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
50
50
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
51
51
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
52
52
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -178,7 +178,7 @@ class M3DbArgs:
|
|
|
178
178
|
@pulumi.getter(name="m3dbUserConfig")
|
|
179
179
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
180
180
|
"""
|
|
181
|
-
M3db user configurable settings
|
|
181
|
+
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
182
182
|
"""
|
|
183
183
|
return pulumi.get(self, "m3db_user_config")
|
|
184
184
|
|
|
@@ -325,7 +325,7 @@ class _M3DbState:
|
|
|
325
325
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
326
326
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
327
327
|
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
328
|
-
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings
|
|
328
|
+
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
329
329
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
330
330
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
331
331
|
:param pulumi.Input[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).
|
|
@@ -522,7 +522,7 @@ class _M3DbState:
|
|
|
522
522
|
@pulumi.getter(name="m3dbUserConfig")
|
|
523
523
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
524
524
|
"""
|
|
525
|
-
M3db user configurable settings
|
|
525
|
+
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
526
526
|
"""
|
|
527
527
|
return pulumi.get(self, "m3db_user_config")
|
|
528
528
|
|
|
@@ -806,7 +806,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
806
806
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
807
807
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
808
808
|
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
809
|
-
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings
|
|
809
|
+
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
810
810
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
811
811
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
812
812
|
:param pulumi.Input[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).
|
|
@@ -986,7 +986,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
986
986
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
987
987
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
988
988
|
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
989
|
-
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings
|
|
989
|
+
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
990
990
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
991
991
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
992
992
|
:param pulumi.Input[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).
|
|
@@ -1042,7 +1042,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1042
1042
|
|
|
1043
1043
|
@property
|
|
1044
1044
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1045
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1045
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1046
1046
|
"""
|
|
1047
1047
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1048
1048
|
"""
|
|
@@ -1118,7 +1118,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1118
1118
|
@pulumi.getter(name="m3dbUserConfig")
|
|
1119
1119
|
def m3db_user_config(self) -> pulumi.Output[Optional['outputs.M3DbM3dbUserConfig']]:
|
|
1120
1120
|
"""
|
|
1121
|
-
M3db user configurable settings
|
|
1121
|
+
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1122
1122
|
"""
|
|
1123
1123
|
return pulumi.get(self, "m3db_user_config")
|
|
1124
1124
|
|