pulumi-aiven 6.27.0a1730118480__py3-none-any.whl → 6.28.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.
- 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.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/RECORD +54 -54
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/top_level.txt +0 -0
|
@@ -86,7 +86,7 @@ class GetServiceComponentResult:
|
|
|
86
86
|
@pulumi.getter(name="kafkaAuthenticationMethod")
|
|
87
87
|
def kafka_authentication_method(self) -> Optional[str]:
|
|
88
88
|
"""
|
|
89
|
-
Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
89
|
+
Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "kafka_authentication_method")
|
|
92
92
|
|
|
@@ -110,7 +110,7 @@ class GetServiceComponentResult:
|
|
|
110
110
|
@pulumi.getter
|
|
111
111
|
def route(self) -> Optional[str]:
|
|
112
112
|
"""
|
|
113
|
-
Network access route
|
|
113
|
+
Network access route. The possible values are `dynamic`, `public`, `private` and `privatelink`.
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "route")
|
|
116
116
|
|
|
@@ -134,7 +134,7 @@ class GetServiceComponentResult:
|
|
|
134
134
|
@pulumi.getter
|
|
135
135
|
def usage(self) -> Optional[str]:
|
|
136
136
|
"""
|
|
137
|
-
DNS usage name
|
|
137
|
+
DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "usage")
|
|
140
140
|
|
|
@@ -185,12 +185,12 @@ def get_service_component(component: Optional[str] = None,
|
|
|
185
185
|
|
|
186
186
|
|
|
187
187
|
:param str component: Service component name
|
|
188
|
-
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
188
|
+
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
|
|
189
189
|
:param str project: Project name
|
|
190
|
-
:param str route: Network access route
|
|
190
|
+
:param str route: Network access route. The possible values are `dynamic`, `public`, `private` and `privatelink`.
|
|
191
191
|
:param str service_name: Service name
|
|
192
192
|
:param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
|
|
193
|
-
:param str usage: DNS usage name
|
|
193
|
+
:param str usage: DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
|
|
194
194
|
"""
|
|
195
195
|
__args__ = dict()
|
|
196
196
|
__args__['component'] = component
|
|
@@ -242,12 +242,12 @@ def get_service_component_output(component: Optional[pulumi.Input[str]] = None,
|
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
:param str component: Service component name
|
|
245
|
-
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
245
|
+
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
|
|
246
246
|
:param str project: Project name
|
|
247
|
-
:param str route: Network access route
|
|
247
|
+
:param str route: Network access route. The possible values are `dynamic`, `public`, `private` and `privatelink`.
|
|
248
248
|
:param str service_name: Service name
|
|
249
249
|
:param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
|
|
250
|
-
:param str usage: DNS usage name
|
|
250
|
+
:param str usage: DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
|
|
251
251
|
"""
|
|
252
252
|
__args__ = dict()
|
|
253
253
|
__args__['component'] = component
|
|
@@ -99,7 +99,7 @@ class GetServiceIntegrationResult:
|
|
|
99
99
|
@pulumi.getter(name="clickhouseKafkaUserConfigs")
|
|
100
100
|
def clickhouse_kafka_user_configs(self) -> Sequence['outputs.GetServiceIntegrationClickhouseKafkaUserConfigResult']:
|
|
101
101
|
"""
|
|
102
|
-
ClickhouseKafka user configurable settings
|
|
102
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
103
103
|
"""
|
|
104
104
|
return pulumi.get(self, "clickhouse_kafka_user_configs")
|
|
105
105
|
|
|
@@ -107,7 +107,7 @@ class GetServiceIntegrationResult:
|
|
|
107
107
|
@pulumi.getter(name="clickhousePostgresqlUserConfigs")
|
|
108
108
|
def clickhouse_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationClickhousePostgresqlUserConfigResult']:
|
|
109
109
|
"""
|
|
110
|
-
ClickhousePostgresql user configurable settings
|
|
110
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
111
111
|
"""
|
|
112
112
|
return pulumi.get(self, "clickhouse_postgresql_user_configs")
|
|
113
113
|
|
|
@@ -115,7 +115,7 @@ class GetServiceIntegrationResult:
|
|
|
115
115
|
@pulumi.getter(name="datadogUserConfigs")
|
|
116
116
|
def datadog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationDatadogUserConfigResult']:
|
|
117
117
|
"""
|
|
118
|
-
Datadog user configurable settings
|
|
118
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "datadog_user_configs")
|
|
121
121
|
|
|
@@ -139,7 +139,7 @@ class GetServiceIntegrationResult:
|
|
|
139
139
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfigs")
|
|
140
140
|
def external_aws_cloudwatch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalAwsCloudwatchLogsUserConfigResult']:
|
|
141
141
|
"""
|
|
142
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
142
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
143
143
|
"""
|
|
144
144
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_configs")
|
|
145
145
|
|
|
@@ -147,7 +147,7 @@ class GetServiceIntegrationResult:
|
|
|
147
147
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfigs")
|
|
148
148
|
def external_aws_cloudwatch_metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalAwsCloudwatchMetricsUserConfigResult']:
|
|
149
149
|
"""
|
|
150
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
150
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
151
151
|
"""
|
|
152
152
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
|
|
153
153
|
|
|
@@ -155,7 +155,7 @@ class GetServiceIntegrationResult:
|
|
|
155
155
|
@pulumi.getter(name="externalElasticsearchLogsUserConfigs")
|
|
156
156
|
def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalElasticsearchLogsUserConfigResult']:
|
|
157
157
|
"""
|
|
158
|
-
ExternalElasticsearchLogs user configurable settings
|
|
158
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
159
159
|
"""
|
|
160
160
|
return pulumi.get(self, "external_elasticsearch_logs_user_configs")
|
|
161
161
|
|
|
@@ -163,7 +163,7 @@ class GetServiceIntegrationResult:
|
|
|
163
163
|
@pulumi.getter(name="externalOpensearchLogsUserConfigs")
|
|
164
164
|
def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalOpensearchLogsUserConfigResult']:
|
|
165
165
|
"""
|
|
166
|
-
ExternalOpensearchLogs user configurable settings
|
|
166
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
167
167
|
"""
|
|
168
168
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
169
169
|
|
|
@@ -171,7 +171,7 @@ class GetServiceIntegrationResult:
|
|
|
171
171
|
@pulumi.getter(name="flinkExternalPostgresqlUserConfigs")
|
|
172
172
|
def flink_external_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationFlinkExternalPostgresqlUserConfigResult']:
|
|
173
173
|
"""
|
|
174
|
-
FlinkExternalPostgresql user configurable settings
|
|
174
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
175
175
|
"""
|
|
176
176
|
return pulumi.get(self, "flink_external_postgresql_user_configs")
|
|
177
177
|
|
|
@@ -195,7 +195,7 @@ class GetServiceIntegrationResult:
|
|
|
195
195
|
@pulumi.getter(name="integrationType")
|
|
196
196
|
def integration_type(self) -> str:
|
|
197
197
|
"""
|
|
198
|
-
Type of the service integration.
|
|
198
|
+
Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
|
|
199
199
|
"""
|
|
200
200
|
return pulumi.get(self, "integration_type")
|
|
201
201
|
|
|
@@ -203,7 +203,7 @@ class GetServiceIntegrationResult:
|
|
|
203
203
|
@pulumi.getter(name="kafkaConnectUserConfigs")
|
|
204
204
|
def kafka_connect_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaConnectUserConfigResult']:
|
|
205
205
|
"""
|
|
206
|
-
KafkaConnect user configurable settings
|
|
206
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
207
207
|
"""
|
|
208
208
|
return pulumi.get(self, "kafka_connect_user_configs")
|
|
209
209
|
|
|
@@ -211,7 +211,7 @@ class GetServiceIntegrationResult:
|
|
|
211
211
|
@pulumi.getter(name="kafkaLogsUserConfigs")
|
|
212
212
|
def kafka_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaLogsUserConfigResult']:
|
|
213
213
|
"""
|
|
214
|
-
KafkaLogs user configurable settings
|
|
214
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "kafka_logs_user_configs")
|
|
217
217
|
|
|
@@ -219,7 +219,7 @@ class GetServiceIntegrationResult:
|
|
|
219
219
|
@pulumi.getter(name="kafkaMirrormakerUserConfigs")
|
|
220
220
|
def kafka_mirrormaker_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaMirrormakerUserConfigResult']:
|
|
221
221
|
"""
|
|
222
|
-
KafkaMirrormaker user configurable settings
|
|
222
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "kafka_mirrormaker_user_configs")
|
|
225
225
|
|
|
@@ -227,7 +227,7 @@ class GetServiceIntegrationResult:
|
|
|
227
227
|
@pulumi.getter(name="logsUserConfigs")
|
|
228
228
|
def logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationLogsUserConfigResult']:
|
|
229
229
|
"""
|
|
230
|
-
Logs user configurable settings
|
|
230
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
231
231
|
"""
|
|
232
232
|
return pulumi.get(self, "logs_user_configs")
|
|
233
233
|
|
|
@@ -235,7 +235,7 @@ class GetServiceIntegrationResult:
|
|
|
235
235
|
@pulumi.getter(name="metricsUserConfigs")
|
|
236
236
|
def metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationMetricsUserConfigResult']:
|
|
237
237
|
"""
|
|
238
|
-
Metrics user configurable settings
|
|
238
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
239
239
|
"""
|
|
240
240
|
return pulumi.get(self, "metrics_user_configs")
|
|
241
241
|
|
|
@@ -251,7 +251,7 @@ class GetServiceIntegrationResult:
|
|
|
251
251
|
@pulumi.getter(name="prometheusUserConfigs")
|
|
252
252
|
def prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationPrometheusUserConfigResult']:
|
|
253
253
|
"""
|
|
254
|
-
Prometheus user configurable settings
|
|
254
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
255
255
|
"""
|
|
256
256
|
return pulumi.get(self, "prometheus_user_configs")
|
|
257
257
|
|
|
@@ -324,7 +324,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
324
324
|
|
|
325
325
|
|
|
326
326
|
:param str destination_service_name: Destination service for the integration.
|
|
327
|
-
:param str integration_type: Type of the service integration.
|
|
327
|
+
:param str integration_type: Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
|
|
328
328
|
:param str project: Project the integration belongs to.
|
|
329
329
|
:param str source_service_name: Source service for the integration (if any)
|
|
330
330
|
"""
|
|
@@ -381,7 +381,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
|
|
|
381
381
|
|
|
382
382
|
|
|
383
383
|
:param str destination_service_name: Destination service for the integration.
|
|
384
|
-
:param str integration_type: Type of the service integration.
|
|
384
|
+
:param str integration_type: Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
|
|
385
385
|
:param str project: Project the integration belongs to.
|
|
386
386
|
:param str source_service_name: Source service for the integration (if any)
|
|
387
387
|
"""
|
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
306
|
-
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
|
|
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
|
-
|
|
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
|
-
|
|
354
|
-
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
|
|
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'),
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -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
|
|
pulumi_aiven/get_valkey.py
CHANGED
|
@@ -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
|
|