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/pg.py
CHANGED
|
@@ -34,7 +34,7 @@ class PgArgs:
|
|
|
34
34
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a Pg resource.
|
|
37
|
-
:param pulumi.Input[str] plan: 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
|
|
37
|
+
:param pulumi.Input[str] plan: 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).
|
|
38
38
|
:param pulumi.Input[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.
|
|
39
39
|
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
40
40
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
@@ -89,7 +89,7 @@ class PgArgs:
|
|
|
89
89
|
@pulumi.getter
|
|
90
90
|
def plan(self) -> pulumi.Input[str]:
|
|
91
91
|
"""
|
|
92
|
-
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
|
|
92
|
+
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).
|
|
93
93
|
"""
|
|
94
94
|
return pulumi.get(self, "plan")
|
|
95
95
|
|
|
@@ -324,7 +324,7 @@ class _PgState:
|
|
|
324
324
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
325
325
|
:param pulumi.Input['PgPgArgs'] pg: Values provided by the PostgreSQL server.
|
|
326
326
|
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings
|
|
327
|
-
:param pulumi.Input[str] plan: 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
|
|
327
|
+
:param pulumi.Input[str] plan: 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).
|
|
328
328
|
:param pulumi.Input[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.
|
|
329
329
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
330
330
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
@@ -550,7 +550,7 @@ class _PgState:
|
|
|
550
550
|
@pulumi.getter
|
|
551
551
|
def plan(self) -> Optional[pulumi.Input[str]]:
|
|
552
552
|
"""
|
|
553
|
-
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
|
|
553
|
+
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).
|
|
554
554
|
"""
|
|
555
555
|
return pulumi.get(self, "plan")
|
|
556
556
|
|
|
@@ -779,7 +779,7 @@ class Pg(pulumi.CustomResource):
|
|
|
779
779
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
780
780
|
:param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: Values provided by the PostgreSQL server.
|
|
781
781
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings
|
|
782
|
-
:param pulumi.Input[str] plan: 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
|
|
782
|
+
:param pulumi.Input[str] plan: 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).
|
|
783
783
|
:param pulumi.Input[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.
|
|
784
784
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
785
785
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -935,7 +935,7 @@ class Pg(pulumi.CustomResource):
|
|
|
935
935
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
936
936
|
:param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: Values provided by the PostgreSQL server.
|
|
937
937
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings
|
|
938
|
-
:param pulumi.Input[str] plan: 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
|
|
938
|
+
:param pulumi.Input[str] plan: 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).
|
|
939
939
|
:param pulumi.Input[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.
|
|
940
940
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
941
941
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
@@ -1087,7 +1087,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1087
1087
|
@pulumi.getter
|
|
1088
1088
|
def plan(self) -> pulumi.Output[str]:
|
|
1089
1089
|
"""
|
|
1090
|
-
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
|
|
1090
|
+
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).
|
|
1091
1091
|
"""
|
|
1092
1092
|
return pulumi.get(self, "plan")
|
|
1093
1093
|
|
pulumi_aiven/pg_user.py
CHANGED
|
@@ -25,7 +25,7 @@ class PgUserArgs:
|
|
|
25
25
|
:param pulumi.Input[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.
|
|
26
26
|
:param pulumi.Input[str] username: The name of the service user for this service. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
27
27
|
:param pulumi.Input[str] password: The password of the service user.
|
|
28
|
-
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
28
|
+
:param pulumi.Input[bool] pg_allow_replication: Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
29
29
|
"""
|
|
30
30
|
pulumi.set(__self__, "project", project)
|
|
31
31
|
pulumi.set(__self__, "service_name", service_name)
|
|
@@ -87,7 +87,7 @@ class PgUserArgs:
|
|
|
87
87
|
@pulumi.getter(name="pgAllowReplication")
|
|
88
88
|
def pg_allow_replication(self) -> Optional[pulumi.Input[bool]]:
|
|
89
89
|
"""
|
|
90
|
-
Allows replication.
|
|
90
|
+
Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
91
91
|
"""
|
|
92
92
|
return pulumi.get(self, "pg_allow_replication")
|
|
93
93
|
|
|
@@ -112,7 +112,7 @@ class _PgUserState:
|
|
|
112
112
|
:param pulumi.Input[str] access_cert: The access certificate for the servie user.
|
|
113
113
|
:param pulumi.Input[str] access_key: The access certificate key for the service user.
|
|
114
114
|
:param pulumi.Input[str] password: The password of the service user.
|
|
115
|
-
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
115
|
+
:param pulumi.Input[bool] pg_allow_replication: Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
116
116
|
:param pulumi.Input[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.
|
|
117
117
|
:param pulumi.Input[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.
|
|
118
118
|
:param pulumi.Input[str] type: The service user account type, either primary or regular.
|
|
@@ -175,7 +175,7 @@ class _PgUserState:
|
|
|
175
175
|
@pulumi.getter(name="pgAllowReplication")
|
|
176
176
|
def pg_allow_replication(self) -> Optional[pulumi.Input[bool]]:
|
|
177
177
|
"""
|
|
178
|
-
Allows replication.
|
|
178
|
+
Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
179
179
|
"""
|
|
180
180
|
return pulumi.get(self, "pg_allow_replication")
|
|
181
181
|
|
|
@@ -257,6 +257,13 @@ class PgUser(pulumi.CustomResource):
|
|
|
257
257
|
project=example_project["project"],
|
|
258
258
|
username="example-service-user",
|
|
259
259
|
password=service_user_password)
|
|
260
|
+
# Each service has a default admin user with the username avnadmin.
|
|
261
|
+
admin_user = aiven.PgUser("admin_user",
|
|
262
|
+
service_name=example_postgres["serviceName"],
|
|
263
|
+
project=example_project["project"],
|
|
264
|
+
username="avnadmin",
|
|
265
|
+
password=service_user_password,
|
|
266
|
+
pg_allow_replication=True)
|
|
260
267
|
```
|
|
261
268
|
|
|
262
269
|
## Import
|
|
@@ -268,7 +275,7 @@ class PgUser(pulumi.CustomResource):
|
|
|
268
275
|
:param str resource_name: The name of the resource.
|
|
269
276
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
270
277
|
:param pulumi.Input[str] password: The password of the service user.
|
|
271
|
-
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
278
|
+
:param pulumi.Input[bool] pg_allow_replication: Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
272
279
|
:param pulumi.Input[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.
|
|
273
280
|
:param pulumi.Input[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.
|
|
274
281
|
:param pulumi.Input[str] username: The name of the service user for this service. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -293,6 +300,13 @@ class PgUser(pulumi.CustomResource):
|
|
|
293
300
|
project=example_project["project"],
|
|
294
301
|
username="example-service-user",
|
|
295
302
|
password=service_user_password)
|
|
303
|
+
# Each service has a default admin user with the username avnadmin.
|
|
304
|
+
admin_user = aiven.PgUser("admin_user",
|
|
305
|
+
service_name=example_postgres["serviceName"],
|
|
306
|
+
project=example_project["project"],
|
|
307
|
+
username="avnadmin",
|
|
308
|
+
password=service_user_password,
|
|
309
|
+
pg_allow_replication=True)
|
|
296
310
|
```
|
|
297
311
|
|
|
298
312
|
## Import
|
|
@@ -374,7 +388,7 @@ class PgUser(pulumi.CustomResource):
|
|
|
374
388
|
:param pulumi.Input[str] access_cert: The access certificate for the servie user.
|
|
375
389
|
:param pulumi.Input[str] access_key: The access certificate key for the service user.
|
|
376
390
|
:param pulumi.Input[str] password: The password of the service user.
|
|
377
|
-
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
391
|
+
:param pulumi.Input[bool] pg_allow_replication: Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
378
392
|
:param pulumi.Input[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.
|
|
379
393
|
:param pulumi.Input[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.
|
|
380
394
|
:param pulumi.Input[str] type: The service user account type, either primary or regular.
|
|
@@ -422,7 +436,7 @@ class PgUser(pulumi.CustomResource):
|
|
|
422
436
|
@pulumi.getter(name="pgAllowReplication")
|
|
423
437
|
def pg_allow_replication(self) -> pulumi.Output[Optional[bool]]:
|
|
424
438
|
"""
|
|
425
|
-
Allows replication.
|
|
439
|
+
Allows replication. For the default avnadmin user this attribute is required and is always `true`.
|
|
426
440
|
"""
|
|
427
441
|
return pulumi.get(self, "pg_allow_replication")
|
|
428
442
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -34,7 +34,7 @@ class RedisArgs:
|
|
|
34
34
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a Redis resource.
|
|
37
|
-
:param pulumi.Input[str] plan: 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
|
|
37
|
+
:param pulumi.Input[str] plan: 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).
|
|
38
38
|
:param pulumi.Input[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.
|
|
39
39
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
40
40
|
:param pulumi.Input[str] additional_disk_space: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
@@ -88,7 +88,7 @@ class RedisArgs:
|
|
|
88
88
|
@pulumi.getter
|
|
89
89
|
def plan(self) -> pulumi.Input[str]:
|
|
90
90
|
"""
|
|
91
|
-
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
|
|
91
|
+
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).
|
|
92
92
|
"""
|
|
93
93
|
return pulumi.get(self, "plan")
|
|
94
94
|
|
|
@@ -321,7 +321,7 @@ class _RedisState:
|
|
|
321
321
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
322
322
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
323
323
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
324
|
-
:param pulumi.Input[str] plan: 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
|
|
324
|
+
:param pulumi.Input[str] plan: 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).
|
|
325
325
|
:param pulumi.Input[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.
|
|
326
326
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
327
327
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
@@ -525,7 +525,7 @@ class _RedisState:
|
|
|
525
525
|
@pulumi.getter
|
|
526
526
|
def plan(self) -> Optional[pulumi.Input[str]]:
|
|
527
527
|
"""
|
|
528
|
-
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
|
|
528
|
+
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).
|
|
529
529
|
"""
|
|
530
530
|
return pulumi.get(self, "plan")
|
|
531
531
|
|
|
@@ -797,7 +797,7 @@ class Redis(pulumi.CustomResource):
|
|
|
797
797
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
798
798
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
799
799
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
800
|
-
:param pulumi.Input[str] plan: 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
|
|
800
|
+
:param pulumi.Input[str] plan: 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).
|
|
801
801
|
:param pulumi.Input[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.
|
|
802
802
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
803
803
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
@@ -976,7 +976,7 @@ class Redis(pulumi.CustomResource):
|
|
|
976
976
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
977
977
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
978
978
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
979
|
-
:param pulumi.Input[str] plan: 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
|
|
979
|
+
:param pulumi.Input[str] plan: 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).
|
|
980
980
|
:param pulumi.Input[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.
|
|
981
981
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
982
982
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
@@ -1114,7 +1114,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1114
1114
|
@pulumi.getter
|
|
1115
1115
|
def plan(self) -> pulumi.Output[str]:
|
|
1116
1116
|
"""
|
|
1117
|
-
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
|
|
1117
|
+
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).
|
|
1118
1118
|
"""
|
|
1119
1119
|
return pulumi.get(self, "plan")
|
|
1120
1120
|
|
|
@@ -22,10 +22,13 @@ class ServiceIntegrationEndpointArgs:
|
|
|
22
22
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs']] = None,
|
|
23
23
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
24
24
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
25
|
+
external_aws_s3_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']] = None,
|
|
26
|
+
external_clickhouse_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']] = None,
|
|
25
27
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
26
28
|
external_google_cloud_bigquery: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']] = None,
|
|
27
29
|
external_google_cloud_logging_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']] = None,
|
|
28
30
|
external_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']] = None,
|
|
31
|
+
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
29
32
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
30
33
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
31
34
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
@@ -40,10 +43,13 @@ class ServiceIntegrationEndpointArgs:
|
|
|
40
43
|
:param pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
41
44
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
42
45
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
46
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs'] external_aws_s3_user_config: ExternalAwsS3 user configurable settings
|
|
47
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs'] external_clickhouse_user_config: ExternalClickhouse user configurable settings
|
|
43
48
|
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
44
49
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs'] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
45
50
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs'] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
46
51
|
:param pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs'] external_kafka_user_config: ExternalKafka user configurable settings
|
|
52
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs'] external_mysql_user_config: ExternalMysql user configurable settings
|
|
47
53
|
:param pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
48
54
|
:param pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs'] external_postgresql: ExternalPostgresql user configurable settings
|
|
49
55
|
:param pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs'] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -60,6 +66,10 @@ class ServiceIntegrationEndpointArgs:
|
|
|
60
66
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
61
67
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
62
68
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_config", external_aws_cloudwatch_metrics_user_config)
|
|
69
|
+
if external_aws_s3_user_config is not None:
|
|
70
|
+
pulumi.set(__self__, "external_aws_s3_user_config", external_aws_s3_user_config)
|
|
71
|
+
if external_clickhouse_user_config is not None:
|
|
72
|
+
pulumi.set(__self__, "external_clickhouse_user_config", external_clickhouse_user_config)
|
|
63
73
|
if external_elasticsearch_logs_user_config is not None:
|
|
64
74
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
65
75
|
if external_google_cloud_bigquery is not None:
|
|
@@ -68,6 +78,8 @@ class ServiceIntegrationEndpointArgs:
|
|
|
68
78
|
pulumi.set(__self__, "external_google_cloud_logging_user_config", external_google_cloud_logging_user_config)
|
|
69
79
|
if external_kafka_user_config is not None:
|
|
70
80
|
pulumi.set(__self__, "external_kafka_user_config", external_kafka_user_config)
|
|
81
|
+
if external_mysql_user_config is not None:
|
|
82
|
+
pulumi.set(__self__, "external_mysql_user_config", external_mysql_user_config)
|
|
71
83
|
if external_opensearch_logs_user_config is not None:
|
|
72
84
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
73
85
|
if external_postgresql is not None:
|
|
@@ -153,6 +165,30 @@ class ServiceIntegrationEndpointArgs:
|
|
|
153
165
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
154
166
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
155
167
|
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
170
|
+
def external_aws_s3_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]:
|
|
171
|
+
"""
|
|
172
|
+
ExternalAwsS3 user configurable settings
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "external_aws_s3_user_config")
|
|
175
|
+
|
|
176
|
+
@external_aws_s3_user_config.setter
|
|
177
|
+
def external_aws_s3_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]):
|
|
178
|
+
pulumi.set(self, "external_aws_s3_user_config", value)
|
|
179
|
+
|
|
180
|
+
@property
|
|
181
|
+
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
182
|
+
def external_clickhouse_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]:
|
|
183
|
+
"""
|
|
184
|
+
ExternalClickhouse user configurable settings
|
|
185
|
+
"""
|
|
186
|
+
return pulumi.get(self, "external_clickhouse_user_config")
|
|
187
|
+
|
|
188
|
+
@external_clickhouse_user_config.setter
|
|
189
|
+
def external_clickhouse_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]):
|
|
190
|
+
pulumi.set(self, "external_clickhouse_user_config", value)
|
|
191
|
+
|
|
156
192
|
@property
|
|
157
193
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
158
194
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
@@ -201,6 +237,18 @@ class ServiceIntegrationEndpointArgs:
|
|
|
201
237
|
def external_kafka_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]):
|
|
202
238
|
pulumi.set(self, "external_kafka_user_config", value)
|
|
203
239
|
|
|
240
|
+
@property
|
|
241
|
+
@pulumi.getter(name="externalMysqlUserConfig")
|
|
242
|
+
def external_mysql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]:
|
|
243
|
+
"""
|
|
244
|
+
ExternalMysql user configurable settings
|
|
245
|
+
"""
|
|
246
|
+
return pulumi.get(self, "external_mysql_user_config")
|
|
247
|
+
|
|
248
|
+
@external_mysql_user_config.setter
|
|
249
|
+
def external_mysql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]):
|
|
250
|
+
pulumi.set(self, "external_mysql_user_config", value)
|
|
251
|
+
|
|
204
252
|
@property
|
|
205
253
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
206
254
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
@@ -283,10 +331,13 @@ class _ServiceIntegrationEndpointState:
|
|
|
283
331
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
284
332
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
285
333
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
334
|
+
external_aws_s3_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']] = None,
|
|
335
|
+
external_clickhouse_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']] = None,
|
|
286
336
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
287
337
|
external_google_cloud_bigquery: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']] = None,
|
|
288
338
|
external_google_cloud_logging_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']] = None,
|
|
289
339
|
external_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']] = None,
|
|
340
|
+
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
290
341
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
291
342
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
292
343
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
@@ -302,10 +353,13 @@ class _ServiceIntegrationEndpointState:
|
|
|
302
353
|
:param pulumi.Input[str] endpoint_type: Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus`, `rsyslog`
|
|
303
354
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
304
355
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
356
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs'] external_aws_s3_user_config: ExternalAwsS3 user configurable settings
|
|
357
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs'] external_clickhouse_user_config: ExternalClickhouse user configurable settings
|
|
305
358
|
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
306
359
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs'] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
307
360
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs'] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
308
361
|
:param pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs'] external_kafka_user_config: ExternalKafka user configurable settings
|
|
362
|
+
:param pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs'] external_mysql_user_config: ExternalMysql user configurable settings
|
|
309
363
|
:param pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
310
364
|
:param pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs'] external_postgresql: ExternalPostgresql user configurable settings
|
|
311
365
|
:param pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs'] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -326,6 +380,10 @@ class _ServiceIntegrationEndpointState:
|
|
|
326
380
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
327
381
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
328
382
|
pulumi.set(__self__, "external_aws_cloudwatch_metrics_user_config", external_aws_cloudwatch_metrics_user_config)
|
|
383
|
+
if external_aws_s3_user_config is not None:
|
|
384
|
+
pulumi.set(__self__, "external_aws_s3_user_config", external_aws_s3_user_config)
|
|
385
|
+
if external_clickhouse_user_config is not None:
|
|
386
|
+
pulumi.set(__self__, "external_clickhouse_user_config", external_clickhouse_user_config)
|
|
329
387
|
if external_elasticsearch_logs_user_config is not None:
|
|
330
388
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
331
389
|
if external_google_cloud_bigquery is not None:
|
|
@@ -334,6 +392,8 @@ class _ServiceIntegrationEndpointState:
|
|
|
334
392
|
pulumi.set(__self__, "external_google_cloud_logging_user_config", external_google_cloud_logging_user_config)
|
|
335
393
|
if external_kafka_user_config is not None:
|
|
336
394
|
pulumi.set(__self__, "external_kafka_user_config", external_kafka_user_config)
|
|
395
|
+
if external_mysql_user_config is not None:
|
|
396
|
+
pulumi.set(__self__, "external_mysql_user_config", external_mysql_user_config)
|
|
337
397
|
if external_opensearch_logs_user_config is not None:
|
|
338
398
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
339
399
|
if external_postgresql is not None:
|
|
@@ -421,6 +481,30 @@ class _ServiceIntegrationEndpointState:
|
|
|
421
481
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
422
482
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
423
483
|
|
|
484
|
+
@property
|
|
485
|
+
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
486
|
+
def external_aws_s3_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]:
|
|
487
|
+
"""
|
|
488
|
+
ExternalAwsS3 user configurable settings
|
|
489
|
+
"""
|
|
490
|
+
return pulumi.get(self, "external_aws_s3_user_config")
|
|
491
|
+
|
|
492
|
+
@external_aws_s3_user_config.setter
|
|
493
|
+
def external_aws_s3_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs']]):
|
|
494
|
+
pulumi.set(self, "external_aws_s3_user_config", value)
|
|
495
|
+
|
|
496
|
+
@property
|
|
497
|
+
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
498
|
+
def external_clickhouse_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]:
|
|
499
|
+
"""
|
|
500
|
+
ExternalClickhouse user configurable settings
|
|
501
|
+
"""
|
|
502
|
+
return pulumi.get(self, "external_clickhouse_user_config")
|
|
503
|
+
|
|
504
|
+
@external_clickhouse_user_config.setter
|
|
505
|
+
def external_clickhouse_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs']]):
|
|
506
|
+
pulumi.set(self, "external_clickhouse_user_config", value)
|
|
507
|
+
|
|
424
508
|
@property
|
|
425
509
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
426
510
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
@@ -469,6 +553,18 @@ class _ServiceIntegrationEndpointState:
|
|
|
469
553
|
def external_kafka_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]):
|
|
470
554
|
pulumi.set(self, "external_kafka_user_config", value)
|
|
471
555
|
|
|
556
|
+
@property
|
|
557
|
+
@pulumi.getter(name="externalMysqlUserConfig")
|
|
558
|
+
def external_mysql_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]:
|
|
559
|
+
"""
|
|
560
|
+
ExternalMysql user configurable settings
|
|
561
|
+
"""
|
|
562
|
+
return pulumi.get(self, "external_mysql_user_config")
|
|
563
|
+
|
|
564
|
+
@external_mysql_user_config.setter
|
|
565
|
+
def external_mysql_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']]):
|
|
566
|
+
pulumi.set(self, "external_mysql_user_config", value)
|
|
567
|
+
|
|
472
568
|
@property
|
|
473
569
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
474
570
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
@@ -564,10 +660,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
564
660
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
565
661
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
566
662
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
663
|
+
external_aws_s3_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']]] = None,
|
|
664
|
+
external_clickhouse_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']]] = None,
|
|
567
665
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
568
666
|
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
569
667
|
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
570
668
|
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
669
|
+
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
571
670
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
572
671
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
573
672
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
@@ -586,10 +685,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
586
685
|
:param pulumi.Input[str] endpoint_type: Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus`, `rsyslog`
|
|
587
686
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
588
687
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
688
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']] external_aws_s3_user_config: ExternalAwsS3 user configurable settings
|
|
689
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']] external_clickhouse_user_config: ExternalClickhouse user configurable settings
|
|
589
690
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
590
691
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
591
692
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
592
693
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']] external_kafka_user_config: ExternalKafka user configurable settings
|
|
694
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']] external_mysql_user_config: ExternalMysql user configurable settings
|
|
593
695
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
594
696
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']] external_postgresql: ExternalPostgresql user configurable settings
|
|
595
697
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -627,10 +729,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
627
729
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
628
730
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
629
731
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
732
|
+
external_aws_s3_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']]] = None,
|
|
733
|
+
external_clickhouse_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']]] = None,
|
|
630
734
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
631
735
|
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
632
736
|
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
633
737
|
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
738
|
+
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
634
739
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
635
740
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
636
741
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
@@ -656,10 +761,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
656
761
|
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
657
762
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
658
763
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
764
|
+
__props__.__dict__["external_aws_s3_user_config"] = external_aws_s3_user_config
|
|
765
|
+
__props__.__dict__["external_clickhouse_user_config"] = external_clickhouse_user_config
|
|
659
766
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
660
767
|
__props__.__dict__["external_google_cloud_bigquery"] = external_google_cloud_bigquery
|
|
661
768
|
__props__.__dict__["external_google_cloud_logging_user_config"] = external_google_cloud_logging_user_config
|
|
662
769
|
__props__.__dict__["external_kafka_user_config"] = external_kafka_user_config
|
|
770
|
+
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
663
771
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
664
772
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
665
773
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
@@ -686,10 +794,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
686
794
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
687
795
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
688
796
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
797
|
+
external_aws_s3_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']]] = None,
|
|
798
|
+
external_clickhouse_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']]] = None,
|
|
689
799
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
690
800
|
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
691
801
|
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
692
802
|
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
803
|
+
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
693
804
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
694
805
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
695
806
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
@@ -710,10 +821,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
710
821
|
:param pulumi.Input[str] endpoint_type: Type of the service integration endpoint. Possible values: `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus`, `rsyslog`
|
|
711
822
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
712
823
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
824
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsS3UserConfigArgs', 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict']] external_aws_s3_user_config: ExternalAwsS3 user configurable settings
|
|
825
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalClickhouseUserConfigArgs', 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict']] external_clickhouse_user_config: ExternalClickhouse user configurable settings
|
|
713
826
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
714
827
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
715
828
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
716
829
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']] external_kafka_user_config: ExternalKafka user configurable settings
|
|
830
|
+
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']] external_mysql_user_config: ExternalMysql user configurable settings
|
|
717
831
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
718
832
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']] external_postgresql: ExternalPostgresql user configurable settings
|
|
719
833
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -732,10 +846,13 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
732
846
|
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
733
847
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
734
848
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
849
|
+
__props__.__dict__["external_aws_s3_user_config"] = external_aws_s3_user_config
|
|
850
|
+
__props__.__dict__["external_clickhouse_user_config"] = external_clickhouse_user_config
|
|
735
851
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
736
852
|
__props__.__dict__["external_google_cloud_bigquery"] = external_google_cloud_bigquery
|
|
737
853
|
__props__.__dict__["external_google_cloud_logging_user_config"] = external_google_cloud_logging_user_config
|
|
738
854
|
__props__.__dict__["external_kafka_user_config"] = external_kafka_user_config
|
|
855
|
+
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
739
856
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
740
857
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
741
858
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
@@ -793,6 +910,22 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
793
910
|
"""
|
|
794
911
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
795
912
|
|
|
913
|
+
@property
|
|
914
|
+
@pulumi.getter(name="externalAwsS3UserConfig")
|
|
915
|
+
def external_aws_s3_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalAwsS3UserConfig']]:
|
|
916
|
+
"""
|
|
917
|
+
ExternalAwsS3 user configurable settings
|
|
918
|
+
"""
|
|
919
|
+
return pulumi.get(self, "external_aws_s3_user_config")
|
|
920
|
+
|
|
921
|
+
@property
|
|
922
|
+
@pulumi.getter(name="externalClickhouseUserConfig")
|
|
923
|
+
def external_clickhouse_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalClickhouseUserConfig']]:
|
|
924
|
+
"""
|
|
925
|
+
ExternalClickhouse user configurable settings
|
|
926
|
+
"""
|
|
927
|
+
return pulumi.get(self, "external_clickhouse_user_config")
|
|
928
|
+
|
|
796
929
|
@property
|
|
797
930
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
798
931
|
def external_elasticsearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig']]:
|
|
@@ -825,6 +958,14 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
825
958
|
"""
|
|
826
959
|
return pulumi.get(self, "external_kafka_user_config")
|
|
827
960
|
|
|
961
|
+
@property
|
|
962
|
+
@pulumi.getter(name="externalMysqlUserConfig")
|
|
963
|
+
def external_mysql_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalMysqlUserConfig']]:
|
|
964
|
+
"""
|
|
965
|
+
ExternalMysql user configurable settings
|
|
966
|
+
"""
|
|
967
|
+
return pulumi.get(self, "external_mysql_user_config")
|
|
968
|
+
|
|
828
969
|
@property
|
|
829
970
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
830
971
|
def external_opensearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalOpensearchLogsUserConfig']]:
|