pulumi-aiven 6.27.0a1730118480__py3-none-any.whl → 6.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +635 -203
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_component.py +9 -9
- pulumi_aiven/get_service_integration.py +17 -17
- pulumi_aiven/get_service_integration_endpoint.py +59 -31
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +15 -8
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_group_project.py +17 -9
- pulumi_aiven/organization_permission.py +49 -49
- pulumi_aiven/outputs.py +883 -263
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +15 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +139 -123
- pulumi_aiven/service_integration_endpoint.py +302 -140
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/RECORD +54 -54
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.27.0a1730118480.dist-info → pulumi_aiven-6.28.0.dist-info}/top_level.txt +0 -0
|
@@ -24,6 +24,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
24
24
|
endpoint_name: pulumi.Input[str],
|
|
25
25
|
endpoint_type: pulumi.Input[str],
|
|
26
26
|
project: pulumi.Input[str],
|
|
27
|
+
autoscaler_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']] = None,
|
|
27
28
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']] = None,
|
|
28
29
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
29
30
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
@@ -36,35 +37,40 @@ class ServiceIntegrationEndpointArgs:
|
|
|
36
37
|
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
37
38
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
38
39
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
40
|
+
external_prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']] = None,
|
|
39
41
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
40
42
|
jolokia_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']] = None,
|
|
41
43
|
prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs']] = None,
|
|
42
44
|
rsyslog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']] = None):
|
|
43
45
|
"""
|
|
44
46
|
The set of arguments for constructing a ServiceIntegrationEndpoint resource.
|
|
45
|
-
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint
|
|
46
|
-
:param pulumi.Input[str] endpoint_type:
|
|
47
|
-
:param pulumi.Input[str] project: Project the service integration endpoint
|
|
48
|
-
:param pulumi.Input['
|
|
49
|
-
:param pulumi.Input['
|
|
50
|
-
:param pulumi.Input['
|
|
51
|
-
:param pulumi.Input['
|
|
52
|
-
:param pulumi.Input['
|
|
53
|
-
:param pulumi.Input['
|
|
54
|
-
:param pulumi.Input['
|
|
55
|
-
:param pulumi.Input['
|
|
56
|
-
:param pulumi.Input['
|
|
57
|
-
:param pulumi.Input['
|
|
58
|
-
:param pulumi.Input['
|
|
59
|
-
:param pulumi.Input['
|
|
60
|
-
:param pulumi.Input['
|
|
61
|
-
:param pulumi.Input['
|
|
62
|
-
:param pulumi.Input['
|
|
63
|
-
:param pulumi.Input['
|
|
47
|
+
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint.
|
|
48
|
+
:param pulumi.Input[str] endpoint_type: The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
49
|
+
:param pulumi.Input[str] project: Project the service integration endpoint is in.
|
|
50
|
+
:param pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs'] autoscaler_user_config: Autoscaler 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['ServiceIntegrationEndpointDatadogUserConfigArgs'] 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
|
|
52
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] 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
|
|
53
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs'] 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
|
|
54
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs'] external_aws_s3_user_config: ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
55
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs'] external_clickhouse_user_config: ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
56
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] 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
|
|
57
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs'] external_google_cloud_bigquery: ExternalGoogleCloudBigquery 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['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs'] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging 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['ServiceIntegrationEndpointExternalKafkaUserConfigArgs'] external_kafka_user_config: ExternalKafka 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['ServiceIntegrationEndpointExternalMysqlUserConfigArgs'] external_mysql_user_config: ExternalMysql 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['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs'] 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
|
|
62
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs'] external_postgresql: ExternalPostgresql 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['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs'] external_prometheus_user_config: ExternalPrometheus 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['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs'] external_schema_registry_user_config: ExternalSchemaRegistry 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['ServiceIntegrationEndpointJolokiaUserConfigArgs'] jolokia_user_config: Jolokia 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['ServiceIntegrationEndpointPrometheusUserConfigArgs'] 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['ServiceIntegrationEndpointRsyslogUserConfigArgs'] rsyslog_user_config: Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
64
68
|
"""
|
|
65
69
|
pulumi.set(__self__, "endpoint_name", endpoint_name)
|
|
66
70
|
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
67
71
|
pulumi.set(__self__, "project", project)
|
|
72
|
+
if autoscaler_user_config is not None:
|
|
73
|
+
pulumi.set(__self__, "autoscaler_user_config", autoscaler_user_config)
|
|
68
74
|
if datadog_user_config is not None:
|
|
69
75
|
pulumi.set(__self__, "datadog_user_config", datadog_user_config)
|
|
70
76
|
if external_aws_cloudwatch_logs_user_config is not None:
|
|
@@ -89,6 +95,8 @@ class ServiceIntegrationEndpointArgs:
|
|
|
89
95
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
90
96
|
if external_postgresql is not None:
|
|
91
97
|
pulumi.set(__self__, "external_postgresql", external_postgresql)
|
|
98
|
+
if external_prometheus_user_config is not None:
|
|
99
|
+
pulumi.set(__self__, "external_prometheus_user_config", external_prometheus_user_config)
|
|
92
100
|
if external_schema_registry_user_config is not None:
|
|
93
101
|
pulumi.set(__self__, "external_schema_registry_user_config", external_schema_registry_user_config)
|
|
94
102
|
if jolokia_user_config is not None:
|
|
@@ -102,7 +110,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
102
110
|
@pulumi.getter(name="endpointName")
|
|
103
111
|
def endpoint_name(self) -> pulumi.Input[str]:
|
|
104
112
|
"""
|
|
105
|
-
Name of the service integration endpoint
|
|
113
|
+
Name of the service integration endpoint.
|
|
106
114
|
"""
|
|
107
115
|
return pulumi.get(self, "endpoint_name")
|
|
108
116
|
|
|
@@ -114,7 +122,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
114
122
|
@pulumi.getter(name="endpointType")
|
|
115
123
|
def endpoint_type(self) -> pulumi.Input[str]:
|
|
116
124
|
"""
|
|
117
|
-
|
|
125
|
+
The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
118
126
|
"""
|
|
119
127
|
return pulumi.get(self, "endpoint_type")
|
|
120
128
|
|
|
@@ -126,7 +134,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
126
134
|
@pulumi.getter
|
|
127
135
|
def project(self) -> pulumi.Input[str]:
|
|
128
136
|
"""
|
|
129
|
-
Project the service integration endpoint
|
|
137
|
+
Project the service integration endpoint is in.
|
|
130
138
|
"""
|
|
131
139
|
return pulumi.get(self, "project")
|
|
132
140
|
|
|
@@ -134,11 +142,23 @@ class ServiceIntegrationEndpointArgs:
|
|
|
134
142
|
def project(self, value: pulumi.Input[str]):
|
|
135
143
|
pulumi.set(self, "project", value)
|
|
136
144
|
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter(name="autoscalerUserConfig")
|
|
147
|
+
def autoscaler_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']]:
|
|
148
|
+
"""
|
|
149
|
+
Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
150
|
+
"""
|
|
151
|
+
return pulumi.get(self, "autoscaler_user_config")
|
|
152
|
+
|
|
153
|
+
@autoscaler_user_config.setter
|
|
154
|
+
def autoscaler_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']]):
|
|
155
|
+
pulumi.set(self, "autoscaler_user_config", value)
|
|
156
|
+
|
|
137
157
|
@property
|
|
138
158
|
@pulumi.getter(name="datadogUserConfig")
|
|
139
159
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']]:
|
|
140
160
|
"""
|
|
141
|
-
Datadog user configurable settings
|
|
161
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
142
162
|
"""
|
|
143
163
|
return pulumi.get(self, "datadog_user_config")
|
|
144
164
|
|
|
@@ -150,7 +170,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
150
170
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
151
171
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
152
172
|
"""
|
|
153
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
173
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
154
174
|
"""
|
|
155
175
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
156
176
|
|
|
@@ -162,7 +182,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
162
182
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
163
183
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
164
184
|
"""
|
|
165
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
185
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
166
186
|
"""
|
|
167
187
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
168
188
|
|
|
@@ -174,7 +194,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
174
194
|
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
175
195
|
def external_aws_s3_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]:
|
|
176
196
|
"""
|
|
177
|
-
ExternalAwsS3 user configurable settings
|
|
197
|
+
ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
178
198
|
"""
|
|
179
199
|
return pulumi.get(self, "external_aws_s3_user_config")
|
|
180
200
|
|
|
@@ -186,7 +206,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
186
206
|
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
187
207
|
def external_clickhouse_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]:
|
|
188
208
|
"""
|
|
189
|
-
ExternalClickhouse user configurable settings
|
|
209
|
+
ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
190
210
|
"""
|
|
191
211
|
return pulumi.get(self, "external_clickhouse_user_config")
|
|
192
212
|
|
|
@@ -198,7 +218,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
198
218
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
199
219
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
200
220
|
"""
|
|
201
|
-
ExternalElasticsearchLogs user configurable settings
|
|
221
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
202
222
|
"""
|
|
203
223
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
204
224
|
|
|
@@ -210,7 +230,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
210
230
|
@pulumi.getter(name="externalGoogleCloudBigquery")
|
|
211
231
|
def external_google_cloud_bigquery(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']]:
|
|
212
232
|
"""
|
|
213
|
-
ExternalGoogleCloudBigquery user configurable settings
|
|
233
|
+
ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
214
234
|
"""
|
|
215
235
|
return pulumi.get(self, "external_google_cloud_bigquery")
|
|
216
236
|
|
|
@@ -222,7 +242,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
222
242
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfig")
|
|
223
243
|
def external_google_cloud_logging_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']]:
|
|
224
244
|
"""
|
|
225
|
-
ExternalGoogleCloudLogging user configurable settings
|
|
245
|
+
ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
226
246
|
"""
|
|
227
247
|
return pulumi.get(self, "external_google_cloud_logging_user_config")
|
|
228
248
|
|
|
@@ -234,7 +254,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
234
254
|
@pulumi.getter(name="externalKafkaUserConfig")
|
|
235
255
|
def external_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]:
|
|
236
256
|
"""
|
|
237
|
-
ExternalKafka user configurable settings
|
|
257
|
+
ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
238
258
|
"""
|
|
239
259
|
return pulumi.get(self, "external_kafka_user_config")
|
|
240
260
|
|
|
@@ -246,7 +266,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
246
266
|
@pulumi.getter(name="externalMysqlUserConfig")
|
|
247
267
|
def external_mysql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]:
|
|
248
268
|
"""
|
|
249
|
-
ExternalMysql user configurable settings
|
|
269
|
+
ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
250
270
|
"""
|
|
251
271
|
return pulumi.get(self, "external_mysql_user_config")
|
|
252
272
|
|
|
@@ -258,7 +278,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
258
278
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
259
279
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
260
280
|
"""
|
|
261
|
-
ExternalOpensearchLogs user configurable settings
|
|
281
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
262
282
|
"""
|
|
263
283
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
264
284
|
|
|
@@ -270,7 +290,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
270
290
|
@pulumi.getter(name="externalPostgresql")
|
|
271
291
|
def external_postgresql(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]:
|
|
272
292
|
"""
|
|
273
|
-
ExternalPostgresql user configurable settings
|
|
293
|
+
ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
274
294
|
"""
|
|
275
295
|
return pulumi.get(self, "external_postgresql")
|
|
276
296
|
|
|
@@ -278,11 +298,23 @@ class ServiceIntegrationEndpointArgs:
|
|
|
278
298
|
def external_postgresql(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]):
|
|
279
299
|
pulumi.set(self, "external_postgresql", value)
|
|
280
300
|
|
|
301
|
+
@property
|
|
302
|
+
@pulumi.getter(name="externalPrometheusUserConfig")
|
|
303
|
+
def external_prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']]:
|
|
304
|
+
"""
|
|
305
|
+
ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
306
|
+
"""
|
|
307
|
+
return pulumi.get(self, "external_prometheus_user_config")
|
|
308
|
+
|
|
309
|
+
@external_prometheus_user_config.setter
|
|
310
|
+
def external_prometheus_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']]):
|
|
311
|
+
pulumi.set(self, "external_prometheus_user_config", value)
|
|
312
|
+
|
|
281
313
|
@property
|
|
282
314
|
@pulumi.getter(name="externalSchemaRegistryUserConfig")
|
|
283
315
|
def external_schema_registry_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']]:
|
|
284
316
|
"""
|
|
285
|
-
ExternalSchemaRegistry user configurable settings
|
|
317
|
+
ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
286
318
|
"""
|
|
287
319
|
return pulumi.get(self, "external_schema_registry_user_config")
|
|
288
320
|
|
|
@@ -294,7 +326,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
294
326
|
@pulumi.getter(name="jolokiaUserConfig")
|
|
295
327
|
def jolokia_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']]:
|
|
296
328
|
"""
|
|
297
|
-
Jolokia user configurable settings
|
|
329
|
+
Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
298
330
|
"""
|
|
299
331
|
return pulumi.get(self, "jolokia_user_config")
|
|
300
332
|
|
|
@@ -306,7 +338,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
306
338
|
@pulumi.getter(name="prometheusUserConfig")
|
|
307
339
|
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs']]:
|
|
308
340
|
"""
|
|
309
|
-
Prometheus user configurable settings
|
|
341
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
310
342
|
"""
|
|
311
343
|
return pulumi.get(self, "prometheus_user_config")
|
|
312
344
|
|
|
@@ -318,7 +350,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
318
350
|
@pulumi.getter(name="rsyslogUserConfig")
|
|
319
351
|
def rsyslog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']]:
|
|
320
352
|
"""
|
|
321
|
-
Rsyslog user configurable settings
|
|
353
|
+
Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
322
354
|
"""
|
|
323
355
|
return pulumi.get(self, "rsyslog_user_config")
|
|
324
356
|
|
|
@@ -330,6 +362,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
330
362
|
@pulumi.input_type
|
|
331
363
|
class _ServiceIntegrationEndpointState:
|
|
332
364
|
def __init__(__self__, *,
|
|
365
|
+
autoscaler_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']] = None,
|
|
333
366
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']] = None,
|
|
334
367
|
endpoint_config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
335
368
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -345,6 +378,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
345
378
|
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
346
379
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
347
380
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
381
|
+
external_prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']] = None,
|
|
348
382
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
349
383
|
jolokia_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']] = None,
|
|
350
384
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -352,27 +386,31 @@ class _ServiceIntegrationEndpointState:
|
|
|
352
386
|
rsyslog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']] = None):
|
|
353
387
|
"""
|
|
354
388
|
Input properties used for looking up and filtering ServiceIntegrationEndpoint resources.
|
|
355
|
-
:param pulumi.Input['
|
|
356
|
-
:param pulumi.Input[
|
|
357
|
-
:param pulumi.Input[str]
|
|
358
|
-
:param pulumi.Input[str]
|
|
359
|
-
:param pulumi.Input[
|
|
360
|
-
:param pulumi.Input['
|
|
361
|
-
:param pulumi.Input['
|
|
362
|
-
:param pulumi.Input['
|
|
363
|
-
:param pulumi.Input['
|
|
364
|
-
:param pulumi.Input['
|
|
365
|
-
:param pulumi.Input['
|
|
366
|
-
:param pulumi.Input['
|
|
367
|
-
:param pulumi.Input['
|
|
368
|
-
:param pulumi.Input['
|
|
369
|
-
:param pulumi.Input['
|
|
370
|
-
:param pulumi.Input['
|
|
371
|
-
:param pulumi.Input['
|
|
372
|
-
:param pulumi.Input[
|
|
373
|
-
:param pulumi.Input['
|
|
374
|
-
:param pulumi.Input[
|
|
375
|
-
|
|
389
|
+
:param pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs'] autoscaler_user_config: Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
390
|
+
:param pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs'] 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
|
|
391
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] endpoint_config: Backend configuration for the endpoint.
|
|
392
|
+
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint.
|
|
393
|
+
:param pulumi.Input[str] endpoint_type: The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
394
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] 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
|
|
395
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs'] 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
|
|
396
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs'] external_aws_s3_user_config: ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
397
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs'] external_clickhouse_user_config: ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
398
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] 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
|
|
399
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs'] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
400
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs'] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
401
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs'] external_kafka_user_config: ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
402
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs'] external_mysql_user_config: ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
403
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs'] 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
|
|
404
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs'] external_postgresql: ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
405
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs'] external_prometheus_user_config: ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
406
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs'] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
407
|
+
:param pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs'] jolokia_user_config: Jolokia 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[str] project: Project the service integration endpoint is in.
|
|
409
|
+
:param pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs'] 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
|
|
410
|
+
:param pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs'] rsyslog_user_config: Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
411
|
+
"""
|
|
412
|
+
if autoscaler_user_config is not None:
|
|
413
|
+
pulumi.set(__self__, "autoscaler_user_config", autoscaler_user_config)
|
|
376
414
|
if datadog_user_config is not None:
|
|
377
415
|
pulumi.set(__self__, "datadog_user_config", datadog_user_config)
|
|
378
416
|
if endpoint_config is not None:
|
|
@@ -403,6 +441,8 @@ class _ServiceIntegrationEndpointState:
|
|
|
403
441
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
404
442
|
if external_postgresql is not None:
|
|
405
443
|
pulumi.set(__self__, "external_postgresql", external_postgresql)
|
|
444
|
+
if external_prometheus_user_config is not None:
|
|
445
|
+
pulumi.set(__self__, "external_prometheus_user_config", external_prometheus_user_config)
|
|
406
446
|
if external_schema_registry_user_config is not None:
|
|
407
447
|
pulumi.set(__self__, "external_schema_registry_user_config", external_schema_registry_user_config)
|
|
408
448
|
if jolokia_user_config is not None:
|
|
@@ -414,11 +454,23 @@ class _ServiceIntegrationEndpointState:
|
|
|
414
454
|
if rsyslog_user_config is not None:
|
|
415
455
|
pulumi.set(__self__, "rsyslog_user_config", rsyslog_user_config)
|
|
416
456
|
|
|
457
|
+
@property
|
|
458
|
+
@pulumi.getter(name="autoscalerUserConfig")
|
|
459
|
+
def autoscaler_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']]:
|
|
460
|
+
"""
|
|
461
|
+
Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
462
|
+
"""
|
|
463
|
+
return pulumi.get(self, "autoscaler_user_config")
|
|
464
|
+
|
|
465
|
+
@autoscaler_user_config.setter
|
|
466
|
+
def autoscaler_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']]):
|
|
467
|
+
pulumi.set(self, "autoscaler_user_config", value)
|
|
468
|
+
|
|
417
469
|
@property
|
|
418
470
|
@pulumi.getter(name="datadogUserConfig")
|
|
419
471
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']]:
|
|
420
472
|
"""
|
|
421
|
-
Datadog user configurable settings
|
|
473
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
422
474
|
"""
|
|
423
475
|
return pulumi.get(self, "datadog_user_config")
|
|
424
476
|
|
|
@@ -430,7 +482,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
430
482
|
@pulumi.getter(name="endpointConfig")
|
|
431
483
|
def endpoint_config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
432
484
|
"""
|
|
433
|
-
|
|
485
|
+
Backend configuration for the endpoint.
|
|
434
486
|
"""
|
|
435
487
|
return pulumi.get(self, "endpoint_config")
|
|
436
488
|
|
|
@@ -442,7 +494,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
442
494
|
@pulumi.getter(name="endpointName")
|
|
443
495
|
def endpoint_name(self) -> Optional[pulumi.Input[str]]:
|
|
444
496
|
"""
|
|
445
|
-
Name of the service integration endpoint
|
|
497
|
+
Name of the service integration endpoint.
|
|
446
498
|
"""
|
|
447
499
|
return pulumi.get(self, "endpoint_name")
|
|
448
500
|
|
|
@@ -454,7 +506,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
454
506
|
@pulumi.getter(name="endpointType")
|
|
455
507
|
def endpoint_type(self) -> Optional[pulumi.Input[str]]:
|
|
456
508
|
"""
|
|
457
|
-
|
|
509
|
+
The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
458
510
|
"""
|
|
459
511
|
return pulumi.get(self, "endpoint_type")
|
|
460
512
|
|
|
@@ -466,7 +518,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
466
518
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
467
519
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
468
520
|
"""
|
|
469
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
521
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
470
522
|
"""
|
|
471
523
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
472
524
|
|
|
@@ -478,7 +530,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
478
530
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
479
531
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
480
532
|
"""
|
|
481
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
533
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
482
534
|
"""
|
|
483
535
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
484
536
|
|
|
@@ -490,7 +542,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
490
542
|
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
491
543
|
def external_aws_s3_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]:
|
|
492
544
|
"""
|
|
493
|
-
ExternalAwsS3 user configurable settings
|
|
545
|
+
ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
494
546
|
"""
|
|
495
547
|
return pulumi.get(self, "external_aws_s3_user_config")
|
|
496
548
|
|
|
@@ -502,7 +554,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
502
554
|
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
503
555
|
def external_clickhouse_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]:
|
|
504
556
|
"""
|
|
505
|
-
ExternalClickhouse user configurable settings
|
|
557
|
+
ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
506
558
|
"""
|
|
507
559
|
return pulumi.get(self, "external_clickhouse_user_config")
|
|
508
560
|
|
|
@@ -514,7 +566,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
514
566
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
515
567
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
516
568
|
"""
|
|
517
|
-
ExternalElasticsearchLogs user configurable settings
|
|
569
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
518
570
|
"""
|
|
519
571
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
520
572
|
|
|
@@ -526,7 +578,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
526
578
|
@pulumi.getter(name="externalGoogleCloudBigquery")
|
|
527
579
|
def external_google_cloud_bigquery(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']]:
|
|
528
580
|
"""
|
|
529
|
-
ExternalGoogleCloudBigquery user configurable settings
|
|
581
|
+
ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
530
582
|
"""
|
|
531
583
|
return pulumi.get(self, "external_google_cloud_bigquery")
|
|
532
584
|
|
|
@@ -538,7 +590,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
538
590
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfig")
|
|
539
591
|
def external_google_cloud_logging_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']]:
|
|
540
592
|
"""
|
|
541
|
-
ExternalGoogleCloudLogging user configurable settings
|
|
593
|
+
ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
542
594
|
"""
|
|
543
595
|
return pulumi.get(self, "external_google_cloud_logging_user_config")
|
|
544
596
|
|
|
@@ -550,7 +602,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
550
602
|
@pulumi.getter(name="externalKafkaUserConfig")
|
|
551
603
|
def external_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]:
|
|
552
604
|
"""
|
|
553
|
-
ExternalKafka user configurable settings
|
|
605
|
+
ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
554
606
|
"""
|
|
555
607
|
return pulumi.get(self, "external_kafka_user_config")
|
|
556
608
|
|
|
@@ -562,7 +614,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
562
614
|
@pulumi.getter(name="externalMysqlUserConfig")
|
|
563
615
|
def external_mysql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]:
|
|
564
616
|
"""
|
|
565
|
-
ExternalMysql user configurable settings
|
|
617
|
+
ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
566
618
|
"""
|
|
567
619
|
return pulumi.get(self, "external_mysql_user_config")
|
|
568
620
|
|
|
@@ -574,7 +626,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
574
626
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
575
627
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
576
628
|
"""
|
|
577
|
-
ExternalOpensearchLogs user configurable settings
|
|
629
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
578
630
|
"""
|
|
579
631
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
580
632
|
|
|
@@ -586,7 +638,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
586
638
|
@pulumi.getter(name="externalPostgresql")
|
|
587
639
|
def external_postgresql(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]:
|
|
588
640
|
"""
|
|
589
|
-
ExternalPostgresql user configurable settings
|
|
641
|
+
ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
590
642
|
"""
|
|
591
643
|
return pulumi.get(self, "external_postgresql")
|
|
592
644
|
|
|
@@ -594,11 +646,23 @@ class _ServiceIntegrationEndpointState:
|
|
|
594
646
|
def external_postgresql(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]):
|
|
595
647
|
pulumi.set(self, "external_postgresql", value)
|
|
596
648
|
|
|
649
|
+
@property
|
|
650
|
+
@pulumi.getter(name="externalPrometheusUserConfig")
|
|
651
|
+
def external_prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']]:
|
|
652
|
+
"""
|
|
653
|
+
ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
654
|
+
"""
|
|
655
|
+
return pulumi.get(self, "external_prometheus_user_config")
|
|
656
|
+
|
|
657
|
+
@external_prometheus_user_config.setter
|
|
658
|
+
def external_prometheus_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']]):
|
|
659
|
+
pulumi.set(self, "external_prometheus_user_config", value)
|
|
660
|
+
|
|
597
661
|
@property
|
|
598
662
|
@pulumi.getter(name="externalSchemaRegistryUserConfig")
|
|
599
663
|
def external_schema_registry_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']]:
|
|
600
664
|
"""
|
|
601
|
-
ExternalSchemaRegistry user configurable settings
|
|
665
|
+
ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
602
666
|
"""
|
|
603
667
|
return pulumi.get(self, "external_schema_registry_user_config")
|
|
604
668
|
|
|
@@ -610,7 +674,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
610
674
|
@pulumi.getter(name="jolokiaUserConfig")
|
|
611
675
|
def jolokia_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']]:
|
|
612
676
|
"""
|
|
613
|
-
Jolokia user configurable settings
|
|
677
|
+
Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
614
678
|
"""
|
|
615
679
|
return pulumi.get(self, "jolokia_user_config")
|
|
616
680
|
|
|
@@ -622,7 +686,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
622
686
|
@pulumi.getter
|
|
623
687
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
624
688
|
"""
|
|
625
|
-
Project the service integration endpoint
|
|
689
|
+
Project the service integration endpoint is in.
|
|
626
690
|
"""
|
|
627
691
|
return pulumi.get(self, "project")
|
|
628
692
|
|
|
@@ -634,7 +698,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
634
698
|
@pulumi.getter(name="prometheusUserConfig")
|
|
635
699
|
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs']]:
|
|
636
700
|
"""
|
|
637
|
-
Prometheus user configurable settings
|
|
701
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
638
702
|
"""
|
|
639
703
|
return pulumi.get(self, "prometheus_user_config")
|
|
640
704
|
|
|
@@ -646,7 +710,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
646
710
|
@pulumi.getter(name="rsyslogUserConfig")
|
|
647
711
|
def rsyslog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']]:
|
|
648
712
|
"""
|
|
649
|
-
Rsyslog user configurable settings
|
|
713
|
+
Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
650
714
|
"""
|
|
651
715
|
return pulumi.get(self, "rsyslog_user_config")
|
|
652
716
|
|
|
@@ -660,6 +724,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
660
724
|
def __init__(__self__,
|
|
661
725
|
resource_name: str,
|
|
662
726
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
727
|
+
autoscaler_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']]] = None,
|
|
663
728
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']]] = None,
|
|
664
729
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
665
730
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
@@ -674,6 +739,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
674
739
|
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
675
740
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
676
741
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
742
|
+
external_prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']]] = None,
|
|
677
743
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
678
744
|
jolokia_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']]] = None,
|
|
679
745
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -681,29 +747,65 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
681
747
|
rsyslog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointRsyslogUserConfigArgs', 'ServiceIntegrationEndpointRsyslogUserConfigArgsDict']]] = None,
|
|
682
748
|
__props__=None):
|
|
683
749
|
"""
|
|
684
|
-
|
|
750
|
+
Creates and manages an integration endpoint.
|
|
751
|
+
|
|
752
|
+
Integration endpoints let you send data like metrics and logs from Aiven services to external systems. The `autoscaler` endpoint lets you automatically scale the disk space on your services.
|
|
753
|
+
|
|
754
|
+
After creating an endpoint, use the service integration resource to connect it to a service.
|
|
755
|
+
|
|
756
|
+
## Example Usage
|
|
757
|
+
|
|
758
|
+
```python
|
|
759
|
+
import pulumi
|
|
760
|
+
import pulumi_aiven as aiven
|
|
761
|
+
|
|
762
|
+
# Datadog endpoint
|
|
763
|
+
example_endpoint = aiven.ServiceIntegrationEndpoint("example_endpoint",
|
|
764
|
+
project=example_project["project"],
|
|
765
|
+
endpoint_name="Datadog endpoint",
|
|
766
|
+
endpoint_type="datadog")
|
|
767
|
+
# Disk autoscaler endpoint
|
|
768
|
+
autoscaler_endpoint = aiven.ServiceIntegrationEndpoint("autoscaler_endpoint",
|
|
769
|
+
project=example_project["project"],
|
|
770
|
+
endpoint_name="disk-autoscaler-200GiB",
|
|
771
|
+
endpoint_type="autoscaler",
|
|
772
|
+
autoscaler_user_config={
|
|
773
|
+
"autoscalings": [{
|
|
774
|
+
"cap_gb": 200,
|
|
775
|
+
"type": "autoscale_disk",
|
|
776
|
+
}],
|
|
777
|
+
})
|
|
778
|
+
```
|
|
779
|
+
|
|
780
|
+
## Import
|
|
781
|
+
|
|
782
|
+
```sh
|
|
783
|
+
$ pulumi import aiven:index/serviceIntegrationEndpoint:ServiceIntegrationEndpoint example_endpoint PROJECT/ID
|
|
784
|
+
```
|
|
685
785
|
|
|
686
786
|
:param str resource_name: The name of the resource.
|
|
687
787
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
688
|
-
:param pulumi.Input[Union['
|
|
689
|
-
:param pulumi.Input[
|
|
690
|
-
:param pulumi.Input[str]
|
|
691
|
-
:param pulumi.Input[
|
|
692
|
-
:param pulumi.Input[Union['
|
|
693
|
-
:param pulumi.Input[Union['
|
|
694
|
-
:param pulumi.Input[Union['
|
|
695
|
-
:param pulumi.Input[Union['
|
|
696
|
-
:param pulumi.Input[Union['
|
|
697
|
-
:param pulumi.Input[Union['
|
|
698
|
-
:param pulumi.Input[Union['
|
|
699
|
-
:param pulumi.Input[Union['
|
|
700
|
-
:param pulumi.Input[Union['
|
|
701
|
-
:param pulumi.Input[Union['
|
|
702
|
-
:param pulumi.Input[Union['
|
|
703
|
-
:param pulumi.Input[Union['
|
|
704
|
-
:param pulumi.Input[
|
|
705
|
-
:param pulumi.Input[Union['
|
|
706
|
-
:param pulumi.Input[
|
|
788
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']] autoscaler_user_config: Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
789
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']] 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
|
|
790
|
+
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint.
|
|
791
|
+
:param pulumi.Input[str] endpoint_type: The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
792
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']] 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
|
|
793
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']] 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
|
|
794
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']] external_aws_s3_user_config: ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
795
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']] external_clickhouse_user_config: ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
796
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']] 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
|
|
797
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
798
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
799
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']] external_kafka_user_config: ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
800
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']] external_mysql_user_config: ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
801
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']] 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
|
|
802
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']] external_postgresql: ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
803
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']] external_prometheus_user_config: ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
804
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
805
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']] jolokia_user_config: Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
806
|
+
:param pulumi.Input[str] project: Project the service integration endpoint is in.
|
|
807
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointPrometheusUserConfigArgs', 'ServiceIntegrationEndpointPrometheusUserConfigArgsDict']] 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
|
|
808
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointRsyslogUserConfigArgs', 'ServiceIntegrationEndpointRsyslogUserConfigArgsDict']] rsyslog_user_config: Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
707
809
|
"""
|
|
708
810
|
...
|
|
709
811
|
@overload
|
|
@@ -712,7 +814,41 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
712
814
|
args: ServiceIntegrationEndpointArgs,
|
|
713
815
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
714
816
|
"""
|
|
715
|
-
|
|
817
|
+
Creates and manages an integration endpoint.
|
|
818
|
+
|
|
819
|
+
Integration endpoints let you send data like metrics and logs from Aiven services to external systems. The `autoscaler` endpoint lets you automatically scale the disk space on your services.
|
|
820
|
+
|
|
821
|
+
After creating an endpoint, use the service integration resource to connect it to a service.
|
|
822
|
+
|
|
823
|
+
## Example Usage
|
|
824
|
+
|
|
825
|
+
```python
|
|
826
|
+
import pulumi
|
|
827
|
+
import pulumi_aiven as aiven
|
|
828
|
+
|
|
829
|
+
# Datadog endpoint
|
|
830
|
+
example_endpoint = aiven.ServiceIntegrationEndpoint("example_endpoint",
|
|
831
|
+
project=example_project["project"],
|
|
832
|
+
endpoint_name="Datadog endpoint",
|
|
833
|
+
endpoint_type="datadog")
|
|
834
|
+
# Disk autoscaler endpoint
|
|
835
|
+
autoscaler_endpoint = aiven.ServiceIntegrationEndpoint("autoscaler_endpoint",
|
|
836
|
+
project=example_project["project"],
|
|
837
|
+
endpoint_name="disk-autoscaler-200GiB",
|
|
838
|
+
endpoint_type="autoscaler",
|
|
839
|
+
autoscaler_user_config={
|
|
840
|
+
"autoscalings": [{
|
|
841
|
+
"cap_gb": 200,
|
|
842
|
+
"type": "autoscale_disk",
|
|
843
|
+
}],
|
|
844
|
+
})
|
|
845
|
+
```
|
|
846
|
+
|
|
847
|
+
## Import
|
|
848
|
+
|
|
849
|
+
```sh
|
|
850
|
+
$ pulumi import aiven:index/serviceIntegrationEndpoint:ServiceIntegrationEndpoint example_endpoint PROJECT/ID
|
|
851
|
+
```
|
|
716
852
|
|
|
717
853
|
:param str resource_name: The name of the resource.
|
|
718
854
|
:param ServiceIntegrationEndpointArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -729,6 +865,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
729
865
|
def _internal_init(__self__,
|
|
730
866
|
resource_name: str,
|
|
731
867
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
868
|
+
autoscaler_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']]] = None,
|
|
732
869
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']]] = None,
|
|
733
870
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
734
871
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
@@ -743,6 +880,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
743
880
|
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
744
881
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
745
882
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
883
|
+
external_prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']]] = None,
|
|
746
884
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
747
885
|
jolokia_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']]] = None,
|
|
748
886
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -757,6 +895,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
757
895
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
758
896
|
__props__ = ServiceIntegrationEndpointArgs.__new__(ServiceIntegrationEndpointArgs)
|
|
759
897
|
|
|
898
|
+
__props__.__dict__["autoscaler_user_config"] = autoscaler_user_config
|
|
760
899
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
761
900
|
if endpoint_name is None and not opts.urn:
|
|
762
901
|
raise TypeError("Missing required property 'endpoint_name'")
|
|
@@ -775,6 +914,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
775
914
|
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
776
915
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
777
916
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
917
|
+
__props__.__dict__["external_prometheus_user_config"] = external_prometheus_user_config
|
|
778
918
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
779
919
|
__props__.__dict__["jolokia_user_config"] = jolokia_user_config
|
|
780
920
|
if project is None and not opts.urn:
|
|
@@ -793,6 +933,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
793
933
|
def get(resource_name: str,
|
|
794
934
|
id: pulumi.Input[str],
|
|
795
935
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
936
|
+
autoscaler_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']]] = None,
|
|
796
937
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']]] = None,
|
|
797
938
|
endpoint_config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
798
939
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -808,6 +949,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
808
949
|
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
809
950
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
810
951
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
952
|
+
external_prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']]] = None,
|
|
811
953
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
812
954
|
jolokia_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']]] = None,
|
|
813
955
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -820,31 +962,34 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
820
962
|
:param str resource_name: The unique name of the resulting resource.
|
|
821
963
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
822
964
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
823
|
-
:param pulumi.Input[Union['
|
|
824
|
-
:param pulumi.Input[
|
|
825
|
-
:param pulumi.Input[str]
|
|
826
|
-
:param pulumi.Input[str]
|
|
827
|
-
:param pulumi.Input[
|
|
828
|
-
:param pulumi.Input[Union['
|
|
829
|
-
:param pulumi.Input[Union['
|
|
830
|
-
:param pulumi.Input[Union['
|
|
831
|
-
:param pulumi.Input[Union['
|
|
832
|
-
:param pulumi.Input[Union['
|
|
833
|
-
:param pulumi.Input[Union['
|
|
834
|
-
:param pulumi.Input[Union['
|
|
835
|
-
:param pulumi.Input[Union['
|
|
836
|
-
:param pulumi.Input[Union['
|
|
837
|
-
:param pulumi.Input[Union['
|
|
838
|
-
:param pulumi.Input[Union['
|
|
839
|
-
:param pulumi.Input[Union['
|
|
840
|
-
:param pulumi.Input[
|
|
841
|
-
:param pulumi.Input[Union['
|
|
842
|
-
:param pulumi.Input[
|
|
965
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']] autoscaler_user_config: Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
966
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']] 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
|
|
967
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] endpoint_config: Backend configuration for the endpoint.
|
|
968
|
+
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint.
|
|
969
|
+
:param pulumi.Input[str] endpoint_type: The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
970
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']] 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
|
|
971
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']] 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
|
|
972
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']] external_aws_s3_user_config: ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
973
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']] external_clickhouse_user_config: ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
974
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']] 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
|
|
975
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
976
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
977
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']] external_kafka_user_config: ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
978
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']] external_mysql_user_config: ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
979
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']] 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
|
|
980
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']] external_postgresql: ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
981
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']] external_prometheus_user_config: ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
982
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
983
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']] jolokia_user_config: Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
984
|
+
:param pulumi.Input[str] project: Project the service integration endpoint is in.
|
|
985
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointPrometheusUserConfigArgs', 'ServiceIntegrationEndpointPrometheusUserConfigArgsDict']] 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
|
|
986
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointRsyslogUserConfigArgs', 'ServiceIntegrationEndpointRsyslogUserConfigArgsDict']] rsyslog_user_config: Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
843
987
|
"""
|
|
844
988
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
845
989
|
|
|
846
990
|
__props__ = _ServiceIntegrationEndpointState.__new__(_ServiceIntegrationEndpointState)
|
|
847
991
|
|
|
992
|
+
__props__.__dict__["autoscaler_user_config"] = autoscaler_user_config
|
|
848
993
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
849
994
|
__props__.__dict__["endpoint_config"] = endpoint_config
|
|
850
995
|
__props__.__dict__["endpoint_name"] = endpoint_name
|
|
@@ -860,6 +1005,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
860
1005
|
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
861
1006
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
862
1007
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
1008
|
+
__props__.__dict__["external_prometheus_user_config"] = external_prometheus_user_config
|
|
863
1009
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
864
1010
|
__props__.__dict__["jolokia_user_config"] = jolokia_user_config
|
|
865
1011
|
__props__.__dict__["project"] = project
|
|
@@ -867,11 +1013,19 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
867
1013
|
__props__.__dict__["rsyslog_user_config"] = rsyslog_user_config
|
|
868
1014
|
return ServiceIntegrationEndpoint(resource_name, opts=opts, __props__=__props__)
|
|
869
1015
|
|
|
1016
|
+
@property
|
|
1017
|
+
@pulumi.getter(name="autoscalerUserConfig")
|
|
1018
|
+
def autoscaler_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointAutoscalerUserConfig']]:
|
|
1019
|
+
"""
|
|
1020
|
+
Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1021
|
+
"""
|
|
1022
|
+
return pulumi.get(self, "autoscaler_user_config")
|
|
1023
|
+
|
|
870
1024
|
@property
|
|
871
1025
|
@pulumi.getter(name="datadogUserConfig")
|
|
872
1026
|
def datadog_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointDatadogUserConfig']]:
|
|
873
1027
|
"""
|
|
874
|
-
Datadog user configurable settings
|
|
1028
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
875
1029
|
"""
|
|
876
1030
|
return pulumi.get(self, "datadog_user_config")
|
|
877
1031
|
|
|
@@ -879,7 +1033,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
879
1033
|
@pulumi.getter(name="endpointConfig")
|
|
880
1034
|
def endpoint_config(self) -> pulumi.Output[Mapping[str, str]]:
|
|
881
1035
|
"""
|
|
882
|
-
|
|
1036
|
+
Backend configuration for the endpoint.
|
|
883
1037
|
"""
|
|
884
1038
|
return pulumi.get(self, "endpoint_config")
|
|
885
1039
|
|
|
@@ -887,7 +1041,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
887
1041
|
@pulumi.getter(name="endpointName")
|
|
888
1042
|
def endpoint_name(self) -> pulumi.Output[str]:
|
|
889
1043
|
"""
|
|
890
|
-
Name of the service integration endpoint
|
|
1044
|
+
Name of the service integration endpoint.
|
|
891
1045
|
"""
|
|
892
1046
|
return pulumi.get(self, "endpoint_name")
|
|
893
1047
|
|
|
@@ -895,7 +1049,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
895
1049
|
@pulumi.getter(name="endpointType")
|
|
896
1050
|
def endpoint_type(self) -> pulumi.Output[str]:
|
|
897
1051
|
"""
|
|
898
|
-
|
|
1052
|
+
The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
899
1053
|
"""
|
|
900
1054
|
return pulumi.get(self, "endpoint_type")
|
|
901
1055
|
|
|
@@ -903,7 +1057,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
903
1057
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
904
1058
|
def external_aws_cloudwatch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfig']]:
|
|
905
1059
|
"""
|
|
906
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
1060
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
907
1061
|
"""
|
|
908
1062
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
909
1063
|
|
|
@@ -911,7 +1065,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
911
1065
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
912
1066
|
def external_aws_cloudwatch_metrics_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfig']]:
|
|
913
1067
|
"""
|
|
914
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
1068
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
915
1069
|
"""
|
|
916
1070
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
917
1071
|
|
|
@@ -919,7 +1073,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
919
1073
|
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
920
1074
|
def external_aws_s3_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsS3UserConfig']]:
|
|
921
1075
|
"""
|
|
922
|
-
ExternalAwsS3 user configurable settings
|
|
1076
|
+
ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
923
1077
|
"""
|
|
924
1078
|
return pulumi.get(self, "external_aws_s3_user_config")
|
|
925
1079
|
|
|
@@ -927,7 +1081,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
927
1081
|
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
928
1082
|
def external_clickhouse_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalClickhouseUserConfig']]:
|
|
929
1083
|
"""
|
|
930
|
-
ExternalClickhouse user configurable settings
|
|
1084
|
+
ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
931
1085
|
"""
|
|
932
1086
|
return pulumi.get(self, "external_clickhouse_user_config")
|
|
933
1087
|
|
|
@@ -935,7 +1089,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
935
1089
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
936
1090
|
def external_elasticsearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig']]:
|
|
937
1091
|
"""
|
|
938
|
-
ExternalElasticsearchLogs user configurable settings
|
|
1092
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
939
1093
|
"""
|
|
940
1094
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
941
1095
|
|
|
@@ -943,7 +1097,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
943
1097
|
@pulumi.getter(name="externalGoogleCloudBigquery")
|
|
944
1098
|
def external_google_cloud_bigquery(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalGoogleCloudBigquery']]:
|
|
945
1099
|
"""
|
|
946
|
-
ExternalGoogleCloudBigquery user configurable settings
|
|
1100
|
+
ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
947
1101
|
"""
|
|
948
1102
|
return pulumi.get(self, "external_google_cloud_bigquery")
|
|
949
1103
|
|
|
@@ -951,7 +1105,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
951
1105
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfig")
|
|
952
1106
|
def external_google_cloud_logging_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfig']]:
|
|
953
1107
|
"""
|
|
954
|
-
ExternalGoogleCloudLogging user configurable settings
|
|
1108
|
+
ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
955
1109
|
"""
|
|
956
1110
|
return pulumi.get(self, "external_google_cloud_logging_user_config")
|
|
957
1111
|
|
|
@@ -959,7 +1113,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
959
1113
|
@pulumi.getter(name="externalKafkaUserConfig")
|
|
960
1114
|
def external_kafka_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalKafkaUserConfig']]:
|
|
961
1115
|
"""
|
|
962
|
-
ExternalKafka user configurable settings
|
|
1116
|
+
ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
963
1117
|
"""
|
|
964
1118
|
return pulumi.get(self, "external_kafka_user_config")
|
|
965
1119
|
|
|
@@ -967,7 +1121,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
967
1121
|
@pulumi.getter(name="externalMysqlUserConfig")
|
|
968
1122
|
def external_mysql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalMysqlUserConfig']]:
|
|
969
1123
|
"""
|
|
970
|
-
ExternalMysql user configurable settings
|
|
1124
|
+
ExternalMysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
971
1125
|
"""
|
|
972
1126
|
return pulumi.get(self, "external_mysql_user_config")
|
|
973
1127
|
|
|
@@ -975,7 +1129,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
975
1129
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
976
1130
|
def external_opensearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalOpensearchLogsUserConfig']]:
|
|
977
1131
|
"""
|
|
978
|
-
ExternalOpensearchLogs user configurable settings
|
|
1132
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
979
1133
|
"""
|
|
980
1134
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
981
1135
|
|
|
@@ -983,15 +1137,23 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
983
1137
|
@pulumi.getter(name="externalPostgresql")
|
|
984
1138
|
def external_postgresql(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalPostgresql']]:
|
|
985
1139
|
"""
|
|
986
|
-
ExternalPostgresql user configurable settings
|
|
1140
|
+
ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
987
1141
|
"""
|
|
988
1142
|
return pulumi.get(self, "external_postgresql")
|
|
989
1143
|
|
|
1144
|
+
@property
|
|
1145
|
+
@pulumi.getter(name="externalPrometheusUserConfig")
|
|
1146
|
+
def external_prometheus_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalPrometheusUserConfig']]:
|
|
1147
|
+
"""
|
|
1148
|
+
ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1149
|
+
"""
|
|
1150
|
+
return pulumi.get(self, "external_prometheus_user_config")
|
|
1151
|
+
|
|
990
1152
|
@property
|
|
991
1153
|
@pulumi.getter(name="externalSchemaRegistryUserConfig")
|
|
992
1154
|
def external_schema_registry_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalSchemaRegistryUserConfig']]:
|
|
993
1155
|
"""
|
|
994
|
-
ExternalSchemaRegistry user configurable settings
|
|
1156
|
+
ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
995
1157
|
"""
|
|
996
1158
|
return pulumi.get(self, "external_schema_registry_user_config")
|
|
997
1159
|
|
|
@@ -999,7 +1161,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
999
1161
|
@pulumi.getter(name="jolokiaUserConfig")
|
|
1000
1162
|
def jolokia_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointJolokiaUserConfig']]:
|
|
1001
1163
|
"""
|
|
1002
|
-
Jolokia user configurable settings
|
|
1164
|
+
Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1003
1165
|
"""
|
|
1004
1166
|
return pulumi.get(self, "jolokia_user_config")
|
|
1005
1167
|
|
|
@@ -1007,7 +1169,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
1007
1169
|
@pulumi.getter
|
|
1008
1170
|
def project(self) -> pulumi.Output[str]:
|
|
1009
1171
|
"""
|
|
1010
|
-
Project the service integration endpoint
|
|
1172
|
+
Project the service integration endpoint is in.
|
|
1011
1173
|
"""
|
|
1012
1174
|
return pulumi.get(self, "project")
|
|
1013
1175
|
|
|
@@ -1015,7 +1177,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
1015
1177
|
@pulumi.getter(name="prometheusUserConfig")
|
|
1016
1178
|
def prometheus_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointPrometheusUserConfig']]:
|
|
1017
1179
|
"""
|
|
1018
|
-
Prometheus user configurable settings
|
|
1180
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1019
1181
|
"""
|
|
1020
1182
|
return pulumi.get(self, "prometheus_user_config")
|
|
1021
1183
|
|
|
@@ -1023,7 +1185,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
1023
1185
|
@pulumi.getter(name="rsyslogUserConfig")
|
|
1024
1186
|
def rsyslog_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointRsyslogUserConfig']]:
|
|
1025
1187
|
"""
|
|
1026
|
-
Rsyslog user configurable settings
|
|
1188
|
+
Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1027
1189
|
"""
|
|
1028
1190
|
return pulumi.get(self, "rsyslog_user_config")
|
|
1029
1191
|
|