pulumi-aiven 6.28.0__py3-none-any.whl → 6.28.0a1730178849__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +203 -635
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_component.py +9 -9
- pulumi_aiven/get_service_integration.py +17 -17
- pulumi_aiven/get_service_integration_endpoint.py +31 -59
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +8 -15
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_group_project.py +9 -17
- pulumi_aiven/organization_permission.py +49 -49
- pulumi_aiven/outputs.py +263 -883
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +7 -15
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +123 -139
- pulumi_aiven/service_integration_endpoint.py +140 -302
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.28.0.dist-info → pulumi_aiven-6.28.0a1730178849.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.28.0.dist-info → pulumi_aiven-6.28.0a1730178849.dist-info}/RECORD +54 -54
- {pulumi_aiven-6.28.0.dist-info → pulumi_aiven-6.28.0a1730178849.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.28.0.dist-info → pulumi_aiven-6.28.0a1730178849.dist-info}/top_level.txt +0 -0
|
@@ -86,7 +86,7 @@ class GetServiceComponentResult:
|
|
|
86
86
|
@pulumi.getter(name="kafkaAuthenticationMethod")
|
|
87
87
|
def kafka_authentication_method(self) -> Optional[str]:
|
|
88
88
|
"""
|
|
89
|
-
Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
89
|
+
Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "kafka_authentication_method")
|
|
92
92
|
|
|
@@ -110,7 +110,7 @@ class GetServiceComponentResult:
|
|
|
110
110
|
@pulumi.getter
|
|
111
111
|
def route(self) -> Optional[str]:
|
|
112
112
|
"""
|
|
113
|
-
Network access route
|
|
113
|
+
Network access route
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "route")
|
|
116
116
|
|
|
@@ -134,7 +134,7 @@ class GetServiceComponentResult:
|
|
|
134
134
|
@pulumi.getter
|
|
135
135
|
def usage(self) -> Optional[str]:
|
|
136
136
|
"""
|
|
137
|
-
DNS usage name
|
|
137
|
+
DNS usage name
|
|
138
138
|
"""
|
|
139
139
|
return pulumi.get(self, "usage")
|
|
140
140
|
|
|
@@ -185,12 +185,12 @@ def get_service_component(component: Optional[str] = None,
|
|
|
185
185
|
|
|
186
186
|
|
|
187
187
|
:param str component: Service component name
|
|
188
|
-
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
188
|
+
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
189
189
|
:param str project: Project name
|
|
190
|
-
:param str route: Network access route
|
|
190
|
+
:param str route: Network access route
|
|
191
191
|
:param str service_name: Service name
|
|
192
192
|
:param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
|
|
193
|
-
:param str usage: DNS usage name
|
|
193
|
+
:param str usage: DNS usage name
|
|
194
194
|
"""
|
|
195
195
|
__args__ = dict()
|
|
196
196
|
__args__['component'] = component
|
|
@@ -242,12 +242,12 @@ def get_service_component_output(component: Optional[pulumi.Input[str]] = None,
|
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
:param str component: Service component name
|
|
245
|
-
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
245
|
+
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
|
|
246
246
|
:param str project: Project name
|
|
247
|
-
:param str route: Network access route
|
|
247
|
+
:param str route: Network access route
|
|
248
248
|
:param str service_name: Service name
|
|
249
249
|
:param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
|
|
250
|
-
:param str usage: DNS usage name
|
|
250
|
+
:param str usage: DNS usage name
|
|
251
251
|
"""
|
|
252
252
|
__args__ = dict()
|
|
253
253
|
__args__['component'] = component
|
|
@@ -99,7 +99,7 @@ class GetServiceIntegrationResult:
|
|
|
99
99
|
@pulumi.getter(name="clickhouseKafkaUserConfigs")
|
|
100
100
|
def clickhouse_kafka_user_configs(self) -> Sequence['outputs.GetServiceIntegrationClickhouseKafkaUserConfigResult']:
|
|
101
101
|
"""
|
|
102
|
-
ClickhouseKafka user configurable settings
|
|
102
|
+
ClickhouseKafka user configurable settings
|
|
103
103
|
"""
|
|
104
104
|
return pulumi.get(self, "clickhouse_kafka_user_configs")
|
|
105
105
|
|
|
@@ -107,7 +107,7 @@ class GetServiceIntegrationResult:
|
|
|
107
107
|
@pulumi.getter(name="clickhousePostgresqlUserConfigs")
|
|
108
108
|
def clickhouse_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationClickhousePostgresqlUserConfigResult']:
|
|
109
109
|
"""
|
|
110
|
-
ClickhousePostgresql user configurable settings
|
|
110
|
+
ClickhousePostgresql user configurable settings
|
|
111
111
|
"""
|
|
112
112
|
return pulumi.get(self, "clickhouse_postgresql_user_configs")
|
|
113
113
|
|
|
@@ -115,7 +115,7 @@ class GetServiceIntegrationResult:
|
|
|
115
115
|
@pulumi.getter(name="datadogUserConfigs")
|
|
116
116
|
def datadog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationDatadogUserConfigResult']:
|
|
117
117
|
"""
|
|
118
|
-
Datadog user configurable settings
|
|
118
|
+
Datadog user configurable settings
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "datadog_user_configs")
|
|
121
121
|
|
|
@@ -139,7 +139,7 @@ class GetServiceIntegrationResult:
|
|
|
139
139
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfigs")
|
|
140
140
|
def external_aws_cloudwatch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalAwsCloudwatchLogsUserConfigResult']:
|
|
141
141
|
"""
|
|
142
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
142
|
+
ExternalAwsCloudwatchLogs user configurable settings
|
|
143
143
|
"""
|
|
144
144
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_configs")
|
|
145
145
|
|
|
@@ -147,7 +147,7 @@ class GetServiceIntegrationResult:
|
|
|
147
147
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfigs")
|
|
148
148
|
def external_aws_cloudwatch_metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalAwsCloudwatchMetricsUserConfigResult']:
|
|
149
149
|
"""
|
|
150
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
150
|
+
ExternalAwsCloudwatchMetrics user configurable settings
|
|
151
151
|
"""
|
|
152
152
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
|
|
153
153
|
|
|
@@ -155,7 +155,7 @@ class GetServiceIntegrationResult:
|
|
|
155
155
|
@pulumi.getter(name="externalElasticsearchLogsUserConfigs")
|
|
156
156
|
def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalElasticsearchLogsUserConfigResult']:
|
|
157
157
|
"""
|
|
158
|
-
ExternalElasticsearchLogs user configurable settings
|
|
158
|
+
ExternalElasticsearchLogs user configurable settings
|
|
159
159
|
"""
|
|
160
160
|
return pulumi.get(self, "external_elasticsearch_logs_user_configs")
|
|
161
161
|
|
|
@@ -163,7 +163,7 @@ class GetServiceIntegrationResult:
|
|
|
163
163
|
@pulumi.getter(name="externalOpensearchLogsUserConfigs")
|
|
164
164
|
def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalOpensearchLogsUserConfigResult']:
|
|
165
165
|
"""
|
|
166
|
-
ExternalOpensearchLogs user configurable settings
|
|
166
|
+
ExternalOpensearchLogs user configurable settings
|
|
167
167
|
"""
|
|
168
168
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
169
169
|
|
|
@@ -171,7 +171,7 @@ class GetServiceIntegrationResult:
|
|
|
171
171
|
@pulumi.getter(name="flinkExternalPostgresqlUserConfigs")
|
|
172
172
|
def flink_external_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationFlinkExternalPostgresqlUserConfigResult']:
|
|
173
173
|
"""
|
|
174
|
-
FlinkExternalPostgresql user configurable settings
|
|
174
|
+
FlinkExternalPostgresql user configurable settings
|
|
175
175
|
"""
|
|
176
176
|
return pulumi.get(self, "flink_external_postgresql_user_configs")
|
|
177
177
|
|
|
@@ -195,7 +195,7 @@ class GetServiceIntegrationResult:
|
|
|
195
195
|
@pulumi.getter(name="integrationType")
|
|
196
196
|
def integration_type(self) -> str:
|
|
197
197
|
"""
|
|
198
|
-
Type of the service integration.
|
|
198
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
199
199
|
"""
|
|
200
200
|
return pulumi.get(self, "integration_type")
|
|
201
201
|
|
|
@@ -203,7 +203,7 @@ class GetServiceIntegrationResult:
|
|
|
203
203
|
@pulumi.getter(name="kafkaConnectUserConfigs")
|
|
204
204
|
def kafka_connect_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaConnectUserConfigResult']:
|
|
205
205
|
"""
|
|
206
|
-
KafkaConnect user configurable settings
|
|
206
|
+
KafkaConnect user configurable settings
|
|
207
207
|
"""
|
|
208
208
|
return pulumi.get(self, "kafka_connect_user_configs")
|
|
209
209
|
|
|
@@ -211,7 +211,7 @@ class GetServiceIntegrationResult:
|
|
|
211
211
|
@pulumi.getter(name="kafkaLogsUserConfigs")
|
|
212
212
|
def kafka_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaLogsUserConfigResult']:
|
|
213
213
|
"""
|
|
214
|
-
KafkaLogs user configurable settings
|
|
214
|
+
KafkaLogs user configurable settings
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "kafka_logs_user_configs")
|
|
217
217
|
|
|
@@ -219,7 +219,7 @@ class GetServiceIntegrationResult:
|
|
|
219
219
|
@pulumi.getter(name="kafkaMirrormakerUserConfigs")
|
|
220
220
|
def kafka_mirrormaker_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaMirrormakerUserConfigResult']:
|
|
221
221
|
"""
|
|
222
|
-
KafkaMirrormaker user configurable settings
|
|
222
|
+
KafkaMirrormaker user configurable settings
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "kafka_mirrormaker_user_configs")
|
|
225
225
|
|
|
@@ -227,7 +227,7 @@ class GetServiceIntegrationResult:
|
|
|
227
227
|
@pulumi.getter(name="logsUserConfigs")
|
|
228
228
|
def logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationLogsUserConfigResult']:
|
|
229
229
|
"""
|
|
230
|
-
Logs user configurable settings
|
|
230
|
+
Logs user configurable settings
|
|
231
231
|
"""
|
|
232
232
|
return pulumi.get(self, "logs_user_configs")
|
|
233
233
|
|
|
@@ -235,7 +235,7 @@ class GetServiceIntegrationResult:
|
|
|
235
235
|
@pulumi.getter(name="metricsUserConfigs")
|
|
236
236
|
def metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationMetricsUserConfigResult']:
|
|
237
237
|
"""
|
|
238
|
-
Metrics user configurable settings
|
|
238
|
+
Metrics user configurable settings
|
|
239
239
|
"""
|
|
240
240
|
return pulumi.get(self, "metrics_user_configs")
|
|
241
241
|
|
|
@@ -251,7 +251,7 @@ class GetServiceIntegrationResult:
|
|
|
251
251
|
@pulumi.getter(name="prometheusUserConfigs")
|
|
252
252
|
def prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationPrometheusUserConfigResult']:
|
|
253
253
|
"""
|
|
254
|
-
Prometheus user configurable settings
|
|
254
|
+
Prometheus user configurable settings
|
|
255
255
|
"""
|
|
256
256
|
return pulumi.get(self, "prometheus_user_configs")
|
|
257
257
|
|
|
@@ -324,7 +324,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
324
324
|
|
|
325
325
|
|
|
326
326
|
:param str destination_service_name: Destination service for the integration.
|
|
327
|
-
:param str integration_type: Type of the service integration.
|
|
327
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
328
328
|
:param str project: Project the integration belongs to.
|
|
329
329
|
:param str source_service_name: Source service for the integration (if any)
|
|
330
330
|
"""
|
|
@@ -381,7 +381,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
|
|
|
381
381
|
|
|
382
382
|
|
|
383
383
|
:param str destination_service_name: Destination service for the integration.
|
|
384
|
-
:param str integration_type: Type of the service integration.
|
|
384
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
385
385
|
:param str project: Project the integration belongs to.
|
|
386
386
|
:param str source_service_name: Source service for the integration (if any)
|
|
387
387
|
"""
|
|
@@ -27,10 +27,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getServiceIntegrationEndpoint.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__,
|
|
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)
|
|
30
|
+
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_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_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
34
31
|
if datadog_user_configs and not isinstance(datadog_user_configs, list):
|
|
35
32
|
raise TypeError("Expected argument 'datadog_user_configs' to be a list")
|
|
36
33
|
pulumi.set(__self__, "datadog_user_configs", datadog_user_configs)
|
|
@@ -76,9 +73,6 @@ class GetServiceIntegrationEndpointResult:
|
|
|
76
73
|
if external_postgresqls and not isinstance(external_postgresqls, list):
|
|
77
74
|
raise TypeError("Expected argument 'external_postgresqls' to be a list")
|
|
78
75
|
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)
|
|
82
76
|
if external_schema_registry_user_configs and not isinstance(external_schema_registry_user_configs, list):
|
|
83
77
|
raise TypeError("Expected argument 'external_schema_registry_user_configs' to be a list")
|
|
84
78
|
pulumi.set(__self__, "external_schema_registry_user_configs", external_schema_registry_user_configs)
|
|
@@ -98,19 +92,11 @@ class GetServiceIntegrationEndpointResult:
|
|
|
98
92
|
raise TypeError("Expected argument 'rsyslog_user_configs' to be a list")
|
|
99
93
|
pulumi.set(__self__, "rsyslog_user_configs", rsyslog_user_configs)
|
|
100
94
|
|
|
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
|
-
|
|
109
95
|
@property
|
|
110
96
|
@pulumi.getter(name="datadogUserConfigs")
|
|
111
97
|
def datadog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointDatadogUserConfigResult']:
|
|
112
98
|
"""
|
|
113
|
-
Datadog user configurable settings
|
|
99
|
+
Datadog user configurable settings
|
|
114
100
|
"""
|
|
115
101
|
return pulumi.get(self, "datadog_user_configs")
|
|
116
102
|
|
|
@@ -118,7 +104,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
118
104
|
@pulumi.getter(name="endpointConfig")
|
|
119
105
|
def endpoint_config(self) -> Mapping[str, str]:
|
|
120
106
|
"""
|
|
121
|
-
|
|
107
|
+
Integration endpoint specific backend configuration
|
|
122
108
|
"""
|
|
123
109
|
return pulumi.get(self, "endpoint_config")
|
|
124
110
|
|
|
@@ -126,7 +112,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
126
112
|
@pulumi.getter(name="endpointName")
|
|
127
113
|
def endpoint_name(self) -> str:
|
|
128
114
|
"""
|
|
129
|
-
Name of the service integration endpoint
|
|
115
|
+
Name of the service integration endpoint
|
|
130
116
|
"""
|
|
131
117
|
return pulumi.get(self, "endpoint_name")
|
|
132
118
|
|
|
@@ -134,7 +120,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
134
120
|
@pulumi.getter(name="endpointType")
|
|
135
121
|
def endpoint_type(self) -> str:
|
|
136
122
|
"""
|
|
137
|
-
|
|
123
|
+
Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus`, `rsyslog`
|
|
138
124
|
"""
|
|
139
125
|
return pulumi.get(self, "endpoint_type")
|
|
140
126
|
|
|
@@ -142,7 +128,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
142
128
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfigs")
|
|
143
129
|
def external_aws_cloudwatch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigResult']:
|
|
144
130
|
"""
|
|
145
|
-
ExternalAwsCloudwatchLogs user configurable settings
|
|
131
|
+
ExternalAwsCloudwatchLogs user configurable settings
|
|
146
132
|
"""
|
|
147
133
|
return pulumi.get(self, "external_aws_cloudwatch_logs_user_configs")
|
|
148
134
|
|
|
@@ -150,7 +136,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
150
136
|
@pulumi.getter(name="externalAwsCloudwatchMetricsUserConfigs")
|
|
151
137
|
def external_aws_cloudwatch_metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigResult']:
|
|
152
138
|
"""
|
|
153
|
-
ExternalAwsCloudwatchMetrics user configurable settings
|
|
139
|
+
ExternalAwsCloudwatchMetrics user configurable settings
|
|
154
140
|
"""
|
|
155
141
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
|
|
156
142
|
|
|
@@ -158,7 +144,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
158
144
|
@pulumi.getter(name="externalAwsS3UserConfigs")
|
|
159
145
|
def external_aws_s3_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsS3UserConfigResult']:
|
|
160
146
|
"""
|
|
161
|
-
ExternalAwsS3 user configurable settings
|
|
147
|
+
ExternalAwsS3 user configurable settings
|
|
162
148
|
"""
|
|
163
149
|
return pulumi.get(self, "external_aws_s3_user_configs")
|
|
164
150
|
|
|
@@ -166,7 +152,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
166
152
|
@pulumi.getter(name="externalClickhouseUserConfigs")
|
|
167
153
|
def external_clickhouse_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalClickhouseUserConfigResult']:
|
|
168
154
|
"""
|
|
169
|
-
ExternalClickhouse user configurable settings
|
|
155
|
+
ExternalClickhouse user configurable settings
|
|
170
156
|
"""
|
|
171
157
|
return pulumi.get(self, "external_clickhouse_user_configs")
|
|
172
158
|
|
|
@@ -174,7 +160,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
174
160
|
@pulumi.getter(name="externalElasticsearchLogsUserConfigs")
|
|
175
161
|
def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalElasticsearchLogsUserConfigResult']:
|
|
176
162
|
"""
|
|
177
|
-
ExternalElasticsearchLogs user configurable settings
|
|
163
|
+
ExternalElasticsearchLogs user configurable settings
|
|
178
164
|
"""
|
|
179
165
|
return pulumi.get(self, "external_elasticsearch_logs_user_configs")
|
|
180
166
|
|
|
@@ -182,7 +168,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
182
168
|
@pulumi.getter(name="externalGoogleCloudBigqueries")
|
|
183
169
|
def external_google_cloud_bigqueries(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult']:
|
|
184
170
|
"""
|
|
185
|
-
ExternalGoogleCloudBigquery user configurable settings
|
|
171
|
+
ExternalGoogleCloudBigquery user configurable settings
|
|
186
172
|
"""
|
|
187
173
|
return pulumi.get(self, "external_google_cloud_bigqueries")
|
|
188
174
|
|
|
@@ -190,7 +176,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
190
176
|
@pulumi.getter(name="externalGoogleCloudLoggingUserConfigs")
|
|
191
177
|
def external_google_cloud_logging_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigResult']:
|
|
192
178
|
"""
|
|
193
|
-
ExternalGoogleCloudLogging user configurable settings
|
|
179
|
+
ExternalGoogleCloudLogging user configurable settings
|
|
194
180
|
"""
|
|
195
181
|
return pulumi.get(self, "external_google_cloud_logging_user_configs")
|
|
196
182
|
|
|
@@ -198,7 +184,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
198
184
|
@pulumi.getter(name="externalKafkaUserConfigs")
|
|
199
185
|
def external_kafka_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalKafkaUserConfigResult']:
|
|
200
186
|
"""
|
|
201
|
-
ExternalKafka user configurable settings
|
|
187
|
+
ExternalKafka user configurable settings
|
|
202
188
|
"""
|
|
203
189
|
return pulumi.get(self, "external_kafka_user_configs")
|
|
204
190
|
|
|
@@ -206,7 +192,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
206
192
|
@pulumi.getter(name="externalMysqlUserConfigs")
|
|
207
193
|
def external_mysql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalMysqlUserConfigResult']:
|
|
208
194
|
"""
|
|
209
|
-
ExternalMysql user configurable settings
|
|
195
|
+
ExternalMysql user configurable settings
|
|
210
196
|
"""
|
|
211
197
|
return pulumi.get(self, "external_mysql_user_configs")
|
|
212
198
|
|
|
@@ -214,7 +200,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
214
200
|
@pulumi.getter(name="externalOpensearchLogsUserConfigs")
|
|
215
201
|
def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalOpensearchLogsUserConfigResult']:
|
|
216
202
|
"""
|
|
217
|
-
ExternalOpensearchLogs user configurable settings
|
|
203
|
+
ExternalOpensearchLogs user configurable settings
|
|
218
204
|
"""
|
|
219
205
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
220
206
|
|
|
@@ -222,23 +208,15 @@ class GetServiceIntegrationEndpointResult:
|
|
|
222
208
|
@pulumi.getter(name="externalPostgresqls")
|
|
223
209
|
def external_postgresqls(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalPostgresqlResult']:
|
|
224
210
|
"""
|
|
225
|
-
ExternalPostgresql user configurable settings
|
|
211
|
+
ExternalPostgresql user configurable settings
|
|
226
212
|
"""
|
|
227
213
|
return pulumi.get(self, "external_postgresqls")
|
|
228
214
|
|
|
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
|
-
|
|
237
215
|
@property
|
|
238
216
|
@pulumi.getter(name="externalSchemaRegistryUserConfigs")
|
|
239
217
|
def external_schema_registry_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalSchemaRegistryUserConfigResult']:
|
|
240
218
|
"""
|
|
241
|
-
ExternalSchemaRegistry user configurable settings
|
|
219
|
+
ExternalSchemaRegistry user configurable settings
|
|
242
220
|
"""
|
|
243
221
|
return pulumi.get(self, "external_schema_registry_user_configs")
|
|
244
222
|
|
|
@@ -254,7 +232,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
254
232
|
@pulumi.getter(name="jolokiaUserConfigs")
|
|
255
233
|
def jolokia_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointJolokiaUserConfigResult']:
|
|
256
234
|
"""
|
|
257
|
-
Jolokia user configurable settings
|
|
235
|
+
Jolokia user configurable settings
|
|
258
236
|
"""
|
|
259
237
|
return pulumi.get(self, "jolokia_user_configs")
|
|
260
238
|
|
|
@@ -262,7 +240,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
262
240
|
@pulumi.getter
|
|
263
241
|
def project(self) -> str:
|
|
264
242
|
"""
|
|
265
|
-
Project the service integration endpoint
|
|
243
|
+
Project the service integration endpoint belongs to
|
|
266
244
|
"""
|
|
267
245
|
return pulumi.get(self, "project")
|
|
268
246
|
|
|
@@ -270,7 +248,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
270
248
|
@pulumi.getter(name="prometheusUserConfigs")
|
|
271
249
|
def prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointPrometheusUserConfigResult']:
|
|
272
250
|
"""
|
|
273
|
-
Prometheus user configurable settings
|
|
251
|
+
Prometheus user configurable settings
|
|
274
252
|
"""
|
|
275
253
|
return pulumi.get(self, "prometheus_user_configs")
|
|
276
254
|
|
|
@@ -278,7 +256,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
278
256
|
@pulumi.getter(name="rsyslogUserConfigs")
|
|
279
257
|
def rsyslog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointRsyslogUserConfigResult']:
|
|
280
258
|
"""
|
|
281
|
-
Rsyslog user configurable settings
|
|
259
|
+
Rsyslog user configurable settings
|
|
282
260
|
"""
|
|
283
261
|
return pulumi.get(self, "rsyslog_user_configs")
|
|
284
262
|
|
|
@@ -289,7 +267,6 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
289
267
|
if False:
|
|
290
268
|
yield self
|
|
291
269
|
return GetServiceIntegrationEndpointResult(
|
|
292
|
-
autoscaler_user_configs=self.autoscaler_user_configs,
|
|
293
270
|
datadog_user_configs=self.datadog_user_configs,
|
|
294
271
|
endpoint_config=self.endpoint_config,
|
|
295
272
|
endpoint_name=self.endpoint_name,
|
|
@@ -305,7 +282,6 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
305
282
|
external_mysql_user_configs=self.external_mysql_user_configs,
|
|
306
283
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
307
284
|
external_postgresqls=self.external_postgresqls,
|
|
308
|
-
external_prometheus_user_configs=self.external_prometheus_user_configs,
|
|
309
285
|
external_schema_registry_user_configs=self.external_schema_registry_user_configs,
|
|
310
286
|
id=self.id,
|
|
311
287
|
jolokia_user_configs=self.jolokia_user_configs,
|
|
@@ -318,7 +294,7 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
318
294
|
project: Optional[str] = None,
|
|
319
295
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceIntegrationEndpointResult:
|
|
320
296
|
"""
|
|
321
|
-
|
|
297
|
+
The Service Integration Endpoint data source provides information about the existing Aiven Service Integration Endpoint.
|
|
322
298
|
|
|
323
299
|
## Example Usage
|
|
324
300
|
|
|
@@ -326,13 +302,13 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
326
302
|
import pulumi
|
|
327
303
|
import pulumi_aiven as aiven
|
|
328
304
|
|
|
329
|
-
|
|
330
|
-
endpoint_name="
|
|
305
|
+
myendpoint = aiven.get_service_integration_endpoint(project=myproject["project"],
|
|
306
|
+
endpoint_name="<ENDPOINT_NAME>")
|
|
331
307
|
```
|
|
332
308
|
|
|
333
309
|
|
|
334
|
-
:param str endpoint_name: Name of the service integration endpoint
|
|
335
|
-
:param str project: Project the service integration endpoint
|
|
310
|
+
:param str endpoint_name: Name of the service integration endpoint
|
|
311
|
+
:param str project: Project the service integration endpoint belongs to
|
|
336
312
|
"""
|
|
337
313
|
__args__ = dict()
|
|
338
314
|
__args__['endpointName'] = endpoint_name
|
|
@@ -341,7 +317,6 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
341
317
|
__ret__ = pulumi.runtime.invoke('aiven:index/getServiceIntegrationEndpoint:getServiceIntegrationEndpoint', __args__, opts=opts, typ=GetServiceIntegrationEndpointResult).value
|
|
342
318
|
|
|
343
319
|
return AwaitableGetServiceIntegrationEndpointResult(
|
|
344
|
-
autoscaler_user_configs=pulumi.get(__ret__, 'autoscaler_user_configs'),
|
|
345
320
|
datadog_user_configs=pulumi.get(__ret__, 'datadog_user_configs'),
|
|
346
321
|
endpoint_config=pulumi.get(__ret__, 'endpoint_config'),
|
|
347
322
|
endpoint_name=pulumi.get(__ret__, 'endpoint_name'),
|
|
@@ -357,7 +332,6 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
357
332
|
external_mysql_user_configs=pulumi.get(__ret__, 'external_mysql_user_configs'),
|
|
358
333
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
359
334
|
external_postgresqls=pulumi.get(__ret__, 'external_postgresqls'),
|
|
360
|
-
external_prometheus_user_configs=pulumi.get(__ret__, 'external_prometheus_user_configs'),
|
|
361
335
|
external_schema_registry_user_configs=pulumi.get(__ret__, 'external_schema_registry_user_configs'),
|
|
362
336
|
id=pulumi.get(__ret__, 'id'),
|
|
363
337
|
jolokia_user_configs=pulumi.get(__ret__, 'jolokia_user_configs'),
|
|
@@ -368,7 +342,7 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
|
|
|
368
342
|
project: Optional[pulumi.Input[str]] = None,
|
|
369
343
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceIntegrationEndpointResult]:
|
|
370
344
|
"""
|
|
371
|
-
|
|
345
|
+
The Service Integration Endpoint data source provides information about the existing Aiven Service Integration Endpoint.
|
|
372
346
|
|
|
373
347
|
## Example Usage
|
|
374
348
|
|
|
@@ -376,13 +350,13 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
|
|
|
376
350
|
import pulumi
|
|
377
351
|
import pulumi_aiven as aiven
|
|
378
352
|
|
|
379
|
-
|
|
380
|
-
endpoint_name="
|
|
353
|
+
myendpoint = aiven.get_service_integration_endpoint(project=myproject["project"],
|
|
354
|
+
endpoint_name="<ENDPOINT_NAME>")
|
|
381
355
|
```
|
|
382
356
|
|
|
383
357
|
|
|
384
|
-
:param str endpoint_name: Name of the service integration endpoint
|
|
385
|
-
:param str project: Project the service integration endpoint
|
|
358
|
+
:param str endpoint_name: Name of the service integration endpoint
|
|
359
|
+
:param str project: Project the service integration endpoint belongs to
|
|
386
360
|
"""
|
|
387
361
|
__args__ = dict()
|
|
388
362
|
__args__['endpointName'] = endpoint_name
|
|
@@ -390,7 +364,6 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
|
|
|
390
364
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
391
365
|
__ret__ = pulumi.runtime.invoke_output('aiven:index/getServiceIntegrationEndpoint:getServiceIntegrationEndpoint', __args__, opts=opts, typ=GetServiceIntegrationEndpointResult)
|
|
392
366
|
return __ret__.apply(lambda __response__: GetServiceIntegrationEndpointResult(
|
|
393
|
-
autoscaler_user_configs=pulumi.get(__response__, 'autoscaler_user_configs'),
|
|
394
367
|
datadog_user_configs=pulumi.get(__response__, 'datadog_user_configs'),
|
|
395
368
|
endpoint_config=pulumi.get(__response__, 'endpoint_config'),
|
|
396
369
|
endpoint_name=pulumi.get(__response__, 'endpoint_name'),
|
|
@@ -406,7 +379,6 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
|
|
|
406
379
|
external_mysql_user_configs=pulumi.get(__response__, 'external_mysql_user_configs'),
|
|
407
380
|
external_opensearch_logs_user_configs=pulumi.get(__response__, 'external_opensearch_logs_user_configs'),
|
|
408
381
|
external_postgresqls=pulumi.get(__response__, 'external_postgresqls'),
|
|
409
|
-
external_prometheus_user_configs=pulumi.get(__response__, 'external_prometheus_user_configs'),
|
|
410
382
|
external_schema_registry_user_configs=pulumi.get(__response__, 'external_schema_registry_user_configs'),
|
|
411
383
|
id=pulumi.get(__response__, 'id'),
|
|
412
384
|
jolokia_user_configs=pulumi.get(__response__, 'jolokia_user_configs'),
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -344,7 +344,7 @@ class GetThanosResult:
|
|
|
344
344
|
@pulumi.getter(name="thanosUserConfigs")
|
|
345
345
|
def thanos_user_configs(self) -> Sequence['outputs.GetThanosThanosUserConfigResult']:
|
|
346
346
|
"""
|
|
347
|
-
Thanos user configurable settings
|
|
347
|
+
Thanos user configurable settings
|
|
348
348
|
"""
|
|
349
349
|
return pulumi.get(self, "thanos_user_configs")
|
|
350
350
|
|
pulumi_aiven/get_valkey.py
CHANGED
|
@@ -336,7 +336,7 @@ class GetValkeyResult:
|
|
|
336
336
|
@pulumi.getter(name="valkeyUserConfigs")
|
|
337
337
|
def valkey_user_configs(self) -> Sequence['outputs.GetValkeyValkeyUserConfigResult']:
|
|
338
338
|
"""
|
|
339
|
-
Valkey user configurable settings
|
|
339
|
+
Valkey user configurable settings
|
|
340
340
|
"""
|
|
341
341
|
return pulumi.get(self, "valkey_user_configs")
|
|
342
342
|
|