pulumi-aiven 6.28.0a1731647682__py3-none-any.whl → 6.29.0__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 (60) hide show
  1. pulumi_aiven/__init__.py +9 -0
  2. pulumi_aiven/_inputs.py +1136 -227
  3. pulumi_aiven/account_team_project.py +7 -7
  4. pulumi_aiven/billing_group.py +7 -7
  5. pulumi_aiven/cassandra.py +8 -8
  6. pulumi_aiven/clickhouse.py +8 -8
  7. pulumi_aiven/dragonfly.py +8 -8
  8. pulumi_aiven/flink.py +8 -8
  9. pulumi_aiven/get_account_team_project.py +1 -1
  10. pulumi_aiven/get_billing_group.py +1 -1
  11. pulumi_aiven/get_cassanda.py +1 -1
  12. pulumi_aiven/get_cassandra.py +1 -1
  13. pulumi_aiven/get_clickhouse.py +1 -1
  14. pulumi_aiven/get_dragonfly.py +1 -1
  15. pulumi_aiven/get_flink.py +1 -1
  16. pulumi_aiven/get_grafana.py +1 -1
  17. pulumi_aiven/get_kafka.py +1 -1
  18. pulumi_aiven/get_kafka_connect.py +1 -1
  19. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  20. pulumi_aiven/get_m3_aggregator.py +1 -1
  21. pulumi_aiven/get_m3_db.py +1 -1
  22. pulumi_aiven/get_mirror_maker_replication_flow.py +16 -2
  23. pulumi_aiven/get_my_sql.py +1 -1
  24. pulumi_aiven/get_open_search.py +1 -1
  25. pulumi_aiven/get_pg.py +1 -1
  26. pulumi_aiven/get_project_user.py +1 -1
  27. pulumi_aiven/get_redis.py +1 -1
  28. pulumi_aiven/get_service_component.py +9 -9
  29. pulumi_aiven/get_service_integration.py +17 -17
  30. pulumi_aiven/get_service_integration_endpoint.py +59 -31
  31. pulumi_aiven/get_thanos.py +1 -1
  32. pulumi_aiven/get_valkey.py +1 -1
  33. pulumi_aiven/get_valkey_user.py +9 -9
  34. pulumi_aiven/grafana.py +8 -8
  35. pulumi_aiven/influx_db.py +15 -8
  36. pulumi_aiven/kafka.py +8 -8
  37. pulumi_aiven/kafka_connect.py +8 -8
  38. pulumi_aiven/kafka_mirror_maker.py +8 -8
  39. pulumi_aiven/kafka_native_acl.py +534 -0
  40. pulumi_aiven/m3_aggregator.py +8 -8
  41. pulumi_aiven/m3_db.py +8 -8
  42. pulumi_aiven/mirror_maker_replication_flow.py +54 -7
  43. pulumi_aiven/my_sql.py +8 -8
  44. pulumi_aiven/open_search.py +8 -8
  45. pulumi_aiven/organization_group_project.py +17 -9
  46. pulumi_aiven/organization_permission.py +49 -49
  47. pulumi_aiven/outputs.py +1586 -295
  48. pulumi_aiven/pg.py +8 -8
  49. pulumi_aiven/project_user.py +15 -7
  50. pulumi_aiven/pulumi-plugin.json +1 -1
  51. pulumi_aiven/redis.py +8 -8
  52. pulumi_aiven/service_integration.py +139 -123
  53. pulumi_aiven/service_integration_endpoint.py +302 -140
  54. pulumi_aiven/thanos.py +8 -8
  55. pulumi_aiven/valkey.py +10 -10
  56. pulumi_aiven/valkey_user.py +142 -48
  57. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/METADATA +5 -5
  58. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/RECORD +60 -59
  59. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/WHEEL +1 -1
  60. {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,10 @@ class GetServiceIntegrationEndpointResult:
27
27
  """
28
28
  A collection of values returned by getServiceIntegrationEndpoint.
29
29
  """
30
- def __init__(__self__, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_aws_s3_user_configs=None, external_clickhouse_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_mysql_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
30
+ def __init__(__self__, autoscaler_user_configs=None, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_aws_s3_user_configs=None, external_clickhouse_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_mysql_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_prometheus_user_configs=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
31
+ if autoscaler_user_configs and not isinstance(autoscaler_user_configs, list):
32
+ raise TypeError("Expected argument 'autoscaler_user_configs' to be a list")
33
+ pulumi.set(__self__, "autoscaler_user_configs", autoscaler_user_configs)
31
34
  if datadog_user_configs and not isinstance(datadog_user_configs, list):
32
35
  raise TypeError("Expected argument 'datadog_user_configs' to be a list")
33
36
  pulumi.set(__self__, "datadog_user_configs", datadog_user_configs)
@@ -73,6 +76,9 @@ class GetServiceIntegrationEndpointResult:
73
76
  if external_postgresqls and not isinstance(external_postgresqls, list):
74
77
  raise TypeError("Expected argument 'external_postgresqls' to be a list")
75
78
  pulumi.set(__self__, "external_postgresqls", external_postgresqls)
79
+ if external_prometheus_user_configs and not isinstance(external_prometheus_user_configs, list):
80
+ raise TypeError("Expected argument 'external_prometheus_user_configs' to be a list")
81
+ pulumi.set(__self__, "external_prometheus_user_configs", external_prometheus_user_configs)
76
82
  if external_schema_registry_user_configs and not isinstance(external_schema_registry_user_configs, list):
77
83
  raise TypeError("Expected argument 'external_schema_registry_user_configs' to be a list")
78
84
  pulumi.set(__self__, "external_schema_registry_user_configs", external_schema_registry_user_configs)
@@ -92,11 +98,19 @@ class GetServiceIntegrationEndpointResult:
92
98
  raise TypeError("Expected argument 'rsyslog_user_configs' to be a list")
93
99
  pulumi.set(__self__, "rsyslog_user_configs", rsyslog_user_configs)
94
100
 
101
+ @property
102
+ @pulumi.getter(name="autoscalerUserConfigs")
103
+ def autoscaler_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointAutoscalerUserConfigResult']:
104
+ """
105
+ Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
106
+ """
107
+ return pulumi.get(self, "autoscaler_user_configs")
108
+
95
109
  @property
96
110
  @pulumi.getter(name="datadogUserConfigs")
97
111
  def datadog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointDatadogUserConfigResult']:
98
112
  """
99
- Datadog user configurable settings
113
+ Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
100
114
  """
101
115
  return pulumi.get(self, "datadog_user_configs")
102
116
 
@@ -104,7 +118,7 @@ class GetServiceIntegrationEndpointResult:
104
118
  @pulumi.getter(name="endpointConfig")
105
119
  def endpoint_config(self) -> Mapping[str, str]:
106
120
  """
107
- Integration endpoint specific backend configuration
121
+ Backend configuration for the endpoint.
108
122
  """
109
123
  return pulumi.get(self, "endpoint_config")
110
124
 
@@ -112,7 +126,7 @@ class GetServiceIntegrationEndpointResult:
112
126
  @pulumi.getter(name="endpointName")
113
127
  def endpoint_name(self) -> str:
114
128
  """
115
- Name of the service integration endpoint
129
+ Name of the service integration endpoint.
116
130
  """
117
131
  return pulumi.get(self, "endpoint_name")
118
132
 
@@ -120,7 +134,7 @@ class GetServiceIntegrationEndpointResult:
120
134
  @pulumi.getter(name="endpointType")
121
135
  def endpoint_type(self) -> str:
122
136
  """
123
- Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus`, `rsyslog`
137
+ The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
124
138
  """
125
139
  return pulumi.get(self, "endpoint_type")
126
140
 
@@ -128,7 +142,7 @@ class GetServiceIntegrationEndpointResult:
128
142
  @pulumi.getter(name="externalAwsCloudwatchLogsUserConfigs")
129
143
  def external_aws_cloudwatch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigResult']:
130
144
  """
131
- ExternalAwsCloudwatchLogs user configurable settings
145
+ ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
132
146
  """
133
147
  return pulumi.get(self, "external_aws_cloudwatch_logs_user_configs")
134
148
 
@@ -136,7 +150,7 @@ class GetServiceIntegrationEndpointResult:
136
150
  @pulumi.getter(name="externalAwsCloudwatchMetricsUserConfigs")
137
151
  def external_aws_cloudwatch_metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigResult']:
138
152
  """
139
- ExternalAwsCloudwatchMetrics user configurable settings
153
+ ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
140
154
  """
141
155
  return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
142
156
 
@@ -144,7 +158,7 @@ class GetServiceIntegrationEndpointResult:
144
158
  @pulumi.getter(name="externalAwsS3UserConfigs")
145
159
  def external_aws_s3_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsS3UserConfigResult']:
146
160
  """
147
- ExternalAwsS3 user configurable settings
161
+ ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
148
162
  """
149
163
  return pulumi.get(self, "external_aws_s3_user_configs")
150
164
 
@@ -152,7 +166,7 @@ class GetServiceIntegrationEndpointResult:
152
166
  @pulumi.getter(name="externalClickhouseUserConfigs")
153
167
  def external_clickhouse_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalClickhouseUserConfigResult']:
154
168
  """
155
- ExternalClickhouse user configurable settings
169
+ ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
156
170
  """
157
171
  return pulumi.get(self, "external_clickhouse_user_configs")
158
172
 
@@ -160,7 +174,7 @@ class GetServiceIntegrationEndpointResult:
160
174
  @pulumi.getter(name="externalElasticsearchLogsUserConfigs")
161
175
  def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalElasticsearchLogsUserConfigResult']:
162
176
  """
163
- ExternalElasticsearchLogs user configurable settings
177
+ ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
164
178
  """
165
179
  return pulumi.get(self, "external_elasticsearch_logs_user_configs")
166
180
 
@@ -168,7 +182,7 @@ class GetServiceIntegrationEndpointResult:
168
182
  @pulumi.getter(name="externalGoogleCloudBigqueries")
169
183
  def external_google_cloud_bigqueries(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult']:
170
184
  """
171
- ExternalGoogleCloudBigquery user configurable settings
185
+ ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
172
186
  """
173
187
  return pulumi.get(self, "external_google_cloud_bigqueries")
174
188
 
@@ -176,7 +190,7 @@ class GetServiceIntegrationEndpointResult:
176
190
  @pulumi.getter(name="externalGoogleCloudLoggingUserConfigs")
177
191
  def external_google_cloud_logging_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigResult']:
178
192
  """
179
- ExternalGoogleCloudLogging user configurable settings
193
+ ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
180
194
  """
181
195
  return pulumi.get(self, "external_google_cloud_logging_user_configs")
182
196
 
@@ -184,7 +198,7 @@ class GetServiceIntegrationEndpointResult:
184
198
  @pulumi.getter(name="externalKafkaUserConfigs")
185
199
  def external_kafka_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalKafkaUserConfigResult']:
186
200
  """
187
- ExternalKafka user configurable settings
201
+ ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
188
202
  """
189
203
  return pulumi.get(self, "external_kafka_user_configs")
190
204
 
@@ -192,7 +206,7 @@ class GetServiceIntegrationEndpointResult:
192
206
  @pulumi.getter(name="externalMysqlUserConfigs")
193
207
  def external_mysql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalMysqlUserConfigResult']:
194
208
  """
195
- ExternalMysql user configurable settings
209
+ ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
196
210
  """
197
211
  return pulumi.get(self, "external_mysql_user_configs")
198
212
 
@@ -200,7 +214,7 @@ class GetServiceIntegrationEndpointResult:
200
214
  @pulumi.getter(name="externalOpensearchLogsUserConfigs")
201
215
  def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalOpensearchLogsUserConfigResult']:
202
216
  """
203
- ExternalOpensearchLogs user configurable settings
217
+ ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
204
218
  """
205
219
  return pulumi.get(self, "external_opensearch_logs_user_configs")
206
220
 
@@ -208,15 +222,23 @@ class GetServiceIntegrationEndpointResult:
208
222
  @pulumi.getter(name="externalPostgresqls")
209
223
  def external_postgresqls(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPostgresqlResult']:
210
224
  """
211
- ExternalPostgresql user configurable settings
225
+ ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
212
226
  """
213
227
  return pulumi.get(self, "external_postgresqls")
214
228
 
229
+ @property
230
+ @pulumi.getter(name="externalPrometheusUserConfigs")
231
+ def external_prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPrometheusUserConfigResult']:
232
+ """
233
+ ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
234
+ """
235
+ return pulumi.get(self, "external_prometheus_user_configs")
236
+
215
237
  @property
216
238
  @pulumi.getter(name="externalSchemaRegistryUserConfigs")
217
239
  def external_schema_registry_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalSchemaRegistryUserConfigResult']:
218
240
  """
219
- ExternalSchemaRegistry user configurable settings
241
+ ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
220
242
  """
221
243
  return pulumi.get(self, "external_schema_registry_user_configs")
222
244
 
@@ -232,7 +254,7 @@ class GetServiceIntegrationEndpointResult:
232
254
  @pulumi.getter(name="jolokiaUserConfigs")
233
255
  def jolokia_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointJolokiaUserConfigResult']:
234
256
  """
235
- Jolokia user configurable settings
257
+ Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
236
258
  """
237
259
  return pulumi.get(self, "jolokia_user_configs")
238
260
 
@@ -240,7 +262,7 @@ class GetServiceIntegrationEndpointResult:
240
262
  @pulumi.getter
241
263
  def project(self) -> str:
242
264
  """
243
- Project the service integration endpoint belongs to
265
+ Project the service integration endpoint is in.
244
266
  """
245
267
  return pulumi.get(self, "project")
246
268
 
@@ -248,7 +270,7 @@ class GetServiceIntegrationEndpointResult:
248
270
  @pulumi.getter(name="prometheusUserConfigs")
249
271
  def prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointPrometheusUserConfigResult']:
250
272
  """
251
- Prometheus user configurable settings
273
+ Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
252
274
  """
253
275
  return pulumi.get(self, "prometheus_user_configs")
254
276
 
@@ -256,7 +278,7 @@ class GetServiceIntegrationEndpointResult:
256
278
  @pulumi.getter(name="rsyslogUserConfigs")
257
279
  def rsyslog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointRsyslogUserConfigResult']:
258
280
  """
259
- Rsyslog user configurable settings
281
+ Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
260
282
  """
261
283
  return pulumi.get(self, "rsyslog_user_configs")
262
284
 
@@ -267,6 +289,7 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
267
289
  if False:
268
290
  yield self
269
291
  return GetServiceIntegrationEndpointResult(
292
+ autoscaler_user_configs=self.autoscaler_user_configs,
270
293
  datadog_user_configs=self.datadog_user_configs,
271
294
  endpoint_config=self.endpoint_config,
272
295
  endpoint_name=self.endpoint_name,
@@ -282,6 +305,7 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
282
305
  external_mysql_user_configs=self.external_mysql_user_configs,
283
306
  external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
284
307
  external_postgresqls=self.external_postgresqls,
308
+ external_prometheus_user_configs=self.external_prometheus_user_configs,
285
309
  external_schema_registry_user_configs=self.external_schema_registry_user_configs,
286
310
  id=self.id,
287
311
  jolokia_user_configs=self.jolokia_user_configs,
@@ -294,7 +318,7 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
294
318
  project: Optional[str] = None,
295
319
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceIntegrationEndpointResult:
296
320
  """
297
- The Service Integration Endpoint data source provides information about the existing Aiven Service Integration Endpoint.
321
+ Gets information about an integration endpoint.
298
322
 
299
323
  ## Example Usage
300
324
 
@@ -302,13 +326,13 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
302
326
  import pulumi
303
327
  import pulumi_aiven as aiven
304
328
 
305
- myendpoint = aiven.get_service_integration_endpoint(project=myproject["project"],
306
- endpoint_name="<ENDPOINT_NAME>")
329
+ example_datadog_endpoint = aiven.get_service_integration_endpoint(project=example_project["project"],
330
+ endpoint_name="Datadog endpoint")
307
331
  ```
308
332
 
309
333
 
310
- :param str endpoint_name: Name of the service integration endpoint
311
- :param str project: Project the service integration endpoint belongs to
334
+ :param str endpoint_name: Name of the service integration endpoint.
335
+ :param str project: Project the service integration endpoint is in.
312
336
  """
313
337
  __args__ = dict()
314
338
  __args__['endpointName'] = endpoint_name
@@ -317,6 +341,7 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
317
341
  __ret__ = pulumi.runtime.invoke('aiven:index/getServiceIntegrationEndpoint:getServiceIntegrationEndpoint', __args__, opts=opts, typ=GetServiceIntegrationEndpointResult).value
318
342
 
319
343
  return AwaitableGetServiceIntegrationEndpointResult(
344
+ autoscaler_user_configs=pulumi.get(__ret__, 'autoscaler_user_configs'),
320
345
  datadog_user_configs=pulumi.get(__ret__, 'datadog_user_configs'),
321
346
  endpoint_config=pulumi.get(__ret__, 'endpoint_config'),
322
347
  endpoint_name=pulumi.get(__ret__, 'endpoint_name'),
@@ -332,6 +357,7 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
332
357
  external_mysql_user_configs=pulumi.get(__ret__, 'external_mysql_user_configs'),
333
358
  external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
334
359
  external_postgresqls=pulumi.get(__ret__, 'external_postgresqls'),
360
+ external_prometheus_user_configs=pulumi.get(__ret__, 'external_prometheus_user_configs'),
335
361
  external_schema_registry_user_configs=pulumi.get(__ret__, 'external_schema_registry_user_configs'),
336
362
  id=pulumi.get(__ret__, 'id'),
337
363
  jolokia_user_configs=pulumi.get(__ret__, 'jolokia_user_configs'),
@@ -342,7 +368,7 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
342
368
  project: Optional[pulumi.Input[str]] = None,
343
369
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceIntegrationEndpointResult]:
344
370
  """
345
- The Service Integration Endpoint data source provides information about the existing Aiven Service Integration Endpoint.
371
+ Gets information about an integration endpoint.
346
372
 
347
373
  ## Example Usage
348
374
 
@@ -350,13 +376,13 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
350
376
  import pulumi
351
377
  import pulumi_aiven as aiven
352
378
 
353
- myendpoint = aiven.get_service_integration_endpoint(project=myproject["project"],
354
- endpoint_name="<ENDPOINT_NAME>")
379
+ example_datadog_endpoint = aiven.get_service_integration_endpoint(project=example_project["project"],
380
+ endpoint_name="Datadog endpoint")
355
381
  ```
356
382
 
357
383
 
358
- :param str endpoint_name: Name of the service integration endpoint
359
- :param str project: Project the service integration endpoint belongs to
384
+ :param str endpoint_name: Name of the service integration endpoint.
385
+ :param str project: Project the service integration endpoint is in.
360
386
  """
361
387
  __args__ = dict()
362
388
  __args__['endpointName'] = endpoint_name
@@ -364,6 +390,7 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
364
390
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
365
391
  __ret__ = pulumi.runtime.invoke_output('aiven:index/getServiceIntegrationEndpoint:getServiceIntegrationEndpoint', __args__, opts=opts, typ=GetServiceIntegrationEndpointResult)
366
392
  return __ret__.apply(lambda __response__: GetServiceIntegrationEndpointResult(
393
+ autoscaler_user_configs=pulumi.get(__response__, 'autoscaler_user_configs'),
367
394
  datadog_user_configs=pulumi.get(__response__, 'datadog_user_configs'),
368
395
  endpoint_config=pulumi.get(__response__, 'endpoint_config'),
369
396
  endpoint_name=pulumi.get(__response__, 'endpoint_name'),
@@ -379,6 +406,7 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
379
406
  external_mysql_user_configs=pulumi.get(__response__, 'external_mysql_user_configs'),
380
407
  external_opensearch_logs_user_configs=pulumi.get(__response__, 'external_opensearch_logs_user_configs'),
381
408
  external_postgresqls=pulumi.get(__response__, 'external_postgresqls'),
409
+ external_prometheus_user_configs=pulumi.get(__response__, 'external_prometheus_user_configs'),
382
410
  external_schema_registry_user_configs=pulumi.get(__response__, 'external_schema_registry_user_configs'),
383
411
  id=pulumi.get(__response__, 'id'),
384
412
  jolokia_user_configs=pulumi.get(__response__, 'jolokia_user_configs'),
@@ -344,7 +344,7 @@ class GetThanosResult:
344
344
  @pulumi.getter(name="thanosUserConfigs")
345
345
  def thanos_user_configs(self) -> Sequence['outputs.GetThanosThanosUserConfigResult']:
346
346
  """
347
- Thanos user configurable settings
347
+ Thanos user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
348
348
  """
349
349
  return pulumi.get(self, "thanos_user_configs")
350
350
 
@@ -336,7 +336,7 @@ class GetValkeyResult:
336
336
  @pulumi.getter(name="valkeyUserConfigs")
337
337
  def valkey_user_configs(self) -> Sequence['outputs.GetValkeyValkeyUserConfigResult']:
338
338
  """
339
- Valkey user configurable settings
339
+ Valkey user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
340
340
  """
341
341
  return pulumi.get(self, "valkey_user_configs")
342
342
 
@@ -70,7 +70,7 @@ class GetValkeyUserResult:
70
70
  @pulumi.getter
71
71
  def password(self) -> str:
72
72
  """
73
- The password of the Valkey User.
73
+ The Valkey service user's password.
74
74
  """
75
75
  return pulumi.get(self, "password")
76
76
 
@@ -94,7 +94,7 @@ class GetValkeyUserResult:
94
94
  @pulumi.getter
95
95
  def type(self) -> str:
96
96
  """
97
- Type of the user account. Tells whether the user is the primary account or a regular account.
97
+ User account type, such as primary or regular account.
98
98
  """
99
99
  return pulumi.get(self, "type")
100
100
 
@@ -102,7 +102,7 @@ class GetValkeyUserResult:
102
102
  @pulumi.getter
103
103
  def username(self) -> str:
104
104
  """
105
- The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
105
+ Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
106
106
  """
107
107
  return pulumi.get(self, "username")
108
108
 
@@ -110,7 +110,7 @@ class GetValkeyUserResult:
110
110
  @pulumi.getter(name="valkeyAclCategories")
111
111
  def valkey_acl_categories(self) -> Sequence[str]:
112
112
  """
113
- Defines command category rules. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
113
+ Allow or disallow command categories. To allow a category use the prefix `+@` and to disallow use `-@`. See the [Valkey documentation](https://valkey.io/topics/acl/) for details on the ACL feature. The field is required with`valkey_acl_commands` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
114
114
  """
115
115
  return pulumi.get(self, "valkey_acl_categories")
116
116
 
@@ -118,7 +118,7 @@ class GetValkeyUserResult:
118
118
  @pulumi.getter(name="valkeyAclChannels")
119
119
  def valkey_acl_channels(self) -> Sequence[str]:
120
120
  """
121
- Defines the permitted pub/sub channel patterns. Changing this property forces recreation of the resource.
121
+ Allows and disallows access to pub/sub channels. Entries are defined as standard glob patterns. Changing this property forces recreation of the resource.
122
122
  """
123
123
  return pulumi.get(self, "valkey_acl_channels")
124
124
 
@@ -126,7 +126,7 @@ class GetValkeyUserResult:
126
126
  @pulumi.getter(name="valkeyAclCommands")
127
127
  def valkey_acl_commands(self) -> Sequence[str]:
128
128
  """
129
- Defines rules for individual commands. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
129
+ Defines rules for individual commands. To allow a command use the prefix `+` and to disallow use `-`. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
130
130
  """
131
131
  return pulumi.get(self, "valkey_acl_commands")
132
132
 
@@ -134,7 +134,7 @@ class GetValkeyUserResult:
134
134
  @pulumi.getter(name="valkeyAclKeys")
135
135
  def valkey_acl_keys(self) -> Sequence[str]:
136
136
  """
137
- Defines key access rules. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
137
+ Key access rules. Entries are defined as standard glob patterns. The field is required with`valkey_acl_categories` and `valkey_acl_keys`. Changing this property forces recreation of the resource.
138
138
  """
139
139
  return pulumi.get(self, "valkey_acl_keys")
140
140
 
@@ -167,7 +167,7 @@ def get_valkey_user(project: Optional[str] = None,
167
167
 
168
168
  :param 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.
169
169
  :param 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.
170
- :param str username: The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
170
+ :param str username: Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
171
171
  """
172
172
  __args__ = dict()
173
173
  __args__['project'] = project
@@ -197,7 +197,7 @@ def get_valkey_user_output(project: Optional[pulumi.Input[str]] = None,
197
197
 
198
198
  :param 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.
199
199
  :param 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.
200
- :param str username: The actual name of the Valkey User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
200
+ :param str username: Name of the Valkey service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
201
201
  """
202
202
  __args__ = dict()
203
203
  __args__['project'] = project
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[Optional[str]]:
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[Optional[str]]:
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