pulumi-aiven 6.13.0a1710156545__py3-none-any.whl → 6.31.0a1736831339__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +127 -0
- pulumi_aiven/_inputs.py +32615 -13711
- pulumi_aiven/_utilities.py +41 -5
- pulumi_aiven/account.py +32 -45
- pulumi_aiven/account_authentication.py +24 -9
- pulumi_aiven/account_team.py +35 -14
- pulumi_aiven/account_team_member.py +48 -39
- pulumi_aiven/account_team_project.py +40 -27
- pulumi_aiven/alloydbomni.py +1335 -0
- pulumi_aiven/alloydbomni_database.py +347 -0
- pulumi_aiven/alloydbomni_user.py +433 -0
- pulumi_aiven/aws_privatelink.py +44 -43
- pulumi_aiven/aws_vpc_peering_connection.py +72 -61
- pulumi_aiven/azure_privatelink.py +54 -53
- pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- pulumi_aiven/azure_vpc_peering_connection.py +86 -77
- pulumi_aiven/billing_group.py +33 -34
- pulumi_aiven/cassandra.py +145 -126
- pulumi_aiven/cassandra_user.py +59 -58
- pulumi_aiven/clickhouse.py +133 -114
- pulumi_aiven/clickhouse_database.py +58 -62
- pulumi_aiven/clickhouse_grant.py +135 -134
- pulumi_aiven/clickhouse_role.py +36 -49
- pulumi_aiven/clickhouse_user.py +50 -49
- pulumi_aiven/config/__init__.pyi +5 -0
- pulumi_aiven/config/vars.py +5 -0
- pulumi_aiven/connection_pool.py +67 -66
- pulumi_aiven/dragonfly.py +1256 -0
- pulumi_aiven/flink.py +104 -104
- pulumi_aiven/flink_application.py +58 -55
- pulumi_aiven/flink_application_deployment.py +178 -73
- pulumi_aiven/flink_application_version.py +179 -96
- pulumi_aiven/gcp_privatelink.py +69 -42
- pulumi_aiven/gcp_privatelink_connection_approval.py +78 -49
- pulumi_aiven/gcp_vpc_peering_connection.py +49 -48
- pulumi_aiven/get_account.py +20 -9
- pulumi_aiven/get_account_authentication.py +31 -5
- pulumi_aiven/get_account_team.py +18 -5
- pulumi_aiven/get_account_team_member.py +29 -14
- pulumi_aiven/get_account_team_project.py +19 -6
- pulumi_aiven/get_alloydbomni.py +499 -0
- pulumi_aiven/get_alloydbomni_database.py +168 -0
- pulumi_aiven/get_alloydbomni_user.py +210 -0
- pulumi_aiven/get_aws_privatelink.py +33 -24
- pulumi_aiven/get_aws_vpc_peering_connection.py +56 -33
- pulumi_aiven/get_azure_privatelink.py +37 -26
- pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- pulumi_aiven/get_billing_group.py +31 -8
- pulumi_aiven/get_cassanda.py +55 -23
- pulumi_aiven/get_cassandra.py +55 -23
- pulumi_aiven/get_cassandra_user.py +42 -30
- pulumi_aiven/get_clickhouse.py +55 -23
- pulumi_aiven/get_clickhouse_database.py +35 -26
- pulumi_aiven/get_clickhouse_user.py +40 -29
- pulumi_aiven/get_connection_pool.py +43 -30
- pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven/get_external_identity.py +160 -0
- pulumi_aiven/get_flink.py +55 -23
- pulumi_aiven/get_flink_application.py +44 -31
- pulumi_aiven/get_flink_application_version.py +55 -37
- pulumi_aiven/get_gcp_privatelink.py +63 -7
- pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -28
- pulumi_aiven/get_grafana.py +55 -23
- pulumi_aiven/get_influx_db.py +41 -5
- pulumi_aiven/get_influxdb_database.py +18 -5
- pulumi_aiven/get_influxdb_user.py +21 -5
- pulumi_aiven/get_kafka.py +59 -25
- pulumi_aiven/get_kafka_acl.py +50 -37
- pulumi_aiven/get_kafka_connect.py +54 -36
- pulumi_aiven/get_kafka_connector.py +44 -28
- pulumi_aiven/get_kafka_mirror_maker.py +50 -32
- pulumi_aiven/get_kafka_schema.py +35 -23
- pulumi_aiven/get_kafka_schema_configuration.py +32 -21
- pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- pulumi_aiven/get_kafka_topic.py +70 -29
- pulumi_aiven/get_kafka_user.py +42 -30
- pulumi_aiven/get_m3_aggregator.py +51 -19
- pulumi_aiven/get_m3_db.py +55 -23
- pulumi_aiven/get_m3db_user.py +38 -28
- pulumi_aiven/get_mirror_maker_replication_flow.py +86 -25
- pulumi_aiven/get_my_sql.py +50 -18
- pulumi_aiven/get_mysql_database.py +31 -22
- pulumi_aiven/get_mysql_user.py +36 -23
- pulumi_aiven/get_open_search.py +50 -18
- pulumi_aiven/get_open_search_acl_config.py +27 -19
- pulumi_aiven/get_open_search_acl_rule.py +37 -25
- pulumi_aiven/get_opensearch_security_plugin_config.py +29 -19
- pulumi_aiven/get_opensearch_user.py +32 -22
- pulumi_aiven/get_organization.py +25 -17
- pulumi_aiven/get_organization_application_user.py +176 -0
- pulumi_aiven/get_organization_user.py +18 -5
- pulumi_aiven/get_organization_user_group.py +48 -14
- pulumi_aiven/get_organization_user_list.py +121 -0
- pulumi_aiven/get_organizational_unit.py +26 -14
- pulumi_aiven/get_pg.py +55 -23
- pulumi_aiven/get_pg_database.py +39 -28
- pulumi_aiven/get_pg_user.py +44 -31
- pulumi_aiven/get_project.py +43 -26
- pulumi_aiven/get_project_user.py +27 -19
- pulumi_aiven/get_project_vpc.py +31 -23
- pulumi_aiven/get_redis.py +50 -18
- pulumi_aiven/get_redis_user.py +40 -26
- pulumi_aiven/get_service_component.py +40 -22
- pulumi_aiven/get_service_integration.py +163 -53
- pulumi_aiven/get_service_integration_endpoint.py +128 -37
- pulumi_aiven/get_thanos.py +499 -0
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -22
- pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven/grafana.py +188 -322
- pulumi_aiven/influx_db.py +127 -90
- pulumi_aiven/influxdb_database.py +40 -55
- pulumi_aiven/influxdb_user.py +47 -42
- pulumi_aiven/kafka.py +157 -144
- pulumi_aiven/kafka_acl.py +64 -57
- pulumi_aiven/kafka_connect.py +201 -332
- pulumi_aiven/kafka_connector.py +67 -60
- pulumi_aiven/kafka_mirror_maker.py +137 -320
- pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven/kafka_schema.py +63 -58
- pulumi_aiven/kafka_schema_configuration.py +25 -24
- pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- pulumi_aiven/kafka_topic.py +184 -65
- pulumi_aiven/kafka_user.py +59 -58
- pulumi_aiven/m3_aggregator.py +174 -310
- pulumi_aiven/m3_db.py +190 -326
- pulumi_aiven/m3db_user.py +51 -50
- pulumi_aiven/mirror_maker_replication_flow.py +215 -55
- pulumi_aiven/my_sql.py +188 -324
- pulumi_aiven/mysql_database.py +32 -51
- pulumi_aiven/mysql_user.py +37 -36
- pulumi_aiven/open_search.py +126 -107
- pulumi_aiven/open_search_acl_config.py +33 -36
- pulumi_aiven/open_search_acl_rule.py +55 -54
- pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- pulumi_aiven/opensearch_user.py +30 -29
- pulumi_aiven/organization.py +18 -17
- pulumi_aiven/organization_application_user.py +345 -0
- pulumi_aiven/organization_application_user_token.py +711 -0
- pulumi_aiven/organization_group_project.py +349 -0
- pulumi_aiven/organization_permission.py +421 -0
- pulumi_aiven/organization_user.py +25 -46
- pulumi_aiven/organization_user_group.py +64 -23
- pulumi_aiven/organization_user_group_member.py +359 -0
- pulumi_aiven/organizational_unit.py +41 -36
- pulumi_aiven/outputs.py +38355 -21458
- pulumi_aiven/pg.py +92 -88
- pulumi_aiven/pg_database.py +52 -71
- pulumi_aiven/pg_user.py +80 -65
- pulumi_aiven/project.py +111 -102
- pulumi_aiven/project_user.py +44 -35
- pulumi_aiven/project_vpc.py +58 -29
- pulumi_aiven/provider.py +5 -0
- pulumi_aiven/pulumi-plugin.json +2 -1
- pulumi_aiven/redis.py +161 -297
- pulumi_aiven/redis_user.py +58 -57
- pulumi_aiven/service_integration.py +511 -165
- pulumi_aiven/service_integration_endpoint.py +466 -158
- pulumi_aiven/static_ip.py +21 -16
- pulumi_aiven/thanos.py +1262 -0
- pulumi_aiven/transit_gateway_vpc_attachment.py +44 -58
- pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/METADATA +7 -6
- pulumi_aiven-6.31.0a1736831339.dist-info/RECORD +169 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/WHEEL +1 -1
- pulumi_aiven-6.13.0a1710156545.dist-info/RECORD +0 -146
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -19,47 +24,63 @@ class ServiceIntegrationEndpointArgs:
|
|
|
19
24
|
endpoint_name: pulumi.Input[str],
|
|
20
25
|
endpoint_type: pulumi.Input[str],
|
|
21
26
|
project: pulumi.Input[str],
|
|
27
|
+
autoscaler_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']] = None,
|
|
22
28
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']] = None,
|
|
23
29
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
24
30
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
31
|
+
external_aws_s3_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']] = None,
|
|
32
|
+
external_clickhouse_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']] = None,
|
|
25
33
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
26
34
|
external_google_cloud_bigquery: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']] = None,
|
|
27
35
|
external_google_cloud_logging_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']] = None,
|
|
28
36
|
external_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']] = None,
|
|
37
|
+
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
29
38
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
30
39
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
40
|
+
external_prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']] = None,
|
|
31
41
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
32
42
|
jolokia_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']] = None,
|
|
33
43
|
prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs']] = None,
|
|
34
44
|
rsyslog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']] = None):
|
|
35
45
|
"""
|
|
36
46
|
The set of arguments for constructing a ServiceIntegrationEndpoint resource.
|
|
37
|
-
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint
|
|
38
|
-
:param pulumi.Input[str] endpoint_type:
|
|
39
|
-
:param pulumi.Input[str] project: Project the service integration endpoint
|
|
40
|
-
:param pulumi.Input['
|
|
41
|
-
:param pulumi.Input['
|
|
42
|
-
:param pulumi.Input['
|
|
43
|
-
:param pulumi.Input['
|
|
44
|
-
:param pulumi.Input['
|
|
45
|
-
:param pulumi.Input['
|
|
46
|
-
:param pulumi.Input['
|
|
47
|
-
:param pulumi.Input['
|
|
48
|
-
:param pulumi.Input['
|
|
49
|
-
:param pulumi.Input['
|
|
50
|
-
:param pulumi.Input['
|
|
51
|
-
:param pulumi.Input['
|
|
52
|
-
: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
|
|
53
68
|
"""
|
|
54
69
|
pulumi.set(__self__, "endpoint_name", endpoint_name)
|
|
55
70
|
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
56
71
|
pulumi.set(__self__, "project", project)
|
|
72
|
+
if autoscaler_user_config is not None:
|
|
73
|
+
pulumi.set(__self__, "autoscaler_user_config", autoscaler_user_config)
|
|
57
74
|
if datadog_user_config is not None:
|
|
58
75
|
pulumi.set(__self__, "datadog_user_config", datadog_user_config)
|
|
59
76
|
if external_aws_cloudwatch_logs_user_config is not None:
|
|
60
77
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
61
78
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
62
79
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_config", external_aws_cloudwatch_metrics_user_config)
|
|
80
|
+
if external_aws_s3_user_config is not None:
|
|
81
|
+
pulumi.set(__self__, "external_aws_s3_user_config", external_aws_s3_user_config)
|
|
82
|
+
if external_clickhouse_user_config is not None:
|
|
83
|
+
pulumi.set(__self__, "external_clickhouse_user_config", external_clickhouse_user_config)
|
|
63
84
|
if external_elasticsearch_logs_user_config is not None:
|
|
64
85
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
65
86
|
if external_google_cloud_bigquery is not None:
|
|
@@ -68,10 +89,14 @@ class ServiceIntegrationEndpointArgs:
|
|
|
68
89
|
pulumi.set(__self__, "external_google_cloud_logging_user_config", external_google_cloud_logging_user_config)
|
|
69
90
|
if external_kafka_user_config is not None:
|
|
70
91
|
pulumi.set(__self__, "external_kafka_user_config", external_kafka_user_config)
|
|
92
|
+
if external_mysql_user_config is not None:
|
|
93
|
+
pulumi.set(__self__, "external_mysql_user_config", external_mysql_user_config)
|
|
71
94
|
if external_opensearch_logs_user_config is not None:
|
|
72
95
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
73
96
|
if external_postgresql is not None:
|
|
74
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)
|
|
75
100
|
if external_schema_registry_user_config is not None:
|
|
76
101
|
pulumi.set(__self__, "external_schema_registry_user_config", external_schema_registry_user_config)
|
|
77
102
|
if jolokia_user_config is not None:
|
|
@@ -85,7 +110,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
85
110
|
@pulumi.getter(name="endpointName")
|
|
86
111
|
def endpoint_name(self) -> pulumi.Input[str]:
|
|
87
112
|
"""
|
|
88
|
-
Name of the service integration endpoint
|
|
113
|
+
Name of the service integration endpoint.
|
|
89
114
|
"""
|
|
90
115
|
return pulumi.get(self, "endpoint_name")
|
|
91
116
|
|
|
@@ -97,7 +122,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
97
122
|
@pulumi.getter(name="endpointType")
|
|
98
123
|
def endpoint_type(self) -> pulumi.Input[str]:
|
|
99
124
|
"""
|
|
100
|
-
|
|
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`.
|
|
101
126
|
"""
|
|
102
127
|
return pulumi.get(self, "endpoint_type")
|
|
103
128
|
|
|
@@ -109,7 +134,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
109
134
|
@pulumi.getter
|
|
110
135
|
def project(self) -> pulumi.Input[str]:
|
|
111
136
|
"""
|
|
112
|
-
Project the service integration endpoint
|
|
137
|
+
Project the service integration endpoint is in.
|
|
113
138
|
"""
|
|
114
139
|
return pulumi.get(self, "project")
|
|
115
140
|
|
|
@@ -117,11 +142,23 @@ class ServiceIntegrationEndpointArgs:
|
|
|
117
142
|
def project(self, value: pulumi.Input[str]):
|
|
118
143
|
pulumi.set(self, "project", value)
|
|
119
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
|
+
|
|
120
157
|
@property
|
|
121
158
|
@pulumi.getter(name="datadogUserConfig")
|
|
122
159
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']]:
|
|
123
160
|
"""
|
|
124
|
-
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
|
|
125
162
|
"""
|
|
126
163
|
return pulumi.get(self, "datadog_user_config")
|
|
127
164
|
|
|
@@ -133,7 +170,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
133
170
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
134
171
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
135
172
|
"""
|
|
136
|
-
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
|
|
137
174
|
"""
|
|
138
175
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
139
176
|
|
|
@@ -145,7 +182,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
145
182
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
146
183
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
147
184
|
"""
|
|
148
|
-
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
|
|
149
186
|
"""
|
|
150
187
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
151
188
|
|
|
@@ -153,11 +190,35 @@ class ServiceIntegrationEndpointArgs:
|
|
|
153
190
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
154
191
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
155
192
|
|
|
193
|
+
@property
|
|
194
|
+
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
195
|
+
def external_aws_s3_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]:
|
|
196
|
+
"""
|
|
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
|
|
198
|
+
"""
|
|
199
|
+
return pulumi.get(self, "external_aws_s3_user_config")
|
|
200
|
+
|
|
201
|
+
@external_aws_s3_user_config.setter
|
|
202
|
+
def external_aws_s3_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]):
|
|
203
|
+
pulumi.set(self, "external_aws_s3_user_config", value)
|
|
204
|
+
|
|
205
|
+
@property
|
|
206
|
+
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
207
|
+
def external_clickhouse_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]:
|
|
208
|
+
"""
|
|
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
|
|
210
|
+
"""
|
|
211
|
+
return pulumi.get(self, "external_clickhouse_user_config")
|
|
212
|
+
|
|
213
|
+
@external_clickhouse_user_config.setter
|
|
214
|
+
def external_clickhouse_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]):
|
|
215
|
+
pulumi.set(self, "external_clickhouse_user_config", value)
|
|
216
|
+
|
|
156
217
|
@property
|
|
157
218
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
158
219
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
159
220
|
"""
|
|
160
|
-
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
|
|
161
222
|
"""
|
|
162
223
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
163
224
|
|
|
@@ -169,7 +230,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
169
230
|
@pulumi.getter(name="externalGoogleCloudBigquery")
|
|
170
231
|
def external_google_cloud_bigquery(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']]:
|
|
171
232
|
"""
|
|
172
|
-
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
|
|
173
234
|
"""
|
|
174
235
|
return pulumi.get(self, "external_google_cloud_bigquery")
|
|
175
236
|
|
|
@@ -181,7 +242,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
181
242
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfig")
|
|
182
243
|
def external_google_cloud_logging_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']]:
|
|
183
244
|
"""
|
|
184
|
-
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
|
|
185
246
|
"""
|
|
186
247
|
return pulumi.get(self, "external_google_cloud_logging_user_config")
|
|
187
248
|
|
|
@@ -193,7 +254,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
193
254
|
@pulumi.getter(name="externalKafkaUserConfig")
|
|
194
255
|
def external_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]:
|
|
195
256
|
"""
|
|
196
|
-
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
|
|
197
258
|
"""
|
|
198
259
|
return pulumi.get(self, "external_kafka_user_config")
|
|
199
260
|
|
|
@@ -201,11 +262,23 @@ class ServiceIntegrationEndpointArgs:
|
|
|
201
262
|
def external_kafka_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]):
|
|
202
263
|
pulumi.set(self, "external_kafka_user_config", value)
|
|
203
264
|
|
|
265
|
+
@property
|
|
266
|
+
@pulumi.getter(name="externalMysqlUserConfig")
|
|
267
|
+
def external_mysql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]:
|
|
268
|
+
"""
|
|
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
|
|
270
|
+
"""
|
|
271
|
+
return pulumi.get(self, "external_mysql_user_config")
|
|
272
|
+
|
|
273
|
+
@external_mysql_user_config.setter
|
|
274
|
+
def external_mysql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]):
|
|
275
|
+
pulumi.set(self, "external_mysql_user_config", value)
|
|
276
|
+
|
|
204
277
|
@property
|
|
205
278
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
206
279
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
207
280
|
"""
|
|
208
|
-
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
|
|
209
282
|
"""
|
|
210
283
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
211
284
|
|
|
@@ -217,7 +290,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
217
290
|
@pulumi.getter(name="externalPostgresql")
|
|
218
291
|
def external_postgresql(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]:
|
|
219
292
|
"""
|
|
220
|
-
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
|
|
221
294
|
"""
|
|
222
295
|
return pulumi.get(self, "external_postgresql")
|
|
223
296
|
|
|
@@ -225,11 +298,23 @@ class ServiceIntegrationEndpointArgs:
|
|
|
225
298
|
def external_postgresql(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]):
|
|
226
299
|
pulumi.set(self, "external_postgresql", value)
|
|
227
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
|
+
|
|
228
313
|
@property
|
|
229
314
|
@pulumi.getter(name="externalSchemaRegistryUserConfig")
|
|
230
315
|
def external_schema_registry_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']]:
|
|
231
316
|
"""
|
|
232
|
-
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
|
|
233
318
|
"""
|
|
234
319
|
return pulumi.get(self, "external_schema_registry_user_config")
|
|
235
320
|
|
|
@@ -241,7 +326,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
241
326
|
@pulumi.getter(name="jolokiaUserConfig")
|
|
242
327
|
def jolokia_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']]:
|
|
243
328
|
"""
|
|
244
|
-
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
|
|
245
330
|
"""
|
|
246
331
|
return pulumi.get(self, "jolokia_user_config")
|
|
247
332
|
|
|
@@ -253,7 +338,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
253
338
|
@pulumi.getter(name="prometheusUserConfig")
|
|
254
339
|
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs']]:
|
|
255
340
|
"""
|
|
256
|
-
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
|
|
257
342
|
"""
|
|
258
343
|
return pulumi.get(self, "prometheus_user_config")
|
|
259
344
|
|
|
@@ -265,7 +350,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
265
350
|
@pulumi.getter(name="rsyslogUserConfig")
|
|
266
351
|
def rsyslog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']]:
|
|
267
352
|
"""
|
|
268
|
-
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
|
|
269
354
|
"""
|
|
270
355
|
return pulumi.get(self, "rsyslog_user_config")
|
|
271
356
|
|
|
@@ -277,18 +362,23 @@ class ServiceIntegrationEndpointArgs:
|
|
|
277
362
|
@pulumi.input_type
|
|
278
363
|
class _ServiceIntegrationEndpointState:
|
|
279
364
|
def __init__(__self__, *,
|
|
365
|
+
autoscaler_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointAutoscalerUserConfigArgs']] = None,
|
|
280
366
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']] = None,
|
|
281
367
|
endpoint_config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
282
368
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
283
369
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
284
370
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
285
371
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
372
|
+
external_aws_s3_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']] = None,
|
|
373
|
+
external_clickhouse_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']] = None,
|
|
286
374
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
287
375
|
external_google_cloud_bigquery: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']] = None,
|
|
288
376
|
external_google_cloud_logging_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']] = None,
|
|
289
377
|
external_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']] = None,
|
|
378
|
+
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
290
379
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
291
380
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
381
|
+
external_prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs']] = None,
|
|
292
382
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
293
383
|
jolokia_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']] = None,
|
|
294
384
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -296,24 +386,31 @@ class _ServiceIntegrationEndpointState:
|
|
|
296
386
|
rsyslog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']] = None):
|
|
297
387
|
"""
|
|
298
388
|
Input properties used for looking up and filtering ServiceIntegrationEndpoint resources.
|
|
299
|
-
:param pulumi.Input['
|
|
300
|
-
:param pulumi.Input[
|
|
301
|
-
:param pulumi.Input[str]
|
|
302
|
-
:param pulumi.Input[str]
|
|
303
|
-
:param pulumi.Input[
|
|
304
|
-
:param pulumi.Input['
|
|
305
|
-
:param pulumi.Input['
|
|
306
|
-
:param pulumi.Input['
|
|
307
|
-
:param pulumi.Input['
|
|
308
|
-
:param pulumi.Input['
|
|
309
|
-
:param pulumi.Input['
|
|
310
|
-
:param pulumi.Input['
|
|
311
|
-
:param pulumi.Input['
|
|
312
|
-
:param pulumi.Input['
|
|
313
|
-
:param pulumi.Input[
|
|
314
|
-
:param pulumi.Input['
|
|
315
|
-
:param pulumi.Input['
|
|
316
|
-
|
|
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)
|
|
317
414
|
if datadog_user_config is not None:
|
|
318
415
|
pulumi.set(__self__, "datadog_user_config", datadog_user_config)
|
|
319
416
|
if endpoint_config is not None:
|
|
@@ -326,6 +423,10 @@ class _ServiceIntegrationEndpointState:
|
|
|
326
423
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
327
424
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
328
425
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_config", external_aws_cloudwatch_metrics_user_config)
|
|
426
|
+
if external_aws_s3_user_config is not None:
|
|
427
|
+
pulumi.set(__self__, "external_aws_s3_user_config", external_aws_s3_user_config)
|
|
428
|
+
if external_clickhouse_user_config is not None:
|
|
429
|
+
pulumi.set(__self__, "external_clickhouse_user_config", external_clickhouse_user_config)
|
|
329
430
|
if external_elasticsearch_logs_user_config is not None:
|
|
330
431
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
331
432
|
if external_google_cloud_bigquery is not None:
|
|
@@ -334,10 +435,14 @@ class _ServiceIntegrationEndpointState:
|
|
|
334
435
|
pulumi.set(__self__, "external_google_cloud_logging_user_config", external_google_cloud_logging_user_config)
|
|
335
436
|
if external_kafka_user_config is not None:
|
|
336
437
|
pulumi.set(__self__, "external_kafka_user_config", external_kafka_user_config)
|
|
438
|
+
if external_mysql_user_config is not None:
|
|
439
|
+
pulumi.set(__self__, "external_mysql_user_config", external_mysql_user_config)
|
|
337
440
|
if external_opensearch_logs_user_config is not None:
|
|
338
441
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
339
442
|
if external_postgresql is not None:
|
|
340
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)
|
|
341
446
|
if external_schema_registry_user_config is not None:
|
|
342
447
|
pulumi.set(__self__, "external_schema_registry_user_config", external_schema_registry_user_config)
|
|
343
448
|
if jolokia_user_config is not None:
|
|
@@ -349,11 +454,23 @@ class _ServiceIntegrationEndpointState:
|
|
|
349
454
|
if rsyslog_user_config is not None:
|
|
350
455
|
pulumi.set(__self__, "rsyslog_user_config", rsyslog_user_config)
|
|
351
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
|
+
|
|
352
469
|
@property
|
|
353
470
|
@pulumi.getter(name="datadogUserConfig")
|
|
354
471
|
def datadog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']]:
|
|
355
472
|
"""
|
|
356
|
-
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
|
|
357
474
|
"""
|
|
358
475
|
return pulumi.get(self, "datadog_user_config")
|
|
359
476
|
|
|
@@ -365,7 +482,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
365
482
|
@pulumi.getter(name="endpointConfig")
|
|
366
483
|
def endpoint_config(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
367
484
|
"""
|
|
368
|
-
|
|
485
|
+
Backend configuration for the endpoint.
|
|
369
486
|
"""
|
|
370
487
|
return pulumi.get(self, "endpoint_config")
|
|
371
488
|
|
|
@@ -377,7 +494,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
377
494
|
@pulumi.getter(name="endpointName")
|
|
378
495
|
def endpoint_name(self) -> Optional[pulumi.Input[str]]:
|
|
379
496
|
"""
|
|
380
|
-
Name of the service integration endpoint
|
|
497
|
+
Name of the service integration endpoint.
|
|
381
498
|
"""
|
|
382
499
|
return pulumi.get(self, "endpoint_name")
|
|
383
500
|
|
|
@@ -389,7 +506,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
389
506
|
@pulumi.getter(name="endpointType")
|
|
390
507
|
def endpoint_type(self) -> Optional[pulumi.Input[str]]:
|
|
391
508
|
"""
|
|
392
|
-
|
|
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`.
|
|
393
510
|
"""
|
|
394
511
|
return pulumi.get(self, "endpoint_type")
|
|
395
512
|
|
|
@@ -401,7 +518,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
401
518
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
402
519
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
403
520
|
"""
|
|
404
|
-
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
|
|
405
522
|
"""
|
|
406
523
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
407
524
|
|
|
@@ -413,7 +530,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
413
530
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
414
531
|
def external_aws_cloudwatch_metrics_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]:
|
|
415
532
|
"""
|
|
416
|
-
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
|
|
417
534
|
"""
|
|
418
535
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
419
536
|
|
|
@@ -421,11 +538,35 @@ class _ServiceIntegrationEndpointState:
|
|
|
421
538
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
422
539
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
423
540
|
|
|
541
|
+
@property
|
|
542
|
+
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
543
|
+
def external_aws_s3_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]:
|
|
544
|
+
"""
|
|
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
|
|
546
|
+
"""
|
|
547
|
+
return pulumi.get(self, "external_aws_s3_user_config")
|
|
548
|
+
|
|
549
|
+
@external_aws_s3_user_config.setter
|
|
550
|
+
def external_aws_s3_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]):
|
|
551
|
+
pulumi.set(self, "external_aws_s3_user_config", value)
|
|
552
|
+
|
|
553
|
+
@property
|
|
554
|
+
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
555
|
+
def external_clickhouse_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]:
|
|
556
|
+
"""
|
|
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
|
|
558
|
+
"""
|
|
559
|
+
return pulumi.get(self, "external_clickhouse_user_config")
|
|
560
|
+
|
|
561
|
+
@external_clickhouse_user_config.setter
|
|
562
|
+
def external_clickhouse_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]):
|
|
563
|
+
pulumi.set(self, "external_clickhouse_user_config", value)
|
|
564
|
+
|
|
424
565
|
@property
|
|
425
566
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
426
567
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
427
568
|
"""
|
|
428
|
-
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
|
|
429
570
|
"""
|
|
430
571
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
431
572
|
|
|
@@ -437,7 +578,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
437
578
|
@pulumi.getter(name="externalGoogleCloudBigquery")
|
|
438
579
|
def external_google_cloud_bigquery(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']]:
|
|
439
580
|
"""
|
|
440
|
-
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
|
|
441
582
|
"""
|
|
442
583
|
return pulumi.get(self, "external_google_cloud_bigquery")
|
|
443
584
|
|
|
@@ -449,7 +590,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
449
590
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfig")
|
|
450
591
|
def external_google_cloud_logging_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']]:
|
|
451
592
|
"""
|
|
452
|
-
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
|
|
453
594
|
"""
|
|
454
595
|
return pulumi.get(self, "external_google_cloud_logging_user_config")
|
|
455
596
|
|
|
@@ -461,7 +602,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
461
602
|
@pulumi.getter(name="externalKafkaUserConfig")
|
|
462
603
|
def external_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]:
|
|
463
604
|
"""
|
|
464
|
-
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
|
|
465
606
|
"""
|
|
466
607
|
return pulumi.get(self, "external_kafka_user_config")
|
|
467
608
|
|
|
@@ -469,11 +610,23 @@ class _ServiceIntegrationEndpointState:
|
|
|
469
610
|
def external_kafka_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]):
|
|
470
611
|
pulumi.set(self, "external_kafka_user_config", value)
|
|
471
612
|
|
|
613
|
+
@property
|
|
614
|
+
@pulumi.getter(name="externalMysqlUserConfig")
|
|
615
|
+
def external_mysql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]:
|
|
616
|
+
"""
|
|
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
|
|
618
|
+
"""
|
|
619
|
+
return pulumi.get(self, "external_mysql_user_config")
|
|
620
|
+
|
|
621
|
+
@external_mysql_user_config.setter
|
|
622
|
+
def external_mysql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]):
|
|
623
|
+
pulumi.set(self, "external_mysql_user_config", value)
|
|
624
|
+
|
|
472
625
|
@property
|
|
473
626
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
474
627
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
475
628
|
"""
|
|
476
|
-
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
|
|
477
630
|
"""
|
|
478
631
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
479
632
|
|
|
@@ -485,7 +638,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
485
638
|
@pulumi.getter(name="externalPostgresql")
|
|
486
639
|
def external_postgresql(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]:
|
|
487
640
|
"""
|
|
488
|
-
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
|
|
489
642
|
"""
|
|
490
643
|
return pulumi.get(self, "external_postgresql")
|
|
491
644
|
|
|
@@ -493,11 +646,23 @@ class _ServiceIntegrationEndpointState:
|
|
|
493
646
|
def external_postgresql(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']]):
|
|
494
647
|
pulumi.set(self, "external_postgresql", value)
|
|
495
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
|
+
|
|
496
661
|
@property
|
|
497
662
|
@pulumi.getter(name="externalSchemaRegistryUserConfig")
|
|
498
663
|
def external_schema_registry_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']]:
|
|
499
664
|
"""
|
|
500
|
-
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
|
|
501
666
|
"""
|
|
502
667
|
return pulumi.get(self, "external_schema_registry_user_config")
|
|
503
668
|
|
|
@@ -509,7 +674,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
509
674
|
@pulumi.getter(name="jolokiaUserConfig")
|
|
510
675
|
def jolokia_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointJolokiaUserConfigArgs']]:
|
|
511
676
|
"""
|
|
512
|
-
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
|
|
513
678
|
"""
|
|
514
679
|
return pulumi.get(self, "jolokia_user_config")
|
|
515
680
|
|
|
@@ -521,7 +686,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
521
686
|
@pulumi.getter
|
|
522
687
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
523
688
|
"""
|
|
524
|
-
Project the service integration endpoint
|
|
689
|
+
Project the service integration endpoint is in.
|
|
525
690
|
"""
|
|
526
691
|
return pulumi.get(self, "project")
|
|
527
692
|
|
|
@@ -533,7 +698,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
533
698
|
@pulumi.getter(name="prometheusUserConfig")
|
|
534
699
|
def prometheus_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointPrometheusUserConfigArgs']]:
|
|
535
700
|
"""
|
|
536
|
-
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
|
|
537
702
|
"""
|
|
538
703
|
return pulumi.get(self, "prometheus_user_config")
|
|
539
704
|
|
|
@@ -545,7 +710,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
545
710
|
@pulumi.getter(name="rsyslogUserConfig")
|
|
546
711
|
def rsyslog_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointRsyslogUserConfigArgs']]:
|
|
547
712
|
"""
|
|
548
|
-
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
|
|
549
714
|
"""
|
|
550
715
|
return pulumi.get(self, "rsyslog_user_config")
|
|
551
716
|
|
|
@@ -559,44 +724,88 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
559
724
|
def __init__(__self__,
|
|
560
725
|
resource_name: str,
|
|
561
726
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
562
|
-
|
|
727
|
+
autoscaler_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']]] = None,
|
|
728
|
+
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']]] = None,
|
|
563
729
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
564
730
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
565
|
-
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[
|
|
566
|
-
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
731
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
732
|
+
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
733
|
+
external_aws_s3_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']]] = None,
|
|
734
|
+
external_clickhouse_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']]] = None,
|
|
735
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
736
|
+
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
737
|
+
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
738
|
+
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
739
|
+
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
740
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
741
|
+
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
742
|
+
external_prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']]] = None,
|
|
743
|
+
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
744
|
+
jolokia_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']]] = None,
|
|
575
745
|
project: Optional[pulumi.Input[str]] = None,
|
|
576
|
-
prometheus_user_config: Optional[pulumi.Input[
|
|
577
|
-
rsyslog_user_config: Optional[pulumi.Input[
|
|
746
|
+
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointPrometheusUserConfigArgs', 'ServiceIntegrationEndpointPrometheusUserConfigArgsDict']]] = None,
|
|
747
|
+
rsyslog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointRsyslogUserConfigArgs', 'ServiceIntegrationEndpointRsyslogUserConfigArgsDict']]] = None,
|
|
578
748
|
__props__=None):
|
|
579
749
|
"""
|
|
580
|
-
|
|
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
|
+
```
|
|
581
785
|
|
|
582
786
|
:param str resource_name: The name of the resource.
|
|
583
787
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
584
|
-
:param pulumi.Input[
|
|
585
|
-
:param pulumi.Input[
|
|
586
|
-
:param pulumi.Input[str]
|
|
587
|
-
:param pulumi.Input[
|
|
588
|
-
:param pulumi.Input[
|
|
589
|
-
:param pulumi.Input[
|
|
590
|
-
:param pulumi.Input[
|
|
591
|
-
:param pulumi.Input[
|
|
592
|
-
:param pulumi.Input[
|
|
593
|
-
:param pulumi.Input[
|
|
594
|
-
:param pulumi.Input[
|
|
595
|
-
:param pulumi.Input[
|
|
596
|
-
:param pulumi.Input[
|
|
597
|
-
:param pulumi.Input[
|
|
598
|
-
:param pulumi.Input[
|
|
599
|
-
: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
|
|
600
809
|
"""
|
|
601
810
|
...
|
|
602
811
|
@overload
|
|
@@ -605,7 +814,41 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
605
814
|
args: ServiceIntegrationEndpointArgs,
|
|
606
815
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
607
816
|
"""
|
|
608
|
-
|
|
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
|
+
```
|
|
609
852
|
|
|
610
853
|
:param str resource_name: The name of the resource.
|
|
611
854
|
:param ServiceIntegrationEndpointArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -622,22 +865,27 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
622
865
|
def _internal_init(__self__,
|
|
623
866
|
resource_name: str,
|
|
624
867
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
625
|
-
|
|
868
|
+
autoscaler_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']]] = None,
|
|
869
|
+
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']]] = None,
|
|
626
870
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
627
871
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
628
|
-
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[
|
|
629
|
-
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
872
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
873
|
+
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
874
|
+
external_aws_s3_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']]] = None,
|
|
875
|
+
external_clickhouse_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']]] = None,
|
|
876
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
877
|
+
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
878
|
+
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
879
|
+
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
880
|
+
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
881
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
882
|
+
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
883
|
+
external_prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']]] = None,
|
|
884
|
+
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
885
|
+
jolokia_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']]] = None,
|
|
638
886
|
project: Optional[pulumi.Input[str]] = None,
|
|
639
|
-
prometheus_user_config: Optional[pulumi.Input[
|
|
640
|
-
rsyslog_user_config: Optional[pulumi.Input[
|
|
887
|
+
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointPrometheusUserConfigArgs', 'ServiceIntegrationEndpointPrometheusUserConfigArgsDict']]] = None,
|
|
888
|
+
rsyslog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointRsyslogUserConfigArgs', 'ServiceIntegrationEndpointRsyslogUserConfigArgsDict']]] = None,
|
|
641
889
|
__props__=None):
|
|
642
890
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
643
891
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -647,6 +895,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
647
895
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
648
896
|
__props__ = ServiceIntegrationEndpointArgs.__new__(ServiceIntegrationEndpointArgs)
|
|
649
897
|
|
|
898
|
+
__props__.__dict__["autoscaler_user_config"] = autoscaler_user_config
|
|
650
899
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
651
900
|
if endpoint_name is None and not opts.urn:
|
|
652
901
|
raise TypeError("Missing required property 'endpoint_name'")
|
|
@@ -656,12 +905,16 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
656
905
|
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
657
906
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
658
907
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
908
|
+
__props__.__dict__["external_aws_s3_user_config"] = external_aws_s3_user_config
|
|
909
|
+
__props__.__dict__["external_clickhouse_user_config"] = external_clickhouse_user_config
|
|
659
910
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
660
911
|
__props__.__dict__["external_google_cloud_bigquery"] = external_google_cloud_bigquery
|
|
661
912
|
__props__.__dict__["external_google_cloud_logging_user_config"] = external_google_cloud_logging_user_config
|
|
662
913
|
__props__.__dict__["external_kafka_user_config"] = external_kafka_user_config
|
|
914
|
+
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
663
915
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
664
916
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
917
|
+
__props__.__dict__["external_prometheus_user_config"] = external_prometheus_user_config
|
|
665
918
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
666
919
|
__props__.__dict__["jolokia_user_config"] = jolokia_user_config
|
|
667
920
|
if project is None and not opts.urn:
|
|
@@ -680,23 +933,28 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
680
933
|
def get(resource_name: str,
|
|
681
934
|
id: pulumi.Input[str],
|
|
682
935
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
683
|
-
|
|
936
|
+
autoscaler_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointAutoscalerUserConfigArgs', 'ServiceIntegrationEndpointAutoscalerUserConfigArgsDict']]] = None,
|
|
937
|
+
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointDatadogUserConfigArgs', 'ServiceIntegrationEndpointDatadogUserConfigArgsDict']]] = None,
|
|
684
938
|
endpoint_config: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
685
939
|
endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
686
940
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
687
|
-
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[
|
|
688
|
-
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
941
|
+
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
942
|
+
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
943
|
+
external_aws_s3_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']]] = None,
|
|
944
|
+
external_clickhouse_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']]] = None,
|
|
945
|
+
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
946
|
+
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
947
|
+
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
948
|
+
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
949
|
+
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
950
|
+
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
951
|
+
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
952
|
+
external_prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPrometheusUserConfigArgs', 'ServiceIntegrationEndpointExternalPrometheusUserConfigArgsDict']]] = None,
|
|
953
|
+
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
954
|
+
jolokia_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointJolokiaUserConfigArgs', 'ServiceIntegrationEndpointJolokiaUserConfigArgsDict']]] = None,
|
|
697
955
|
project: Optional[pulumi.Input[str]] = None,
|
|
698
|
-
prometheus_user_config: Optional[pulumi.Input[
|
|
699
|
-
rsyslog_user_config: Optional[pulumi.Input[
|
|
956
|
+
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointPrometheusUserConfigArgs', 'ServiceIntegrationEndpointPrometheusUserConfigArgsDict']]] = None,
|
|
957
|
+
rsyslog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointRsyslogUserConfigArgs', 'ServiceIntegrationEndpointRsyslogUserConfigArgsDict']]] = None) -> 'ServiceIntegrationEndpoint':
|
|
700
958
|
"""
|
|
701
959
|
Get an existing ServiceIntegrationEndpoint resource's state with the given name, id, and optional extra
|
|
702
960
|
properties used to qualify the lookup.
|
|
@@ -704,40 +962,50 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
704
962
|
:param str resource_name: The unique name of the resulting resource.
|
|
705
963
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
706
964
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
707
|
-
:param pulumi.Input[
|
|
708
|
-
:param pulumi.Input[
|
|
709
|
-
:param pulumi.Input[str]
|
|
710
|
-
:param pulumi.Input[str]
|
|
711
|
-
:param pulumi.Input[
|
|
712
|
-
:param pulumi.Input[
|
|
713
|
-
:param pulumi.Input[
|
|
714
|
-
:param pulumi.Input[
|
|
715
|
-
:param pulumi.Input[
|
|
716
|
-
:param pulumi.Input[
|
|
717
|
-
:param pulumi.Input[
|
|
718
|
-
:param pulumi.Input[
|
|
719
|
-
:param pulumi.Input[
|
|
720
|
-
:param pulumi.Input[
|
|
721
|
-
:param pulumi.Input[
|
|
722
|
-
:param pulumi.Input[
|
|
723
|
-
: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
|
|
724
987
|
"""
|
|
725
988
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
726
989
|
|
|
727
990
|
__props__ = _ServiceIntegrationEndpointState.__new__(_ServiceIntegrationEndpointState)
|
|
728
991
|
|
|
992
|
+
__props__.__dict__["autoscaler_user_config"] = autoscaler_user_config
|
|
729
993
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
730
994
|
__props__.__dict__["endpoint_config"] = endpoint_config
|
|
731
995
|
__props__.__dict__["endpoint_name"] = endpoint_name
|
|
732
996
|
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
733
997
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
734
998
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
999
|
+
__props__.__dict__["external_aws_s3_user_config"] = external_aws_s3_user_config
|
|
1000
|
+
__props__.__dict__["external_clickhouse_user_config"] = external_clickhouse_user_config
|
|
735
1001
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
736
1002
|
__props__.__dict__["external_google_cloud_bigquery"] = external_google_cloud_bigquery
|
|
737
1003
|
__props__.__dict__["external_google_cloud_logging_user_config"] = external_google_cloud_logging_user_config
|
|
738
1004
|
__props__.__dict__["external_kafka_user_config"] = external_kafka_user_config
|
|
1005
|
+
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
739
1006
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
740
1007
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
1008
|
+
__props__.__dict__["external_prometheus_user_config"] = external_prometheus_user_config
|
|
741
1009
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
742
1010
|
__props__.__dict__["jolokia_user_config"] = jolokia_user_config
|
|
743
1011
|
__props__.__dict__["project"] = project
|
|
@@ -745,11 +1013,19 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
745
1013
|
__props__.__dict__["rsyslog_user_config"] = rsyslog_user_config
|
|
746
1014
|
return ServiceIntegrationEndpoint(resource_name, opts=opts, __props__=__props__)
|
|
747
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
|
+
|
|
748
1024
|
@property
|
|
749
1025
|
@pulumi.getter(name="datadogUserConfig")
|
|
750
1026
|
def datadog_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointDatadogUserConfig']]:
|
|
751
1027
|
"""
|
|
752
|
-
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
|
|
753
1029
|
"""
|
|
754
1030
|
return pulumi.get(self, "datadog_user_config")
|
|
755
1031
|
|
|
@@ -757,7 +1033,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
757
1033
|
@pulumi.getter(name="endpointConfig")
|
|
758
1034
|
def endpoint_config(self) -> pulumi.Output[Mapping[str, str]]:
|
|
759
1035
|
"""
|
|
760
|
-
|
|
1036
|
+
Backend configuration for the endpoint.
|
|
761
1037
|
"""
|
|
762
1038
|
return pulumi.get(self, "endpoint_config")
|
|
763
1039
|
|
|
@@ -765,7 +1041,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
765
1041
|
@pulumi.getter(name="endpointName")
|
|
766
1042
|
def endpoint_name(self) -> pulumi.Output[str]:
|
|
767
1043
|
"""
|
|
768
|
-
Name of the service integration endpoint
|
|
1044
|
+
Name of the service integration endpoint.
|
|
769
1045
|
"""
|
|
770
1046
|
return pulumi.get(self, "endpoint_name")
|
|
771
1047
|
|
|
@@ -773,7 +1049,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
773
1049
|
@pulumi.getter(name="endpointType")
|
|
774
1050
|
def endpoint_type(self) -> pulumi.Output[str]:
|
|
775
1051
|
"""
|
|
776
|
-
|
|
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`.
|
|
777
1053
|
"""
|
|
778
1054
|
return pulumi.get(self, "endpoint_type")
|
|
779
1055
|
|
|
@@ -781,7 +1057,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
781
1057
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
782
1058
|
def external_aws_cloudwatch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfig']]:
|
|
783
1059
|
"""
|
|
784
|
-
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
|
|
785
1061
|
"""
|
|
786
1062
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_config")
|
|
787
1063
|
|
|
@@ -789,15 +1065,31 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
789
1065
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfig")
|
|
790
1066
|
def external_aws_cloudwatch_metrics_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfig']]:
|
|
791
1067
|
"""
|
|
792
|
-
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
|
|
793
1069
|
"""
|
|
794
1070
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
795
1071
|
|
|
1072
|
+
@property
|
|
1073
|
+
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
1074
|
+
def external_aws_s3_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsS3UserConfig']]:
|
|
1075
|
+
"""
|
|
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
|
|
1077
|
+
"""
|
|
1078
|
+
return pulumi.get(self, "external_aws_s3_user_config")
|
|
1079
|
+
|
|
1080
|
+
@property
|
|
1081
|
+
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
1082
|
+
def external_clickhouse_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalClickhouseUserConfig']]:
|
|
1083
|
+
"""
|
|
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
|
|
1085
|
+
"""
|
|
1086
|
+
return pulumi.get(self, "external_clickhouse_user_config")
|
|
1087
|
+
|
|
796
1088
|
@property
|
|
797
1089
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
798
1090
|
def external_elasticsearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig']]:
|
|
799
1091
|
"""
|
|
800
|
-
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
|
|
801
1093
|
"""
|
|
802
1094
|
return pulumi.get(self, "external_elasticsearch_logs_user_config")
|
|
803
1095
|
|
|
@@ -805,7 +1097,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
805
1097
|
@pulumi.getter(name="externalGoogleCloudBigquery")
|
|
806
1098
|
def external_google_cloud_bigquery(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalGoogleCloudBigquery']]:
|
|
807
1099
|
"""
|
|
808
|
-
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
|
|
809
1101
|
"""
|
|
810
1102
|
return pulumi.get(self, "external_google_cloud_bigquery")
|
|
811
1103
|
|
|
@@ -813,7 +1105,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
813
1105
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfig")
|
|
814
1106
|
def external_google_cloud_logging_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfig']]:
|
|
815
1107
|
"""
|
|
816
|
-
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
|
|
817
1109
|
"""
|
|
818
1110
|
return pulumi.get(self, "external_google_cloud_logging_user_config")
|
|
819
1111
|
|
|
@@ -821,15 +1113,23 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
821
1113
|
@pulumi.getter(name="externalKafkaUserConfig")
|
|
822
1114
|
def external_kafka_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalKafkaUserConfig']]:
|
|
823
1115
|
"""
|
|
824
|
-
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
|
|
825
1117
|
"""
|
|
826
1118
|
return pulumi.get(self, "external_kafka_user_config")
|
|
827
1119
|
|
|
1120
|
+
@property
|
|
1121
|
+
@pulumi.getter(name="externalMysqlUserConfig")
|
|
1122
|
+
def external_mysql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalMysqlUserConfig']]:
|
|
1123
|
+
"""
|
|
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
|
|
1125
|
+
"""
|
|
1126
|
+
return pulumi.get(self, "external_mysql_user_config")
|
|
1127
|
+
|
|
828
1128
|
@property
|
|
829
1129
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
830
1130
|
def external_opensearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalOpensearchLogsUserConfig']]:
|
|
831
1131
|
"""
|
|
832
|
-
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
|
|
833
1133
|
"""
|
|
834
1134
|
return pulumi.get(self, "external_opensearch_logs_user_config")
|
|
835
1135
|
|
|
@@ -837,15 +1137,23 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
837
1137
|
@pulumi.getter(name="externalPostgresql")
|
|
838
1138
|
def external_postgresql(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalPostgresql']]:
|
|
839
1139
|
"""
|
|
840
|
-
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
|
|
841
1141
|
"""
|
|
842
1142
|
return pulumi.get(self, "external_postgresql")
|
|
843
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
|
+
|
|
844
1152
|
@property
|
|
845
1153
|
@pulumi.getter(name="externalSchemaRegistryUserConfig")
|
|
846
1154
|
def external_schema_registry_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalSchemaRegistryUserConfig']]:
|
|
847
1155
|
"""
|
|
848
|
-
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
|
|
849
1157
|
"""
|
|
850
1158
|
return pulumi.get(self, "external_schema_registry_user_config")
|
|
851
1159
|
|
|
@@ -853,7 +1161,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
853
1161
|
@pulumi.getter(name="jolokiaUserConfig")
|
|
854
1162
|
def jolokia_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointJolokiaUserConfig']]:
|
|
855
1163
|
"""
|
|
856
|
-
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
|
|
857
1165
|
"""
|
|
858
1166
|
return pulumi.get(self, "jolokia_user_config")
|
|
859
1167
|
|
|
@@ -861,7 +1169,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
861
1169
|
@pulumi.getter
|
|
862
1170
|
def project(self) -> pulumi.Output[str]:
|
|
863
1171
|
"""
|
|
864
|
-
Project the service integration endpoint
|
|
1172
|
+
Project the service integration endpoint is in.
|
|
865
1173
|
"""
|
|
866
1174
|
return pulumi.get(self, "project")
|
|
867
1175
|
|
|
@@ -869,7 +1177,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
869
1177
|
@pulumi.getter(name="prometheusUserConfig")
|
|
870
1178
|
def prometheus_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointPrometheusUserConfig']]:
|
|
871
1179
|
"""
|
|
872
|
-
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
|
|
873
1181
|
"""
|
|
874
1182
|
return pulumi.get(self, "prometheus_user_config")
|
|
875
1183
|
|
|
@@ -877,7 +1185,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
877
1185
|
@pulumi.getter(name="rsyslogUserConfig")
|
|
878
1186
|
def rsyslog_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointRsyslogUserConfig']]:
|
|
879
1187
|
"""
|
|
880
|
-
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
|
|
881
1189
|
"""
|
|
882
1190
|
return pulumi.get(self, "rsyslog_user_config")
|
|
883
1191
|
|