pulumi-aiven 6.16.0a1716504562__py3-none-any.whl → 6.16.0a1716589862__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +1096 -216
- pulumi_aiven/cassandra.py +48 -1
- pulumi_aiven/clickhouse.py +48 -1
- pulumi_aiven/dragonfly.py +48 -1
- pulumi_aiven/flink.py +2 -2
- pulumi_aiven/flink_application_deployment.py +56 -30
- pulumi_aiven/gcp_privatelink.py +52 -30
- pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
- pulumi_aiven/get_cassanda.py +14 -1
- pulumi_aiven/get_cassandra.py +14 -1
- pulumi_aiven/get_clickhouse.py +14 -1
- pulumi_aiven/get_dragonfly.py +14 -1
- pulumi_aiven/get_gcp_privatelink.py +45 -2
- pulumi_aiven/get_grafana.py +14 -1
- pulumi_aiven/get_m3_aggregator.py +14 -1
- pulumi_aiven/get_m3_db.py +14 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_redis.py +14 -1
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/grafana.py +48 -1
- pulumi_aiven/influx_db.py +21 -2
- pulumi_aiven/kafka.py +20 -1
- pulumi_aiven/m3_aggregator.py +48 -1
- pulumi_aiven/m3_db.py +48 -1
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +48 -1
- pulumi_aiven/open_search.py +21 -2
- pulumi_aiven/outputs.py +1758 -285
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +48 -1
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/top_level.txt +0 -0
pulumi_aiven/pg.py
CHANGED
|
@@ -853,7 +853,7 @@ class Pg(pulumi.CustomResource):
|
|
|
853
853
|
__props__.__dict__["disk_space"] = disk_space
|
|
854
854
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
855
855
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
856
|
-
__props__.__dict__["pg"] = pg
|
|
856
|
+
__props__.__dict__["pg"] = None if pg is None else pulumi.Output.secret(pg)
|
|
857
857
|
__props__.__dict__["pg_user_config"] = pg_user_config
|
|
858
858
|
if plan is None and not opts.urn:
|
|
859
859
|
raise TypeError("Missing required property 'plan'")
|
|
@@ -880,7 +880,7 @@ class Pg(pulumi.CustomResource):
|
|
|
880
880
|
__props__.__dict__["service_uri"] = None
|
|
881
881
|
__props__.__dict__["service_username"] = None
|
|
882
882
|
__props__.__dict__["state"] = None
|
|
883
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
883
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["pg", "servicePassword", "serviceUri"])
|
|
884
884
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
885
885
|
super(Pg, __self__).__init__(
|
|
886
886
|
'aiven:index/pg:Pg',
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -25,6 +25,7 @@ class RedisArgs:
|
|
|
25
25
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
26
26
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
27
27
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
redis: Optional[pulumi.Input['RedisRedisArgs']] = None,
|
|
28
29
|
redis_user_config: Optional[pulumi.Input['RedisRedisUserConfigArgs']] = None,
|
|
29
30
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]]] = None,
|
|
30
31
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -42,6 +43,7 @@ class RedisArgs:
|
|
|
42
43
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
43
44
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
44
45
|
: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.
|
|
46
|
+
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
45
47
|
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings
|
|
46
48
|
:param pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
47
49
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -67,6 +69,8 @@ class RedisArgs:
|
|
|
67
69
|
pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
|
|
68
70
|
if project_vpc_id is not None:
|
|
69
71
|
pulumi.set(__self__, "project_vpc_id", project_vpc_id)
|
|
72
|
+
if redis is not None:
|
|
73
|
+
pulumi.set(__self__, "redis", redis)
|
|
70
74
|
if redis_user_config is not None:
|
|
71
75
|
pulumi.set(__self__, "redis_user_config", redis_user_config)
|
|
72
76
|
if service_integrations is not None:
|
|
@@ -191,6 +195,18 @@ class RedisArgs:
|
|
|
191
195
|
def project_vpc_id(self, value: Optional[pulumi.Input[str]]):
|
|
192
196
|
pulumi.set(self, "project_vpc_id", value)
|
|
193
197
|
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter
|
|
200
|
+
def redis(self) -> Optional[pulumi.Input['RedisRedisArgs']]:
|
|
201
|
+
"""
|
|
202
|
+
Redis server provided values
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "redis")
|
|
205
|
+
|
|
206
|
+
@redis.setter
|
|
207
|
+
def redis(self, value: Optional[pulumi.Input['RedisRedisArgs']]):
|
|
208
|
+
pulumi.set(self, "redis", value)
|
|
209
|
+
|
|
194
210
|
@property
|
|
195
211
|
@pulumi.getter(name="redisUserConfig")
|
|
196
212
|
def redis_user_config(self) -> Optional[pulumi.Input['RedisRedisUserConfigArgs']]:
|
|
@@ -280,6 +296,7 @@ class _RedisState:
|
|
|
280
296
|
plan: Optional[pulumi.Input[str]] = None,
|
|
281
297
|
project: Optional[pulumi.Input[str]] = None,
|
|
282
298
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
299
|
+
redis: Optional[pulumi.Input['RedisRedisArgs']] = None,
|
|
283
300
|
redis_user_config: Optional[pulumi.Input['RedisRedisUserConfigArgs']] = None,
|
|
284
301
|
service_host: Optional[pulumi.Input[str]] = None,
|
|
285
302
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]]] = None,
|
|
@@ -309,6 +326,7 @@ class _RedisState:
|
|
|
309
326
|
: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).
|
|
310
327
|
: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.
|
|
311
328
|
: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.
|
|
329
|
+
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
312
330
|
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings
|
|
313
331
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
314
332
|
:param pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -353,6 +371,8 @@ class _RedisState:
|
|
|
353
371
|
pulumi.set(__self__, "project", project)
|
|
354
372
|
if project_vpc_id is not None:
|
|
355
373
|
pulumi.set(__self__, "project_vpc_id", project_vpc_id)
|
|
374
|
+
if redis is not None:
|
|
375
|
+
pulumi.set(__self__, "redis", redis)
|
|
356
376
|
if redis_user_config is not None:
|
|
357
377
|
pulumi.set(__self__, "redis_user_config", redis_user_config)
|
|
358
378
|
if service_host is not None:
|
|
@@ -541,6 +561,18 @@ class _RedisState:
|
|
|
541
561
|
def project_vpc_id(self, value: Optional[pulumi.Input[str]]):
|
|
542
562
|
pulumi.set(self, "project_vpc_id", value)
|
|
543
563
|
|
|
564
|
+
@property
|
|
565
|
+
@pulumi.getter
|
|
566
|
+
def redis(self) -> Optional[pulumi.Input['RedisRedisArgs']]:
|
|
567
|
+
"""
|
|
568
|
+
Redis server provided values
|
|
569
|
+
"""
|
|
570
|
+
return pulumi.get(self, "redis")
|
|
571
|
+
|
|
572
|
+
@redis.setter
|
|
573
|
+
def redis(self, value: Optional[pulumi.Input['RedisRedisArgs']]):
|
|
574
|
+
pulumi.set(self, "redis", value)
|
|
575
|
+
|
|
544
576
|
@property
|
|
545
577
|
@pulumi.getter(name="redisUserConfig")
|
|
546
578
|
def redis_user_config(self) -> Optional[pulumi.Input['RedisRedisUserConfigArgs']]:
|
|
@@ -723,6 +755,7 @@ class Redis(pulumi.CustomResource):
|
|
|
723
755
|
plan: Optional[pulumi.Input[str]] = None,
|
|
724
756
|
project: Optional[pulumi.Input[str]] = None,
|
|
725
757
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
758
|
+
redis: Optional[pulumi.Input[pulumi.InputType['RedisRedisArgs']]] = None,
|
|
726
759
|
redis_user_config: Optional[pulumi.Input[pulumi.InputType['RedisRedisUserConfigArgs']]] = None,
|
|
727
760
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisServiceIntegrationArgs']]]]] = None,
|
|
728
761
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -771,6 +804,7 @@ class Redis(pulumi.CustomResource):
|
|
|
771
804
|
: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).
|
|
772
805
|
: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.
|
|
773
806
|
: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.
|
|
807
|
+
:param pulumi.Input[pulumi.InputType['RedisRedisArgs']] redis: Redis server provided values
|
|
774
808
|
:param pulumi.Input[pulumi.InputType['RedisRedisUserConfigArgs']] redis_user_config: Redis user configurable settings
|
|
775
809
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
776
810
|
: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.
|
|
@@ -838,6 +872,7 @@ class Redis(pulumi.CustomResource):
|
|
|
838
872
|
plan: Optional[pulumi.Input[str]] = None,
|
|
839
873
|
project: Optional[pulumi.Input[str]] = None,
|
|
840
874
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
875
|
+
redis: Optional[pulumi.Input[pulumi.InputType['RedisRedisArgs']]] = None,
|
|
841
876
|
redis_user_config: Optional[pulumi.Input[pulumi.InputType['RedisRedisUserConfigArgs']]] = None,
|
|
842
877
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisServiceIntegrationArgs']]]]] = None,
|
|
843
878
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -866,6 +901,7 @@ class Redis(pulumi.CustomResource):
|
|
|
866
901
|
raise TypeError("Missing required property 'project'")
|
|
867
902
|
__props__.__dict__["project"] = project
|
|
868
903
|
__props__.__dict__["project_vpc_id"] = project_vpc_id
|
|
904
|
+
__props__.__dict__["redis"] = None if redis is None else pulumi.Output.secret(redis)
|
|
869
905
|
__props__.__dict__["redis_user_config"] = redis_user_config
|
|
870
906
|
__props__.__dict__["service_integrations"] = service_integrations
|
|
871
907
|
if service_name is None and not opts.urn:
|
|
@@ -887,7 +923,7 @@ class Redis(pulumi.CustomResource):
|
|
|
887
923
|
__props__.__dict__["service_uri"] = None
|
|
888
924
|
__props__.__dict__["service_username"] = None
|
|
889
925
|
__props__.__dict__["state"] = None
|
|
890
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
926
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["redis", "servicePassword", "serviceUri"])
|
|
891
927
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
892
928
|
super(Redis, __self__).__init__(
|
|
893
929
|
'aiven:index/redis:Redis',
|
|
@@ -912,6 +948,7 @@ class Redis(pulumi.CustomResource):
|
|
|
912
948
|
plan: Optional[pulumi.Input[str]] = None,
|
|
913
949
|
project: Optional[pulumi.Input[str]] = None,
|
|
914
950
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
951
|
+
redis: Optional[pulumi.Input[pulumi.InputType['RedisRedisArgs']]] = None,
|
|
915
952
|
redis_user_config: Optional[pulumi.Input[pulumi.InputType['RedisRedisUserConfigArgs']]] = None,
|
|
916
953
|
service_host: Optional[pulumi.Input[str]] = None,
|
|
917
954
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisServiceIntegrationArgs']]]]] = None,
|
|
@@ -946,6 +983,7 @@ class Redis(pulumi.CustomResource):
|
|
|
946
983
|
: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).
|
|
947
984
|
: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.
|
|
948
985
|
: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.
|
|
986
|
+
:param pulumi.Input[pulumi.InputType['RedisRedisArgs']] redis: Redis server provided values
|
|
949
987
|
:param pulumi.Input[pulumi.InputType['RedisRedisUserConfigArgs']] redis_user_config: Redis user configurable settings
|
|
950
988
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
951
989
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -978,6 +1016,7 @@ class Redis(pulumi.CustomResource):
|
|
|
978
1016
|
__props__.__dict__["plan"] = plan
|
|
979
1017
|
__props__.__dict__["project"] = project
|
|
980
1018
|
__props__.__dict__["project_vpc_id"] = project_vpc_id
|
|
1019
|
+
__props__.__dict__["redis"] = redis
|
|
981
1020
|
__props__.__dict__["redis_user_config"] = redis_user_config
|
|
982
1021
|
__props__.__dict__["service_host"] = service_host
|
|
983
1022
|
__props__.__dict__["service_integrations"] = service_integrations
|
|
@@ -1101,6 +1140,14 @@ class Redis(pulumi.CustomResource):
|
|
|
1101
1140
|
"""
|
|
1102
1141
|
return pulumi.get(self, "project_vpc_id")
|
|
1103
1142
|
|
|
1143
|
+
@property
|
|
1144
|
+
@pulumi.getter
|
|
1145
|
+
def redis(self) -> pulumi.Output['outputs.RedisRedis']:
|
|
1146
|
+
"""
|
|
1147
|
+
Redis server provided values
|
|
1148
|
+
"""
|
|
1149
|
+
return pulumi.get(self, "redis")
|
|
1150
|
+
|
|
1104
1151
|
@property
|
|
1105
1152
|
@pulumi.getter(name="redisUserConfig")
|
|
1106
1153
|
def redis_user_config(self) -> pulumi.Output[Optional['outputs.RedisRedisUserConfig']]:
|
|
@@ -37,7 +37,7 @@ class ServiceIntegrationArgs:
|
|
|
37
37
|
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
38
38
|
"""
|
|
39
39
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
40
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
40
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
41
41
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
42
42
|
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
43
43
|
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
@@ -98,7 +98,7 @@ class ServiceIntegrationArgs:
|
|
|
98
98
|
@pulumi.getter(name="integrationType")
|
|
99
99
|
def integration_type(self) -> pulumi.Input[str]:
|
|
100
100
|
"""
|
|
101
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
101
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
102
102
|
"""
|
|
103
103
|
return pulumi.get(self, "integration_type")
|
|
104
104
|
|
|
@@ -358,7 +358,7 @@ class _ServiceIntegrationState:
|
|
|
358
358
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
359
359
|
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
360
360
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
361
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
361
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
362
362
|
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
363
363
|
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
364
364
|
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -534,7 +534,7 @@ class _ServiceIntegrationState:
|
|
|
534
534
|
@pulumi.getter(name="integrationType")
|
|
535
535
|
def integration_type(self) -> Optional[pulumi.Input[str]]:
|
|
536
536
|
"""
|
|
537
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
537
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
538
538
|
"""
|
|
539
539
|
return pulumi.get(self, "integration_type")
|
|
540
540
|
|
|
@@ -716,7 +716,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
716
716
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
717
717
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
718
718
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
719
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
719
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
720
720
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationKafkaConnectUserConfigArgs']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
721
721
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationKafkaLogsUserConfigArgs']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
722
722
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationKafkaMirrormakerUserConfigArgs']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -876,7 +876,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
876
876
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
877
877
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationExternalOpensearchLogsUserConfigArgs']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
878
878
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
879
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
879
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
880
880
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationKafkaConnectUserConfigArgs']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
881
881
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationKafkaLogsUserConfigArgs']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
882
882
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationKafkaMirrormakerUserConfigArgs']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -997,7 +997,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
997
997
|
@pulumi.getter(name="integrationType")
|
|
998
998
|
def integration_type(self) -> pulumi.Output[str]:
|
|
999
999
|
"""
|
|
1000
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
1000
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
1001
1001
|
"""
|
|
1002
1002
|
return pulumi.get(self, "integration_type")
|
|
1003
1003
|
|
|
@@ -35,7 +35,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
35
35
|
"""
|
|
36
36
|
The set of arguments for constructing a ServiceIntegrationEndpoint resource.
|
|
37
37
|
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint
|
|
38
|
-
: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`, `jolokia`, `prometheus`, `rsyslog`
|
|
38
|
+
: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`
|
|
39
39
|
:param pulumi.Input[str] project: Project the service integration endpoint belongs to
|
|
40
40
|
:param pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
41
41
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
@@ -97,7 +97,7 @@ class ServiceIntegrationEndpointArgs:
|
|
|
97
97
|
@pulumi.getter(name="endpointType")
|
|
98
98
|
def endpoint_type(self) -> pulumi.Input[str]:
|
|
99
99
|
"""
|
|
100
|
-
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`, `jolokia`, `prometheus`, `rsyslog`
|
|
100
|
+
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`
|
|
101
101
|
"""
|
|
102
102
|
return pulumi.get(self, "endpoint_type")
|
|
103
103
|
|
|
@@ -299,7 +299,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
299
299
|
:param pulumi.Input['ServiceIntegrationEndpointDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings
|
|
300
300
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] endpoint_config: Integration endpoint specific backend configuration
|
|
301
301
|
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint
|
|
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`, `jolokia`, `prometheus`, `rsyslog`
|
|
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`
|
|
303
303
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
304
304
|
:param pulumi.Input['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
305
305
|
:param pulumi.Input['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
@@ -389,7 +389,7 @@ class _ServiceIntegrationEndpointState:
|
|
|
389
389
|
@pulumi.getter(name="endpointType")
|
|
390
390
|
def endpoint_type(self) -> Optional[pulumi.Input[str]]:
|
|
391
391
|
"""
|
|
392
|
-
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`, `jolokia`, `prometheus`, `rsyslog`
|
|
392
|
+
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`
|
|
393
393
|
"""
|
|
394
394
|
return pulumi.get(self, "endpoint_type")
|
|
395
395
|
|
|
@@ -583,7 +583,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
583
583
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
584
584
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointDatadogUserConfigArgs']] datadog_user_config: Datadog user configurable settings
|
|
585
585
|
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint
|
|
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`, `jolokia`, `prometheus`, `rsyslog`
|
|
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`
|
|
587
587
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
588
588
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
589
589
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
@@ -707,7 +707,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
707
707
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointDatadogUserConfigArgs']] datadog_user_config: Datadog user configurable settings
|
|
708
708
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] endpoint_config: Integration endpoint specific backend configuration
|
|
709
709
|
:param pulumi.Input[str] endpoint_name: Name of the service integration endpoint
|
|
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`, `jolokia`, `prometheus`, `rsyslog`
|
|
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`
|
|
711
711
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings
|
|
712
712
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
713
713
|
:param pulumi.Input[pulumi.InputType['ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
@@ -773,7 +773,7 @@ class ServiceIntegrationEndpoint(pulumi.CustomResource):
|
|
|
773
773
|
@pulumi.getter(name="endpointType")
|
|
774
774
|
def endpoint_type(self) -> pulumi.Output[str]:
|
|
775
775
|
"""
|
|
776
|
-
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`, `jolokia`, `prometheus`, `rsyslog`
|
|
776
|
+
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`
|
|
777
777
|
"""
|
|
778
778
|
return pulumi.get(self, "endpoint_type")
|
|
779
779
|
|
{pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
pulumi_aiven/__init__.py,sha256=0h2zG50QpZLUQoqA306HEacGVpiLolClybi7bGHtHSo,17963
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256
|
|
2
|
+
pulumi_aiven/_inputs.py,sha256=-xXf8mpGDhfK3WqAn4vqbJSp9x6qMCUcG3Pwgl2xjgw,1044462
|
|
3
3
|
pulumi_aiven/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
|
4
4
|
pulumi_aiven/account.py,sha256=AgV088KZCyVC_ndgqWeFOeqb52-m9XtdPvjGSQ2LRrs,18274
|
|
5
5
|
pulumi_aiven/account_authentication.py,sha256=vltk7XN7jXSO12BQ834AKPy1p1RGKqsX8jrMKOU_7K0,36871
|
|
@@ -12,21 +12,21 @@ pulumi_aiven/azure_privatelink.py,sha256=fnW3eM-N2Og8IhfOgYbtaeo9PEFtnnoQ4utMEm_
|
|
|
12
12
|
pulumi_aiven/azure_privatelink_connection_approval.py,sha256=iTJ1B6WRP1LH8LFe_5-7w0yYPsQZG1rKAXyAWs8Pd6Y,18926
|
|
13
13
|
pulumi_aiven/azure_vpc_peering_connection.py,sha256=ali1DX5gS9Wy3JJKelMPCsH-Ikk4LmBOihThXkVD0Io,25124
|
|
14
14
|
pulumi_aiven/billing_group.py,sha256=32WUU61rJV4hMMho2xdZ6FT4mQBarzhUDHCcRDhvGpU,37753
|
|
15
|
-
pulumi_aiven/cassandra.py,sha256=
|
|
15
|
+
pulumi_aiven/cassandra.py,sha256=Aw76tZF_shuvdssqocp-8SNRskrJ5mOZSE05oSIhY7E,80242
|
|
16
16
|
pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
|
|
17
|
-
pulumi_aiven/clickhouse.py,sha256=
|
|
17
|
+
pulumi_aiven/clickhouse.py,sha256=x-0kDYWXrJRuBqRubqeTHDCAQPcCwgN2w8JQX1_zblM,79952
|
|
18
18
|
pulumi_aiven/clickhouse_database.py,sha256=Z16_Ddf9zKLCV16iO4S_9Wk5TEawdYJyO9nQq5IznxQ,14474
|
|
19
19
|
pulumi_aiven/clickhouse_grant.py,sha256=G52gABm-fNtzio74wy3ASxG9p0qCRFhBkyVA03uNVpw,25857
|
|
20
20
|
pulumi_aiven/clickhouse_role.py,sha256=Lk9H_bkZcsvaktXIno8QEqNMQdqeqYVRqoE2a30xzW8,13175
|
|
21
21
|
pulumi_aiven/clickhouse_user.py,sha256=v4XaOVURXHPJ8FWww6IRKaXSTMGlmKznplNWK78ksb0,15886
|
|
22
22
|
pulumi_aiven/connection_pool.py,sha256=3Vd_cbCNIZSSxP2ztuk_zm4CagEAYudGVKYmqCM6W1o,25462
|
|
23
|
-
pulumi_aiven/dragonfly.py,sha256
|
|
24
|
-
pulumi_aiven/flink.py,sha256=
|
|
23
|
+
pulumi_aiven/dragonfly.py,sha256=-u-O_rEFQPuBtCA5xKKEzRONU1E0dngjFEB88pwVHZg,79940
|
|
24
|
+
pulumi_aiven/flink.py,sha256=9MGzEozkyFRNqdngpwko47w3yM21OuvqEJh3LlLA7ig,79062
|
|
25
25
|
pulumi_aiven/flink_application.py,sha256=bIAE6Rt_JwOLchnG1T3PKm4mzaGpT_VTHLSqwcgrXNw,17200
|
|
26
|
-
pulumi_aiven/flink_application_deployment.py,sha256=
|
|
26
|
+
pulumi_aiven/flink_application_deployment.py,sha256=I9eRnBXG5-rqIbWQHWEnQ96ovaQ31tU-H2yW1d3Vi4Q,23037
|
|
27
27
|
pulumi_aiven/flink_application_version.py,sha256=mMv2vD54mDmybOYbkSiNozdSPZ1zJvPzkhIAgHMCOxI,34046
|
|
28
|
-
pulumi_aiven/gcp_privatelink.py,sha256=
|
|
29
|
-
pulumi_aiven/gcp_privatelink_connection_approval.py,sha256=
|
|
28
|
+
pulumi_aiven/gcp_privatelink.py,sha256=rSRoY5iNYhfZu-VpjUg7bjaIHh2JOjJOVIBB4OHU2k4,14004
|
|
29
|
+
pulumi_aiven/gcp_privatelink_connection_approval.py,sha256=Pm9TB2M5OtboiVzswVNtQevjdts3cC0aRHpLLT3ahxA,16890
|
|
30
30
|
pulumi_aiven/gcp_vpc_peering_connection.py,sha256=hnTUvskarwN5q19ZYIm0B0U6jGhxb5lhqvSQfkXgy9w,14854
|
|
31
31
|
pulumi_aiven/get_account.py,sha256=1IRpzwGrU2kq2JfeoJ3Gj2zKdE0DrZ_G-9sJLJlsz_c,6506
|
|
32
32
|
pulumi_aiven/get_account_authentication.py,sha256=ygLucZMU0giXVuBPJULj7-q7uRp_q70yWJZ_pgPPm4I,12740
|
|
@@ -38,20 +38,20 @@ pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=lIVsv_LsORoRGldF34NJQojiyV
|
|
|
38
38
|
pulumi_aiven/get_azure_privatelink.py,sha256=LQgpG0bCm9jk744TX2n4KS530PW5I9Dh1bmDO3jMgss,7755
|
|
39
39
|
pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=9Pd-eZ4Y4Ji5p81yLTSRfn1FIR-apHM9r4z7_2GFlnA,11684
|
|
40
40
|
pulumi_aiven/get_billing_group.py,sha256=ztNtROFBAjtl-P_7lIF_44ycSSZyfRPN5VTHs9Yb39A,10909
|
|
41
|
-
pulumi_aiven/get_cassanda.py,sha256=
|
|
42
|
-
pulumi_aiven/get_cassandra.py,sha256=
|
|
41
|
+
pulumi_aiven/get_cassanda.py,sha256=HvwzDv9Gcjd915peixFIjtzpzQB6kBHJMj4-kfIQUtk,22923
|
|
42
|
+
pulumi_aiven/get_cassandra.py,sha256=F7js4i0jz6lIBDYZw40jOinVWoi6nfFk_0wQQXNsoy4,22592
|
|
43
43
|
pulumi_aiven/get_cassandra_user.py,sha256=grVk-DzxtyiVj5CneY5mCQ8bB27H4bLAIdUdGwwiVuA,8124
|
|
44
|
-
pulumi_aiven/get_clickhouse.py,sha256=
|
|
44
|
+
pulumi_aiven/get_clickhouse.py,sha256=vaYYqCdfzcSsbVel8V__PXQX9j92IUEapcgLEogO934,22669
|
|
45
45
|
pulumi_aiven/get_clickhouse_database.py,sha256=0_BGNn3z7VsdmYbVkyl96-327RrHvow6hkfhBY212xc,6574
|
|
46
46
|
pulumi_aiven/get_clickhouse_user.py,sha256=uYDsKsuIDp9tCvk2443sYVOXTfmMtPE6FpxNZ6GKvwI,7298
|
|
47
47
|
pulumi_aiven/get_connection_pool.py,sha256=qqx9K8wn74DcWbCPoNZkGVaXSUE9STjNkXP2mEHcvGA,8984
|
|
48
|
-
pulumi_aiven/get_dragonfly.py,sha256=
|
|
48
|
+
pulumi_aiven/get_dragonfly.py,sha256=8mb5WsSMOAwMt4MQ4aXMoLzuNVYs_zn1IBLyOl25Jgk,22610
|
|
49
49
|
pulumi_aiven/get_flink.py,sha256=Xg7RSySB_3911uGDvMqnTYJK171mgcd4fNY5tRn7qzI,22344
|
|
50
50
|
pulumi_aiven/get_flink_application.py,sha256=-1LhSbtjcCS8Tp_r7eR_KHsg_NQPCnjgT1Y-V-gVNi0,8160
|
|
51
51
|
pulumi_aiven/get_flink_application_version.py,sha256=gzDZ0GxQPFYLyWwCBB0TTF219xf3QRN_vyFq0xjErwU,11007
|
|
52
|
-
pulumi_aiven/get_gcp_privatelink.py,sha256=
|
|
52
|
+
pulumi_aiven/get_gcp_privatelink.py,sha256=B0_jQTTtZNGaJmhdJyUyqvRhuOF2EgUtAivb-yfVD_k,6601
|
|
53
53
|
pulumi_aiven/get_gcp_vpc_peering_connection.py,sha256=BuWOFLAgYyFlxpa7sBwfQoVgJ7ZnT7mhDN2WSrNkimE,7122
|
|
54
|
-
pulumi_aiven/get_grafana.py,sha256
|
|
54
|
+
pulumi_aiven/get_grafana.py,sha256=H0BWmuSGsvNER7THuSpZXM3LNbct5JYSLoU_7l4g_tE,22450
|
|
55
55
|
pulumi_aiven/get_influx_db.py,sha256=eo_2CHe3FlcRIMfN_xikFxmdPhJuSpgNI6YDxjzp-Fw,15756
|
|
56
56
|
pulumi_aiven/get_influxdb_database.py,sha256=3fwwAHiy_2s1dmI6BOyFLjz-oBcutoxgXHMYgBfRy_Y,4504
|
|
57
57
|
pulumi_aiven/get_influxdb_user.py,sha256=3PQ9lTmaIzX9-KduzIGuQKzvF2eSaqYLxEVYhc9dFS0,5320
|
|
@@ -65,11 +65,11 @@ pulumi_aiven/get_kafka_schema_configuration.py,sha256=dgmGtRQUOUl-hAxn9jJyHvpyeg
|
|
|
65
65
|
pulumi_aiven/get_kafka_schema_registry_acl.py,sha256=2HWu-4qpxia3UIizSnVIEE5IJzvszn2JDxsYYy2kM44,8459
|
|
66
66
|
pulumi_aiven/get_kafka_topic.py,sha256=g_KpNboEPm1DJT7S19Hs8aI0URSCbV6zwyqC_2Zf0NQ,8356
|
|
67
67
|
pulumi_aiven/get_kafka_user.py,sha256=clXblAYcGcQO-HhXEE7zacXmo2aK_LLt2E582LKwYYc,7904
|
|
68
|
-
pulumi_aiven/get_m3_aggregator.py,sha256=
|
|
69
|
-
pulumi_aiven/get_m3_db.py,sha256=
|
|
68
|
+
pulumi_aiven/get_m3_aggregator.py,sha256=TwSZFJeScxrjeRp0okfJA7UwlI08Er0dTioka8bSKAE,22765
|
|
69
|
+
pulumi_aiven/get_m3_db.py,sha256=GD-w-6IaVGYvOtIeiT4f1RhKgm7MpAtVtI0DJ3vcu3E,22272
|
|
70
70
|
pulumi_aiven/get_m3db_user.py,sha256=AX7fioJ-ErVg_qk-kDWlQurD8q5MffNLLhhttmomXac,6865
|
|
71
|
-
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=
|
|
72
|
-
pulumi_aiven/get_my_sql.py,sha256=
|
|
71
|
+
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=pZzXGBkpYWiMUgVFmH34BVfGt9_OtOb-4F66SZIw48s,13771
|
|
72
|
+
pulumi_aiven/get_my_sql.py,sha256=RkFkcZDfrWZgiUVzeFfoZwnOZ1EJ3Sc18aHTpxyxqrc,22356
|
|
73
73
|
pulumi_aiven/get_mysql_database.py,sha256=1rryMxbdYRBK3ItPNYKe91eFxUZKxxvHl3LJ7m5_nrw,6647
|
|
74
74
|
pulumi_aiven/get_mysql_user.py,sha256=hSx5QNRf037dgIMg0JceSKQLLJ_M-94KsWRm4mAzUUo,8533
|
|
75
75
|
pulumi_aiven/get_open_search.py,sha256=H7XwH_9Sr552WJUkJIXIaBRZuaAXa7l-dNuvtyaFop8,22662
|
|
@@ -88,17 +88,17 @@ pulumi_aiven/get_pg_user.py,sha256=MwMMXmC-f6O5bBWJtVqW0ILRchZwL3icFy2ougshnyY,8
|
|
|
88
88
|
pulumi_aiven/get_project.py,sha256=2xcVnL2Meq9YnIU-9gnaCjM82jrsKVP-pua_oVUpICI,12311
|
|
89
89
|
pulumi_aiven/get_project_user.py,sha256=i3ip_La8okn6l-2mXkAeWS0FfH9xLsls5QCRxwy4nUM,5587
|
|
90
90
|
pulumi_aiven/get_project_vpc.py,sha256=M4wDUcR56X2GvGI4kfaxiYZOWX-5RC8FmotDYsKRmeg,6327
|
|
91
|
-
pulumi_aiven/get_redis.py,sha256=
|
|
91
|
+
pulumi_aiven/get_redis.py,sha256=2JFVMxjLqYTjYAVRWydqTR03JgAUYbJUY3NS5gI51LE,22323
|
|
92
92
|
pulumi_aiven/get_redis_user.py,sha256=tSFTVOj-u1uUbNLsw66Bg79_QerWBcWZi3RFiaM91eE,9769
|
|
93
93
|
pulumi_aiven/get_service_component.py,sha256=ej2tl74FPoQfgdI3KYQABT_b1b9advsU_z23yLpJsto,10367
|
|
94
|
-
pulumi_aiven/get_service_integration.py,sha256=
|
|
95
|
-
pulumi_aiven/get_service_integration_endpoint.py,sha256=
|
|
94
|
+
pulumi_aiven/get_service_integration.py,sha256=lzpknk16sy9-q0wjYMSwPs2bbZXeThxCCDGU8ifhLPo,21706
|
|
95
|
+
pulumi_aiven/get_service_integration_endpoint.py,sha256=NptyCHZAmQVpUMLFohCXarpM9-pb0-D-_HqTW6rlExs,17283
|
|
96
96
|
pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=7KYmjS-lxR5ipZNCkfLQMm0j8AFfRFe-TiTB9kzWY9s,9117
|
|
97
|
-
pulumi_aiven/grafana.py,sha256=
|
|
98
|
-
pulumi_aiven/influx_db.py,sha256=
|
|
97
|
+
pulumi_aiven/grafana.py,sha256=cHlTIJwFR7EUWmjoYfd7ICdnpNtlig44p1FQDyCEtAQ,79700
|
|
98
|
+
pulumi_aiven/influx_db.py,sha256=959eZMErgg1b6UGCnUDGlAdICzqbBWjI3Jxkx2IhjHg,80615
|
|
99
99
|
pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
|
|
100
100
|
pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
|
|
101
|
-
pulumi_aiven/kafka.py,sha256=
|
|
101
|
+
pulumi_aiven/kafka.py,sha256=QG1Y1j-a4OkkDZsP2yCz6Xblg3gbYfxnZdRg3rAPQHQ,85749
|
|
102
102
|
pulumi_aiven/kafka_acl.py,sha256=GLGuq8vGGI55_rjZ6Op6bZcAPTc1Iejgzr0DjS_S2sw,18524
|
|
103
103
|
pulumi_aiven/kafka_connect.py,sha256=Ayy9UJWzu9X9Mfse84dIHG1Kj21Y7hajBJdOqUSXzoI,78773
|
|
104
104
|
pulumi_aiven/kafka_connector.py,sha256=0nhFbsNowonePH47YTneuh5q-U-cPY927G7w5u7E3rk,24050
|
|
@@ -108,14 +108,14 @@ pulumi_aiven/kafka_schema_configuration.py,sha256=kJVMjKWs19pf0m16wtUnTboIkHj5-5
|
|
|
108
108
|
pulumi_aiven/kafka_schema_registry_acl.py,sha256=unoLvRS6Xx7oaKmYlyN3_laQrHAmMD4pj7SkZDlxqIE,19435
|
|
109
109
|
pulumi_aiven/kafka_topic.py,sha256=elP1YmNuQUBtvdYrJPiEJDpHJq8jtmpMCDo96SY36t8,23039
|
|
110
110
|
pulumi_aiven/kafka_user.py,sha256=EmDWeof7mZkmvaqEUXyX3Movvun9Tjzq3-zyM_qi7C0,18410
|
|
111
|
-
pulumi_aiven/m3_aggregator.py,sha256=
|
|
112
|
-
pulumi_aiven/m3_db.py,sha256=
|
|
111
|
+
pulumi_aiven/m3_aggregator.py,sha256=8Nt8WGtRuNHgi00gnh0W9rMqm-_7XvGNBuc-N2qryGg,80625
|
|
112
|
+
pulumi_aiven/m3_db.py,sha256=l1tvPA3pioMkrW7NVlExrwbIUZc_WhvCw8uu35AOpdk,79140
|
|
113
113
|
pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
|
|
114
|
-
pulumi_aiven/mirror_maker_replication_flow.py,sha256=
|
|
115
|
-
pulumi_aiven/my_sql.py,sha256=
|
|
114
|
+
pulumi_aiven/mirror_maker_replication_flow.py,sha256=WBXwdwkxqtBzsTANthWdz7kuPuB2FkydahjDX08Exno,40648
|
|
115
|
+
pulumi_aiven/my_sql.py,sha256=Yc-oZLV1IbFX8YG90POPJgZf0bUVjDZw-pRCySlGIL0,79865
|
|
116
116
|
pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
|
|
117
117
|
pulumi_aiven/mysql_user.py,sha256=oiWZ0B1KJYCSl21uB61I-hB2gdmhzGiXNXx7xqLjs8M,21065
|
|
118
|
-
pulumi_aiven/open_search.py,sha256=
|
|
118
|
+
pulumi_aiven/open_search.py,sha256=TwvxY_rfqkOsKd469quNm9QCKWX6qg1fl1lIq1GyRXo,81336
|
|
119
119
|
pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
|
|
120
120
|
pulumi_aiven/open_search_acl_rule.py,sha256=_8D_sLAiM29SNMMjl1fLUzae8tgNQhLPmWaJAX_LwMs,21934
|
|
121
121
|
pulumi_aiven/opensearch_security_plugin_config.py,sha256=HpnFd2__mtiAwwOh9PFboST9zs8tRWruKvl_PFEaQKs,18636
|
|
@@ -128,26 +128,26 @@ pulumi_aiven/organization_user.py,sha256=0XAWD_j5GtN-YZz2vkCNOZLftYjQFSACR9Bxk4K
|
|
|
128
128
|
pulumi_aiven/organization_user_group.py,sha256=XTBcIrCH9uxRZewjGcMeWyEi91Zel3BrkIC0GcaNdfI,14704
|
|
129
129
|
pulumi_aiven/organization_user_group_member.py,sha256=hQNwloGq0KpEuSb0RCirDyA0bygxUSCM80_o-yOzb3o,14096
|
|
130
130
|
pulumi_aiven/organizational_unit.py,sha256=dgHOIJKfjAhuLeRsOI9vLYRwVfteIFrWKXe_kTBU-JU,11475
|
|
131
|
-
pulumi_aiven/outputs.py,sha256=
|
|
132
|
-
pulumi_aiven/pg.py,sha256=
|
|
131
|
+
pulumi_aiven/outputs.py,sha256=3oW9ih_jhtEfjAF4fR80X4lx2fv5ijpq1SsnRbQoI00,1708651
|
|
132
|
+
pulumi_aiven/pg.py,sha256=N1kRXffw28qSHOndjrfmuA6F4c2ZWAcpg4Vb6CbFH9s,77473
|
|
133
133
|
pulumi_aiven/pg_database.py,sha256=qsYKZAioLzv2bzYAFVxLumkEV-2e031ysC77h9HkqLA,20021
|
|
134
134
|
pulumi_aiven/pg_user.py,sha256=O25YPH3N19lRc_QoLgw9NK9i8W2jys0dejq37f3EaXo,20775
|
|
135
135
|
pulumi_aiven/project.py,sha256=ArAEa2FDbKM-PkMxzPJascIcYq7BzSs5L0HPjAw7CAw,47105
|
|
136
136
|
pulumi_aiven/project_user.py,sha256=CAxxa2QCsyk1Apm-Mf7BZv5YeFbKbx8LxUEjtG5NUJA,13182
|
|
137
137
|
pulumi_aiven/project_vpc.py,sha256=_87HVOeC9IvAmG-fnln5tXW8Z3BdLCA8kER800tp5AE,13908
|
|
138
138
|
pulumi_aiven/provider.py,sha256=8Nv5JAKLMaDCG8iqDCiMTBS5DYK8bh5Fvv0Pl6_5LK0,4881
|
|
139
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
139
|
+
pulumi_aiven/pulumi-plugin.json,sha256=MZ6xqHpZAevyTBY_hrl4XbEhYybvQC9xtpygR5qvhBY,82
|
|
140
140
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
pulumi_aiven/redis.py,sha256=
|
|
141
|
+
pulumi_aiven/redis.py,sha256=PHSRzKj2gEd5S5DW19sFIa5AyqxadfdHC98rh-Ud7T0,79358
|
|
142
142
|
pulumi_aiven/redis_user.py,sha256=jGHT0lw0egvRigZIBlokBIE6-_c8sbjhFM2bJLoaGHg,29184
|
|
143
|
-
pulumi_aiven/service_integration.py,sha256=
|
|
144
|
-
pulumi_aiven/service_integration_endpoint.py,sha256=
|
|
143
|
+
pulumi_aiven/service_integration.py,sha256=JaxkGirFlQUSHkxTioXTR13Qq5Phuva5NoivC8h2Bqc,69074
|
|
144
|
+
pulumi_aiven/service_integration_endpoint.py,sha256=eO6-LR3lh9KAo5HMyhf3ZORYgmI6KmmHw2nlydujlqs,60119
|
|
145
145
|
pulumi_aiven/static_ip.py,sha256=gtPEBjinCRn1W_Eth41uMApeqQ1kN8jQFt9xFmHrcTw,13926
|
|
146
146
|
pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=CCP3cTy2oJVGieXjKEXi44-MFF8m7ztqyQpsSu19fLw,22959
|
|
147
147
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
148
148
|
pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
|
|
149
149
|
pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
|
|
150
|
-
pulumi_aiven-6.16.
|
|
151
|
-
pulumi_aiven-6.16.
|
|
152
|
-
pulumi_aiven-6.16.
|
|
153
|
-
pulumi_aiven-6.16.
|
|
150
|
+
pulumi_aiven-6.16.0a1716589862.dist-info/METADATA,sha256=YJ3ZDhMlhYB-wEokXDcLdUqSBbtFgjnMug3gsMlxyHo,2532
|
|
151
|
+
pulumi_aiven-6.16.0a1716589862.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
152
|
+
pulumi_aiven-6.16.0a1716589862.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
153
|
+
pulumi_aiven-6.16.0a1716589862.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/top_level.txt
RENAMED
|
File without changes
|