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