pulumi-aiven 6.24.0__py3-none-any.whl → 6.24.0a1724786715__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 +0 -9
- pulumi_aiven/_inputs.py +4 -524
- 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 +1 -27
- 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 +1 -40
- 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 +1 -95
- 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/outputs.py +8 -798
- pulumi_aiven/pg.py +7 -7
- pulumi_aiven/pg_user.py +7 -21
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +0 -141
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724786715.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724786715.dist-info}/RECORD +54 -55
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724786715.dist-info}/WHEEL +1 -1
- pulumi_aiven/organization_permission.py +0 -298
- {pulumi_aiven-6.24.0.dist-info → pulumi_aiven-6.24.0a1724786715.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 seem 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 seem 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 seem 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 seem 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 seem 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 seem 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 seem 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.
|
|
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.
|
|
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.
|
|
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.
|
|
179
179
|
"""
|
|
180
180
|
return pulumi.get(self, "pg_allow_replication")
|
|
181
181
|
|
|
@@ -257,13 +257,6 @@ 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)
|
|
267
260
|
```
|
|
268
261
|
|
|
269
262
|
## Import
|
|
@@ -275,7 +268,7 @@ class PgUser(pulumi.CustomResource):
|
|
|
275
268
|
:param str resource_name: The name of the resource.
|
|
276
269
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
277
270
|
:param pulumi.Input[str] password: The password of the service user.
|
|
278
|
-
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
271
|
+
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
279
272
|
: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.
|
|
280
273
|
: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.
|
|
281
274
|
: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.
|
|
@@ -300,13 +293,6 @@ class PgUser(pulumi.CustomResource):
|
|
|
300
293
|
project=example_project["project"],
|
|
301
294
|
username="example-service-user",
|
|
302
295
|
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)
|
|
310
296
|
```
|
|
311
297
|
|
|
312
298
|
## Import
|
|
@@ -388,7 +374,7 @@ class PgUser(pulumi.CustomResource):
|
|
|
388
374
|
:param pulumi.Input[str] access_cert: The access certificate for the servie user.
|
|
389
375
|
:param pulumi.Input[str] access_key: The access certificate key for the service user.
|
|
390
376
|
:param pulumi.Input[str] password: The password of the service user.
|
|
391
|
-
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
377
|
+
:param pulumi.Input[bool] pg_allow_replication: Allows replication.
|
|
392
378
|
: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.
|
|
393
379
|
: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.
|
|
394
380
|
:param pulumi.Input[str] type: The service user account type, either primary or regular.
|
|
@@ -436,7 +422,7 @@ class PgUser(pulumi.CustomResource):
|
|
|
436
422
|
@pulumi.getter(name="pgAllowReplication")
|
|
437
423
|
def pg_allow_replication(self) -> pulumi.Output[Optional[bool]]:
|
|
438
424
|
"""
|
|
439
|
-
Allows replication.
|
|
425
|
+
Allows replication.
|
|
440
426
|
"""
|
|
441
427
|
return pulumi.get(self, "pg_allow_replication")
|
|
442
428
|
|
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 seem 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 seem 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 seem 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 seem 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 seem 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 seem 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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1118
1118
|
"""
|
|
1119
1119
|
return pulumi.get(self, "plan")
|
|
1120
1120
|
|
|
@@ -22,13 +22,10 @@ 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,
|
|
27
25
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
28
26
|
external_google_cloud_bigquery: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']] = None,
|
|
29
27
|
external_google_cloud_logging_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']] = None,
|
|
30
28
|
external_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']] = None,
|
|
31
|
-
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
32
29
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
33
30
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
34
31
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
@@ -43,13 +40,10 @@ class ServiceIntegrationEndpointArgs:
|
|
|
43
40
|
:param pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
44
41
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
45
42
|
: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
|
|
48
43
|
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
49
44
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs'] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
50
45
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs'] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
51
46
|
: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
|
|
53
47
|
:param pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
54
48
|
:param pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs'] external_postgresql: ExternalPostgresql user configurable settings
|
|
55
49
|
:param pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs'] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -66,10 +60,6 @@ class ServiceIntegrationEndpointArgs:
|
|
|
66
60
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
67
61
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
68
62
|
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)
|
|
73
63
|
if external_elasticsearch_logs_user_config is not None:
|
|
74
64
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
75
65
|
if external_google_cloud_bigquery is not None:
|
|
@@ -78,8 +68,6 @@ class ServiceIntegrationEndpointArgs:
|
|
|
78
68
|
pulumi.set(__self__, "external_google_cloud_logging_user_config", external_google_cloud_logging_user_config)
|
|
79
69
|
if external_kafka_user_config is not None:
|
|
80
70
|
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)
|
|
83
71
|
if external_opensearch_logs_user_config is not None:
|
|
84
72
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
85
73
|
if external_postgresql is not None:
|
|
@@ -165,30 +153,6 @@ class ServiceIntegrationEndpointArgs:
|
|
|
165
153
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
166
154
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
167
155
|
|
|
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
|
-
|
|
192
156
|
@property
|
|
193
157
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
194
158
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
@@ -237,18 +201,6 @@ class ServiceIntegrationEndpointArgs:
|
|
|
237
201
|
def external_kafka_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]):
|
|
238
202
|
pulumi.set(self, "external_kafka_user_config", value)
|
|
239
203
|
|
|
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
|
-
|
|
252
204
|
@property
|
|
253
205
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
254
206
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
@@ -331,13 +283,10 @@ class _ServiceIntegrationEndpointState:
|
|
|
331
283
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
332
284
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
333
285
|
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,
|
|
336
286
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
337
287
|
external_google_cloud_bigquery: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs']] = None,
|
|
338
288
|
external_google_cloud_logging_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs']] = None,
|
|
339
289
|
external_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']] = None,
|
|
340
|
-
external_mysql_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalMysqlUserConfigArgs']] = None,
|
|
341
290
|
external_opensearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']] = None,
|
|
342
291
|
external_postgresql: Optional[pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs']] = None,
|
|
343
292
|
external_schema_registry_user_config: Optional[pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs']] = None,
|
|
@@ -353,13 +302,10 @@ class _ServiceIntegrationEndpointState:
|
|
|
353
302
|
: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`
|
|
354
303
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
355
304
|
: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
|
|
358
305
|
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
359
306
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs'] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
360
307
|
:param pulumi.Input['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs'] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
361
308
|
: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
|
|
363
309
|
:param pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
364
310
|
:param pulumi.Input['ServiceIntegrationEndpointExternalPostgresqlArgs'] external_postgresql: ExternalPostgresql user configurable settings
|
|
365
311
|
:param pulumi.Input['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs'] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -380,10 +326,6 @@ class _ServiceIntegrationEndpointState:
|
|
|
380
326
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
381
327
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
382
328
|
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)
|
|
387
329
|
if external_elasticsearch_logs_user_config is not None:
|
|
388
330
|
pulumi.set(__self__, "external_elasticsearch_logs_user_config", external_elasticsearch_logs_user_config)
|
|
389
331
|
if external_google_cloud_bigquery is not None:
|
|
@@ -392,8 +334,6 @@ class _ServiceIntegrationEndpointState:
|
|
|
392
334
|
pulumi.set(__self__, "external_google_cloud_logging_user_config", external_google_cloud_logging_user_config)
|
|
393
335
|
if external_kafka_user_config is not None:
|
|
394
336
|
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)
|
|
397
337
|
if external_opensearch_logs_user_config is not None:
|
|
398
338
|
pulumi.set(__self__, "external_opensearch_logs_user_config", external_opensearch_logs_user_config)
|
|
399
339
|
if external_postgresql is not None:
|
|
@@ -481,30 +421,6 @@ class _ServiceIntegrationEndpointState:
|
|
|
481
421
|
def external_aws_cloudwatch_metrics_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']]):
|
|
482
422
|
pulumi.set(self, "external_aws_cloudwatch_metrics_user_config", value)
|
|
483
423
|
|
|
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
|
-
|
|
508
424
|
@property
|
|
509
425
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
510
426
|
def external_elasticsearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']]:
|
|
@@ -553,18 +469,6 @@ class _ServiceIntegrationEndpointState:
|
|
|
553
469
|
def external_kafka_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationEndpointExternalKafkaUserConfigArgs']]):
|
|
554
470
|
pulumi.set(self, "external_kafka_user_config", value)
|
|
555
471
|
|
|
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
|
-
|
|
568
472
|
@property
|
|
569
473
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
570
474
|
def external_opensearch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs']]:
|
|
@@ -660,13 +564,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
660
564
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
661
565
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
662
566
|
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,
|
|
665
567
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
666
568
|
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
667
569
|
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
668
570
|
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
669
|
-
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
670
571
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
671
572
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
672
573
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
@@ -685,13 +586,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
685
586
|
: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`
|
|
686
587
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
687
588
|
: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
|
|
690
589
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
691
590
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
692
591
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
693
592
|
: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
|
|
695
593
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
696
594
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']] external_postgresql: ExternalPostgresql user configurable settings
|
|
697
595
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -729,13 +627,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
729
627
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
730
628
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
731
629
|
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,
|
|
734
630
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
735
631
|
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
736
632
|
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
737
633
|
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
738
|
-
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
739
634
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
740
635
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
741
636
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
@@ -761,13 +656,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
761
656
|
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
762
657
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
763
658
|
__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
|
|
766
659
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
767
660
|
__props__.__dict__["external_google_cloud_bigquery"] = external_google_cloud_bigquery
|
|
768
661
|
__props__.__dict__["external_google_cloud_logging_user_config"] = external_google_cloud_logging_user_config
|
|
769
662
|
__props__.__dict__["external_kafka_user_config"] = external_kafka_user_config
|
|
770
|
-
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
771
663
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
772
664
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
773
665
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
@@ -794,13 +686,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
794
686
|
endpoint_type: Optional[pulumi.Input[str]] = None,
|
|
795
687
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
796
688
|
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,
|
|
799
689
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
800
690
|
external_google_cloud_bigquery: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']]] = None,
|
|
801
691
|
external_google_cloud_logging_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']]] = None,
|
|
802
692
|
external_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalKafkaUserConfigArgs', 'ServiceIntegrationEndpointExternalKafkaUserConfigArgsDict']]] = None,
|
|
803
|
-
external_mysql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalMysqlUserConfigArgs', 'ServiceIntegrationEndpointExternalMysqlUserConfigArgsDict']]] = None,
|
|
804
693
|
external_opensearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']]] = None,
|
|
805
694
|
external_postgresql: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']]] = None,
|
|
806
695
|
external_schema_registry_user_config: Optional[pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']]] = None,
|
|
@@ -821,13 +710,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
821
710
|
: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`
|
|
822
711
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
823
712
|
: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
|
|
826
713
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
827
714
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs', 'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgsDict']] external_google_cloud_bigquery: ExternalGoogleCloudBigquery user configurable settings
|
|
828
715
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs', 'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgsDict']] external_google_cloud_logging_user_config: ExternalGoogleCloudLogging user configurable settings
|
|
829
716
|
: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
|
|
831
717
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
832
718
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalPostgresqlArgs', 'ServiceIntegrationEndpointExternalPostgresqlArgsDict']] external_postgresql: ExternalPostgresql user configurable settings
|
|
833
719
|
:param pulumi.Input[Union['ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs', 'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgsDict']] external_schema_registry_user_config: ExternalSchemaRegistry user configurable settings
|
|
@@ -846,13 +732,10 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
846
732
|
__props__.__dict__["endpoint_type"] = endpoint_type
|
|
847
733
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
848
734
|
__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
|
|
851
735
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
852
736
|
__props__.__dict__["external_google_cloud_bigquery"] = external_google_cloud_bigquery
|
|
853
737
|
__props__.__dict__["external_google_cloud_logging_user_config"] = external_google_cloud_logging_user_config
|
|
854
738
|
__props__.__dict__["external_kafka_user_config"] = external_kafka_user_config
|
|
855
|
-
__props__.__dict__["external_mysql_user_config"] = external_mysql_user_config
|
|
856
739
|
__props__.__dict__["external_opensearch_logs_user_config"] = external_opensearch_logs_user_config
|
|
857
740
|
__props__.__dict__["external_postgresql"] = external_postgresql
|
|
858
741
|
__props__.__dict__["external_schema_registry_user_config"] = external_schema_registry_user_config
|
|
@@ -910,22 +793,6 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
910
793
|
"""
|
|
911
794
|
return pulumi.get(self, "external_aws_cloudwatch_metrics_user_config")
|
|
912
795
|
|
|
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
|
-
|
|
929
796
|
@property
|
|
930
797
|
@pulumi.getter(name="externalElasticsearchLogsUserConfig")
|
|
931
798
|
def external_elasticsearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig']]:
|
|
@@ -958,14 +825,6 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
958
825
|
"""
|
|
959
826
|
return pulumi.get(self, "external_kafka_user_config")
|
|
960
827
|
|
|
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
|
-
|
|
969
828
|
@property
|
|
970
829
|
@pulumi.getter(name="externalOpensearchLogsUserConfig")
|
|
971
830
|
def external_opensearch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationEndpointExternalOpensearchLogsUserConfig']]:
|