pulumi-aiven 6.13.0a1710156545__py3-none-any.whl → 6.31.0a1736849214__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.0a1736849214.dist-info}/METADATA +7 -6
- pulumi_aiven-6.31.0a1736849214.dist-info/RECORD +169 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736849214.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.0a1736849214.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
|
|
|
@@ -22,7 +27,10 @@ class GetServiceIntegrationEndpointResult:
|
|
|
22
27
|
"""
|
|
23
28
|
A collection of values returned by getServiceIntegrationEndpoint.
|
|
24
29
|
"""
|
|
25
|
-
def __init__(__self__, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
30
|
+
def __init__(__self__, autoscaler_user_configs=None, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_aws_s3_user_configs=None, external_clickhouse_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_mysql_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_prometheus_user_configs=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
31
|
+
if autoscaler_user_configs and not isinstance(autoscaler_user_configs, list):
|
|
32
|
+
raise TypeError("Expected argument 'autoscaler_user_configs' to be a list")
|
|
33
|
+
pulumi.set(__self__, "autoscaler_user_configs", autoscaler_user_configs)
|
|
26
34
|
if datadog_user_configs and not isinstance(datadog_user_configs, list):
|
|
27
35
|
raise TypeError("Expected argument 'datadog_user_configs' to be a list")
|
|
28
36
|
pulumi.set(__self__, "datadog_user_configs", datadog_user_configs)
|
|
@@ -41,6 +49,12 @@ class GetServiceIntegrationEndpointResult:
|
|
|
41
49
|
if external_aws_cloudwatch_metrics_user_configs and not isinstance(external_aws_cloudwatch_metrics_user_configs, list):
|
|
42
50
|
raise TypeError("Expected argument 'external_aws_cloudwatch_metrics_user_configs' to be a list")
|
|
43
51
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_configs", external_aws_cloudwatch_metrics_user_configs)
|
|
52
|
+
if external_aws_s3_user_configs and not isinstance(external_aws_s3_user_configs, list):
|
|
53
|
+
raise TypeError("Expected argument 'external_aws_s3_user_configs' to be a list")
|
|
54
|
+
pulumi.set(__self__, "external_aws_s3_user_configs", external_aws_s3_user_configs)
|
|
55
|
+
if external_clickhouse_user_configs and not isinstance(external_clickhouse_user_configs, list):
|
|
56
|
+
raise TypeError("Expected argument 'external_clickhouse_user_configs' to be a list")
|
|
57
|
+
pulumi.set(__self__, "external_clickhouse_user_configs", external_clickhouse_user_configs)
|
|
44
58
|
if external_elasticsearch_logs_user_configs and not isinstance(external_elasticsearch_logs_user_configs, list):
|
|
45
59
|
raise TypeError("Expected argument 'external_elasticsearch_logs_user_configs' to be a list")
|
|
46
60
|
pulumi.set(__self__, "external_elasticsearch_logs_user_configs", external_elasticsearch_logs_user_configs)
|
|
@@ -53,12 +67,18 @@ class GetServiceIntegrationEndpointResult:
|
|
|
53
67
|
if external_kafka_user_configs and not isinstance(external_kafka_user_configs, list):
|
|
54
68
|
raise TypeError("Expected argument 'external_kafka_user_configs' to be a list")
|
|
55
69
|
pulumi.set(__self__, "external_kafka_user_configs", external_kafka_user_configs)
|
|
70
|
+
if external_mysql_user_configs and not isinstance(external_mysql_user_configs, list):
|
|
71
|
+
raise TypeError("Expected argument 'external_mysql_user_configs' to be a list")
|
|
72
|
+
pulumi.set(__self__, "external_mysql_user_configs", external_mysql_user_configs)
|
|
56
73
|
if external_opensearch_logs_user_configs and not isinstance(external_opensearch_logs_user_configs, list):
|
|
57
74
|
raise TypeError("Expected argument 'external_opensearch_logs_user_configs' to be a list")
|
|
58
75
|
pulumi.set(__self__, "external_opensearch_logs_user_configs", external_opensearch_logs_user_configs)
|
|
59
76
|
if external_postgresqls and not isinstance(external_postgresqls, list):
|
|
60
77
|
raise TypeError("Expected argument 'external_postgresqls' to be a list")
|
|
61
78
|
pulumi.set(__self__, "external_postgresqls", external_postgresqls)
|
|
79
|
+
if external_prometheus_user_configs and not isinstance(external_prometheus_user_configs, list):
|
|
80
|
+
raise TypeError("Expected argument 'external_prometheus_user_configs' to be a list")
|
|
81
|
+
pulumi.set(__self__, "external_prometheus_user_configs", external_prometheus_user_configs)
|
|
62
82
|
if external_schema_registry_user_configs and not isinstance(external_schema_registry_user_configs, list):
|
|
63
83
|
raise TypeError("Expected argument 'external_schema_registry_user_configs' to be a list")
|
|
64
84
|
pulumi.set(__self__, "external_schema_registry_user_configs", external_schema_registry_user_configs)
|
|
@@ -78,11 +98,19 @@ class GetServiceIntegrationEndpointResult:
|
|
|
78
98
|
raise TypeError("Expected argument 'rsyslog_user_configs' to be a list")
|
|
79
99
|
pulumi.set(__self__, "rsyslog_user_configs", rsyslog_user_configs)
|
|
80
100
|
|
|
101
|
+
@property
|
|
102
|
+
@pulumi.getter(name="autoscalerUserConfigs")
|
|
103
|
+
def autoscaler_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointAutoscalerUserConfigResult']:
|
|
104
|
+
"""
|
|
105
|
+
Autoscaler user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "autoscaler_user_configs")
|
|
108
|
+
|
|
81
109
|
@property
|
|
82
110
|
@pulumi.getter(name="datadogUserConfigs")
|
|
83
111
|
def datadog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointDatadogUserConfigResult']:
|
|
84
112
|
"""
|
|
85
|
-
Datadog user configurable settings
|
|
113
|
+
Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
86
114
|
"""
|
|
87
115
|
return pulumi.get(self, "datadog_user_configs")
|
|
88
116
|
|
|
@@ -90,7 +118,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
90
118
|
@pulumi.getter(name="endpointConfig")
|
|
91
119
|
def endpoint_config(self) -> Mapping[str, str]:
|
|
92
120
|
"""
|
|
93
|
-
|
|
121
|
+
Backend configuration for the endpoint.
|
|
94
122
|
"""
|
|
95
123
|
return pulumi.get(self, "endpoint_config")
|
|
96
124
|
|
|
@@ -98,7 +126,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
98
126
|
@pulumi.getter(name="endpointName")
|
|
99
127
|
def endpoint_name(self) -> str:
|
|
100
128
|
"""
|
|
101
|
-
Name of the service integration endpoint
|
|
129
|
+
Name of the service integration endpoint.
|
|
102
130
|
"""
|
|
103
131
|
return pulumi.get(self, "endpoint_name")
|
|
104
132
|
|
|
@@ -106,7 +134,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
106
134
|
@pulumi.getter(name="endpointType")
|
|
107
135
|
def endpoint_type(self) -> str:
|
|
108
136
|
"""
|
|
109
|
-
|
|
137
|
+
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`.
|
|
110
138
|
"""
|
|
111
139
|
return pulumi.get(self, "endpoint_type")
|
|
112
140
|
|
|
@@ -114,7 +142,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
114
142
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfigs")
|
|
115
143
|
def external_aws_cloudwatch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigResult']:
|
|
116
144
|
"""
|
|
117
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
145
|
+
ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
118
146
|
"""
|
|
119
147
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_configs")
|
|
120
148
|
|
|
@@ -122,15 +150,31 @@ class GetServiceIntegrationEndpointResult:
|
|
|
122
150
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfigs")
|
|
123
151
|
def external_aws_cloudwatch_metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigResult']:
|
|
124
152
|
"""
|
|
125
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
153
|
+
ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
126
154
|
"""
|
|
127
155
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
|
|
128
156
|
|
|
157
|
+
@property
|
|
158
|
+
@pulumi.getter(name="externalAwsS3UserConfigs")
|
|
159
|
+
def external_aws_s3_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsS3UserConfigResult']:
|
|
160
|
+
"""
|
|
161
|
+
ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
162
|
+
"""
|
|
163
|
+
return pulumi.get(self, "external_aws_s3_user_configs")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter(name="externalClickhouseUserConfigs")
|
|
167
|
+
def external_clickhouse_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalClickhouseUserConfigResult']:
|
|
168
|
+
"""
|
|
169
|
+
ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "external_clickhouse_user_configs")
|
|
172
|
+
|
|
129
173
|
@property
|
|
130
174
|
@pulumi.getter(name="externalElasticsearchLogsUserConfigs")
|
|
131
175
|
def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalElasticsearchLogsUserConfigResult']:
|
|
132
176
|
"""
|
|
133
|
-
ExternalElasticsearchLogs user configurable settings
|
|
177
|
+
ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
134
178
|
"""
|
|
135
179
|
return pulumi.get(self, "external_elasticsearch_logs_user_configs")
|
|
136
180
|
|
|
@@ -138,7 +182,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
138
182
|
@pulumi.getter(name="externalGoogleCloudBigqueries")
|
|
139
183
|
def external_google_cloud_bigqueries(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult']:
|
|
140
184
|
"""
|
|
141
|
-
ExternalGoogleCloudBigquery user configurable settings
|
|
185
|
+
ExternalGoogleCloudBigquery user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
142
186
|
"""
|
|
143
187
|
return pulumi.get(self, "external_google_cloud_bigqueries")
|
|
144
188
|
|
|
@@ -146,7 +190,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
146
190
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfigs")
|
|
147
191
|
def external_google_cloud_logging_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigResult']:
|
|
148
192
|
"""
|
|
149
|
-
ExternalGoogleCloudLogging user configurable settings
|
|
193
|
+
ExternalGoogleCloudLogging user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
150
194
|
"""
|
|
151
195
|
return pulumi.get(self, "external_google_cloud_logging_user_configs")
|
|
152
196
|
|
|
@@ -154,15 +198,23 @@ class GetServiceIntegrationEndpointResult:
|
|
|
154
198
|
@pulumi.getter(name="externalKafkaUserConfigs")
|
|
155
199
|
def external_kafka_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalKafkaUserConfigResult']:
|
|
156
200
|
"""
|
|
157
|
-
ExternalKafka user configurable settings
|
|
201
|
+
ExternalKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
158
202
|
"""
|
|
159
203
|
return pulumi.get(self, "external_kafka_user_configs")
|
|
160
204
|
|
|
205
|
+
@property
|
|
206
|
+
@pulumi.getter(name="externalMysqlUserConfigs")
|
|
207
|
+
def external_mysql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalMysqlUserConfigResult']:
|
|
208
|
+
"""
|
|
209
|
+
ExternalMysql 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_mysql_user_configs")
|
|
212
|
+
|
|
161
213
|
@property
|
|
162
214
|
@pulumi.getter(name="externalOpensearchLogsUserConfigs")
|
|
163
215
|
def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalOpensearchLogsUserConfigResult']:
|
|
164
216
|
"""
|
|
165
|
-
ExternalOpensearchLogs user configurable settings
|
|
217
|
+
ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
166
218
|
"""
|
|
167
219
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
168
220
|
|
|
@@ -170,15 +222,23 @@ class GetServiceIntegrationEndpointResult:
|
|
|
170
222
|
@pulumi.getter(name="externalPostgresqls")
|
|
171
223
|
def external_postgresqls(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPostgresqlResult']:
|
|
172
224
|
"""
|
|
173
|
-
ExternalPostgresql user configurable settings
|
|
225
|
+
ExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
174
226
|
"""
|
|
175
227
|
return pulumi.get(self, "external_postgresqls")
|
|
176
228
|
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter(name="externalPrometheusUserConfigs")
|
|
231
|
+
def external_prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPrometheusUserConfigResult']:
|
|
232
|
+
"""
|
|
233
|
+
ExternalPrometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "external_prometheus_user_configs")
|
|
236
|
+
|
|
177
237
|
@property
|
|
178
238
|
@pulumi.getter(name="externalSchemaRegistryUserConfigs")
|
|
179
239
|
def external_schema_registry_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalSchemaRegistryUserConfigResult']:
|
|
180
240
|
"""
|
|
181
|
-
ExternalSchemaRegistry user configurable settings
|
|
241
|
+
ExternalSchemaRegistry user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
182
242
|
"""
|
|
183
243
|
return pulumi.get(self, "external_schema_registry_user_configs")
|
|
184
244
|
|
|
@@ -194,7 +254,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
194
254
|
@pulumi.getter(name="jolokiaUserConfigs")
|
|
195
255
|
def jolokia_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointJolokiaUserConfigResult']:
|
|
196
256
|
"""
|
|
197
|
-
Jolokia user configurable settings
|
|
257
|
+
Jolokia user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
198
258
|
"""
|
|
199
259
|
return pulumi.get(self, "jolokia_user_configs")
|
|
200
260
|
|
|
@@ -202,7 +262,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
202
262
|
@pulumi.getter
|
|
203
263
|
def project(self) -> str:
|
|
204
264
|
"""
|
|
205
|
-
Project the service integration endpoint
|
|
265
|
+
Project the service integration endpoint is in.
|
|
206
266
|
"""
|
|
207
267
|
return pulumi.get(self, "project")
|
|
208
268
|
|
|
@@ -210,7 +270,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
210
270
|
@pulumi.getter(name="prometheusUserConfigs")
|
|
211
271
|
def prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointPrometheusUserConfigResult']:
|
|
212
272
|
"""
|
|
213
|
-
Prometheus user configurable settings
|
|
273
|
+
Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
214
274
|
"""
|
|
215
275
|
return pulumi.get(self, "prometheus_user_configs")
|
|
216
276
|
|
|
@@ -218,7 +278,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
218
278
|
@pulumi.getter(name="rsyslogUserConfigs")
|
|
219
279
|
def rsyslog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointRsyslogUserConfigResult']:
|
|
220
280
|
"""
|
|
221
|
-
Rsyslog user configurable settings
|
|
281
|
+
Rsyslog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
222
282
|
"""
|
|
223
283
|
return pulumi.get(self, "rsyslog_user_configs")
|
|
224
284
|
|
|
@@ -229,18 +289,23 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
229
289
|
if False:
|
|
230
290
|
yield self
|
|
231
291
|
return GetServiceIntegrationEndpointResult(
|
|
292
|
+
autoscaler_user_configs=self.autoscaler_user_configs,
|
|
232
293
|
datadog_user_configs=self.datadog_user_configs,
|
|
233
294
|
endpoint_config=self.endpoint_config,
|
|
234
295
|
endpoint_name=self.endpoint_name,
|
|
235
296
|
endpoint_type=self.endpoint_type,
|
|
236
297
|
external_aws_cloudwatch_logs_user_configs=self.external_aws_cloudwatch_logs_user_configs,
|
|
237
298
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
299
|
+
external_aws_s3_user_configs=self.external_aws_s3_user_configs,
|
|
300
|
+
external_clickhouse_user_configs=self.external_clickhouse_user_configs,
|
|
238
301
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
239
302
|
external_google_cloud_bigqueries=self.external_google_cloud_bigqueries,
|
|
240
303
|
external_google_cloud_logging_user_configs=self.external_google_cloud_logging_user_configs,
|
|
241
304
|
external_kafka_user_configs=self.external_kafka_user_configs,
|
|
305
|
+
external_mysql_user_configs=self.external_mysql_user_configs,
|
|
242
306
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
243
307
|
external_postgresqls=self.external_postgresqls,
|
|
308
|
+
external_prometheus_user_configs=self.external_prometheus_user_configs,
|
|
244
309
|
external_schema_registry_user_configs=self.external_schema_registry_user_configs,
|
|
245
310
|
id=self.id,
|
|
246
311
|
jolokia_user_configs=self.jolokia_user_configs,
|
|
@@ -253,23 +318,21 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
253
318
|
project: Optional[str] = None,
|
|
254
319
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceIntegrationEndpointResult:
|
|
255
320
|
"""
|
|
256
|
-
|
|
321
|
+
Gets information about an integration endpoint.
|
|
257
322
|
|
|
258
323
|
## Example Usage
|
|
259
324
|
|
|
260
|
-
<!--Start PulumiCodeChooser -->
|
|
261
325
|
```python
|
|
262
326
|
import pulumi
|
|
263
327
|
import pulumi_aiven as aiven
|
|
264
328
|
|
|
265
|
-
|
|
266
|
-
endpoint_name="
|
|
329
|
+
example_datadog_endpoint = aiven.get_service_integration_endpoint(project=example_project["project"],
|
|
330
|
+
endpoint_name="Datadog endpoint")
|
|
267
331
|
```
|
|
268
|
-
<!--End PulumiCodeChooser -->
|
|
269
332
|
|
|
270
333
|
|
|
271
|
-
:param str endpoint_name: Name of the service integration endpoint
|
|
272
|
-
:param str project: Project the service integration endpoint
|
|
334
|
+
:param str endpoint_name: Name of the service integration endpoint.
|
|
335
|
+
:param str project: Project the service integration endpoint is in.
|
|
273
336
|
"""
|
|
274
337
|
__args__ = dict()
|
|
275
338
|
__args__['endpointName'] = endpoint_name
|
|
@@ -278,47 +341,75 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
278
341
|
__ret__ = pulumi.runtime.invoke('aiven:index/getServiceIntegrationEndpoint:getServiceIntegrationEndpoint', __args__, opts=opts, typ=GetServiceIntegrationEndpointResult).value
|
|
279
342
|
|
|
280
343
|
return AwaitableGetServiceIntegrationEndpointResult(
|
|
344
|
+
autoscaler_user_configs=pulumi.get(__ret__, 'autoscaler_user_configs'),
|
|
281
345
|
datadog_user_configs=pulumi.get(__ret__, 'datadog_user_configs'),
|
|
282
346
|
endpoint_config=pulumi.get(__ret__, 'endpoint_config'),
|
|
283
347
|
endpoint_name=pulumi.get(__ret__, 'endpoint_name'),
|
|
284
348
|
endpoint_type=pulumi.get(__ret__, 'endpoint_type'),
|
|
285
349
|
external_aws_cloudwatch_logs_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
286
350
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
351
|
+
external_aws_s3_user_configs=pulumi.get(__ret__, 'external_aws_s3_user_configs'),
|
|
352
|
+
external_clickhouse_user_configs=pulumi.get(__ret__, 'external_clickhouse_user_configs'),
|
|
287
353
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
288
354
|
external_google_cloud_bigqueries=pulumi.get(__ret__, 'external_google_cloud_bigqueries'),
|
|
289
355
|
external_google_cloud_logging_user_configs=pulumi.get(__ret__, 'external_google_cloud_logging_user_configs'),
|
|
290
356
|
external_kafka_user_configs=pulumi.get(__ret__, 'external_kafka_user_configs'),
|
|
357
|
+
external_mysql_user_configs=pulumi.get(__ret__, 'external_mysql_user_configs'),
|
|
291
358
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
292
359
|
external_postgresqls=pulumi.get(__ret__, 'external_postgresqls'),
|
|
360
|
+
external_prometheus_user_configs=pulumi.get(__ret__, 'external_prometheus_user_configs'),
|
|
293
361
|
external_schema_registry_user_configs=pulumi.get(__ret__, 'external_schema_registry_user_configs'),
|
|
294
362
|
id=pulumi.get(__ret__, 'id'),
|
|
295
363
|
jolokia_user_configs=pulumi.get(__ret__, 'jolokia_user_configs'),
|
|
296
364
|
project=pulumi.get(__ret__, 'project'),
|
|
297
365
|
prometheus_user_configs=pulumi.get(__ret__, 'prometheus_user_configs'),
|
|
298
366
|
rsyslog_user_configs=pulumi.get(__ret__, 'rsyslog_user_configs'))
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
@_utilities.lift_output_func(get_service_integration_endpoint)
|
|
302
367
|
def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
303
368
|
project: Optional[pulumi.Input[str]] = None,
|
|
304
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceIntegrationEndpointResult]:
|
|
369
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServiceIntegrationEndpointResult]:
|
|
305
370
|
"""
|
|
306
|
-
|
|
371
|
+
Gets information about an integration endpoint.
|
|
307
372
|
|
|
308
373
|
## Example Usage
|
|
309
374
|
|
|
310
|
-
<!--Start PulumiCodeChooser -->
|
|
311
375
|
```python
|
|
312
376
|
import pulumi
|
|
313
377
|
import pulumi_aiven as aiven
|
|
314
378
|
|
|
315
|
-
|
|
316
|
-
endpoint_name="
|
|
379
|
+
example_datadog_endpoint = aiven.get_service_integration_endpoint(project=example_project["project"],
|
|
380
|
+
endpoint_name="Datadog endpoint")
|
|
317
381
|
```
|
|
318
|
-
<!--End PulumiCodeChooser -->
|
|
319
382
|
|
|
320
383
|
|
|
321
|
-
:param str endpoint_name: Name of the service integration endpoint
|
|
322
|
-
:param str project: Project the service integration endpoint
|
|
384
|
+
:param str endpoint_name: Name of the service integration endpoint.
|
|
385
|
+
:param str project: Project the service integration endpoint is in.
|
|
323
386
|
"""
|
|
324
|
-
|
|
387
|
+
__args__ = dict()
|
|
388
|
+
__args__['endpointName'] = endpoint_name
|
|
389
|
+
__args__['project'] = project
|
|
390
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
391
|
+
__ret__ = pulumi.runtime.invoke_output('aiven:index/getServiceIntegrationEndpoint:getServiceIntegrationEndpoint', __args__, opts=opts, typ=GetServiceIntegrationEndpointResult)
|
|
392
|
+
return __ret__.apply(lambda __response__: GetServiceIntegrationEndpointResult(
|
|
393
|
+
autoscaler_user_configs=pulumi.get(__response__, 'autoscaler_user_configs'),
|
|
394
|
+
datadog_user_configs=pulumi.get(__response__, 'datadog_user_configs'),
|
|
395
|
+
endpoint_config=pulumi.get(__response__, 'endpoint_config'),
|
|
396
|
+
endpoint_name=pulumi.get(__response__, 'endpoint_name'),
|
|
397
|
+
endpoint_type=pulumi.get(__response__, 'endpoint_type'),
|
|
398
|
+
external_aws_cloudwatch_logs_user_configs=pulumi.get(__response__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
399
|
+
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__response__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
400
|
+
external_aws_s3_user_configs=pulumi.get(__response__, 'external_aws_s3_user_configs'),
|
|
401
|
+
external_clickhouse_user_configs=pulumi.get(__response__, 'external_clickhouse_user_configs'),
|
|
402
|
+
external_elasticsearch_logs_user_configs=pulumi.get(__response__, 'external_elasticsearch_logs_user_configs'),
|
|
403
|
+
external_google_cloud_bigqueries=pulumi.get(__response__, 'external_google_cloud_bigqueries'),
|
|
404
|
+
external_google_cloud_logging_user_configs=pulumi.get(__response__, 'external_google_cloud_logging_user_configs'),
|
|
405
|
+
external_kafka_user_configs=pulumi.get(__response__, 'external_kafka_user_configs'),
|
|
406
|
+
external_mysql_user_configs=pulumi.get(__response__, 'external_mysql_user_configs'),
|
|
407
|
+
external_opensearch_logs_user_configs=pulumi.get(__response__, 'external_opensearch_logs_user_configs'),
|
|
408
|
+
external_postgresqls=pulumi.get(__response__, 'external_postgresqls'),
|
|
409
|
+
external_prometheus_user_configs=pulumi.get(__response__, 'external_prometheus_user_configs'),
|
|
410
|
+
external_schema_registry_user_configs=pulumi.get(__response__, 'external_schema_registry_user_configs'),
|
|
411
|
+
id=pulumi.get(__response__, 'id'),
|
|
412
|
+
jolokia_user_configs=pulumi.get(__response__, 'jolokia_user_configs'),
|
|
413
|
+
project=pulumi.get(__response__, 'project'),
|
|
414
|
+
prometheus_user_configs=pulumi.get(__response__, 'prometheus_user_configs'),
|
|
415
|
+
rsyslog_user_configs=pulumi.get(__response__, 'rsyslog_user_configs')))
|