pulumi-aiven 6.24.0a1726291362__py3-none-any.whl → 6.24.1__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 +9 -0
- pulumi_aiven/_inputs.py +524 -4
- pulumi_aiven/cassandra.py +24 -24
- pulumi_aiven/cassandra_user.py +40 -40
- pulumi_aiven/clickhouse.py +7 -7
- pulumi_aiven/connection_pool.py +41 -41
- pulumi_aiven/dragonfly.py +7 -7
- pulumi_aiven/flink.py +7 -7
- pulumi_aiven/get_cassanda.py +8 -8
- pulumi_aiven/get_cassandra.py +8 -8
- pulumi_aiven/get_cassandra_user.py +15 -15
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_connection_pool.py +14 -14
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +8 -8
- 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_kafka_topic.py +27 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +8 -8
- pulumi_aiven/get_m3db_user.py +13 -13
- 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_pg_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_integration_endpoint.py +40 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +24 -24
- pulumi_aiven/influx_db.py +7 -7
- pulumi_aiven/kafka.py +7 -7
- pulumi_aiven/kafka_connect.py +7 -7
- pulumi_aiven/kafka_mirror_maker.py +7 -7
- pulumi_aiven/kafka_topic.py +95 -1
- pulumi_aiven/m3_aggregator.py +7 -7
- pulumi_aiven/m3_db.py +26 -26
- pulumi_aiven/m3db_user.py +32 -32
- pulumi_aiven/my_sql.py +7 -7
- pulumi_aiven/open_search.py +7 -7
- pulumi_aiven/organization_permission.py +298 -0
- pulumi_aiven/outputs.py +798 -8
- pulumi_aiven/pg.py +7 -7
- pulumi_aiven/pg_user.py +21 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +141 -0
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/RECORD +55 -54
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_clickhouse.py
CHANGED
|
@@ -219,7 +219,7 @@ class GetClickhouseResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
|
@@ -54,7 +54,7 @@ class GetConnectionPoolResult:
|
|
|
54
54
|
@pulumi.getter(name="connectionUri")
|
|
55
55
|
def connection_uri(self) -> str:
|
|
56
56
|
"""
|
|
57
|
-
The URI for connecting to the pool
|
|
57
|
+
The URI for connecting to the pool.
|
|
58
58
|
"""
|
|
59
59
|
return pulumi.get(self, "connection_uri")
|
|
60
60
|
|
|
@@ -78,7 +78,7 @@ class GetConnectionPoolResult:
|
|
|
78
78
|
@pulumi.getter(name="poolMode")
|
|
79
79
|
def pool_mode(self) -> str:
|
|
80
80
|
"""
|
|
81
|
-
The mode
|
|
81
|
+
The [operational mode](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling#pooling-modes). The possible values are `session`, `transaction` and `statement`. The default value is `transaction`.
|
|
82
82
|
"""
|
|
83
83
|
return pulumi.get(self, "pool_mode")
|
|
84
84
|
|
|
@@ -86,7 +86,7 @@ class GetConnectionPoolResult:
|
|
|
86
86
|
@pulumi.getter(name="poolName")
|
|
87
87
|
def pool_name(self) -> str:
|
|
88
88
|
"""
|
|
89
|
-
|
|
89
|
+
Name of the pool. Changing this property forces recreation of the resource.
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "pool_name")
|
|
92
92
|
|
|
@@ -94,7 +94,7 @@ class GetConnectionPoolResult:
|
|
|
94
94
|
@pulumi.getter(name="poolSize")
|
|
95
95
|
def pool_size(self) -> int:
|
|
96
96
|
"""
|
|
97
|
-
The number of connections
|
|
97
|
+
The number of PostgreSQL server connections this pool can use at a time. This does not affect the number of incoming connections. Each pool can handle a minimum of 5000 client connections. The default value is `10`.
|
|
98
98
|
"""
|
|
99
99
|
return pulumi.get(self, "pool_size")
|
|
100
100
|
|
|
@@ -145,7 +145,7 @@ def get_connection_pool(pool_name: Optional[str] = None,
|
|
|
145
145
|
service_name: Optional[str] = None,
|
|
146
146
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConnectionPoolResult:
|
|
147
147
|
"""
|
|
148
|
-
|
|
148
|
+
Gets information about a connection pool in an Aiven for PostgreSQL® service.
|
|
149
149
|
|
|
150
150
|
## Example Usage
|
|
151
151
|
|
|
@@ -153,13 +153,13 @@ def get_connection_pool(pool_name: Optional[str] = None,
|
|
|
153
153
|
import pulumi
|
|
154
154
|
import pulumi_aiven as aiven
|
|
155
155
|
|
|
156
|
-
|
|
157
|
-
service_name=
|
|
158
|
-
pool_name="
|
|
156
|
+
main = aiven.get_connection_pool(project=example_project["project"],
|
|
157
|
+
service_name=example_postgres["serviceName"],
|
|
158
|
+
pool_name="example-pool")
|
|
159
159
|
```
|
|
160
160
|
|
|
161
161
|
|
|
162
|
-
:param str pool_name:
|
|
162
|
+
:param str pool_name: Name of the pool. Changing this property forces recreation of the resource.
|
|
163
163
|
:param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
164
164
|
:param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
165
165
|
"""
|
|
@@ -188,7 +188,7 @@ def get_connection_pool_output(pool_name: Optional[pulumi.Input[str]] = None,
|
|
|
188
188
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
189
189
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConnectionPoolResult]:
|
|
190
190
|
"""
|
|
191
|
-
|
|
191
|
+
Gets information about a connection pool in an Aiven for PostgreSQL® service.
|
|
192
192
|
|
|
193
193
|
## Example Usage
|
|
194
194
|
|
|
@@ -196,13 +196,13 @@ def get_connection_pool_output(pool_name: Optional[pulumi.Input[str]] = None,
|
|
|
196
196
|
import pulumi
|
|
197
197
|
import pulumi_aiven as aiven
|
|
198
198
|
|
|
199
|
-
|
|
200
|
-
service_name=
|
|
201
|
-
pool_name="
|
|
199
|
+
main = aiven.get_connection_pool(project=example_project["project"],
|
|
200
|
+
service_name=example_postgres["serviceName"],
|
|
201
|
+
pool_name="example-pool")
|
|
202
202
|
```
|
|
203
203
|
|
|
204
204
|
|
|
205
|
-
:param str pool_name:
|
|
205
|
+
:param str pool_name: Name of the pool. Changing this property forces recreation of the resource.
|
|
206
206
|
:param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
207
207
|
:param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
208
208
|
"""
|
pulumi_aiven/get_dragonfly.py
CHANGED
|
@@ -219,7 +219,7 @@ class GetDragonflyResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
pulumi_aiven/get_flink.py
CHANGED
|
@@ -219,7 +219,7 @@ class GetFlinkResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
pulumi_aiven/get_grafana.py
CHANGED
|
@@ -187,7 +187,7 @@ class GetGrafanaResult:
|
|
|
187
187
|
@pulumi.getter
|
|
188
188
|
def grafanas(self) -> Sequence['outputs.GetGrafanaGrafanaResult']:
|
|
189
189
|
"""
|
|
190
|
-
Grafana server
|
|
190
|
+
Values provided by the Grafana server.
|
|
191
191
|
"""
|
|
192
192
|
return pulumi.get(self, "grafanas")
|
|
193
193
|
|
|
@@ -219,7 +219,7 @@ class GetGrafanaResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
|
@@ -385,7 +385,7 @@ def get_grafana(project: Optional[str] = None,
|
|
|
385
385
|
service_name: Optional[str] = None,
|
|
386
386
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGrafanaResult:
|
|
387
387
|
"""
|
|
388
|
-
|
|
388
|
+
Gets information about an Aiven for Grafana® service.
|
|
389
389
|
|
|
390
390
|
## Example Usage
|
|
391
391
|
|
|
@@ -393,8 +393,8 @@ def get_grafana(project: Optional[str] = None,
|
|
|
393
393
|
import pulumi
|
|
394
394
|
import pulumi_aiven as aiven
|
|
395
395
|
|
|
396
|
-
|
|
397
|
-
service_name="
|
|
396
|
+
example_grafana = aiven.get_grafana(project=example_project["project"],
|
|
397
|
+
service_name="example-grafana-service")
|
|
398
398
|
```
|
|
399
399
|
|
|
400
400
|
|
|
@@ -444,7 +444,7 @@ def get_grafana_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
444
444
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
445
445
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGrafanaResult]:
|
|
446
446
|
"""
|
|
447
|
-
|
|
447
|
+
Gets information about an Aiven for Grafana® service.
|
|
448
448
|
|
|
449
449
|
## Example Usage
|
|
450
450
|
|
|
@@ -452,8 +452,8 @@ def get_grafana_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
452
452
|
import pulumi
|
|
453
453
|
import pulumi_aiven as aiven
|
|
454
454
|
|
|
455
|
-
|
|
456
|
-
service_name="
|
|
455
|
+
example_grafana = aiven.get_grafana(project=example_project["project"],
|
|
456
|
+
service_name="example-grafana-service")
|
|
457
457
|
```
|
|
458
458
|
|
|
459
459
|
|
pulumi_aiven/get_kafka.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetKafkaResult:
|
|
|
241
241
|
@pulumi.getter
|
|
242
242
|
def plan(self) -> str:
|
|
243
243
|
"""
|
|
244
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
244
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "plan")
|
|
247
247
|
|
|
@@ -208,7 +208,7 @@ class GetKafkaConnectResult:
|
|
|
208
208
|
@pulumi.getter
|
|
209
209
|
def plan(self) -> str:
|
|
210
210
|
"""
|
|
211
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
211
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
212
212
|
"""
|
|
213
213
|
return pulumi.get(self, "plan")
|
|
214
214
|
|
|
@@ -208,7 +208,7 @@ class GetKafkaMirrorMakerResult:
|
|
|
208
208
|
@pulumi.getter
|
|
209
209
|
def plan(self) -> str:
|
|
210
210
|
"""
|
|
211
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
211
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
212
212
|
"""
|
|
213
213
|
return pulumi.get(self, "plan")
|
|
214
214
|
|
pulumi_aiven/get_kafka_topic.py
CHANGED
|
@@ -22,13 +22,16 @@ class GetKafkaTopicResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getKafkaTopic.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, configs=None, id=None, partitions=None, project=None, replication=None, service_name=None, tags=None, termination_protection=None, topic_name=None):
|
|
25
|
+
def __init__(__self__, configs=None, id=None, owner_user_group_id=None, partitions=None, project=None, replication=None, service_name=None, tags=None, termination_protection=None, topic_description=None, topic_name=None):
|
|
26
26
|
if configs and not isinstance(configs, list):
|
|
27
27
|
raise TypeError("Expected argument 'configs' to be a list")
|
|
28
28
|
pulumi.set(__self__, "configs", configs)
|
|
29
29
|
if id and not isinstance(id, str):
|
|
30
30
|
raise TypeError("Expected argument 'id' to be a str")
|
|
31
31
|
pulumi.set(__self__, "id", id)
|
|
32
|
+
if owner_user_group_id and not isinstance(owner_user_group_id, str):
|
|
33
|
+
raise TypeError("Expected argument 'owner_user_group_id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "owner_user_group_id", owner_user_group_id)
|
|
32
35
|
if partitions and not isinstance(partitions, int):
|
|
33
36
|
raise TypeError("Expected argument 'partitions' to be a int")
|
|
34
37
|
pulumi.set(__self__, "partitions", partitions)
|
|
@@ -47,6 +50,9 @@ class GetKafkaTopicResult:
|
|
|
47
50
|
if termination_protection and not isinstance(termination_protection, bool):
|
|
48
51
|
raise TypeError("Expected argument 'termination_protection' to be a bool")
|
|
49
52
|
pulumi.set(__self__, "termination_protection", termination_protection)
|
|
53
|
+
if topic_description and not isinstance(topic_description, str):
|
|
54
|
+
raise TypeError("Expected argument 'topic_description' to be a str")
|
|
55
|
+
pulumi.set(__self__, "topic_description", topic_description)
|
|
50
56
|
if topic_name and not isinstance(topic_name, str):
|
|
51
57
|
raise TypeError("Expected argument 'topic_name' to be a str")
|
|
52
58
|
pulumi.set(__self__, "topic_name", topic_name)
|
|
@@ -67,6 +73,14 @@ class GetKafkaTopicResult:
|
|
|
67
73
|
"""
|
|
68
74
|
return pulumi.get(self, "id")
|
|
69
75
|
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="ownerUserGroupId")
|
|
78
|
+
def owner_user_group_id(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
The user group that is the owner of the topic
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "owner_user_group_id")
|
|
83
|
+
|
|
70
84
|
@property
|
|
71
85
|
@pulumi.getter
|
|
72
86
|
def partitions(self) -> int:
|
|
@@ -112,6 +126,14 @@ class GetKafkaTopicResult:
|
|
|
112
126
|
def termination_protection(self) -> bool:
|
|
113
127
|
return pulumi.get(self, "termination_protection")
|
|
114
128
|
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="topicDescription")
|
|
131
|
+
def topic_description(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
The description of the topic
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "topic_description")
|
|
136
|
+
|
|
115
137
|
@property
|
|
116
138
|
@pulumi.getter(name="topicName")
|
|
117
139
|
def topic_name(self) -> str:
|
|
@@ -129,12 +151,14 @@ class AwaitableGetKafkaTopicResult(GetKafkaTopicResult):
|
|
|
129
151
|
return GetKafkaTopicResult(
|
|
130
152
|
configs=self.configs,
|
|
131
153
|
id=self.id,
|
|
154
|
+
owner_user_group_id=self.owner_user_group_id,
|
|
132
155
|
partitions=self.partitions,
|
|
133
156
|
project=self.project,
|
|
134
157
|
replication=self.replication,
|
|
135
158
|
service_name=self.service_name,
|
|
136
159
|
tags=self.tags,
|
|
137
160
|
termination_protection=self.termination_protection,
|
|
161
|
+
topic_description=self.topic_description,
|
|
138
162
|
topic_name=self.topic_name)
|
|
139
163
|
|
|
140
164
|
|
|
@@ -171,12 +195,14 @@ def get_kafka_topic(project: Optional[str] = None,
|
|
|
171
195
|
return AwaitableGetKafkaTopicResult(
|
|
172
196
|
configs=pulumi.get(__ret__, 'configs'),
|
|
173
197
|
id=pulumi.get(__ret__, 'id'),
|
|
198
|
+
owner_user_group_id=pulumi.get(__ret__, 'owner_user_group_id'),
|
|
174
199
|
partitions=pulumi.get(__ret__, 'partitions'),
|
|
175
200
|
project=pulumi.get(__ret__, 'project'),
|
|
176
201
|
replication=pulumi.get(__ret__, 'replication'),
|
|
177
202
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
178
203
|
tags=pulumi.get(__ret__, 'tags'),
|
|
179
204
|
termination_protection=pulumi.get(__ret__, 'termination_protection'),
|
|
205
|
+
topic_description=pulumi.get(__ret__, 'topic_description'),
|
|
180
206
|
topic_name=pulumi.get(__ret__, 'topic_name'))
|
|
181
207
|
|
|
182
208
|
|
|
@@ -219,7 +219,7 @@ class GetM3AggregatorResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
pulumi_aiven/get_m3_db.py
CHANGED
|
@@ -195,7 +195,7 @@ class GetM3DbResult:
|
|
|
195
195
|
@pulumi.getter
|
|
196
196
|
def m3dbs(self) -> Sequence['outputs.GetM3DbM3dbResult']:
|
|
197
197
|
"""
|
|
198
|
-
M3DB server
|
|
198
|
+
Values provided by the M3DB server.
|
|
199
199
|
"""
|
|
200
200
|
return pulumi.get(self, "m3dbs")
|
|
201
201
|
|
|
@@ -219,7 +219,7 @@ class GetM3DbResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
|
@@ -385,7 +385,7 @@ def get_m3_db(project: Optional[str] = None,
|
|
|
385
385
|
service_name: Optional[str] = None,
|
|
386
386
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetM3DbResult:
|
|
387
387
|
"""
|
|
388
|
-
|
|
388
|
+
Gets information about an Aiven for M3DB service.
|
|
389
389
|
|
|
390
390
|
## Example Usage
|
|
391
391
|
|
|
@@ -393,8 +393,8 @@ def get_m3_db(project: Optional[str] = None,
|
|
|
393
393
|
import pulumi
|
|
394
394
|
import pulumi_aiven as aiven
|
|
395
395
|
|
|
396
|
-
|
|
397
|
-
service_name="
|
|
396
|
+
example_m3db = aiven.get_m3_db(project=example_project["project"],
|
|
397
|
+
service_name="example-m3db-service")
|
|
398
398
|
```
|
|
399
399
|
|
|
400
400
|
|
|
@@ -444,7 +444,7 @@ def get_m3_db_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
444
444
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
445
445
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetM3DbResult]:
|
|
446
446
|
"""
|
|
447
|
-
|
|
447
|
+
Gets information about an Aiven for M3DB service.
|
|
448
448
|
|
|
449
449
|
## Example Usage
|
|
450
450
|
|
|
@@ -452,8 +452,8 @@ def get_m3_db_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
452
452
|
import pulumi
|
|
453
453
|
import pulumi_aiven as aiven
|
|
454
454
|
|
|
455
|
-
|
|
456
|
-
service_name="
|
|
455
|
+
example_m3db = aiven.get_m3_db(project=example_project["project"],
|
|
456
|
+
service_name="example-m3db-service")
|
|
457
457
|
```
|
|
458
458
|
|
|
459
459
|
|
pulumi_aiven/get_m3db_user.py
CHANGED
|
@@ -53,7 +53,7 @@ class GetM3dbUserResult:
|
|
|
53
53
|
@pulumi.getter
|
|
54
54
|
def password(self) -> str:
|
|
55
55
|
"""
|
|
56
|
-
The
|
|
56
|
+
The M3DB service user's password.
|
|
57
57
|
"""
|
|
58
58
|
return pulumi.get(self, "password")
|
|
59
59
|
|
|
@@ -77,7 +77,7 @@ class GetM3dbUserResult:
|
|
|
77
77
|
@pulumi.getter
|
|
78
78
|
def type(self) -> str:
|
|
79
79
|
"""
|
|
80
|
-
|
|
80
|
+
User account type, such as primary or regular account.
|
|
81
81
|
"""
|
|
82
82
|
return pulumi.get(self, "type")
|
|
83
83
|
|
|
@@ -85,7 +85,7 @@ class GetM3dbUserResult:
|
|
|
85
85
|
@pulumi.getter
|
|
86
86
|
def username(self) -> str:
|
|
87
87
|
"""
|
|
88
|
-
|
|
88
|
+
Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
89
89
|
"""
|
|
90
90
|
return pulumi.get(self, "username")
|
|
91
91
|
|
|
@@ -109,7 +109,7 @@ def get_m3db_user(project: Optional[str] = None,
|
|
|
109
109
|
username: Optional[str] = None,
|
|
110
110
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetM3dbUserResult:
|
|
111
111
|
"""
|
|
112
|
-
|
|
112
|
+
Gets information about an Aiven for M3DB service user.
|
|
113
113
|
|
|
114
114
|
## Example Usage
|
|
115
115
|
|
|
@@ -117,15 +117,15 @@ def get_m3db_user(project: Optional[str] = None,
|
|
|
117
117
|
import pulumi
|
|
118
118
|
import pulumi_aiven as aiven
|
|
119
119
|
|
|
120
|
-
|
|
121
|
-
project="
|
|
122
|
-
username="
|
|
120
|
+
example_service_user = aiven.get_m3db_user(service_name=example_m3db["serviceName"],
|
|
121
|
+
project=example_project["project"],
|
|
122
|
+
username="example-m3db-user")
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
:param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
127
127
|
:param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
128
|
-
:param str username:
|
|
128
|
+
:param str username: Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
129
129
|
"""
|
|
130
130
|
__args__ = dict()
|
|
131
131
|
__args__['project'] = project
|
|
@@ -149,7 +149,7 @@ def get_m3db_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
149
149
|
username: Optional[pulumi.Input[str]] = None,
|
|
150
150
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetM3dbUserResult]:
|
|
151
151
|
"""
|
|
152
|
-
|
|
152
|
+
Gets information about an Aiven for M3DB service user.
|
|
153
153
|
|
|
154
154
|
## Example Usage
|
|
155
155
|
|
|
@@ -157,14 +157,14 @@ def get_m3db_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
157
157
|
import pulumi
|
|
158
158
|
import pulumi_aiven as aiven
|
|
159
159
|
|
|
160
|
-
|
|
161
|
-
project="
|
|
162
|
-
username="
|
|
160
|
+
example_service_user = aiven.get_m3db_user(service_name=example_m3db["serviceName"],
|
|
161
|
+
project=example_project["project"],
|
|
162
|
+
username="example-m3db-user")
|
|
163
163
|
```
|
|
164
164
|
|
|
165
165
|
|
|
166
166
|
:param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
167
167
|
:param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
168
|
-
:param str username:
|
|
168
|
+
:param str username: Name of the M3DB service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
169
169
|
"""
|
|
170
170
|
...
|
pulumi_aiven/get_my_sql.py
CHANGED
|
@@ -219,7 +219,7 @@ class GetMySqlResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
pulumi_aiven/get_open_search.py
CHANGED
|
@@ -219,7 +219,7 @@ class GetOpenSearchResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
pulumi_aiven/get_pg.py
CHANGED
|
@@ -219,7 +219,7 @@ class GetPgResult:
|
|
|
219
219
|
@pulumi.getter
|
|
220
220
|
def plan(self) -> str:
|
|
221
221
|
"""
|
|
222
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
222
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "plan")
|
|
225
225
|
|
pulumi_aiven/get_pg_user.py
CHANGED
|
@@ -86,7 +86,7 @@ class GetPgUserResult:
|
|
|
86
86
|
@pulumi.getter(name="pgAllowReplication")
|
|
87
87
|
def pg_allow_replication(self) -> bool:
|
|
88
88
|
"""
|
|
89
|
-
Allows replication.
|
|
89
|
+
Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
90
90
|
"""
|
|
91
91
|
return pulumi.get(self, "pg_allow_replication")
|
|
92
92
|
|
pulumi_aiven/get_redis.py
CHANGED
|
@@ -203,7 +203,7 @@ class GetRedisResult:
|
|
|
203
203
|
@pulumi.getter
|
|
204
204
|
def plan(self) -> str:
|
|
205
205
|
"""
|
|
206
|
-
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be
|
|
206
|
+
Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
207
207
|
"""
|
|
208
208
|
return pulumi.get(self, "plan")
|
|
209
209
|
|
|
@@ -22,7 +22,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getServiceIntegrationEndpoint.
|
|
24
24
|
"""
|
|
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):
|
|
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_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):
|
|
26
26
|
if datadog_user_configs and not isinstance(datadog_user_configs, list):
|
|
27
27
|
raise TypeError("Expected argument 'datadog_user_configs' to be a list")
|
|
28
28
|
pulumi.set(__self__, "datadog_user_configs", datadog_user_configs)
|
|
@@ -41,6 +41,12 @@ class GetServiceIntegrationEndpointResult:
|
|
|
41
41
|
if external_aws_cloudwatch_metrics_user_configs and not isinstance(external_aws_cloudwatch_metrics_user_configs, list):
|
|
42
42
|
raise TypeError("Expected argument 'external_aws_cloudwatch_metrics_user_configs' to be a list")
|
|
43
43
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_configs", external_aws_cloudwatch_metrics_user_configs)
|
|
44
|
+
if external_aws_s3_user_configs and not isinstance(external_aws_s3_user_configs, list):
|
|
45
|
+
raise TypeError("Expected argument 'external_aws_s3_user_configs' to be a list")
|
|
46
|
+
pulumi.set(__self__, "external_aws_s3_user_configs", external_aws_s3_user_configs)
|
|
47
|
+
if external_clickhouse_user_configs and not isinstance(external_clickhouse_user_configs, list):
|
|
48
|
+
raise TypeError("Expected argument 'external_clickhouse_user_configs' to be a list")
|
|
49
|
+
pulumi.set(__self__, "external_clickhouse_user_configs", external_clickhouse_user_configs)
|
|
44
50
|
if external_elasticsearch_logs_user_configs and not isinstance(external_elasticsearch_logs_user_configs, list):
|
|
45
51
|
raise TypeError("Expected argument 'external_elasticsearch_logs_user_configs' to be a list")
|
|
46
52
|
pulumi.set(__self__, "external_elasticsearch_logs_user_configs", external_elasticsearch_logs_user_configs)
|
|
@@ -53,6 +59,9 @@ class GetServiceIntegrationEndpointResult:
|
|
|
53
59
|
if external_kafka_user_configs and not isinstance(external_kafka_user_configs, list):
|
|
54
60
|
raise TypeError("Expected argument 'external_kafka_user_configs' to be a list")
|
|
55
61
|
pulumi.set(__self__, "external_kafka_user_configs", external_kafka_user_configs)
|
|
62
|
+
if external_mysql_user_configs and not isinstance(external_mysql_user_configs, list):
|
|
63
|
+
raise TypeError("Expected argument 'external_mysql_user_configs' to be a list")
|
|
64
|
+
pulumi.set(__self__, "external_mysql_user_configs", external_mysql_user_configs)
|
|
56
65
|
if external_opensearch_logs_user_configs and not isinstance(external_opensearch_logs_user_configs, list):
|
|
57
66
|
raise TypeError("Expected argument 'external_opensearch_logs_user_configs' to be a list")
|
|
58
67
|
pulumi.set(__self__, "external_opensearch_logs_user_configs", external_opensearch_logs_user_configs)
|
|
@@ -126,6 +135,22 @@ class GetServiceIntegrationEndpointResult:
|
|
|
126
135
|
"""
|
|
127
136
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
|
|
128
137
|
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="externalAwsS3UserConfigs")
|
|
140
|
+
def external_aws_s3_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAwsS3UserConfigResult']:
|
|
141
|
+
"""
|
|
142
|
+
ExternalAwsS3 user configurable settings
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "external_aws_s3_user_configs")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter(name="externalClickhouseUserConfigs")
|
|
148
|
+
def external_clickhouse_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalClickhouseUserConfigResult']:
|
|
149
|
+
"""
|
|
150
|
+
ExternalClickhouse user configurable settings
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "external_clickhouse_user_configs")
|
|
153
|
+
|
|
129
154
|
@property
|
|
130
155
|
@pulumi.getter(name="externalElasticsearchLogsUserConfigs")
|
|
131
156
|
def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalElasticsearchLogsUserConfigResult']:
|
|
@@ -158,6 +183,14 @@ class GetServiceIntegrationEndpointResult:
|
|
|
158
183
|
"""
|
|
159
184
|
return pulumi.get(self, "external_kafka_user_configs")
|
|
160
185
|
|
|
186
|
+
@property
|
|
187
|
+
@pulumi.getter(name="externalMysqlUserConfigs")
|
|
188
|
+
def external_mysql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalMysqlUserConfigResult']:
|
|
189
|
+
"""
|
|
190
|
+
ExternalMysql user configurable settings
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "external_mysql_user_configs")
|
|
193
|
+
|
|
161
194
|
@property
|
|
162
195
|
@pulumi.getter(name="externalOpensearchLogsUserConfigs")
|
|
163
196
|
def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalOpensearchLogsUserConfigResult']:
|
|
@@ -235,10 +268,13 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
235
268
|
endpoint_type=self.endpoint_type,
|
|
236
269
|
external_aws_cloudwatch_logs_user_configs=self.external_aws_cloudwatch_logs_user_configs,
|
|
237
270
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
271
|
+
external_aws_s3_user_configs=self.external_aws_s3_user_configs,
|
|
272
|
+
external_clickhouse_user_configs=self.external_clickhouse_user_configs,
|
|
238
273
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
239
274
|
external_google_cloud_bigqueries=self.external_google_cloud_bigqueries,
|
|
240
275
|
external_google_cloud_logging_user_configs=self.external_google_cloud_logging_user_configs,
|
|
241
276
|
external_kafka_user_configs=self.external_kafka_user_configs,
|
|
277
|
+
external_mysql_user_configs=self.external_mysql_user_configs,
|
|
242
278
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
243
279
|
external_postgresqls=self.external_postgresqls,
|
|
244
280
|
external_schema_registry_user_configs=self.external_schema_registry_user_configs,
|
|
@@ -282,10 +318,13 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
282
318
|
endpoint_type=pulumi.get(__ret__, 'endpoint_type'),
|
|
283
319
|
external_aws_cloudwatch_logs_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
284
320
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
321
|
+
external_aws_s3_user_configs=pulumi.get(__ret__, 'external_aws_s3_user_configs'),
|
|
322
|
+
external_clickhouse_user_configs=pulumi.get(__ret__, 'external_clickhouse_user_configs'),
|
|
285
323
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
286
324
|
external_google_cloud_bigqueries=pulumi.get(__ret__, 'external_google_cloud_bigqueries'),
|
|
287
325
|
external_google_cloud_logging_user_configs=pulumi.get(__ret__, 'external_google_cloud_logging_user_configs'),
|
|
288
326
|
external_kafka_user_configs=pulumi.get(__ret__, 'external_kafka_user_configs'),
|
|
327
|
+
external_mysql_user_configs=pulumi.get(__ret__, 'external_mysql_user_configs'),
|
|
289
328
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
290
329
|
external_postgresqls=pulumi.get(__ret__, 'external_postgresqls'),
|
|
291
330
|
external_schema_registry_user_configs=pulumi.get(__ret__, 'external_schema_registry_user_configs'),
|