pulumi-aiven 6.43.0a1758777024__py3-none-any.whl → 6.43.1__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 (68) hide show
  1. pulumi_aiven/_inputs.py +660 -186
  2. pulumi_aiven/account_team.py +6 -12
  3. pulumi_aiven/account_team_member.py +6 -12
  4. pulumi_aiven/account_team_project.py +6 -12
  5. pulumi_aiven/alloydbomni.py +44 -23
  6. pulumi_aiven/alloydbomni_database.py +26 -0
  7. pulumi_aiven/alloydbomni_user.py +26 -0
  8. pulumi_aiven/cassandra.py +18 -23
  9. pulumi_aiven/clickhouse.py +18 -23
  10. pulumi_aiven/dragonfly.py +18 -23
  11. pulumi_aiven/flink.py +18 -23
  12. pulumi_aiven/get_account_team.py +6 -12
  13. pulumi_aiven/get_account_team_member.py +6 -12
  14. pulumi_aiven/get_account_team_project.py +6 -12
  15. pulumi_aiven/get_alloydbomni.py +28 -2
  16. pulumi_aiven/get_alloydbomni_database.py +26 -0
  17. pulumi_aiven/get_alloydbomni_user.py +26 -0
  18. pulumi_aiven/get_cassanda.py +2 -2
  19. pulumi_aiven/get_cassandra.py +2 -2
  20. pulumi_aiven/get_clickhouse.py +2 -2
  21. pulumi_aiven/get_dragonfly.py +2 -2
  22. pulumi_aiven/get_flink.py +2 -2
  23. pulumi_aiven/get_grafana.py +2 -2
  24. pulumi_aiven/get_kafka.py +2 -2
  25. pulumi_aiven/get_kafka_connect.py +2 -2
  26. pulumi_aiven/get_kafka_mirror_maker.py +2 -2
  27. pulumi_aiven/get_m3_aggregator.py +2 -111
  28. pulumi_aiven/get_m3_db.py +2 -123
  29. pulumi_aiven/get_m3db_user.py +2 -61
  30. pulumi_aiven/get_my_sql.py +2 -2
  31. pulumi_aiven/get_open_search.py +2 -2
  32. pulumi_aiven/get_organization_application_user.py +29 -11
  33. pulumi_aiven/get_organization_project.py +0 -6
  34. pulumi_aiven/get_pg.py +2 -2
  35. pulumi_aiven/get_redis.py +2 -2
  36. pulumi_aiven/get_redis_user.py +3 -3
  37. pulumi_aiven/get_thanos.py +2 -2
  38. pulumi_aiven/get_valkey.py +2 -2
  39. pulumi_aiven/get_valkey_user.py +3 -3
  40. pulumi_aiven/grafana.py +18 -23
  41. pulumi_aiven/influx_db.py +18 -23
  42. pulumi_aiven/kafka.py +18 -23
  43. pulumi_aiven/kafka_connect.py +20 -25
  44. pulumi_aiven/kafka_mirror_maker.py +18 -23
  45. pulumi_aiven/m3_aggregator.py +20 -75
  46. pulumi_aiven/m3_db.py +20 -95
  47. pulumi_aiven/m3db_user.py +2 -54
  48. pulumi_aiven/my_sql.py +18 -23
  49. pulumi_aiven/open_search.py +18 -23
  50. pulumi_aiven/organization_application_user.py +69 -41
  51. pulumi_aiven/organization_application_user_token.py +127 -91
  52. pulumi_aiven/organization_billing_group.py +7 -7
  53. pulumi_aiven/organization_permission.py +80 -47
  54. pulumi_aiven/organization_project.py +0 -6
  55. pulumi_aiven/organization_user.py +8 -8
  56. pulumi_aiven/outputs.py +620 -238
  57. pulumi_aiven/pg.py +18 -23
  58. pulumi_aiven/project.py +2 -24
  59. pulumi_aiven/pulumi-plugin.json +1 -1
  60. pulumi_aiven/redis.py +18 -23
  61. pulumi_aiven/redis_user.py +21 -21
  62. pulumi_aiven/thanos.py +18 -23
  63. pulumi_aiven/valkey.py +18 -23
  64. pulumi_aiven/valkey_user.py +21 -21
  65. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/METADATA +1 -1
  66. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/RECORD +68 -68
  67. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/WHEEL +0 -0
  68. {pulumi_aiven-6.43.0a1758777024.dist-info → pulumi_aiven-6.43.1.dist-info}/top_level.txt +0 -0
@@ -163,7 +163,7 @@ class GetAlloydbomniResult:
163
163
  @pulumi.getter(name="diskSpace")
164
164
  def disk_space(self) -> _builtins.str:
165
165
  """
166
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
166
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
167
167
  """
168
168
  return pulumi.get(self, "disk_space")
169
169
 
@@ -195,7 +195,7 @@ class GetAlloydbomniResult:
195
195
  @pulumi.getter(name="diskSpaceUsed")
196
196
  def disk_space_used(self) -> _builtins.str:
197
197
  """
198
- Disk space that service is currently using
198
+ 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`).
199
199
  """
200
200
  return pulumi.get(self, "disk_space_used")
201
201
 
@@ -404,6 +404,19 @@ def get_alloydbomni(project: Optional[_builtins.str] = None,
404
404
  **This resource is in the beta stage and may change without notice.** Set
405
405
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
406
406
 
407
+ !> **End of life notice**
408
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
409
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
410
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
411
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
412
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
413
+ Aiven for PostgreSQL®,
414
+ Aiven for ClickHouse®,
415
+ and Aiven for MySQL®.
416
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
417
+ For further assistance, contact the Aiven support team or your
418
+ account team.
419
+
407
420
 
408
421
  :param _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.
409
422
  :param _builtins.str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
@@ -454,6 +467,19 @@ def get_alloydbomni_output(project: Optional[pulumi.Input[_builtins.str]] = None
454
467
  **This resource is in the beta stage and may change without notice.** Set
455
468
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
456
469
 
470
+ !> **End of life notice**
471
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
472
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
473
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
474
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
475
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
476
+ Aiven for PostgreSQL®,
477
+ Aiven for ClickHouse®,
478
+ and Aiven for MySQL®.
479
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
480
+ For further assistance, contact the Aiven support team or your
481
+ account team.
482
+
457
483
 
458
484
  :param _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.
459
485
  :param _builtins.str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
@@ -119,6 +119,19 @@ def get_alloydbomni_database(database_name: Optional[_builtins.str] = None,
119
119
  **This resource is in the beta stage and may change without notice.** Set
120
120
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
121
121
 
122
+ !> **End of life notice**
123
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
124
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
125
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
126
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
127
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
128
+ Aiven for PostgreSQL®,
129
+ Aiven for ClickHouse®,
130
+ and Aiven for MySQL®.
131
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
132
+ For further assistance, contact the Aiven support team or your
133
+ account team.
134
+
122
135
 
123
136
  :param _builtins.str database_name: The name of the service database. Changing this property forces recreation of the resource.
124
137
  :param _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.
@@ -148,6 +161,19 @@ def get_alloydbomni_database_output(database_name: Optional[pulumi.Input[_builti
148
161
  **This resource is in the beta stage and may change without notice.** Set
149
162
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
150
163
 
164
+ !> **End of life notice**
165
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
166
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
167
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
168
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
169
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
170
+ Aiven for PostgreSQL®,
171
+ Aiven for ClickHouse®,
172
+ and Aiven for MySQL®.
173
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
174
+ For further assistance, contact the Aiven support team or your
175
+ account team.
176
+
151
177
 
152
178
  :param _builtins.str database_name: The name of the service database. Changing this property forces recreation of the resource.
153
179
  :param _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.
@@ -155,6 +155,19 @@ def get_alloydbomni_user(project: Optional[_builtins.str] = None,
155
155
  **This resource is in the beta stage and may change without notice.** Set
156
156
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
157
157
 
158
+ !> **End of life notice**
159
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
160
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
161
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
162
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
163
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
164
+ Aiven for PostgreSQL®,
165
+ Aiven for ClickHouse®,
166
+ and Aiven for MySQL®.
167
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
168
+ For further assistance, contact the Aiven support team or your
169
+ account team.
170
+
158
171
 
159
172
  :param _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.
160
173
  :param _builtins.str service_name: The name of the service that 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.
@@ -187,6 +200,19 @@ def get_alloydbomni_user_output(project: Optional[pulumi.Input[_builtins.str]] =
187
200
  **This resource is in the beta stage and may change without notice.** Set
188
201
  the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
189
202
 
203
+ !> **End of life notice**
204
+ Aiven for AlloyDB Omni is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
205
+ From **5 September 2025**, you can no longer create new Aiven for AlloyDB Omni services. Existing
206
+ services continue to operate until the end of life (EOL) date but you cannot change plans for these services.
207
+ On **5 December 2025**, all active Aiven for AlloyDB Omni services are powered off and deleted, making data from
208
+ these services inaccessible. The recommended alternatives to Aiven for AlloyDB Omni are:
209
+ Aiven for PostgreSQL®,
210
+ Aiven for ClickHouse®,
211
+ and Aiven for MySQL®.
212
+ To ensure uninterrupted service, complete your migration before December 5, 2025.
213
+ For further assistance, contact the Aiven support team or your
214
+ account team.
215
+
190
216
 
191
217
  :param _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.
192
218
  :param _builtins.str service_name: The name of the service that 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.
@@ -162,7 +162,7 @@ class GetCassandaResult:
162
162
  @pulumi.getter(name="diskSpace")
163
163
  def disk_space(self) -> _builtins.str:
164
164
  """
165
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
165
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
166
166
  """
167
167
  return pulumi.get(self, "disk_space")
168
168
 
@@ -194,7 +194,7 @@ class GetCassandaResult:
194
194
  @pulumi.getter(name="diskSpaceUsed")
195
195
  def disk_space_used(self) -> _builtins.str:
196
196
  """
197
- Disk space that service is currently using
197
+ 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`).
198
198
  """
199
199
  return pulumi.get(self, "disk_space_used")
200
200
 
@@ -160,7 +160,7 @@ class GetCassandraResult:
160
160
  @pulumi.getter(name="diskSpace")
161
161
  def disk_space(self) -> _builtins.str:
162
162
  """
163
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
163
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
164
164
  """
165
165
  return pulumi.get(self, "disk_space")
166
166
 
@@ -192,7 +192,7 @@ class GetCassandraResult:
192
192
  @pulumi.getter(name="diskSpaceUsed")
193
193
  def disk_space_used(self) -> _builtins.str:
194
194
  """
195
- Disk space that service is currently using
195
+ 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`).
196
196
  """
197
197
  return pulumi.get(self, "disk_space_used")
198
198
 
@@ -160,7 +160,7 @@ class GetClickhouseResult:
160
160
  @pulumi.getter(name="diskSpace")
161
161
  def disk_space(self) -> _builtins.str:
162
162
  """
163
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
163
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
164
164
  """
165
165
  return pulumi.get(self, "disk_space")
166
166
 
@@ -192,7 +192,7 @@ class GetClickhouseResult:
192
192
  @pulumi.getter(name="diskSpaceUsed")
193
193
  def disk_space_used(self) -> _builtins.str:
194
194
  """
195
- Disk space that service is currently using
195
+ 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`).
196
196
  """
197
197
  return pulumi.get(self, "disk_space_used")
198
198
 
@@ -144,7 +144,7 @@ class GetDragonflyResult:
144
144
  @pulumi.getter(name="diskSpace")
145
145
  def disk_space(self) -> _builtins.str:
146
146
  """
147
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
147
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
148
148
  """
149
149
  return pulumi.get(self, "disk_space")
150
150
 
@@ -176,7 +176,7 @@ class GetDragonflyResult:
176
176
  @pulumi.getter(name="diskSpaceUsed")
177
177
  def disk_space_used(self) -> _builtins.str:
178
178
  """
179
- Disk space that service is currently using
179
+ 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`).
180
180
  """
181
181
  return pulumi.get(self, "disk_space_used")
182
182
 
pulumi_aiven/get_flink.py CHANGED
@@ -144,7 +144,7 @@ class GetFlinkResult:
144
144
  @pulumi.getter(name="diskSpace")
145
145
  def disk_space(self) -> _builtins.str:
146
146
  """
147
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
147
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
148
148
  """
149
149
  return pulumi.get(self, "disk_space")
150
150
 
@@ -176,7 +176,7 @@ class GetFlinkResult:
176
176
  @pulumi.getter(name="diskSpaceUsed")
177
177
  def disk_space_used(self) -> _builtins.str:
178
178
  """
179
- Disk space that service is currently using
179
+ 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`).
180
180
  """
181
181
  return pulumi.get(self, "disk_space_used")
182
182
 
@@ -144,7 +144,7 @@ class GetGrafanaResult:
144
144
  @pulumi.getter(name="diskSpace")
145
145
  def disk_space(self) -> _builtins.str:
146
146
  """
147
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
147
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
148
148
  """
149
149
  return pulumi.get(self, "disk_space")
150
150
 
@@ -176,7 +176,7 @@ class GetGrafanaResult:
176
176
  @pulumi.getter(name="diskSpaceUsed")
177
177
  def disk_space_used(self) -> _builtins.str:
178
178
  """
179
- Disk space that service is currently using
179
+ 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`).
180
180
  """
181
181
  return pulumi.get(self, "disk_space_used")
182
182
 
pulumi_aiven/get_kafka.py CHANGED
@@ -158,7 +158,7 @@ class GetKafkaResult:
158
158
  @pulumi.getter(name="diskSpace")
159
159
  def disk_space(self) -> _builtins.str:
160
160
  """
161
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
161
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
162
162
  """
163
163
  return pulumi.get(self, "disk_space")
164
164
 
@@ -190,7 +190,7 @@ class GetKafkaResult:
190
190
  @pulumi.getter(name="diskSpaceUsed")
191
191
  def disk_space_used(self) -> _builtins.str:
192
192
  """
193
- Disk space that service is currently using
193
+ 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`).
194
194
  """
195
195
  return pulumi.get(self, "disk_space_used")
196
196
 
@@ -141,7 +141,7 @@ class GetKafkaConnectResult:
141
141
  @pulumi.getter(name="diskSpace")
142
142
  def disk_space(self) -> _builtins.str:
143
143
  """
144
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
144
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
145
145
  """
146
146
  return pulumi.get(self, "disk_space")
147
147
 
@@ -173,7 +173,7 @@ class GetKafkaConnectResult:
173
173
  @pulumi.getter(name="diskSpaceUsed")
174
174
  def disk_space_used(self) -> _builtins.str:
175
175
  """
176
- Disk space that service is currently using
176
+ 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`).
177
177
  """
178
178
  return pulumi.get(self, "disk_space_used")
179
179
 
@@ -141,7 +141,7 @@ class GetKafkaMirrorMakerResult:
141
141
  @pulumi.getter(name="diskSpace")
142
142
  def disk_space(self) -> _builtins.str:
143
143
  """
144
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
144
+ Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing. Please use `additional_disk_space` to specify the space to be added to the default disk space defined by the plan.
145
145
  """
146
146
  return pulumi.get(self, "disk_space")
147
147
 
@@ -173,7 +173,7 @@ class GetKafkaMirrorMakerResult:
173
173
  @pulumi.getter(name="diskSpaceUsed")
174
174
  def disk_space_used(self) -> _builtins.str:
175
175
  """
176
- Disk space that service is currently using
176
+ 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`).
177
177
  """
178
178
  return pulumi.get(self, "disk_space_used")
179
179
 
@@ -119,65 +119,41 @@ class GetM3AggregatorResult:
119
119
  @_builtins.property
120
120
  @pulumi.getter(name="additionalDiskSpace")
121
121
  def additional_disk_space(self) -> _builtins.str:
122
- """
123
- 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
124
- """
125
122
  return pulumi.get(self, "additional_disk_space")
126
123
 
127
124
  @_builtins.property
128
125
  @pulumi.getter(name="cloudName")
129
126
  def cloud_name(self) -> _builtins.str:
130
- """
131
- The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
132
- """
133
127
  return pulumi.get(self, "cloud_name")
134
128
 
135
129
  @_builtins.property
136
130
  @pulumi.getter
137
131
  def components(self) -> Sequence['outputs.GetM3AggregatorComponentResult']:
138
- """
139
- Service component information objects
140
- """
141
132
  return pulumi.get(self, "components")
142
133
 
143
134
  @_builtins.property
144
135
  @pulumi.getter(name="diskSpace")
145
136
  def disk_space(self) -> _builtins.str:
146
- """
147
- Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
148
- """
149
137
  return pulumi.get(self, "disk_space")
150
138
 
151
139
  @_builtins.property
152
140
  @pulumi.getter(name="diskSpaceCap")
153
141
  def disk_space_cap(self) -> _builtins.str:
154
- """
155
- The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
156
- """
157
142
  return pulumi.get(self, "disk_space_cap")
158
143
 
159
144
  @_builtins.property
160
145
  @pulumi.getter(name="diskSpaceDefault")
161
146
  def disk_space_default(self) -> _builtins.str:
162
- """
163
- 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`
164
- """
165
147
  return pulumi.get(self, "disk_space_default")
166
148
 
167
149
  @_builtins.property
168
150
  @pulumi.getter(name="diskSpaceStep")
169
151
  def disk_space_step(self) -> _builtins.str:
170
- """
171
- 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.
172
- """
173
152
  return pulumi.get(self, "disk_space_step")
174
153
 
175
154
  @_builtins.property
176
155
  @pulumi.getter(name="diskSpaceUsed")
177
156
  def disk_space_used(self) -> _builtins.str:
178
- """
179
- Disk space that service is currently using
180
- """
181
157
  return pulumi.get(self, "disk_space_used")
182
158
 
183
159
  @_builtins.property
@@ -191,121 +167,76 @@ class GetM3AggregatorResult:
191
167
  @_builtins.property
192
168
  @pulumi.getter(name="m3aggregatorUserConfigs")
193
169
  def m3aggregator_user_configs(self) -> Sequence['outputs.GetM3AggregatorM3aggregatorUserConfigResult']:
194
- """
195
- M3aggregator user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
196
- """
197
170
  return pulumi.get(self, "m3aggregator_user_configs")
198
171
 
199
172
  @_builtins.property
200
173
  @pulumi.getter
201
174
  def m3aggregators(self) -> Sequence['outputs.GetM3AggregatorM3aggregatorResult']:
202
- """
203
- M3 Aggregator server provided values
204
- """
205
175
  return pulumi.get(self, "m3aggregators")
206
176
 
207
177
  @_builtins.property
208
178
  @pulumi.getter(name="maintenanceWindowDow")
209
179
  def maintenance_window_dow(self) -> _builtins.str:
210
- """
211
- Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
212
- """
213
180
  return pulumi.get(self, "maintenance_window_dow")
214
181
 
215
182
  @_builtins.property
216
183
  @pulumi.getter(name="maintenanceWindowTime")
217
184
  def maintenance_window_time(self) -> _builtins.str:
218
- """
219
- Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
220
- """
221
185
  return pulumi.get(self, "maintenance_window_time")
222
186
 
223
187
  @_builtins.property
224
188
  @pulumi.getter
225
189
  def plan(self) -> _builtins.str:
226
- """
227
- 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).
228
- """
229
190
  return pulumi.get(self, "plan")
230
191
 
231
192
  @_builtins.property
232
193
  @pulumi.getter
233
194
  def project(self) -> _builtins.str:
234
- """
235
- 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.
236
- """
237
195
  return pulumi.get(self, "project")
238
196
 
239
197
  @_builtins.property
240
198
  @pulumi.getter(name="projectVpcId")
241
199
  def project_vpc_id(self) -> _builtins.str:
242
- """
243
- Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
244
- """
245
200
  return pulumi.get(self, "project_vpc_id")
246
201
 
247
202
  @_builtins.property
248
203
  @pulumi.getter(name="serviceHost")
249
204
  def service_host(self) -> _builtins.str:
250
- """
251
- The hostname of the service.
252
- """
253
205
  return pulumi.get(self, "service_host")
254
206
 
255
207
  @_builtins.property
256
208
  @pulumi.getter(name="serviceIntegrations")
257
209
  def service_integrations(self) -> Sequence['outputs.GetM3AggregatorServiceIntegrationResult']:
258
- """
259
- Service integrations to specify when creating a service. Not applied after initial service creation
260
- """
261
210
  return pulumi.get(self, "service_integrations")
262
211
 
263
212
  @_builtins.property
264
213
  @pulumi.getter(name="serviceName")
265
214
  def service_name(self) -> _builtins.str:
266
- """
267
- Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
268
- """
269
215
  return pulumi.get(self, "service_name")
270
216
 
271
217
  @_builtins.property
272
218
  @pulumi.getter(name="servicePassword")
273
219
  def service_password(self) -> _builtins.str:
274
- """
275
- Password used for connecting to the service, if applicable
276
- """
277
220
  return pulumi.get(self, "service_password")
278
221
 
279
222
  @_builtins.property
280
223
  @pulumi.getter(name="servicePort")
281
224
  def service_port(self) -> _builtins.int:
282
- """
283
- The port of the service
284
- """
285
225
  return pulumi.get(self, "service_port")
286
226
 
287
227
  @_builtins.property
288
228
  @pulumi.getter(name="serviceType")
289
229
  def service_type(self) -> _builtins.str:
290
- """
291
- Aiven internal service type code
292
- """
293
230
  return pulumi.get(self, "service_type")
294
231
 
295
232
  @_builtins.property
296
233
  @pulumi.getter(name="serviceUri")
297
234
  def service_uri(self) -> _builtins.str:
298
- """
299
- URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
300
- """
301
235
  return pulumi.get(self, "service_uri")
302
236
 
303
237
  @_builtins.property
304
238
  @pulumi.getter(name="serviceUsername")
305
239
  def service_username(self) -> _builtins.str:
306
- """
307
- Username used for connecting to the service, if applicable
308
- """
309
240
  return pulumi.get(self, "service_username")
310
241
 
311
242
  @_builtins.property
@@ -316,33 +247,21 @@ class GetM3AggregatorResult:
316
247
  @_builtins.property
317
248
  @pulumi.getter(name="staticIps")
318
249
  def static_ips(self) -> Sequence[_builtins.str]:
319
- """
320
- Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
321
- """
322
250
  return pulumi.get(self, "static_ips")
323
251
 
324
252
  @_builtins.property
325
253
  @pulumi.getter
326
254
  def tags(self) -> Sequence['outputs.GetM3AggregatorTagResult']:
327
- """
328
- Tags are key-value pairs that allow you to categorize services.
329
- """
330
255
  return pulumi.get(self, "tags")
331
256
 
332
257
  @_builtins.property
333
258
  @pulumi.getter(name="techEmails")
334
259
  def tech_emails(self) -> Sequence['outputs.GetM3AggregatorTechEmailResult']:
335
- """
336
- The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
337
- """
338
260
  return pulumi.get(self, "tech_emails")
339
261
 
340
262
  @_builtins.property
341
263
  @pulumi.getter(name="terminationProtection")
342
264
  def termination_protection(self) -> _builtins.bool:
343
- """
344
- Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
345
- """
346
265
  return pulumi.get(self, "termination_protection")
347
266
 
348
267
 
@@ -387,21 +306,7 @@ def get_m3_aggregator(project: Optional[_builtins.str] = None,
387
306
  service_name: Optional[_builtins.str] = None,
388
307
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetM3AggregatorResult:
389
308
  """
390
- The M3 Aggregator data source provides information about the existing Aiven M3 Aggregator.
391
-
392
- ## Example Usage
393
-
394
- ```python
395
- import pulumi
396
- import pulumi_aiven as aiven
397
-
398
- m3a = aiven.get_m3_aggregator(project=foo["project"],
399
- service_name="my-m3a")
400
- ```
401
-
402
-
403
- :param _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.
404
- :param _builtins.str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
309
+ Use this data source to access information about an existing resource.
405
310
  """
406
311
  __args__ = dict()
407
312
  __args__['project'] = project
@@ -443,21 +348,7 @@ def get_m3_aggregator_output(project: Optional[pulumi.Input[_builtins.str]] = No
443
348
  service_name: Optional[pulumi.Input[_builtins.str]] = None,
444
349
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetM3AggregatorResult]:
445
350
  """
446
- The M3 Aggregator data source provides information about the existing Aiven M3 Aggregator.
447
-
448
- ## Example Usage
449
-
450
- ```python
451
- import pulumi
452
- import pulumi_aiven as aiven
453
-
454
- m3a = aiven.get_m3_aggregator(project=foo["project"],
455
- service_name="my-m3a")
456
- ```
457
-
458
-
459
- :param _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.
460
- :param _builtins.str service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
351
+ Use this data source to access information about an existing resource.
461
352
  """
462
353
  __args__ = dict()
463
354
  __args__['project'] = project