pulumi-aiven 6.13.0a1709702245__py3-none-any.whl → 6.31.0a1736831339__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/__init__.py +127 -0
- pulumi_aiven/_inputs.py +32826 -13922
- pulumi_aiven/_utilities.py +41 -5
- pulumi_aiven/account.py +34 -43
- pulumi_aiven/account_authentication.py +24 -9
- pulumi_aiven/account_team.py +37 -12
- pulumi_aiven/account_team_member.py +48 -35
- pulumi_aiven/account_team_project.py +42 -25
- pulumi_aiven/alloydbomni.py +1335 -0
- pulumi_aiven/alloydbomni_database.py +347 -0
- pulumi_aiven/alloydbomni_user.py +433 -0
- pulumi_aiven/aws_privatelink.py +44 -39
- pulumi_aiven/aws_vpc_peering_connection.py +72 -57
- pulumi_aiven/azure_privatelink.py +54 -49
- pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- pulumi_aiven/azure_vpc_peering_connection.py +86 -73
- pulumi_aiven/billing_group.py +33 -30
- pulumi_aiven/cassandra.py +145 -122
- pulumi_aiven/cassandra_user.py +59 -54
- pulumi_aiven/clickhouse.py +133 -110
- pulumi_aiven/clickhouse_database.py +58 -58
- pulumi_aiven/clickhouse_grant.py +135 -130
- pulumi_aiven/clickhouse_role.py +36 -45
- pulumi_aiven/clickhouse_user.py +50 -45
- pulumi_aiven/config/__init__.pyi +5 -0
- pulumi_aiven/config/vars.py +5 -0
- pulumi_aiven/connection_pool.py +67 -62
- pulumi_aiven/dragonfly.py +1256 -0
- pulumi_aiven/flink.py +104 -100
- pulumi_aiven/flink_application.py +58 -51
- pulumi_aiven/flink_application_deployment.py +178 -73
- pulumi_aiven/flink_application_version.py +179 -96
- pulumi_aiven/gcp_privatelink.py +69 -42
- pulumi_aiven/gcp_privatelink_connection_approval.py +78 -49
- pulumi_aiven/gcp_vpc_peering_connection.py +49 -44
- pulumi_aiven/get_account.py +20 -5
- pulumi_aiven/get_account_authentication.py +31 -5
- pulumi_aiven/get_account_team.py +18 -5
- pulumi_aiven/get_account_team_member.py +29 -14
- pulumi_aiven/get_account_team_project.py +19 -6
- pulumi_aiven/get_alloydbomni.py +499 -0
- pulumi_aiven/get_alloydbomni_database.py +168 -0
- pulumi_aiven/get_alloydbomni_user.py +210 -0
- pulumi_aiven/get_aws_privatelink.py +33 -20
- pulumi_aiven/get_aws_vpc_peering_connection.py +56 -29
- pulumi_aiven/get_azure_privatelink.py +37 -22
- pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- pulumi_aiven/get_billing_group.py +31 -8
- pulumi_aiven/get_cassanda.py +55 -19
- pulumi_aiven/get_cassandra.py +55 -19
- pulumi_aiven/get_cassandra_user.py +42 -26
- pulumi_aiven/get_clickhouse.py +55 -19
- pulumi_aiven/get_clickhouse_database.py +35 -22
- pulumi_aiven/get_clickhouse_user.py +40 -25
- pulumi_aiven/get_connection_pool.py +43 -26
- pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven/get_external_identity.py +160 -0
- pulumi_aiven/get_flink.py +55 -19
- pulumi_aiven/get_flink_application.py +44 -27
- pulumi_aiven/get_flink_application_version.py +55 -33
- pulumi_aiven/get_gcp_privatelink.py +63 -7
- pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -24
- pulumi_aiven/get_grafana.py +55 -19
- pulumi_aiven/get_influx_db.py +41 -5
- pulumi_aiven/get_influxdb_database.py +18 -5
- pulumi_aiven/get_influxdb_user.py +21 -5
- pulumi_aiven/get_kafka.py +59 -21
- pulumi_aiven/get_kafka_acl.py +50 -33
- pulumi_aiven/get_kafka_connect.py +54 -32
- pulumi_aiven/get_kafka_connector.py +44 -24
- pulumi_aiven/get_kafka_mirror_maker.py +50 -28
- pulumi_aiven/get_kafka_schema.py +35 -19
- pulumi_aiven/get_kafka_schema_configuration.py +32 -17
- pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- pulumi_aiven/get_kafka_topic.py +70 -25
- pulumi_aiven/get_kafka_user.py +42 -26
- pulumi_aiven/get_m3_aggregator.py +51 -15
- pulumi_aiven/get_m3_db.py +55 -19
- pulumi_aiven/get_m3db_user.py +38 -24
- pulumi_aiven/get_mirror_maker_replication_flow.py +86 -21
- pulumi_aiven/get_my_sql.py +50 -14
- pulumi_aiven/get_mysql_database.py +31 -18
- pulumi_aiven/get_mysql_user.py +36 -19
- pulumi_aiven/get_open_search.py +50 -14
- pulumi_aiven/get_open_search_acl_config.py +27 -15
- pulumi_aiven/get_open_search_acl_rule.py +37 -21
- pulumi_aiven/get_opensearch_security_plugin_config.py +29 -15
- pulumi_aiven/get_opensearch_user.py +32 -18
- pulumi_aiven/get_organization.py +25 -13
- pulumi_aiven/get_organization_application_user.py +176 -0
- pulumi_aiven/get_organization_user.py +18 -5
- pulumi_aiven/get_organization_user_group.py +48 -14
- pulumi_aiven/get_organization_user_list.py +121 -0
- pulumi_aiven/get_organizational_unit.py +26 -14
- pulumi_aiven/get_pg.py +55 -19
- pulumi_aiven/get_pg_database.py +39 -24
- pulumi_aiven/get_pg_user.py +44 -27
- pulumi_aiven/get_project.py +43 -22
- pulumi_aiven/get_project_user.py +27 -15
- pulumi_aiven/get_project_vpc.py +31 -19
- pulumi_aiven/get_redis.py +50 -14
- pulumi_aiven/get_redis_user.py +40 -22
- pulumi_aiven/get_service_component.py +40 -18
- pulumi_aiven/get_service_integration.py +163 -49
- pulumi_aiven/get_service_integration_endpoint.py +128 -33
- pulumi_aiven/get_thanos.py +499 -0
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -18
- pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven/grafana.py +188 -318
- pulumi_aiven/influx_db.py +127 -90
- pulumi_aiven/influxdb_database.py +40 -55
- pulumi_aiven/influxdb_user.py +47 -42
- pulumi_aiven/kafka.py +157 -140
- pulumi_aiven/kafka_acl.py +64 -53
- pulumi_aiven/kafka_connect.py +201 -328
- pulumi_aiven/kafka_connector.py +67 -56
- pulumi_aiven/kafka_mirror_maker.py +139 -318
- pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven/kafka_schema.py +65 -56
- pulumi_aiven/kafka_schema_configuration.py +25 -20
- pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- pulumi_aiven/kafka_topic.py +184 -65
- pulumi_aiven/kafka_user.py +59 -54
- pulumi_aiven/m3_aggregator.py +176 -308
- pulumi_aiven/m3_db.py +190 -322
- pulumi_aiven/m3db_user.py +51 -46
- pulumi_aiven/mirror_maker_replication_flow.py +217 -53
- pulumi_aiven/my_sql.py +190 -322
- pulumi_aiven/mysql_database.py +32 -47
- pulumi_aiven/mysql_user.py +37 -32
- pulumi_aiven/open_search.py +128 -105
- pulumi_aiven/open_search_acl_config.py +33 -32
- pulumi_aiven/open_search_acl_rule.py +55 -50
- pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- pulumi_aiven/opensearch_user.py +30 -25
- pulumi_aiven/organization.py +18 -13
- pulumi_aiven/organization_application_user.py +345 -0
- pulumi_aiven/organization_application_user_token.py +711 -0
- pulumi_aiven/organization_group_project.py +349 -0
- pulumi_aiven/organization_permission.py +421 -0
- pulumi_aiven/organization_user.py +25 -46
- pulumi_aiven/organization_user_group.py +64 -23
- pulumi_aiven/organization_user_group_member.py +359 -0
- pulumi_aiven/organizational_unit.py +41 -32
- pulumi_aiven/outputs.py +38509 -21612
- pulumi_aiven/pg.py +92 -88
- pulumi_aiven/pg_database.py +52 -67
- pulumi_aiven/pg_user.py +80 -61
- pulumi_aiven/project.py +111 -102
- pulumi_aiven/project_user.py +44 -31
- pulumi_aiven/project_vpc.py +58 -29
- pulumi_aiven/provider.py +5 -0
- pulumi_aiven/pulumi-plugin.json +2 -1
- pulumi_aiven/redis.py +163 -295
- pulumi_aiven/redis_user.py +58 -53
- pulumi_aiven/service_integration.py +511 -161
- pulumi_aiven/service_integration_endpoint.py +466 -158
- pulumi_aiven/static_ip.py +21 -16
- pulumi_aiven/thanos.py +1262 -0
- pulumi_aiven/transit_gateway_vpc_attachment.py +44 -54
- pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/METADATA +7 -6
- pulumi_aiven-6.31.0a1736831339.dist-info/RECORD +169 -0
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/WHEEL +1 -1
- pulumi_aiven-6.13.0a1709702245.dist-info/RECORD +0 -146
- {pulumi_aiven-6.13.0a1709702245.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -23,31 +28,45 @@ class ServiceIntegrationArgs:
|
|
|
23
28
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']] = None,
|
|
24
29
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
25
30
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
31
|
+
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
32
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
26
33
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
34
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
35
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] = None,
|
|
36
|
+
flink_external_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']] = None,
|
|
27
37
|
kafka_connect_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']] = None,
|
|
28
38
|
kafka_logs_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']] = None,
|
|
29
39
|
kafka_mirrormaker_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']] = None,
|
|
30
40
|
logs_user_config: Optional[pulumi.Input['ServiceIntegrationLogsUserConfigArgs']] = None,
|
|
31
41
|
metrics_user_config: Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']] = None,
|
|
42
|
+
prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']] = None,
|
|
32
43
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
33
|
-
source_service_name: Optional[pulumi.Input[str]] = None
|
|
44
|
+
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
45
|
+
source_service_project: Optional[pulumi.Input[str]] = None):
|
|
34
46
|
"""
|
|
35
47
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
36
|
-
:param pulumi.Input[str] integration_type: Type of the service integration.
|
|
37
|
-
:param pulumi.Input[str] project: Project the integration belongs to
|
|
38
|
-
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
39
|
-
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
40
|
-
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
41
|
-
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration
|
|
42
|
-
:param pulumi.Input[str] destination_service_name: Destination service for the integration
|
|
43
|
-
:param pulumi.Input[
|
|
44
|
-
:param pulumi.Input['
|
|
45
|
-
:param pulumi.Input['
|
|
46
|
-
:param pulumi.Input['
|
|
47
|
-
:param pulumi.Input['
|
|
48
|
-
:param pulumi.Input['
|
|
49
|
-
:param pulumi.Input[
|
|
48
|
+
: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`.
|
|
49
|
+
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
50
|
+
: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
|
|
51
|
+
: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
|
|
52
|
+
: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
|
|
53
|
+
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
54
|
+
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
55
|
+
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
56
|
+
: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
|
|
57
|
+
: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
|
|
58
|
+
: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
|
|
59
|
+
: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
|
|
60
|
+
: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
|
|
61
|
+
: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
|
|
62
|
+
: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
|
|
63
|
+
: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
|
|
64
|
+
: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
|
|
65
|
+
: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
|
|
66
|
+
: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
|
|
67
|
+
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
50
68
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
69
|
+
:param pulumi.Input[str] source_service_project: Source service project name
|
|
51
70
|
"""
|
|
52
71
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
53
72
|
pulumi.set(__self__, "project", project)
|
|
@@ -61,8 +80,18 @@ class ServiceIntegrationArgs:
|
|
|
61
80
|
pulumi.set(__self__, "destination_endpoint_id", destination_endpoint_id)
|
|
62
81
|
if destination_service_name is not None:
|
|
63
82
|
pulumi.set(__self__, "destination_service_name", destination_service_name)
|
|
83
|
+
if destination_service_project is not None:
|
|
84
|
+
pulumi.set(__self__, "destination_service_project", destination_service_project)
|
|
85
|
+
if external_aws_cloudwatch_logs_user_config is not None:
|
|
86
|
+
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
64
87
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
65
88
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_config", external_aws_cloudwatch_metrics_user_config)
|
|
89
|
+
if external_elasticsearch_logs_user_config is not None:
|
|
90
|
+
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
91
|
+
if external_opensearch_logs_user_config is not None:
|
|
92
|
+
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
93
|
+
if flink_external_postgresql_user_config is not None:
|
|
94
|
+
pulumi.set(__self__, "flink_external_postgresql_user_config", flink_external_postgresql_user_config)
|
|
66
95
|
if kafka_connect_user_config is not None:
|
|
67
96
|
pulumi.set(__self__, "kafka_connect_user_config", kafka_connect_user_config)
|
|
68
97
|
if kafka_logs_user_config is not None:
|
|
@@ -73,16 +102,20 @@ class ServiceIntegrationArgs:
|
|
|
73
102
|
pulumi.set(__self__, "logs_user_config", logs_user_config)
|
|
74
103
|
if metrics_user_config is not None:
|
|
75
104
|
pulumi.set(__self__, "metrics_user_config", metrics_user_config)
|
|
105
|
+
if prometheus_user_config is not None:
|
|
106
|
+
pulumi.set(__self__, "prometheus_user_config", prometheus_user_config)
|
|
76
107
|
if source_endpoint_id is not None:
|
|
77
108
|
pulumi.set(__self__, "source_endpoint_id", source_endpoint_id)
|
|
78
109
|
if source_service_name is not None:
|
|
79
110
|
pulumi.set(__self__, "source_service_name", source_service_name)
|
|
111
|
+
if source_service_project is not None:
|
|
112
|
+
pulumi.set(__self__, "source_service_project", source_service_project)
|
|
80
113
|
|
|
81
114
|
@property
|
|
82
115
|
@pulumi.getter(name="integrationType")
|
|
83
116
|
def integration_type(self) -> pulumi.Input[str]:
|
|
84
117
|
"""
|
|
85
|
-
Type of the service integration.
|
|
118
|
+
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`.
|
|
86
119
|
"""
|
|
87
120
|
return pulumi.get(self, "integration_type")
|
|
88
121
|
|
|
@@ -94,7 +127,7 @@ class ServiceIntegrationArgs:
|
|
|
94
127
|
@pulumi.getter
|
|
95
128
|
def project(self) -> pulumi.Input[str]:
|
|
96
129
|
"""
|
|
97
|
-
Project the integration belongs to
|
|
130
|
+
Project the integration belongs to.
|
|
98
131
|
"""
|
|
99
132
|
return pulumi.get(self, "project")
|
|
100
133
|
|
|
@@ -106,7 +139,7 @@ class ServiceIntegrationArgs:
|
|
|
106
139
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
107
140
|
def clickhouse_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']]:
|
|
108
141
|
"""
|
|
109
|
-
ClickhouseKafka user configurable settings
|
|
142
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
110
143
|
"""
|
|
111
144
|
return pulumi.get(self, "clickhouse_kafka_user_config")
|
|
112
145
|
|
|
@@ -118,7 +151,7 @@ class ServiceIntegrationArgs:
|
|
|
118
151
|
@pulumi.getter(name="clickhousePostgresqlUserConfig")
|
|
119
152
|
def clickhouse_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs']]:
|
|
120
153
|
"""
|
|
121
|
-
ClickhousePostgresql user configurable settings
|
|
154
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
122
155
|
"""
|
|
123
156
|
return pulumi.get(self, "clickhouse_postgresql_user_config")
|
|
124
157
|
|
|
@@ -130,7 +163,7 @@ class ServiceIntegrationArgs:
|
|
|
130
163
|
@pulumi.getter(name="datadogUserConfig")
|
|
131
164
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']]:
|
|
132
165
|
"""
|
|
133
|
-
Datadog user configurable settings
|
|
166
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
134
167
|
"""
|
|
135
168
|
return pulumi.get(self, "datadog_user_config")
|
|
136
169
|
|
|
@@ -142,7 +175,7 @@ class ServiceIntegrationArgs:
|
|
|
142
175
|
@pulumi.getter(name="destinationEndpointId")
|
|
143
176
|
def destination_endpoint_id(self) -> Optional[pulumi.Input[str]]:
|
|
144
177
|
"""
|
|
145
|
-
Destination endpoint for the integration
|
|
178
|
+
Destination endpoint for the integration.
|
|
146
179
|
"""
|
|
147
180
|
return pulumi.get(self, "destination_endpoint_id")
|
|
148
181
|
|
|
@@ -154,7 +187,7 @@ class ServiceIntegrationArgs:
|
|
|
154
187
|
@pulumi.getter(name="destinationServiceName")
|
|
155
188
|
def destination_service_name(self) -> Optional[pulumi.Input[str]]:
|
|
156
189
|
"""
|
|
157
|
-
Destination service for the integration
|
|
190
|
+
Destination service for the integration.
|
|
158
191
|
"""
|
|
159
192
|
return pulumi.get(self, "destination_service_name")
|
|
160
193
|
|
|
@@ -162,11 +195,35 @@ class ServiceIntegrationArgs:
|
|
|
162
195
|
def destination_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
163
196
|
pulumi.set(self, "destination_service_name", value)
|
|
164
197
|
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter(name="destinationServiceProject")
|
|
200
|
+
def destination_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
201
|
+
"""
|
|
202
|
+
Destination service project name
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "destination_service_project")
|
|
205
|
+
|
|
206
|
+
@destination_service_project.setter
|
|
207
|
+
def destination_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
208
|
+
pulumi.set(self, "destination_service_project", value)
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
212
|
+
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
213
|
+
"""
|
|
214
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
217
|
+
|
|
218
|
+
@external_aws_cloudwatch_logs_user_config.setter
|
|
219
|
+
def external_aws_cloudwatch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]):
|
|
220
|
+
pulumi.set(self, "external_aws_cloudwatch_logs_user_config", value)
|
|
221
|
+
|
|
165
222
|
@property
|
|
166
223
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
167
224
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
168
225
|
"""
|
|
169
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
226
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
170
227
|
"""
|
|
171
228
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
172
229
|
|
|
@@ -174,11 +231,47 @@ class ServiceIntegrationArgs:
|
|
|
174
231
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
175
232
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
176
233
|
|
|
234
|
+
@property
|
|
235
|
+
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
236
|
+
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']]:
|
|
237
|
+
"""
|
|
238
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
239
|
+
"""
|
|
240
|
+
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
241
|
+
|
|
242
|
+
@external_elasticsearch_logs_user_config.setter
|
|
243
|
+
def external_elasticsearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']]):
|
|
244
|
+
pulumi.set(self, "external_elasticsearch_logs_user_config", value)
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
248
|
+
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]:
|
|
249
|
+
"""
|
|
250
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
251
|
+
"""
|
|
252
|
+
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
253
|
+
|
|
254
|
+
@external_opensearch_logs_user_config.setter
|
|
255
|
+
def external_opensearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]):
|
|
256
|
+
pulumi.set(self, "external_opensearch_logs_user_config", value)
|
|
257
|
+
|
|
258
|
+
@property
|
|
259
|
+
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
260
|
+
def flink_external_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]:
|
|
261
|
+
"""
|
|
262
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
263
|
+
"""
|
|
264
|
+
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
265
|
+
|
|
266
|
+
@flink_external_postgresql_user_config.setter
|
|
267
|
+
def flink_external_postgresql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]):
|
|
268
|
+
pulumi.set(self, "flink_external_postgresql_user_config", value)
|
|
269
|
+
|
|
177
270
|
@property
|
|
178
271
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
179
272
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']]:
|
|
180
273
|
"""
|
|
181
|
-
KafkaConnect user configurable settings
|
|
274
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
182
275
|
"""
|
|
183
276
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
184
277
|
|
|
@@ -190,7 +283,7 @@ class ServiceIntegrationArgs:
|
|
|
190
283
|
@pulumi.getter(name="kafkaLogsUserConfig")
|
|
191
284
|
def kafka_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']]:
|
|
192
285
|
"""
|
|
193
|
-
KafkaLogs user configurable settings
|
|
286
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
194
287
|
"""
|
|
195
288
|
return pulumi.get(self, "kafka_logs_user_config")
|
|
196
289
|
|
|
@@ -202,7 +295,7 @@ class ServiceIntegrationArgs:
|
|
|
202
295
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
203
296
|
def kafka_mirrormaker_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']]:
|
|
204
297
|
"""
|
|
205
|
-
KafkaMirrormaker user configurable settings
|
|
298
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
206
299
|
"""
|
|
207
300
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
208
301
|
|
|
@@ -214,7 +307,7 @@ class ServiceIntegrationArgs:
|
|
|
214
307
|
@pulumi.getter(name="logsUserConfig")
|
|
215
308
|
def logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationLogsUserConfigArgs']]:
|
|
216
309
|
"""
|
|
217
|
-
Logs user configurable settings
|
|
310
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
218
311
|
"""
|
|
219
312
|
return pulumi.get(self, "logs_user_config")
|
|
220
313
|
|
|
@@ -226,7 +319,7 @@ class ServiceIntegrationArgs:
|
|
|
226
319
|
@pulumi.getter(name="metricsUserConfig")
|
|
227
320
|
def metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']]:
|
|
228
321
|
"""
|
|
229
|
-
Metrics user configurable settings
|
|
322
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
230
323
|
"""
|
|
231
324
|
return pulumi.get(self, "metrics_user_config")
|
|
232
325
|
|
|
@@ -234,11 +327,23 @@ class ServiceIntegrationArgs:
|
|
|
234
327
|
def metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']]):
|
|
235
328
|
pulumi.set(self, "metrics_user_config", value)
|
|
236
329
|
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter(name="prometheusUserConfig")
|
|
332
|
+
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']]:
|
|
333
|
+
"""
|
|
334
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "prometheus_user_config")
|
|
337
|
+
|
|
338
|
+
@prometheus_user_config.setter
|
|
339
|
+
def prometheus_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']]):
|
|
340
|
+
pulumi.set(self, "prometheus_user_config", value)
|
|
341
|
+
|
|
237
342
|
@property
|
|
238
343
|
@pulumi.getter(name="sourceEndpointId")
|
|
239
344
|
def source_endpoint_id(self) -> Optional[pulumi.Input[str]]:
|
|
240
345
|
"""
|
|
241
|
-
Source endpoint for the integration
|
|
346
|
+
Source endpoint for the integration.
|
|
242
347
|
"""
|
|
243
348
|
return pulumi.get(self, "source_endpoint_id")
|
|
244
349
|
|
|
@@ -258,6 +363,18 @@ class ServiceIntegrationArgs:
|
|
|
258
363
|
def source_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
259
364
|
pulumi.set(self, "source_service_name", value)
|
|
260
365
|
|
|
366
|
+
@property
|
|
367
|
+
@pulumi.getter(name="sourceServiceProject")
|
|
368
|
+
def source_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
369
|
+
"""
|
|
370
|
+
Source service project name
|
|
371
|
+
"""
|
|
372
|
+
return pulumi.get(self, "source_service_project")
|
|
373
|
+
|
|
374
|
+
@source_service_project.setter
|
|
375
|
+
def source_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
376
|
+
pulumi.set(self, "source_service_project", value)
|
|
377
|
+
|
|
261
378
|
|
|
262
379
|
@pulumi.input_type
|
|
263
380
|
class _ServiceIntegrationState:
|
|
@@ -267,7 +384,12 @@ class _ServiceIntegrationState:
|
|
|
267
384
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']] = None,
|
|
268
385
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
269
386
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
387
|
+
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
388
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
270
389
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
390
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
391
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] = None,
|
|
392
|
+
flink_external_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']] = None,
|
|
271
393
|
integration_id: Optional[pulumi.Input[str]] = None,
|
|
272
394
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
273
395
|
kafka_connect_user_config: Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']] = None,
|
|
@@ -276,26 +398,35 @@ class _ServiceIntegrationState:
|
|
|
276
398
|
logs_user_config: Optional[pulumi.Input['ServiceIntegrationLogsUserConfigArgs']] = None,
|
|
277
399
|
metrics_user_config: Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']] = None,
|
|
278
400
|
project: Optional[pulumi.Input[str]] = None,
|
|
401
|
+
prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']] = None,
|
|
279
402
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
280
|
-
source_service_name: Optional[pulumi.Input[str]] = None
|
|
403
|
+
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
404
|
+
source_service_project: Optional[pulumi.Input[str]] = None):
|
|
281
405
|
"""
|
|
282
406
|
Input properties used for looking up and filtering ServiceIntegration resources.
|
|
283
|
-
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
284
|
-
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
285
|
-
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
286
|
-
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration
|
|
287
|
-
:param pulumi.Input[str] destination_service_name: Destination service for the integration
|
|
288
|
-
:param pulumi.Input[
|
|
289
|
-
:param pulumi.Input[
|
|
290
|
-
:param pulumi.Input[
|
|
291
|
-
:param pulumi.Input['
|
|
292
|
-
:param pulumi.Input['
|
|
293
|
-
:param pulumi.Input['
|
|
294
|
-
:param pulumi.Input[
|
|
295
|
-
:param pulumi.Input[
|
|
296
|
-
:param pulumi.Input[
|
|
297
|
-
:param pulumi.Input[
|
|
407
|
+
: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
|
|
408
|
+
: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
|
|
409
|
+
: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
|
|
410
|
+
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
411
|
+
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
412
|
+
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
413
|
+
: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
|
|
414
|
+
: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
|
|
415
|
+
: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
|
|
416
|
+
: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
|
|
417
|
+
: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
|
|
418
|
+
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
419
|
+
: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`.
|
|
420
|
+
: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
|
|
421
|
+
: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
|
|
422
|
+
: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
|
|
423
|
+
: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
|
|
424
|
+
: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
|
|
425
|
+
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
426
|
+
: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
|
|
427
|
+
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
298
428
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
429
|
+
:param pulumi.Input[str] source_service_project: Source service project name
|
|
299
430
|
"""
|
|
300
431
|
if clickhouse_kafka_user_config is not None:
|
|
301
432
|
pulumi.set(__self__, "clickhouse_kafka_user_config", clickhouse_kafka_user_config)
|
|
@@ -307,8 +438,18 @@ class _ServiceIntegrationState:
|
|
|
307
438
|
pulumi.set(__self__, "destination_endpoint_id", destination_endpoint_id)
|
|
308
439
|
if destination_service_name is not None:
|
|
309
440
|
pulumi.set(__self__, "destination_service_name", destination_service_name)
|
|
441
|
+
if destination_service_project is not None:
|
|
442
|
+
pulumi.set(__self__, "destination_service_project", destination_service_project)
|
|
443
|
+
if external_aws_cloudwatch_logs_user_config is not None:
|
|
444
|
+
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
310
445
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
311
446
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_config", external_aws_cloudwatch_metrics_user_config)
|
|
447
|
+
if external_elasticsearch_logs_user_config is not None:
|
|
448
|
+
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
449
|
+
if external_opensearch_logs_user_config is not None:
|
|
450
|
+
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
451
|
+
if flink_external_postgresql_user_config is not None:
|
|
452
|
+
pulumi.set(__self__, "flink_external_postgresql_user_config", flink_external_postgresql_user_config)
|
|
312
453
|
if integration_id is not None:
|
|
313
454
|
pulumi.set(__self__, "integration_id", integration_id)
|
|
314
455
|
if integration_type is not None:
|
|
@@ -325,16 +466,20 @@ class _ServiceIntegrationState:
|
|
|
325
466
|
pulumi.set(__self__, "metrics_user_config", metrics_user_config)
|
|
326
467
|
if project is not None:
|
|
327
468
|
pulumi.set(__self__, "project", project)
|
|
469
|
+
if prometheus_user_config is not None:
|
|
470
|
+
pulumi.set(__self__, "prometheus_user_config", prometheus_user_config)
|
|
328
471
|
if source_endpoint_id is not None:
|
|
329
472
|
pulumi.set(__self__, "source_endpoint_id", source_endpoint_id)
|
|
330
473
|
if source_service_name is not None:
|
|
331
474
|
pulumi.set(__self__, "source_service_name", source_service_name)
|
|
475
|
+
if source_service_project is not None:
|
|
476
|
+
pulumi.set(__self__, "source_service_project", source_service_project)
|
|
332
477
|
|
|
333
478
|
@property
|
|
334
479
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
335
480
|
def clickhouse_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']]:
|
|
336
481
|
"""
|
|
337
|
-
ClickhouseKafka user configurable settings
|
|
482
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
338
483
|
"""
|
|
339
484
|
return pulumi.get(self, "clickhouse_kafka_user_config")
|
|
340
485
|
|
|
@@ -346,7 +491,7 @@ class _ServiceIntegrationState:
|
|
|
346
491
|
@pulumi.getter(name="clickhousePostgresqlUserConfig")
|
|
347
492
|
def clickhouse_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs']]:
|
|
348
493
|
"""
|
|
349
|
-
ClickhousePostgresql user configurable settings
|
|
494
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
350
495
|
"""
|
|
351
496
|
return pulumi.get(self, "clickhouse_postgresql_user_config")
|
|
352
497
|
|
|
@@ -358,7 +503,7 @@ class _ServiceIntegrationState:
|
|
|
358
503
|
@pulumi.getter(name="datadogUserConfig")
|
|
359
504
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']]:
|
|
360
505
|
"""
|
|
361
|
-
Datadog user configurable settings
|
|
506
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
362
507
|
"""
|
|
363
508
|
return pulumi.get(self, "datadog_user_config")
|
|
364
509
|
|
|
@@ -370,7 +515,7 @@ class _ServiceIntegrationState:
|
|
|
370
515
|
@pulumi.getter(name="destinationEndpointId")
|
|
371
516
|
def destination_endpoint_id(self) -> Optional[pulumi.Input[str]]:
|
|
372
517
|
"""
|
|
373
|
-
Destination endpoint for the integration
|
|
518
|
+
Destination endpoint for the integration.
|
|
374
519
|
"""
|
|
375
520
|
return pulumi.get(self, "destination_endpoint_id")
|
|
376
521
|
|
|
@@ -382,7 +527,7 @@ class _ServiceIntegrationState:
|
|
|
382
527
|
@pulumi.getter(name="destinationServiceName")
|
|
383
528
|
def destination_service_name(self) -> Optional[pulumi.Input[str]]:
|
|
384
529
|
"""
|
|
385
|
-
Destination service for the integration
|
|
530
|
+
Destination service for the integration.
|
|
386
531
|
"""
|
|
387
532
|
return pulumi.get(self, "destination_service_name")
|
|
388
533
|
|
|
@@ -390,11 +535,35 @@ class _ServiceIntegrationState:
|
|
|
390
535
|
def destination_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
391
536
|
pulumi.set(self, "destination_service_name", value)
|
|
392
537
|
|
|
538
|
+
@property
|
|
539
|
+
@pulumi.getter(name="destinationServiceProject")
|
|
540
|
+
def destination_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
541
|
+
"""
|
|
542
|
+
Destination service project name
|
|
543
|
+
"""
|
|
544
|
+
return pulumi.get(self, "destination_service_project")
|
|
545
|
+
|
|
546
|
+
@destination_service_project.setter
|
|
547
|
+
def destination_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
548
|
+
pulumi.set(self, "destination_service_project", value)
|
|
549
|
+
|
|
550
|
+
@property
|
|
551
|
+
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
552
|
+
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
553
|
+
"""
|
|
554
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
555
|
+
"""
|
|
556
|
+
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
557
|
+
|
|
558
|
+
@external_aws_cloudwatch_logs_user_config.setter
|
|
559
|
+
def external_aws_cloudwatch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]):
|
|
560
|
+
pulumi.set(self, "external_aws_cloudwatch_logs_user_config", value)
|
|
561
|
+
|
|
393
562
|
@property
|
|
394
563
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
395
564
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
396
565
|
"""
|
|
397
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
566
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
398
567
|
"""
|
|
399
568
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
400
569
|
|
|
@@ -402,11 +571,47 @@ class _ServiceIntegrationState:
|
|
|
402
571
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
403
572
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
404
573
|
|
|
574
|
+
@property
|
|
575
|
+
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
576
|
+
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']]:
|
|
577
|
+
"""
|
|
578
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
579
|
+
"""
|
|
580
|
+
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
581
|
+
|
|
582
|
+
@external_elasticsearch_logs_user_config.setter
|
|
583
|
+
def external_elasticsearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']]):
|
|
584
|
+
pulumi.set(self, "external_elasticsearch_logs_user_config", value)
|
|
585
|
+
|
|
586
|
+
@property
|
|
587
|
+
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
588
|
+
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]:
|
|
589
|
+
"""
|
|
590
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
591
|
+
"""
|
|
592
|
+
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
593
|
+
|
|
594
|
+
@external_opensearch_logs_user_config.setter
|
|
595
|
+
def external_opensearch_logs_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']]):
|
|
596
|
+
pulumi.set(self, "external_opensearch_logs_user_config", value)
|
|
597
|
+
|
|
598
|
+
@property
|
|
599
|
+
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
600
|
+
def flink_external_postgresql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]:
|
|
601
|
+
"""
|
|
602
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
603
|
+
"""
|
|
604
|
+
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
605
|
+
|
|
606
|
+
@flink_external_postgresql_user_config.setter
|
|
607
|
+
def flink_external_postgresql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs']]):
|
|
608
|
+
pulumi.set(self, "flink_external_postgresql_user_config", value)
|
|
609
|
+
|
|
405
610
|
@property
|
|
406
611
|
@pulumi.getter(name="integrationId")
|
|
407
612
|
def integration_id(self) -> Optional[pulumi.Input[str]]:
|
|
408
613
|
"""
|
|
409
|
-
|
|
614
|
+
The ID of the Aiven service integration.
|
|
410
615
|
"""
|
|
411
616
|
return pulumi.get(self, "integration_id")
|
|
412
617
|
|
|
@@ -418,7 +623,7 @@ class _ServiceIntegrationState:
|
|
|
418
623
|
@pulumi.getter(name="integrationType")
|
|
419
624
|
def integration_type(self) -> Optional[pulumi.Input[str]]:
|
|
420
625
|
"""
|
|
421
|
-
Type of the service integration.
|
|
626
|
+
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`.
|
|
422
627
|
"""
|
|
423
628
|
return pulumi.get(self, "integration_type")
|
|
424
629
|
|
|
@@ -430,7 +635,7 @@ class _ServiceIntegrationState:
|
|
|
430
635
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
431
636
|
def kafka_connect_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs']]:
|
|
432
637
|
"""
|
|
433
|
-
KafkaConnect user configurable settings
|
|
638
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
434
639
|
"""
|
|
435
640
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
436
641
|
|
|
@@ -442,7 +647,7 @@ class _ServiceIntegrationState:
|
|
|
442
647
|
@pulumi.getter(name="kafkaLogsUserConfig")
|
|
443
648
|
def kafka_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs']]:
|
|
444
649
|
"""
|
|
445
|
-
KafkaLogs user configurable settings
|
|
650
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
446
651
|
"""
|
|
447
652
|
return pulumi.get(self, "kafka_logs_user_config")
|
|
448
653
|
|
|
@@ -454,7 +659,7 @@ class _ServiceIntegrationState:
|
|
|
454
659
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
455
660
|
def kafka_mirrormaker_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs']]:
|
|
456
661
|
"""
|
|
457
|
-
KafkaMirrormaker user configurable settings
|
|
662
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
458
663
|
"""
|
|
459
664
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
460
665
|
|
|
@@ -466,7 +671,7 @@ class _ServiceIntegrationState:
|
|
|
466
671
|
@pulumi.getter(name="logsUserConfig")
|
|
467
672
|
def logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationLogsUserConfigArgs']]:
|
|
468
673
|
"""
|
|
469
|
-
Logs user configurable settings
|
|
674
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
470
675
|
"""
|
|
471
676
|
return pulumi.get(self, "logs_user_config")
|
|
472
677
|
|
|
@@ -478,7 +683,7 @@ class _ServiceIntegrationState:
|
|
|
478
683
|
@pulumi.getter(name="metricsUserConfig")
|
|
479
684
|
def metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']]:
|
|
480
685
|
"""
|
|
481
|
-
Metrics user configurable settings
|
|
686
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
482
687
|
"""
|
|
483
688
|
return pulumi.get(self, "metrics_user_config")
|
|
484
689
|
|
|
@@ -490,7 +695,7 @@ class _ServiceIntegrationState:
|
|
|
490
695
|
@pulumi.getter
|
|
491
696
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
492
697
|
"""
|
|
493
|
-
Project the integration belongs to
|
|
698
|
+
Project the integration belongs to.
|
|
494
699
|
"""
|
|
495
700
|
return pulumi.get(self, "project")
|
|
496
701
|
|
|
@@ -498,11 +703,23 @@ class _ServiceIntegrationState:
|
|
|
498
703
|
def project(self, value: Optional[pulumi.Input[str]]):
|
|
499
704
|
pulumi.set(self, "project", value)
|
|
500
705
|
|
|
706
|
+
@property
|
|
707
|
+
@pulumi.getter(name="prometheusUserConfig")
|
|
708
|
+
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']]:
|
|
709
|
+
"""
|
|
710
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
711
|
+
"""
|
|
712
|
+
return pulumi.get(self, "prometheus_user_config")
|
|
713
|
+
|
|
714
|
+
@prometheus_user_config.setter
|
|
715
|
+
def prometheus_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']]):
|
|
716
|
+
pulumi.set(self, "prometheus_user_config", value)
|
|
717
|
+
|
|
501
718
|
@property
|
|
502
719
|
@pulumi.getter(name="sourceEndpointId")
|
|
503
720
|
def source_endpoint_id(self) -> Optional[pulumi.Input[str]]:
|
|
504
721
|
"""
|
|
505
|
-
Source endpoint for the integration
|
|
722
|
+
Source endpoint for the integration.
|
|
506
723
|
"""
|
|
507
724
|
return pulumi.get(self, "source_endpoint_id")
|
|
508
725
|
|
|
@@ -522,74 +739,108 @@ class _ServiceIntegrationState:
|
|
|
522
739
|
def source_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
523
740
|
pulumi.set(self, "source_service_name", value)
|
|
524
741
|
|
|
742
|
+
@property
|
|
743
|
+
@pulumi.getter(name="sourceServiceProject")
|
|
744
|
+
def source_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
745
|
+
"""
|
|
746
|
+
Source service project name
|
|
747
|
+
"""
|
|
748
|
+
return pulumi.get(self, "source_service_project")
|
|
749
|
+
|
|
750
|
+
@source_service_project.setter
|
|
751
|
+
def source_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
752
|
+
pulumi.set(self, "source_service_project", value)
|
|
753
|
+
|
|
525
754
|
|
|
526
755
|
class ServiceIntegration(pulumi.CustomResource):
|
|
527
756
|
@overload
|
|
528
757
|
def __init__(__self__,
|
|
529
758
|
resource_name: str,
|
|
530
759
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
531
|
-
clickhouse_kafka_user_config: Optional[pulumi.Input[
|
|
532
|
-
clickhouse_postgresql_user_config: Optional[pulumi.Input[
|
|
533
|
-
datadog_user_config: Optional[pulumi.Input[
|
|
760
|
+
clickhouse_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']]] = None,
|
|
761
|
+
clickhouse_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']]] = None,
|
|
762
|
+
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
534
763
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
535
764
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
536
|
-
|
|
765
|
+
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
766
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
767
|
+
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
768
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
769
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
770
|
+
flink_external_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']]] = None,
|
|
537
771
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
538
|
-
kafka_connect_user_config: Optional[pulumi.Input[
|
|
539
|
-
kafka_logs_user_config: Optional[pulumi.Input[
|
|
540
|
-
kafka_mirrormaker_user_config: Optional[pulumi.Input[
|
|
541
|
-
logs_user_config: Optional[pulumi.Input[
|
|
542
|
-
metrics_user_config: Optional[pulumi.Input[
|
|
772
|
+
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
773
|
+
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
774
|
+
kafka_mirrormaker_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']]] = None,
|
|
775
|
+
logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']]] = None,
|
|
776
|
+
metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']]] = None,
|
|
543
777
|
project: Optional[pulumi.Input[str]] = None,
|
|
778
|
+
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']]] = None,
|
|
544
779
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
545
780
|
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
781
|
+
source_service_project: Optional[pulumi.Input[str]] = None,
|
|
546
782
|
__props__=None):
|
|
547
783
|
"""
|
|
548
|
-
The Service Integration resource allows the creation and management of Aiven Service Integrations.
|
|
549
|
-
|
|
550
|
-
**Note** For services running on `hobbyist` plan service integrations are not supported.
|
|
551
|
-
|
|
552
|
-
Service Integration defines an integration between two Aiven services or between Aiven service and an external
|
|
553
|
-
integration endpoint. Integration could be for example sending metrics from Kafka service to an M3DB service,
|
|
554
|
-
getting metrics from an M3DB service to a Grafana service to show dashboards, sending logs from any service to
|
|
555
|
-
OpenSearch, etc.
|
|
556
|
-
|
|
557
784
|
## Example Usage
|
|
558
785
|
|
|
559
786
|
```python
|
|
560
787
|
import pulumi
|
|
561
788
|
import pulumi_aiven as aiven
|
|
562
789
|
|
|
563
|
-
|
|
564
|
-
|
|
790
|
+
# Integrate Kafka and M3DB services for metrics
|
|
791
|
+
example_integration = aiven.ServiceIntegration("example_integration",
|
|
792
|
+
project=example_project["project"],
|
|
565
793
|
integration_type="metrics",
|
|
566
|
-
source_service_name=
|
|
567
|
-
destination_service_name=
|
|
794
|
+
source_service_name=example_kafka["serviceName"],
|
|
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)
|
|
568
812
|
```
|
|
569
813
|
|
|
570
814
|
## Import
|
|
571
815
|
|
|
572
816
|
```sh
|
|
573
|
-
|
|
817
|
+
$ pulumi import aiven:index/serviceIntegration:ServiceIntegration example_integration PROJECT/INTEGRATION_ID
|
|
574
818
|
```
|
|
575
819
|
|
|
576
820
|
:param str resource_name: The name of the resource.
|
|
577
821
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
578
|
-
:param pulumi.Input[
|
|
579
|
-
:param pulumi.Input[
|
|
580
|
-
:param pulumi.Input[
|
|
581
|
-
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration
|
|
582
|
-
:param pulumi.Input[str] destination_service_name: Destination service for the integration
|
|
583
|
-
:param pulumi.Input[
|
|
584
|
-
:param pulumi.Input[
|
|
585
|
-
:param pulumi.Input[
|
|
586
|
-
:param pulumi.Input[
|
|
587
|
-
:param pulumi.Input[
|
|
588
|
-
:param pulumi.Input[
|
|
589
|
-
:param pulumi.Input[
|
|
590
|
-
:param pulumi.Input[
|
|
591
|
-
:param pulumi.Input[
|
|
822
|
+
: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
|
|
823
|
+
: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
|
|
824
|
+
: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
|
|
825
|
+
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
826
|
+
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
827
|
+
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
828
|
+
: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
|
|
829
|
+
: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
|
|
830
|
+
: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
|
|
831
|
+
: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
|
|
832
|
+
: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
|
|
833
|
+
: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`.
|
|
834
|
+
: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
|
|
835
|
+
: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
|
|
836
|
+
: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
|
|
837
|
+
: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
|
|
838
|
+
: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
|
|
839
|
+
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
840
|
+
: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
|
|
841
|
+
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
592
842
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
843
|
+
:param pulumi.Input[str] source_service_project: Source service project name
|
|
593
844
|
"""
|
|
594
845
|
...
|
|
595
846
|
@overload
|
|
@@ -598,32 +849,40 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
598
849
|
args: ServiceIntegrationArgs,
|
|
599
850
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
600
851
|
"""
|
|
601
|
-
The Service Integration resource allows the creation and management of Aiven Service Integrations.
|
|
602
|
-
|
|
603
|
-
**Note** For services running on `hobbyist` plan service integrations are not supported.
|
|
604
|
-
|
|
605
|
-
Service Integration defines an integration between two Aiven services or between Aiven service and an external
|
|
606
|
-
integration endpoint. Integration could be for example sending metrics from Kafka service to an M3DB service,
|
|
607
|
-
getting metrics from an M3DB service to a Grafana service to show dashboards, sending logs from any service to
|
|
608
|
-
OpenSearch, etc.
|
|
609
|
-
|
|
610
852
|
## Example Usage
|
|
611
853
|
|
|
612
854
|
```python
|
|
613
855
|
import pulumi
|
|
614
856
|
import pulumi_aiven as aiven
|
|
615
857
|
|
|
616
|
-
|
|
617
|
-
|
|
858
|
+
# Integrate Kafka and M3DB services for metrics
|
|
859
|
+
example_integration = aiven.ServiceIntegration("example_integration",
|
|
860
|
+
project=example_project["project"],
|
|
618
861
|
integration_type="metrics",
|
|
619
|
-
source_service_name=
|
|
620
|
-
destination_service_name=
|
|
862
|
+
source_service_name=example_kafka["serviceName"],
|
|
863
|
+
destination_service_name=example_m3db["serviceName"])
|
|
864
|
+
# Use disk autoscaler with a PostgreSQL service
|
|
865
|
+
autoscaler_endpoint = aiven.ServiceIntegrationEndpoint("autoscaler_endpoint",
|
|
866
|
+
project=example_project["project"],
|
|
867
|
+
endpoint_name="disk-autoscaler-200GiB",
|
|
868
|
+
endpoint_type="autoscaler",
|
|
869
|
+
autoscaler_user_config={
|
|
870
|
+
"autoscalings": [{
|
|
871
|
+
"cap_gb": 200,
|
|
872
|
+
"type": "autoscale_disk",
|
|
873
|
+
}],
|
|
874
|
+
})
|
|
875
|
+
autoscaler_integration = aiven.ServiceIntegration("autoscaler_integration",
|
|
876
|
+
project=example_project["project"],
|
|
877
|
+
integration_type="autoscaler",
|
|
878
|
+
source_service_name=example_pg["serviceName"],
|
|
879
|
+
destination_endpoint_id=autoscaler_endpoint.id)
|
|
621
880
|
```
|
|
622
881
|
|
|
623
882
|
## Import
|
|
624
883
|
|
|
625
884
|
```sh
|
|
626
|
-
|
|
885
|
+
$ pulumi import aiven:index/serviceIntegration:ServiceIntegration example_integration PROJECT/INTEGRATION_ID
|
|
627
886
|
```
|
|
628
887
|
|
|
629
888
|
:param str resource_name: The name of the resource.
|
|
@@ -641,21 +900,28 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
641
900
|
def _internal_init(__self__,
|
|
642
901
|
resource_name: str,
|
|
643
902
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
644
|
-
clickhouse_kafka_user_config: Optional[pulumi.Input[
|
|
645
|
-
clickhouse_postgresql_user_config: Optional[pulumi.Input[
|
|
646
|
-
datadog_user_config: Optional[pulumi.Input[
|
|
903
|
+
clickhouse_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']]] = None,
|
|
904
|
+
clickhouse_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']]] = None,
|
|
905
|
+
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
647
906
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
648
907
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
649
|
-
|
|
908
|
+
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
909
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
910
|
+
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
911
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
912
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
913
|
+
flink_external_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']]] = None,
|
|
650
914
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
651
|
-
kafka_connect_user_config: Optional[pulumi.Input[
|
|
652
|
-
kafka_logs_user_config: Optional[pulumi.Input[
|
|
653
|
-
kafka_mirrormaker_user_config: Optional[pulumi.Input[
|
|
654
|
-
logs_user_config: Optional[pulumi.Input[
|
|
655
|
-
metrics_user_config: Optional[pulumi.Input[
|
|
915
|
+
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
916
|
+
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
917
|
+
kafka_mirrormaker_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']]] = None,
|
|
918
|
+
logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']]] = None,
|
|
919
|
+
metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']]] = None,
|
|
656
920
|
project: Optional[pulumi.Input[str]] = None,
|
|
921
|
+
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']]] = None,
|
|
657
922
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
658
923
|
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
924
|
+
source_service_project: Optional[pulumi.Input[str]] = None,
|
|
659
925
|
__props__=None):
|
|
660
926
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
661
927
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -670,7 +936,12 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
670
936
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
671
937
|
__props__.__dict__["destination_endpoint_id"] = destination_endpoint_id
|
|
672
938
|
__props__.__dict__["destination_service_name"] = destination_service_name
|
|
939
|
+
__props__.__dict__["destination_service_project"] = destination_service_project
|
|
940
|
+
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
673
941
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
942
|
+
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
943
|
+
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
944
|
+
__props__.__dict__["flink_external_postgresql_user_config"] = flink_external_postgresql_user_config
|
|
674
945
|
if integration_type is None and not opts.urn:
|
|
675
946
|
raise TypeError("Missing required property 'integration_type'")
|
|
676
947
|
__props__.__dict__["integration_type"] = integration_type
|
|
@@ -682,8 +953,10 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
682
953
|
if project is None and not opts.urn:
|
|
683
954
|
raise TypeError("Missing required property 'project'")
|
|
684
955
|
__props__.__dict__["project"] = project
|
|
956
|
+
__props__.__dict__["prometheus_user_config"] = prometheus_user_config
|
|
685
957
|
__props__.__dict__["source_endpoint_id"] = source_endpoint_id
|
|
686
958
|
__props__.__dict__["source_service_name"] = source_service_name
|
|
959
|
+
__props__.__dict__["source_service_project"] = source_service_project
|
|
687
960
|
__props__.__dict__["integration_id"] = None
|
|
688
961
|
super(ServiceIntegration, __self__).__init__(
|
|
689
962
|
'aiven:index/serviceIntegration:ServiceIntegration',
|
|
@@ -695,22 +968,29 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
695
968
|
def get(resource_name: str,
|
|
696
969
|
id: pulumi.Input[str],
|
|
697
970
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
698
|
-
clickhouse_kafka_user_config: Optional[pulumi.Input[
|
|
699
|
-
clickhouse_postgresql_user_config: Optional[pulumi.Input[
|
|
700
|
-
datadog_user_config: Optional[pulumi.Input[
|
|
971
|
+
clickhouse_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']]] = None,
|
|
972
|
+
clickhouse_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']]] = None,
|
|
973
|
+
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
701
974
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
702
975
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
703
|
-
|
|
976
|
+
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
977
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
978
|
+
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
979
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
980
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
981
|
+
flink_external_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs', 'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgsDict']]] = None,
|
|
704
982
|
integration_id: Optional[pulumi.Input[str]] = None,
|
|
705
983
|
integration_type: Optional[pulumi.Input[str]] = None,
|
|
706
|
-
kafka_connect_user_config: Optional[pulumi.Input[
|
|
707
|
-
kafka_logs_user_config: Optional[pulumi.Input[
|
|
708
|
-
kafka_mirrormaker_user_config: Optional[pulumi.Input[
|
|
709
|
-
logs_user_config: Optional[pulumi.Input[
|
|
710
|
-
metrics_user_config: Optional[pulumi.Input[
|
|
984
|
+
kafka_connect_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']]] = None,
|
|
985
|
+
kafka_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']]] = None,
|
|
986
|
+
kafka_mirrormaker_user_config: Optional[pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']]] = None,
|
|
987
|
+
logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationLogsUserConfigArgs', 'ServiceIntegrationLogsUserConfigArgsDict']]] = None,
|
|
988
|
+
metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationMetricsUserConfigArgs', 'ServiceIntegrationMetricsUserConfigArgsDict']]] = None,
|
|
711
989
|
project: Optional[pulumi.Input[str]] = None,
|
|
990
|
+
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']]] = None,
|
|
712
991
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
713
|
-
source_service_name: Optional[pulumi.Input[str]] = None
|
|
992
|
+
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
993
|
+
source_service_project: Optional[pulumi.Input[str]] = None) -> 'ServiceIntegration':
|
|
714
994
|
"""
|
|
715
995
|
Get an existing ServiceIntegration resource's state with the given name, id, and optional extra
|
|
716
996
|
properties used to qualify the lookup.
|
|
@@ -718,22 +998,29 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
718
998
|
:param str resource_name: The unique name of the resulting resource.
|
|
719
999
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
720
1000
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
721
|
-
:param pulumi.Input[
|
|
722
|
-
:param pulumi.Input[
|
|
723
|
-
:param pulumi.Input[
|
|
724
|
-
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration
|
|
725
|
-
:param pulumi.Input[str] destination_service_name: Destination service for the integration
|
|
726
|
-
:param pulumi.Input[
|
|
727
|
-
:param pulumi.Input[
|
|
728
|
-
:param pulumi.Input[
|
|
729
|
-
:param pulumi.Input[
|
|
730
|
-
:param pulumi.Input[
|
|
731
|
-
:param pulumi.Input[
|
|
732
|
-
:param pulumi.Input[
|
|
733
|
-
:param pulumi.Input[
|
|
734
|
-
:param pulumi.Input[
|
|
735
|
-
:param pulumi.Input[
|
|
1001
|
+
: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
|
|
1002
|
+
: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
|
|
1003
|
+
: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
|
|
1004
|
+
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
1005
|
+
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
1006
|
+
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
1007
|
+
: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
|
|
1008
|
+
: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
|
|
1009
|
+
: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
|
|
1010
|
+
: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
|
|
1011
|
+
: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
|
|
1012
|
+
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
1013
|
+
: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`.
|
|
1014
|
+
: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
|
|
1015
|
+
: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
|
|
1016
|
+
: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
|
|
1017
|
+
: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
|
|
1018
|
+
: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
|
|
1019
|
+
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
1020
|
+
: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
|
|
1021
|
+
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
736
1022
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
1023
|
+
:param pulumi.Input[str] source_service_project: Source service project name
|
|
737
1024
|
"""
|
|
738
1025
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
739
1026
|
|
|
@@ -744,7 +1031,12 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
744
1031
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
745
1032
|
__props__.__dict__["destination_endpoint_id"] = destination_endpoint_id
|
|
746
1033
|
__props__.__dict__["destination_service_name"] = destination_service_name
|
|
1034
|
+
__props__.__dict__["destination_service_project"] = destination_service_project
|
|
1035
|
+
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
747
1036
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
1037
|
+
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
1038
|
+
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
1039
|
+
__props__.__dict__["flink_external_postgresql_user_config"] = flink_external_postgresql_user_config
|
|
748
1040
|
__props__.__dict__["integration_id"] = integration_id
|
|
749
1041
|
__props__.__dict__["integration_type"] = integration_type
|
|
750
1042
|
__props__.__dict__["kafka_connect_user_config"] = kafka_connect_user_config
|
|
@@ -753,15 +1045,17 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
753
1045
|
__props__.__dict__["logs_user_config"] = logs_user_config
|
|
754
1046
|
__props__.__dict__["metrics_user_config"] = metrics_user_config
|
|
755
1047
|
__props__.__dict__["project"] = project
|
|
1048
|
+
__props__.__dict__["prometheus_user_config"] = prometheus_user_config
|
|
756
1049
|
__props__.__dict__["source_endpoint_id"] = source_endpoint_id
|
|
757
1050
|
__props__.__dict__["source_service_name"] = source_service_name
|
|
1051
|
+
__props__.__dict__["source_service_project"] = source_service_project
|
|
758
1052
|
return ServiceIntegration(resource_name, opts=opts, __props__=__props__)
|
|
759
1053
|
|
|
760
1054
|
@property
|
|
761
1055
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
762
1056
|
def clickhouse_kafka_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationClickhouseKafkaUserConfig']]:
|
|
763
1057
|
"""
|
|
764
|
-
ClickhouseKafka user configurable settings
|
|
1058
|
+
ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
765
1059
|
"""
|
|
766
1060
|
return pulumi.get(self, "clickhouse_kafka_user_config")
|
|
767
1061
|
|
|
@@ -769,7 +1063,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
769
1063
|
@pulumi.getter(name="clickhousePostgresqlUserConfig")
|
|
770
1064
|
def clickhouse_postgresql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationClickhousePostgresqlUserConfig']]:
|
|
771
1065
|
"""
|
|
772
|
-
ClickhousePostgresql user configurable settings
|
|
1066
|
+
ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
773
1067
|
"""
|
|
774
1068
|
return pulumi.get(self, "clickhouse_postgresql_user_config")
|
|
775
1069
|
|
|
@@ -777,7 +1071,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
777
1071
|
@pulumi.getter(name="datadogUserConfig")
|
|
778
1072
|
def datadog_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationDatadogUserConfig']]:
|
|
779
1073
|
"""
|
|
780
|
-
Datadog user configurable settings
|
|
1074
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
781
1075
|
"""
|
|
782
1076
|
return pulumi.get(self, "datadog_user_config")
|
|
783
1077
|
|
|
@@ -785,7 +1079,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
785
1079
|
@pulumi.getter(name="destinationEndpointId")
|
|
786
1080
|
def destination_endpoint_id(self) -> pulumi.Output[Optional[str]]:
|
|
787
1081
|
"""
|
|
788
|
-
Destination endpoint for the integration
|
|
1082
|
+
Destination endpoint for the integration.
|
|
789
1083
|
"""
|
|
790
1084
|
return pulumi.get(self, "destination_endpoint_id")
|
|
791
1085
|
|
|
@@ -793,23 +1087,63 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
793
1087
|
@pulumi.getter(name="destinationServiceName")
|
|
794
1088
|
def destination_service_name(self) -> pulumi.Output[Optional[str]]:
|
|
795
1089
|
"""
|
|
796
|
-
Destination service for the integration
|
|
1090
|
+
Destination service for the integration.
|
|
797
1091
|
"""
|
|
798
1092
|
return pulumi.get(self, "destination_service_name")
|
|
799
1093
|
|
|
1094
|
+
@property
|
|
1095
|
+
@pulumi.getter(name="destinationServiceProject")
|
|
1096
|
+
def destination_service_project(self) -> pulumi.Output[str]:
|
|
1097
|
+
"""
|
|
1098
|
+
Destination service project name
|
|
1099
|
+
"""
|
|
1100
|
+
return pulumi.get(self, "destination_service_project")
|
|
1101
|
+
|
|
1102
|
+
@property
|
|
1103
|
+
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
1104
|
+
def external_aws_cloudwatch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalAwsCloudwatchLogsUserConfig']]:
|
|
1105
|
+
"""
|
|
1106
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1107
|
+
"""
|
|
1108
|
+
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
1109
|
+
|
|
800
1110
|
@property
|
|
801
1111
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
802
1112
|
def external_aws_cloudwatch_metrics_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalAwsCloudwatchMetricsUserConfig']]:
|
|
803
1113
|
"""
|
|
804
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
1114
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
805
1115
|
"""
|
|
806
1116
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
807
1117
|
|
|
1118
|
+
@property
|
|
1119
|
+
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
1120
|
+
def external_elasticsearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalElasticsearchLogsUserConfig']]:
|
|
1121
|
+
"""
|
|
1122
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1123
|
+
"""
|
|
1124
|
+
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
1125
|
+
|
|
1126
|
+
@property
|
|
1127
|
+
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
1128
|
+
def external_opensearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalOpensearchLogsUserConfig']]:
|
|
1129
|
+
"""
|
|
1130
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1131
|
+
"""
|
|
1132
|
+
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
1133
|
+
|
|
1134
|
+
@property
|
|
1135
|
+
@pulumi.getter(name="flinkExternalPostgresqlUserConfig")
|
|
1136
|
+
def flink_external_postgresql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationFlinkExternalPostgresqlUserConfig']]:
|
|
1137
|
+
"""
|
|
1138
|
+
FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1139
|
+
"""
|
|
1140
|
+
return pulumi.get(self, "flink_external_postgresql_user_config")
|
|
1141
|
+
|
|
808
1142
|
@property
|
|
809
1143
|
@pulumi.getter(name="integrationId")
|
|
810
1144
|
def integration_id(self) -> pulumi.Output[str]:
|
|
811
1145
|
"""
|
|
812
|
-
|
|
1146
|
+
The ID of the Aiven service integration.
|
|
813
1147
|
"""
|
|
814
1148
|
return pulumi.get(self, "integration_id")
|
|
815
1149
|
|
|
@@ -817,7 +1151,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
817
1151
|
@pulumi.getter(name="integrationType")
|
|
818
1152
|
def integration_type(self) -> pulumi.Output[str]:
|
|
819
1153
|
"""
|
|
820
|
-
Type of the service integration.
|
|
1154
|
+
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`.
|
|
821
1155
|
"""
|
|
822
1156
|
return pulumi.get(self, "integration_type")
|
|
823
1157
|
|
|
@@ -825,7 +1159,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
825
1159
|
@pulumi.getter(name="kafkaConnectUserConfig")
|
|
826
1160
|
def kafka_connect_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationKafkaConnectUserConfig']]:
|
|
827
1161
|
"""
|
|
828
|
-
KafkaConnect user configurable settings
|
|
1162
|
+
KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
829
1163
|
"""
|
|
830
1164
|
return pulumi.get(self, "kafka_connect_user_config")
|
|
831
1165
|
|
|
@@ -833,7 +1167,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
833
1167
|
@pulumi.getter(name="kafkaLogsUserConfig")
|
|
834
1168
|
def kafka_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationKafkaLogsUserConfig']]:
|
|
835
1169
|
"""
|
|
836
|
-
KafkaLogs user configurable settings
|
|
1170
|
+
KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
837
1171
|
"""
|
|
838
1172
|
return pulumi.get(self, "kafka_logs_user_config")
|
|
839
1173
|
|
|
@@ -841,7 +1175,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
841
1175
|
@pulumi.getter(name="kafkaMirrormakerUserConfig")
|
|
842
1176
|
def kafka_mirrormaker_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationKafkaMirrormakerUserConfig']]:
|
|
843
1177
|
"""
|
|
844
|
-
KafkaMirrormaker user configurable settings
|
|
1178
|
+
KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
845
1179
|
"""
|
|
846
1180
|
return pulumi.get(self, "kafka_mirrormaker_user_config")
|
|
847
1181
|
|
|
@@ -849,7 +1183,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
849
1183
|
@pulumi.getter(name="logsUserConfig")
|
|
850
1184
|
def logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationLogsUserConfig']]:
|
|
851
1185
|
"""
|
|
852
|
-
Logs user configurable settings
|
|
1186
|
+
Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
853
1187
|
"""
|
|
854
1188
|
return pulumi.get(self, "logs_user_config")
|
|
855
1189
|
|
|
@@ -857,7 +1191,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
857
1191
|
@pulumi.getter(name="metricsUserConfig")
|
|
858
1192
|
def metrics_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationMetricsUserConfig']]:
|
|
859
1193
|
"""
|
|
860
|
-
Metrics user configurable settings
|
|
1194
|
+
Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
861
1195
|
"""
|
|
862
1196
|
return pulumi.get(self, "metrics_user_config")
|
|
863
1197
|
|
|
@@ -865,23 +1199,39 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
865
1199
|
@pulumi.getter
|
|
866
1200
|
def project(self) -> pulumi.Output[str]:
|
|
867
1201
|
"""
|
|
868
|
-
Project the integration belongs to
|
|
1202
|
+
Project the integration belongs to.
|
|
869
1203
|
"""
|
|
870
1204
|
return pulumi.get(self, "project")
|
|
871
1205
|
|
|
1206
|
+
@property
|
|
1207
|
+
@pulumi.getter(name="prometheusUserConfig")
|
|
1208
|
+
def prometheus_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationPrometheusUserConfig']]:
|
|
1209
|
+
"""
|
|
1210
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1211
|
+
"""
|
|
1212
|
+
return pulumi.get(self, "prometheus_user_config")
|
|
1213
|
+
|
|
872
1214
|
@property
|
|
873
1215
|
@pulumi.getter(name="sourceEndpointId")
|
|
874
1216
|
def source_endpoint_id(self) -> pulumi.Output[Optional[str]]:
|
|
875
1217
|
"""
|
|
876
|
-
Source endpoint for the integration
|
|
1218
|
+
Source endpoint for the integration.
|
|
877
1219
|
"""
|
|
878
1220
|
return pulumi.get(self, "source_endpoint_id")
|
|
879
1221
|
|
|
880
1222
|
@property
|
|
881
1223
|
@pulumi.getter(name="sourceServiceName")
|
|
882
|
-
def source_service_name(self) -> pulumi.Output[
|
|
1224
|
+
def source_service_name(self) -> pulumi.Output[str]:
|
|
883
1225
|
"""
|
|
884
1226
|
Source service for the integration (if any)
|
|
885
1227
|
"""
|
|
886
1228
|
return pulumi.get(self, "source_service_name")
|
|
887
1229
|
|
|
1230
|
+
@property
|
|
1231
|
+
@pulumi.getter(name="sourceServiceProject")
|
|
1232
|
+
def source_service_project(self) -> pulumi.Output[str]:
|
|
1233
|
+
"""
|
|
1234
|
+
Source service project name
|
|
1235
|
+
"""
|
|
1236
|
+
return pulumi.get(self, "source_service_project")
|
|
1237
|
+
|