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
|
@@ -43,24 +43,24 @@ class ServiceIntegrationArgs:
|
|
|
43
43
|
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
44
44
|
"""
|
|
45
45
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
46
|
-
:param pulumi.Input[str] integration_type: Type of the service integration.
|
|
46
|
+
:param pulumi.Input[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`.
|
|
47
47
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
48
|
-
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
49
|
-
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
50
|
-
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
48
|
+
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
49
|
+
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
50
|
+
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
51
51
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
52
52
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
53
|
-
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
54
|
-
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
55
|
-
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
56
|
-
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
57
|
-
:param pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs'] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
58
|
-
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
59
|
-
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
60
|
-
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
61
|
-
:param pulumi.Input['ServiceIntegrationLogsUserConfigArgs'] logs_user_config: Logs user configurable settings
|
|
62
|
-
:param pulumi.Input['ServiceIntegrationMetricsUserConfigArgs'] metrics_user_config: Metrics user configurable settings
|
|
63
|
-
:param pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs'] prometheus_user_config: Prometheus user configurable settings
|
|
53
|
+
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
54
|
+
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
55
|
+
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
56
|
+
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
57
|
+
:param pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs'] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
58
|
+
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
59
|
+
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
60
|
+
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
61
|
+
:param pulumi.Input['ServiceIntegrationLogsUserConfigArgs'] logs_user_config: Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
62
|
+
:param pulumi.Input['ServiceIntegrationMetricsUserConfigArgs'] metrics_user_config: Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
63
|
+
:param pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs'] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
64
64
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
65
65
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
66
66
|
"""
|
|
@@ -107,7 +107,7 @@ class ServiceIntegrationArgs:
|
|
|
107
107
|
@pulumi.getter(name="integrationType")
|
|
108
108
|
def integration_type(self) -> pulumi.Input[str]:
|
|
109
109
|
"""
|
|
110
|
-
Type of the service integration.
|
|
110
|
+
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`.
|
|
111
111
|
"""
|
|
112
112
|
return pulumi.get(self, "integration_type")
|
|
113
113
|
|
|
@@ -131,7 +131,7 @@ class ServiceIntegrationArgs:
|
|
|
131
131
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
132
132
|
def clickhouse_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']]:
|
|
133
133
|
"""
|
|
134
|
-
ClickhouseKafka user configurable settings
|
|
134
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
135
135
|
"""
|
|
136
136
|
return pulumi.get(self, "clickhouse_kafka_user_config")
|
|
137
137
|
|
|
@@ -143,7 +143,7 @@ class ServiceIntegrationArgs:
|
|
|
143
143
|
@pulumi.getter(name="clickhousePostgresqlUserConfig")
|
|
144
144
|
def clickhouse_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs']]:
|
|
145
145
|
"""
|
|
146
|
-
ClickhousePostgresql user configurable settings
|
|
146
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
147
147
|
"""
|
|
148
148
|
return pulumi.get(self, "clickhouse_postgresql_user_config")
|
|
149
149
|
|
|
@@ -155,7 +155,7 @@ class ServiceIntegrationArgs:
|
|
|
155
155
|
@pulumi.getter(name="datadogUserConfig")
|
|
156
156
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']]:
|
|
157
157
|
"""
|
|
158
|
-
Datadog user configurable settings
|
|
158
|
+
Datadog 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, "datadog_user_config")
|
|
161
161
|
|
|
@@ -191,7 +191,7 @@ class ServiceIntegrationArgs:
|
|
|
191
191
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
192
192
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
193
193
|
"""
|
|
194
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
194
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
197
197
|
|
|
@@ -203,7 +203,7 @@ class ServiceIntegrationArgs:
|
|
|
203
203
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
204
204
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
205
205
|
"""
|
|
206
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
206
|
+
ExternalAwsCloudwatchMetrics 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, "external_aws_cloudwatch_metrics_user_config")
|
|
209
209
|
|
|
@@ -215,7 +215,7 @@ class ServiceIntegrationArgs:
|
|
|
215
215
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
216
216
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']]:
|
|
217
217
|
"""
|
|
218
|
-
ExternalElasticsearchLogs user configurable settings
|
|
218
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
221
221
|
|
|
@@ -227,7 +227,7 @@ class ServiceIntegrationArgs:
|
|
|
227
227
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
228
228
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]:
|
|
229
229
|
"""
|
|
230
|
-
ExternalOpensearchLogs user configurable settings
|
|
230
|
+
ExternalOpensearchLogs 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, "external_opensearch_logs_user_config")
|
|
233
233
|
|
|
@@ -239,7 +239,7 @@ class ServiceIntegrationArgs:
|
|
|
239
239
|
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
240
240
|
def flink_external_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]:
|
|
241
241
|
"""
|
|
242
|
-
FlinkExternalPostgresql user configurable settings
|
|
242
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
243
243
|
"""
|
|
244
244
|
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
245
245
|
|
|
@@ -251,7 +251,7 @@ class ServiceIntegrationArgs:
|
|
|
251
251
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
252
252
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']]:
|
|
253
253
|
"""
|
|
254
|
-
KafkaConnect user configurable settings
|
|
254
|
+
KafkaConnect 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, "kafka_connect_user_config")
|
|
257
257
|
|
|
@@ -263,7 +263,7 @@ class ServiceIntegrationArgs:
|
|
|
263
263
|
@pulumi.getter(name="kafkaLogsUserConfig")
|
|
264
264
|
def kafka_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']]:
|
|
265
265
|
"""
|
|
266
|
-
KafkaLogs user configurable settings
|
|
266
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
267
267
|
"""
|
|
268
268
|
return pulumi.get(self, "kafka_logs_user_config")
|
|
269
269
|
|
|
@@ -275,7 +275,7 @@ class ServiceIntegrationArgs:
|
|
|
275
275
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
276
276
|
def kafka_mirrormaker_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']]:
|
|
277
277
|
"""
|
|
278
|
-
KafkaMirrormaker user configurable settings
|
|
278
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
279
279
|
"""
|
|
280
280
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
281
281
|
|
|
@@ -287,7 +287,7 @@ class ServiceIntegrationArgs:
|
|
|
287
287
|
@pulumi.getter(name="logsUserConfig")
|
|
288
288
|
def logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationLogsUserConfigArgs']]:
|
|
289
289
|
"""
|
|
290
|
-
Logs user configurable settings
|
|
290
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
291
291
|
"""
|
|
292
292
|
return pulumi.get(self, "logs_user_config")
|
|
293
293
|
|
|
@@ -299,7 +299,7 @@ class ServiceIntegrationArgs:
|
|
|
299
299
|
@pulumi.getter(name="metricsUserConfig")
|
|
300
300
|
def metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']]:
|
|
301
301
|
"""
|
|
302
|
-
Metrics user configurable settings
|
|
302
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
303
303
|
"""
|
|
304
304
|
return pulumi.get(self, "metrics_user_config")
|
|
305
305
|
|
|
@@ -311,7 +311,7 @@ class ServiceIntegrationArgs:
|
|
|
311
311
|
@pulumi.getter(name="prometheusUserConfig")
|
|
312
312
|
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']]:
|
|
313
313
|
"""
|
|
314
|
-
Prometheus user configurable settings
|
|
314
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
315
315
|
"""
|
|
316
316
|
return pulumi.get(self, "prometheus_user_config")
|
|
317
317
|
|
|
@@ -370,25 +370,25 @@ class _ServiceIntegrationState:
|
|
|
370
370
|
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
371
371
|
"""
|
|
372
372
|
Input properties used for looking up and filtering ServiceIntegration resources.
|
|
373
|
-
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
374
|
-
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
375
|
-
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
373
|
+
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
374
|
+
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
375
|
+
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
376
376
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
377
377
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
378
|
-
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
379
|
-
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
380
|
-
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
381
|
-
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
382
|
-
:param pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs'] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
378
|
+
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
379
|
+
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
380
|
+
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
381
|
+
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
382
|
+
:param pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs'] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
383
383
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
384
|
-
:param pulumi.Input[str] integration_type: Type of the service integration.
|
|
385
|
-
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
386
|
-
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
387
|
-
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
388
|
-
:param pulumi.Input['ServiceIntegrationLogsUserConfigArgs'] logs_user_config: Logs user configurable settings
|
|
389
|
-
:param pulumi.Input['ServiceIntegrationMetricsUserConfigArgs'] metrics_user_config: Metrics user configurable settings
|
|
384
|
+
:param pulumi.Input[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
|
+
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
386
|
+
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
387
|
+
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
388
|
+
:param pulumi.Input['ServiceIntegrationLogsUserConfigArgs'] logs_user_config: Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
389
|
+
:param pulumi.Input['ServiceIntegrationMetricsUserConfigArgs'] metrics_user_config: Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
390
390
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
391
|
-
:param pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs'] prometheus_user_config: Prometheus user configurable settings
|
|
391
|
+
:param pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs'] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
392
392
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
393
393
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
394
394
|
"""
|
|
@@ -439,7 +439,7 @@ class _ServiceIntegrationState:
|
|
|
439
439
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
440
440
|
def clickhouse_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']]:
|
|
441
441
|
"""
|
|
442
|
-
ClickhouseKafka user configurable settings
|
|
442
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
443
443
|
"""
|
|
444
444
|
return pulumi.get(self, "clickhouse_kafka_user_config")
|
|
445
445
|
|
|
@@ -451,7 +451,7 @@ class _ServiceIntegrationState:
|
|
|
451
451
|
@pulumi.getter(name="clickhousePostgresqlUserConfig")
|
|
452
452
|
def clickhouse_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs']]:
|
|
453
453
|
"""
|
|
454
|
-
ClickhousePostgresql user configurable settings
|
|
454
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
455
455
|
"""
|
|
456
456
|
return pulumi.get(self, "clickhouse_postgresql_user_config")
|
|
457
457
|
|
|
@@ -463,7 +463,7 @@ class _ServiceIntegrationState:
|
|
|
463
463
|
@pulumi.getter(name="datadogUserConfig")
|
|
464
464
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']]:
|
|
465
465
|
"""
|
|
466
|
-
Datadog user configurable settings
|
|
466
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
467
467
|
"""
|
|
468
468
|
return pulumi.get(self, "datadog_user_config")
|
|
469
469
|
|
|
@@ -499,7 +499,7 @@ class _ServiceIntegrationState:
|
|
|
499
499
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
500
500
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
501
501
|
"""
|
|
502
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
502
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
503
503
|
"""
|
|
504
504
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
505
505
|
|
|
@@ -511,7 +511,7 @@ class _ServiceIntegrationState:
|
|
|
511
511
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
512
512
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
513
513
|
"""
|
|
514
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
514
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
515
515
|
"""
|
|
516
516
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
517
517
|
|
|
@@ -523,7 +523,7 @@ class _ServiceIntegrationState:
|
|
|
523
523
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
524
524
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']]:
|
|
525
525
|
"""
|
|
526
|
-
ExternalElasticsearchLogs user configurable settings
|
|
526
|
+
ExternalElasticsearchLogs 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, "external_elasticsearch_logs_user_config")
|
|
529
529
|
|
|
@@ -535,7 +535,7 @@ class _ServiceIntegrationState:
|
|
|
535
535
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
536
536
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]:
|
|
537
537
|
"""
|
|
538
|
-
ExternalOpensearchLogs user configurable settings
|
|
538
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
539
539
|
"""
|
|
540
540
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
541
541
|
|
|
@@ -547,7 +547,7 @@ class _ServiceIntegrationState:
|
|
|
547
547
|
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
548
548
|
def flink_external_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]:
|
|
549
549
|
"""
|
|
550
|
-
FlinkExternalPostgresql user configurable settings
|
|
550
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
551
551
|
"""
|
|
552
552
|
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
553
553
|
|
|
@@ -571,7 +571,7 @@ class _ServiceIntegrationState:
|
|
|
571
571
|
@pulumi.getter(name="integrationType")
|
|
572
572
|
def integration_type(self) -> Optional[pulumi.Input[str]]:
|
|
573
573
|
"""
|
|
574
|
-
Type of the service integration.
|
|
574
|
+
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`.
|
|
575
575
|
"""
|
|
576
576
|
return pulumi.get(self, "integration_type")
|
|
577
577
|
|
|
@@ -583,7 +583,7 @@ class _ServiceIntegrationState:
|
|
|
583
583
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
584
584
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']]:
|
|
585
585
|
"""
|
|
586
|
-
KafkaConnect user configurable settings
|
|
586
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
587
587
|
"""
|
|
588
588
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
589
589
|
|
|
@@ -595,7 +595,7 @@ class _ServiceIntegrationState:
|
|
|
595
595
|
@pulumi.getter(name="kafkaLogsUserConfig")
|
|
596
596
|
def kafka_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']]:
|
|
597
597
|
"""
|
|
598
|
-
KafkaLogs user configurable settings
|
|
598
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
599
599
|
"""
|
|
600
600
|
return pulumi.get(self, "kafka_logs_user_config")
|
|
601
601
|
|
|
@@ -607,7 +607,7 @@ class _ServiceIntegrationState:
|
|
|
607
607
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
608
608
|
def kafka_mirrormaker_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']]:
|
|
609
609
|
"""
|
|
610
|
-
KafkaMirrormaker user configurable settings
|
|
610
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
611
611
|
"""
|
|
612
612
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
613
613
|
|
|
@@ -619,7 +619,7 @@ class _ServiceIntegrationState:
|
|
|
619
619
|
@pulumi.getter(name="logsUserConfig")
|
|
620
620
|
def logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationLogsUserConfigArgs']]:
|
|
621
621
|
"""
|
|
622
|
-
Logs user configurable settings
|
|
622
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
623
623
|
"""
|
|
624
624
|
return pulumi.get(self, "logs_user_config")
|
|
625
625
|
|
|
@@ -631,7 +631,7 @@ class _ServiceIntegrationState:
|
|
|
631
631
|
@pulumi.getter(name="metricsUserConfig")
|
|
632
632
|
def metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']]:
|
|
633
633
|
"""
|
|
634
|
-
Metrics user configurable settings
|
|
634
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
635
635
|
"""
|
|
636
636
|
return pulumi.get(self, "metrics_user_config")
|
|
637
637
|
|
|
@@ -655,7 +655,7 @@ class _ServiceIntegrationState:
|
|
|
655
655
|
@pulumi.getter(name="prometheusUserConfig")
|
|
656
656
|
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']]:
|
|
657
657
|
"""
|
|
658
|
-
Prometheus user configurable settings
|
|
658
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
659
659
|
"""
|
|
660
660
|
return pulumi.get(self, "prometheus_user_config")
|
|
661
661
|
|
|
@@ -715,26 +715,34 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
715
715
|
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
716
716
|
__props__=None):
|
|
717
717
|
"""
|
|
718
|
-
Creates and manages an Aiven [service integration](https://aiven.io/docs/platform/concepts/service-integration).
|
|
719
|
-
|
|
720
|
-
You can set up an integration between two Aiven services or an Aiven service and an external
|
|
721
|
-
service. For example, you can send metrics from a Kafka service to an M3DB service,
|
|
722
|
-
send metrics from an M3DB service to a Grafana service to show dashboards, and send logs from
|
|
723
|
-
any service to OpenSearch.
|
|
724
|
-
|
|
725
|
-
**Services integrations are not supported for services running on hobbyist plans.**
|
|
726
|
-
|
|
727
718
|
## Example Usage
|
|
728
719
|
|
|
729
720
|
```python
|
|
730
721
|
import pulumi
|
|
731
722
|
import pulumi_aiven as aiven
|
|
732
723
|
|
|
724
|
+
# Integrate Kafka and M3DB services for metrics
|
|
733
725
|
example_integration = aiven.ServiceIntegration("example_integration",
|
|
734
726
|
project=example_project["project"],
|
|
735
727
|
integration_type="metrics",
|
|
736
728
|
source_service_name=example_kafka["serviceName"],
|
|
737
729
|
destination_service_name=example_m3db["serviceName"])
|
|
730
|
+
# Use disk autoscaler with a PostgreSQL service
|
|
731
|
+
autoscaler_endpoint = aiven.ServiceIntegrationEndpoint("autoscaler_endpoint",
|
|
732
|
+
project=example_project["project"],
|
|
733
|
+
endpoint_name="disk-autoscaler-200GiB",
|
|
734
|
+
endpoint_type="autoscaler",
|
|
735
|
+
autoscaler_user_config={
|
|
736
|
+
"autoscalings": [{
|
|
737
|
+
"cap_gb": 200,
|
|
738
|
+
"type": "autoscale_disk",
|
|
739
|
+
}],
|
|
740
|
+
})
|
|
741
|
+
autoscaler_integration = aiven.ServiceIntegration("autoscaler_integration",
|
|
742
|
+
project=example_project["project"],
|
|
743
|
+
integration_type="autoscaler",
|
|
744
|
+
source_service_name=example_pg["serviceName"],
|
|
745
|
+
destination_endpoint_id=autoscaler_endpoint.id)
|
|
738
746
|
```
|
|
739
747
|
|
|
740
748
|
## Import
|
|
@@ -745,24 +753,24 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
745
753
|
|
|
746
754
|
:param str resource_name: The name of the resource.
|
|
747
755
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
748
|
-
:param pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
749
|
-
:param pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
750
|
-
:param pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']] datadog_user_config: Datadog user configurable settings
|
|
756
|
+
:param pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
757
|
+
:param pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
758
|
+
:param pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
751
759
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
752
760
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
753
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
754
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
755
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
756
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
757
|
-
:param pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
758
|
-
:param pulumi.Input[str] integration_type: Type of the service integration.
|
|
759
|
-
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
760
|
-
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
761
|
-
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
762
|
-
:param pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']] logs_user_config: Logs user configurable settings
|
|
763
|
-
:param pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']] metrics_user_config: Metrics user configurable settings
|
|
761
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
762
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
763
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
764
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
765
|
+
:param pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
766
|
+
:param pulumi.Input[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`.
|
|
767
|
+
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
768
|
+
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
769
|
+
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
770
|
+
:param pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']] logs_user_config: Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
771
|
+
:param pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']] metrics_user_config: Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
764
772
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
765
|
-
:param pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']] prometheus_user_config: Prometheus user configurable settings
|
|
773
|
+
:param pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
766
774
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
767
775
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
768
776
|
"""
|
|
@@ -773,26 +781,34 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
773
781
|
args: ServiceIntegrationArgs,
|
|
774
782
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
775
783
|
"""
|
|
776
|
-
Creates and manages an Aiven [service integration](https://aiven.io/docs/platform/concepts/service-integration).
|
|
777
|
-
|
|
778
|
-
You can set up an integration between two Aiven services or an Aiven service and an external
|
|
779
|
-
service. For example, you can send metrics from a Kafka service to an M3DB service,
|
|
780
|
-
send metrics from an M3DB service to a Grafana service to show dashboards, and send logs from
|
|
781
|
-
any service to OpenSearch.
|
|
782
|
-
|
|
783
|
-
**Services integrations are not supported for services running on hobbyist plans.**
|
|
784
|
-
|
|
785
784
|
## Example Usage
|
|
786
785
|
|
|
787
786
|
```python
|
|
788
787
|
import pulumi
|
|
789
788
|
import pulumi_aiven as aiven
|
|
790
789
|
|
|
790
|
+
# Integrate Kafka and M3DB services for metrics
|
|
791
791
|
example_integration = aiven.ServiceIntegration("example_integration",
|
|
792
792
|
project=example_project["project"],
|
|
793
793
|
integration_type="metrics",
|
|
794
794
|
source_service_name=example_kafka["serviceName"],
|
|
795
795
|
destination_service_name=example_m3db["serviceName"])
|
|
796
|
+
# Use disk autoscaler with a PostgreSQL service
|
|
797
|
+
autoscaler_endpoint = aiven.ServiceIntegrationEndpoint("autoscaler_endpoint",
|
|
798
|
+
project=example_project["project"],
|
|
799
|
+
endpoint_name="disk-autoscaler-200GiB",
|
|
800
|
+
endpoint_type="autoscaler",
|
|
801
|
+
autoscaler_user_config={
|
|
802
|
+
"autoscalings": [{
|
|
803
|
+
"cap_gb": 200,
|
|
804
|
+
"type": "autoscale_disk",
|
|
805
|
+
}],
|
|
806
|
+
})
|
|
807
|
+
autoscaler_integration = aiven.ServiceIntegration("autoscaler_integration",
|
|
808
|
+
project=example_project["project"],
|
|
809
|
+
integration_type="autoscaler",
|
|
810
|
+
source_service_name=example_pg["serviceName"],
|
|
811
|
+
destination_endpoint_id=autoscaler_endpoint.id)
|
|
796
812
|
```
|
|
797
813
|
|
|
798
814
|
## Import
|
|
@@ -908,25 +924,25 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
908
924
|
:param str resource_name: The unique name of the resulting resource.
|
|
909
925
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
910
926
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
911
|
-
:param pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
912
|
-
:param pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
913
|
-
:param pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']] datadog_user_config: Datadog user configurable settings
|
|
927
|
+
:param pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
928
|
+
:param pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
929
|
+
:param pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
914
930
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
915
931
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
916
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
917
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
918
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
919
|
-
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
920
|
-
:param pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings
|
|
932
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
933
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
934
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
935
|
+
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
936
|
+
:param pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']] flink_external_postgresql_user_config: FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
921
937
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
922
|
-
:param pulumi.Input[str] integration_type: Type of the service integration.
|
|
923
|
-
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
924
|
-
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
925
|
-
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
926
|
-
:param pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']] logs_user_config: Logs user configurable settings
|
|
927
|
-
:param pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']] metrics_user_config: Metrics user configurable settings
|
|
938
|
+
:param pulumi.Input[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`.
|
|
939
|
+
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
940
|
+
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
941
|
+
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
942
|
+
:param pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']] logs_user_config: Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
943
|
+
:param pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']] metrics_user_config: Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
928
944
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
929
|
-
:param pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']] prometheus_user_config: Prometheus user configurable settings
|
|
945
|
+
:param pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
930
946
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
931
947
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
932
948
|
"""
|
|
@@ -961,7 +977,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
961
977
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
962
978
|
def clickhouse_kafka_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationClickhouseKafkaUserConfig']]:
|
|
963
979
|
"""
|
|
964
|
-
ClickhouseKafka user configurable settings
|
|
980
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
965
981
|
"""
|
|
966
982
|
return pulumi.get(self, "clickhouse_kafka_user_config")
|
|
967
983
|
|
|
@@ -969,7 +985,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
969
985
|
@pulumi.getter(name="clickhousePostgresqlUserConfig")
|
|
970
986
|
def clickhouse_postgresql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationClickhousePostgresqlUserConfig']]:
|
|
971
987
|
"""
|
|
972
|
-
ClickhousePostgresql user configurable settings
|
|
988
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
973
989
|
"""
|
|
974
990
|
return pulumi.get(self, "clickhouse_postgresql_user_config")
|
|
975
991
|
|
|
@@ -977,7 +993,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
977
993
|
@pulumi.getter(name="datadogUserConfig")
|
|
978
994
|
def datadog_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationDatadogUserConfig']]:
|
|
979
995
|
"""
|
|
980
|
-
Datadog user configurable settings
|
|
996
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
981
997
|
"""
|
|
982
998
|
return pulumi.get(self, "datadog_user_config")
|
|
983
999
|
|
|
@@ -1001,7 +1017,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1001
1017
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
1002
1018
|
def external_aws_cloudwatch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalAwsCloudwatchLogsUserConfig']]:
|
|
1003
1019
|
"""
|
|
1004
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
1020
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1005
1021
|
"""
|
|
1006
1022
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
1007
1023
|
|
|
@@ -1009,7 +1025,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1009
1025
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
1010
1026
|
def external_aws_cloudwatch_metrics_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalAwsCloudwatchMetricsUserConfig']]:
|
|
1011
1027
|
"""
|
|
1012
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
1028
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1013
1029
|
"""
|
|
1014
1030
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
1015
1031
|
|
|
@@ -1017,7 +1033,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1017
1033
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
1018
1034
|
def external_elasticsearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalElasticsearchLogsUserConfig']]:
|
|
1019
1035
|
"""
|
|
1020
|
-
ExternalElasticsearchLogs user configurable settings
|
|
1036
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1021
1037
|
"""
|
|
1022
1038
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
1023
1039
|
|
|
@@ -1025,7 +1041,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1025
1041
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
1026
1042
|
def external_opensearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalOpensearchLogsUserConfig']]:
|
|
1027
1043
|
"""
|
|
1028
|
-
ExternalOpensearchLogs user configurable settings
|
|
1044
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1029
1045
|
"""
|
|
1030
1046
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
1031
1047
|
|
|
@@ -1033,7 +1049,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1033
1049
|
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
1034
1050
|
def flink_external_postgresql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationFlinkExternalPostgresqlUserConfig']]:
|
|
1035
1051
|
"""
|
|
1036
|
-
FlinkExternalPostgresql user configurable settings
|
|
1052
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1037
1053
|
"""
|
|
1038
1054
|
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
1039
1055
|
|
|
@@ -1049,7 +1065,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1049
1065
|
@pulumi.getter(name="integrationType")
|
|
1050
1066
|
def integration_type(self) -> pulumi.Output[str]:
|
|
1051
1067
|
"""
|
|
1052
|
-
Type of the service integration.
|
|
1068
|
+
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`.
|
|
1053
1069
|
"""
|
|
1054
1070
|
return pulumi.get(self, "integration_type")
|
|
1055
1071
|
|
|
@@ -1057,7 +1073,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1057
1073
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
1058
1074
|
def kafka_connect_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationKafkaConnectUserConfig']]:
|
|
1059
1075
|
"""
|
|
1060
|
-
KafkaConnect user configurable settings
|
|
1076
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1061
1077
|
"""
|
|
1062
1078
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
1063
1079
|
|
|
@@ -1065,7 +1081,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1065
1081
|
@pulumi.getter(name="kafkaLogsUserConfig")
|
|
1066
1082
|
def kafka_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationKafkaLogsUserConfig']]:
|
|
1067
1083
|
"""
|
|
1068
|
-
KafkaLogs user configurable settings
|
|
1084
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1069
1085
|
"""
|
|
1070
1086
|
return pulumi.get(self, "kafka_logs_user_config")
|
|
1071
1087
|
|
|
@@ -1073,7 +1089,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1073
1089
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
1074
1090
|
def kafka_mirrormaker_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationKafkaMirrormakerUserConfig']]:
|
|
1075
1091
|
"""
|
|
1076
|
-
KafkaMirrormaker user configurable settings
|
|
1092
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1077
1093
|
"""
|
|
1078
1094
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
1079
1095
|
|
|
@@ -1081,7 +1097,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1081
1097
|
@pulumi.getter(name="logsUserConfig")
|
|
1082
1098
|
def logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationLogsUserConfig']]:
|
|
1083
1099
|
"""
|
|
1084
|
-
Logs user configurable settings
|
|
1100
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1085
1101
|
"""
|
|
1086
1102
|
return pulumi.get(self, "logs_user_config")
|
|
1087
1103
|
|
|
@@ -1089,7 +1105,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1089
1105
|
@pulumi.getter(name="metricsUserConfig")
|
|
1090
1106
|
def metrics_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationMetricsUserConfig']]:
|
|
1091
1107
|
"""
|
|
1092
|
-
Metrics user configurable settings
|
|
1108
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1093
1109
|
"""
|
|
1094
1110
|
return pulumi.get(self, "metrics_user_config")
|
|
1095
1111
|
|
|
@@ -1105,7 +1121,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1105
1121
|
@pulumi.getter(name="prometheusUserConfig")
|
|
1106
1122
|
def prometheus_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationPrometheusUserConfig']]:
|
|
1107
1123
|
"""
|
|
1108
|
-
Prometheus user configurable settings
|
|
1124
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1109
1125
|
"""
|
|
1110
1126
|
return pulumi.get(self, "prometheus_user_config")
|
|
1111
1127
|
|