pulumi-aiven 6.40.0a1750223346__py3-none-any.whl → 6.41.0a1752729091__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 +322 -28
- pulumi_aiven/alloydbomni.py +8 -8
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/clickhouse_database.py +0 -10
- pulumi_aiven/clickhouse_grant.py +0 -16
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_alloydbomni.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_organization_billing_group.py +15 -15
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +36 -29
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_billing_group.py +41 -41
- pulumi_aiven/outputs.py +433 -23
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/RECORD +47 -47
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/top_level.txt +0 -0
pulumi_aiven/pg.py
CHANGED
|
@@ -49,7 +49,7 @@ class PgArgs:
|
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
50
|
:param pulumi.Input['PgPgArgs'] pg: Values provided by the PostgreSQL server.
|
|
51
51
|
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
52
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['PgServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
54
54
|
:param pulumi.Input[builtins.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.
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -204,7 +204,7 @@ class PgArgs:
|
|
|
204
204
|
@pulumi.getter(name="projectVpcId")
|
|
205
205
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
206
206
|
"""
|
|
207
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
207
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
208
208
|
"""
|
|
209
209
|
return pulumi.get(self, "project_vpc_id")
|
|
210
210
|
|
|
@@ -332,7 +332,7 @@ class _PgState:
|
|
|
332
332
|
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
333
333
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
334
334
|
:param pulumi.Input[builtins.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.
|
|
335
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
335
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
336
336
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
337
337
|
:param pulumi.Input[Sequence[pulumi.Input['PgServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
338
338
|
:param pulumi.Input[builtins.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.
|
|
@@ -583,7 +583,7 @@ class _PgState:
|
|
|
583
583
|
@pulumi.getter(name="projectVpcId")
|
|
584
584
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
585
585
|
"""
|
|
586
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
586
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
587
587
|
"""
|
|
588
588
|
return pulumi.get(self, "project_vpc_id")
|
|
589
589
|
|
|
@@ -788,7 +788,7 @@ class Pg(pulumi.CustomResource):
|
|
|
788
788
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
789
789
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
790
790
|
:param pulumi.Input[builtins.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.
|
|
791
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
791
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
792
792
|
: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
|
|
793
793
|
:param pulumi.Input[builtins.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.
|
|
794
794
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -944,7 +944,7 @@ class Pg(pulumi.CustomResource):
|
|
|
944
944
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
945
945
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
946
946
|
:param pulumi.Input[builtins.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.
|
|
947
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
947
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
948
948
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
949
949
|
: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
|
|
950
950
|
:param pulumi.Input[builtins.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.
|
|
@@ -1108,9 +1108,9 @@ class Pg(pulumi.CustomResource):
|
|
|
1108
1108
|
|
|
1109
1109
|
@property
|
|
1110
1110
|
@pulumi.getter(name="projectVpcId")
|
|
1111
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1111
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1112
1112
|
"""
|
|
1113
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1113
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1114
1114
|
"""
|
|
1115
1115
|
return pulumi.get(self, "project_vpc_id")
|
|
1116
1116
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -48,7 +48,7 @@ class RedisArgs:
|
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
53
53
|
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -191,7 +191,7 @@ class RedisArgs:
|
|
|
191
191
|
@pulumi.getter(name="projectVpcId")
|
|
192
192
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
193
193
|
"""
|
|
194
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
194
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "project_vpc_id")
|
|
197
197
|
|
|
@@ -329,7 +329,7 @@ class _RedisState:
|
|
|
329
329
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
330
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
331
331
|
:param pulumi.Input[builtins.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.
|
|
332
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
332
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
333
333
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
334
334
|
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
@@ -558,7 +558,7 @@ class _RedisState:
|
|
|
558
558
|
@pulumi.getter(name="projectVpcId")
|
|
559
559
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
560
560
|
"""
|
|
561
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
561
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
562
562
|
"""
|
|
563
563
|
return pulumi.get(self, "project_vpc_id")
|
|
564
564
|
|
|
@@ -814,7 +814,7 @@ class Redis(pulumi.CustomResource):
|
|
|
814
814
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
815
815
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
816
816
|
:param pulumi.Input[builtins.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.
|
|
817
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
817
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
818
818
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
819
819
|
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
820
820
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RedisServiceIntegrationArgs', 'RedisServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -1001,7 +1001,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1001
1001
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1002
1002
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1003
1003
|
:param pulumi.Input[builtins.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.
|
|
1004
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1004
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1005
1005
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
1006
1006
|
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1007
1007
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
@@ -1151,9 +1151,9 @@ class Redis(pulumi.CustomResource):
|
|
|
1151
1151
|
|
|
1152
1152
|
@property
|
|
1153
1153
|
@pulumi.getter(name="projectVpcId")
|
|
1154
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1154
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1155
1155
|
"""
|
|
1156
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1156
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1157
1157
|
"""
|
|
1158
1158
|
return pulumi.get(self, "project_vpc_id")
|
|
1159
1159
|
|
pulumi_aiven/thanos.py
CHANGED
|
@@ -48,7 +48,7 @@ class ThanosArgs:
|
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -191,7 +191,7 @@ class ThanosArgs:
|
|
|
191
191
|
@pulumi.getter(name="projectVpcId")
|
|
192
192
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
193
193
|
"""
|
|
194
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
194
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "project_vpc_id")
|
|
197
197
|
|
|
@@ -329,7 +329,7 @@ class _ThanosState:
|
|
|
329
329
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
330
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
331
331
|
:param pulumi.Input[builtins.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.
|
|
332
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
332
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
333
333
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
334
334
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
335
335
|
:param pulumi.Input[builtins.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.
|
|
@@ -558,7 +558,7 @@ class _ThanosState:
|
|
|
558
558
|
@pulumi.getter(name="projectVpcId")
|
|
559
559
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
560
560
|
"""
|
|
561
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
561
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
562
562
|
"""
|
|
563
563
|
return pulumi.get(self, "project_vpc_id")
|
|
564
564
|
|
|
@@ -804,7 +804,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
804
804
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
805
805
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
806
806
|
:param pulumi.Input[builtins.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.
|
|
807
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
807
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
808
808
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ThanosServiceIntegrationArgs', 'ThanosServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
809
809
|
:param pulumi.Input[builtins.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.
|
|
810
810
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -981,7 +981,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
981
981
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
982
982
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
983
983
|
:param pulumi.Input[builtins.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.
|
|
984
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
984
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
985
985
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
986
986
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ThanosServiceIntegrationArgs', 'ThanosServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
987
987
|
:param pulumi.Input[builtins.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.
|
|
@@ -1131,9 +1131,9 @@ class Thanos(pulumi.CustomResource):
|
|
|
1131
1131
|
|
|
1132
1132
|
@property
|
|
1133
1133
|
@pulumi.getter(name="projectVpcId")
|
|
1134
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1134
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1135
1135
|
"""
|
|
1136
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1136
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1137
1137
|
"""
|
|
1138
1138
|
return pulumi.get(self, "project_vpc_id")
|
|
1139
1139
|
|
pulumi_aiven/valkey.py
CHANGED
|
@@ -48,7 +48,7 @@ class ValkeyArgs:
|
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['ValkeyServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['ValkeyTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -191,7 +191,7 @@ class ValkeyArgs:
|
|
|
191
191
|
@pulumi.getter(name="projectVpcId")
|
|
192
192
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
193
193
|
"""
|
|
194
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
194
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "project_vpc_id")
|
|
197
197
|
|
|
@@ -329,7 +329,7 @@ class _ValkeyState:
|
|
|
329
329
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
330
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
331
331
|
:param pulumi.Input[builtins.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.
|
|
332
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
332
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
333
333
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
334
334
|
:param pulumi.Input[Sequence[pulumi.Input['ValkeyServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
335
335
|
:param pulumi.Input[builtins.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.
|
|
@@ -558,7 +558,7 @@ class _ValkeyState:
|
|
|
558
558
|
@pulumi.getter(name="projectVpcId")
|
|
559
559
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
560
560
|
"""
|
|
561
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
561
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
562
562
|
"""
|
|
563
563
|
return pulumi.get(self, "project_vpc_id")
|
|
564
564
|
|
|
@@ -801,7 +801,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
801
801
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
802
802
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
803
803
|
:param pulumi.Input[builtins.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.
|
|
804
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
804
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
805
805
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ValkeyServiceIntegrationArgs', 'ValkeyServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
806
806
|
:param pulumi.Input[builtins.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.
|
|
807
807
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -975,7 +975,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
975
975
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
976
976
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
977
977
|
:param pulumi.Input[builtins.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.
|
|
978
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
978
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
979
979
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
980
980
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ValkeyServiceIntegrationArgs', 'ValkeyServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
981
981
|
:param pulumi.Input[builtins.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.
|
|
@@ -1125,9 +1125,9 @@ class Valkey(pulumi.CustomResource):
|
|
|
1125
1125
|
|
|
1126
1126
|
@property
|
|
1127
1127
|
@pulumi.getter(name="projectVpcId")
|
|
1128
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1128
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1129
1129
|
"""
|
|
1130
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1130
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1131
1131
|
"""
|
|
1132
1132
|
return pulumi.get(self, "project_vpc_id")
|
|
1133
1133
|
|
{pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/RECORD
RENAMED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
pulumi_aiven/__init__.py,sha256=W3sbWV7hzz5AAvd73Wk59IxL1vRLdv_EsUC-HnMXlQM,22968
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256=
|
|
2
|
+
pulumi_aiven/_inputs.py,sha256=Li4VYk6YP0BKt_ei0P78uJNxLo6cuIrhpa2WwCHRTqk,2076263
|
|
3
3
|
pulumi_aiven/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_aiven/account.py,sha256=oX-49ygcj_OA8Hve0wZgM8HXIrfqGPVZQ7tV6rP3M4A,17803
|
|
5
5
|
pulumi_aiven/account_authentication.py,sha256=pyNUVQOT8v8_A0UW27KvMXvTk9OgpyKh1B8Dbqjcn8Q,39652
|
|
6
6
|
pulumi_aiven/account_team.py,sha256=C-HQt16-Qj92P1FHndAcz1qZ20nIy2cLRCI2jBwgZyc,13442
|
|
7
7
|
pulumi_aiven/account_team_member.py,sha256=lKNjJsmvdDx0uNNRwuvtuK5J-CTkr-YrRAeMdehxRbo,19718
|
|
8
8
|
pulumi_aiven/account_team_project.py,sha256=2aVr-VpE53sQwTQUwLVoEJu16reoB2oJR8Dp2UsLGrQ,21440
|
|
9
|
-
pulumi_aiven/alloydbomni.py,sha256=
|
|
9
|
+
pulumi_aiven/alloydbomni.py,sha256=RryA9DPsKkW42d54abiHQ5plKSDyEIVVHYcClxs8G9A,90542
|
|
10
10
|
pulumi_aiven/alloydbomni_database.py,sha256=JAToAF7Do2ad7gStPmCQ0wqYTdhRSWNwD0UDbHjqVdk,18741
|
|
11
11
|
pulumi_aiven/alloydbomni_user.py,sha256=sYdwVty9j1UaCMYqmNST5KDS1SBwt8ieHkp3N4ongwE,21733
|
|
12
12
|
pulumi_aiven/aws_org_vpc_peering_connection.py,sha256=RY5LYg5_nJJiG9HLWTHnY1jzMW2FxD2LDG5KHH10ldY,22555
|
|
@@ -17,16 +17,16 @@ pulumi_aiven/azure_privatelink.py,sha256=Ss4dHqw5ab2rGv_mtNPLyGXJchqnsOANz8Fg_qi
|
|
|
17
17
|
pulumi_aiven/azure_privatelink_connection_approval.py,sha256=88JJeOnTjdJYoUjkXTwWwigwlQPeq-ExmBFiwGb33gM,19610
|
|
18
18
|
pulumi_aiven/azure_vpc_peering_connection.py,sha256=MzKW1CCElBZOKCDEqRRU4_sUrdGKbN1NwCM1wy--FEk,26411
|
|
19
19
|
pulumi_aiven/billing_group.py,sha256=O1axOm8GP2t8JsAo4Dv_wHDdlIhJNJyuRsBAEvBIeB8,39320
|
|
20
|
-
pulumi_aiven/cassandra.py,sha256=
|
|
20
|
+
pulumi_aiven/cassandra.py,sha256=QU36c87vS2miDC9oCzuiDuwIN62ZEWQb6KwQ4s-GkVQ,87373
|
|
21
21
|
pulumi_aiven/cassandra_user.py,sha256=tXVwhmmUwBUe6wmMPpZX1pVTuU-w_wrGMCLMMw7_AqI,20847
|
|
22
|
-
pulumi_aiven/clickhouse.py,sha256=
|
|
23
|
-
pulumi_aiven/clickhouse_database.py,sha256=
|
|
24
|
-
pulumi_aiven/clickhouse_grant.py,sha256=
|
|
22
|
+
pulumi_aiven/clickhouse.py,sha256=dLVH7aHUr-WD_14hz0CWefrh5mU4kqNruMUZz_Gw9O4,85948
|
|
23
|
+
pulumi_aiven/clickhouse_database.py,sha256=i_plltqj1m0ZaYAoj9Rkmbd5TvJ4Y51jEVhmsADr2ik,15722
|
|
24
|
+
pulumi_aiven/clickhouse_grant.py,sha256=N3fr-pE3wf84UnK2JZIF9oKFi4hWgO15iXz-XrBeRb8,25810
|
|
25
25
|
pulumi_aiven/clickhouse_role.py,sha256=zSOLHWXfJAd9oSj543SRQrfLEo_4a0RHA1p6NdMGBv0,13101
|
|
26
26
|
pulumi_aiven/clickhouse_user.py,sha256=lS6qKuJqhOmjlBAZf3gsxPwrg4oUBbGEBH5kRq21bX0,16590
|
|
27
27
|
pulumi_aiven/connection_pool.py,sha256=ry8sQ-gGjtA5tH0FEZspWXQGANFzOtGr4JfQXWAjfms,27432
|
|
28
|
-
pulumi_aiven/dragonfly.py,sha256=
|
|
29
|
-
pulumi_aiven/flink.py,sha256=
|
|
28
|
+
pulumi_aiven/dragonfly.py,sha256=xUgHwlHQpD5e777n1w8lBThpI8IEQ0rUE77lW5reejo,85613
|
|
29
|
+
pulumi_aiven/flink.py,sha256=HNEweL1O1m8TUCxGWTxRMU_RlHAcMVi3h6zOeTl-woU,84833
|
|
30
30
|
pulumi_aiven/flink_application.py,sha256=m3a7XkAaywikO67BL2Zbq_8wlr4RSHQL0W-SrAfGvoQ,18533
|
|
31
31
|
pulumi_aiven/flink_application_deployment.py,sha256=lbIvZkNFbSJ_Yra-Z6xDQDXNi8E9BRELKogs3R5piA0,27498
|
|
32
32
|
pulumi_aiven/flink_application_version.py,sha256=9iUzsftKJNHDMR088no-dtKsYcNQwoKp0ekLmS_npio,35138
|
|
@@ -42,7 +42,7 @@ pulumi_aiven/get_account_authentication.py,sha256=xttaNtK606HjIFWEGFmrTVAxpbkUwO
|
|
|
42
42
|
pulumi_aiven/get_account_team.py,sha256=9opIf14ZqGs_xtu2ermbEdjeG0xZGFqWyuvDFqi9KAY,7648
|
|
43
43
|
pulumi_aiven/get_account_team_member.py,sha256=kKafP-JlvuqBcIXXcOqInD5IY1xR3E4MyZPoQjHRfF0,10115
|
|
44
44
|
pulumi_aiven/get_account_team_project.py,sha256=AE2n06MgKe8v9r5gI37p0pCtgGo9_ipMWnyx0h6IgK4,8665
|
|
45
|
-
pulumi_aiven/get_alloydbomni.py,sha256=
|
|
45
|
+
pulumi_aiven/get_alloydbomni.py,sha256=EJF7ahzMEkYm1Brtfg6puhPY-1PsukbMl_Y9F_HxqxU,26555
|
|
46
46
|
pulumi_aiven/get_alloydbomni_database.py,sha256=0JCY6dKjjwj7r1IK7RxIClRXzRF854doNPVFpF1kOZ8,8284
|
|
47
47
|
pulumi_aiven/get_alloydbomni_user.py,sha256=1mMFjhurxmCuMZEv9A4rCCzu4ZwPkgaC5vx-8UVn1To,9910
|
|
48
48
|
pulumi_aiven/get_aws_org_vpc_peering_connection.py,sha256=rhwsZfsexwHAhRqN5Utc09E7mkki_TZlcCpmREna-2w,10994
|
|
@@ -52,43 +52,43 @@ pulumi_aiven/get_azure_org_vpc_peering_connection.py,sha256=FqKFhe3O5MZ9OtRTYnnH
|
|
|
52
52
|
pulumi_aiven/get_azure_privatelink.py,sha256=Uxt2v6ugn4bp1_ZJnPtH71oCuRQsK7Nc4uYkwowB_yo,8946
|
|
53
53
|
pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=ugzA0YxTNGK78-bkJ_vX-Eu3Tqjc1bIp8KWZPkXMjUA,13437
|
|
54
54
|
pulumi_aiven/get_billing_group.py,sha256=3Gn4gLAf7UywxnlNCpYCG7O-dXWtVnVfH4QKB9mMy6c,13276
|
|
55
|
-
pulumi_aiven/get_cassanda.py,sha256=
|
|
56
|
-
pulumi_aiven/get_cassandra.py,sha256=
|
|
55
|
+
pulumi_aiven/get_cassanda.py,sha256=hL2VBYd6OIKjr3GlgnMmvV_9hD6VTHpUVUBaLme4T5I,27285
|
|
56
|
+
pulumi_aiven/get_cassandra.py,sha256=Tm3utCnw1o-hooosTHluYTmrAXXSv4CHoCz4T0WY5JY,26957
|
|
57
57
|
pulumi_aiven/get_cassandra_user.py,sha256=5cUd9NVzf35L9k4kYeXuBgnMlDzWWbaA6hQNI-7ba7E,10565
|
|
58
|
-
pulumi_aiven/get_clickhouse.py,sha256=
|
|
58
|
+
pulumi_aiven/get_clickhouse.py,sha256=euh4gzleKofd930ILZ1TLWdPYPa75CUXwYOtBTlzeAw,25707
|
|
59
59
|
pulumi_aiven/get_clickhouse_database.py,sha256=6aBnJ3CnB9614rqKAe-fhaRLVwmiN6Rbw1XLNaRDw4M,7583
|
|
60
60
|
pulumi_aiven/get_clickhouse_user.py,sha256=Xxaihrlv33fP97it0N97SldmeNqMyL645LLqHmzGZHM,8335
|
|
61
61
|
pulumi_aiven/get_connection_pool.py,sha256=0sAQqyvlpT1Yzj7CSsWorGdNJwqhyClw7-fiEPaErQs,10348
|
|
62
|
-
pulumi_aiven/get_dragonfly.py,sha256=
|
|
62
|
+
pulumi_aiven/get_dragonfly.py,sha256=97tO7rJYE0MKs10YUZfNegJxembzFqcgIqhoMNEQLtQ,25667
|
|
63
63
|
pulumi_aiven/get_external_identity.py,sha256=vP0tlICdPaHC7LGjpOxlNaxGTjblR_nXEpUlvXydtTM,7774
|
|
64
|
-
pulumi_aiven/get_flink.py,sha256=
|
|
64
|
+
pulumi_aiven/get_flink.py,sha256=Vv9KMmeV-d5j5ueMpEPn2l70tQIRkzU6hQIMr99715o,25387
|
|
65
65
|
pulumi_aiven/get_flink_application.py,sha256=0ImpPyLsg5tVQF3Hrtrfxd6JJVsWKCUPokNOMH8XFUI,9495
|
|
66
66
|
pulumi_aiven/get_flink_application_version.py,sha256=s-_z0SpKuZ9Rh9X14PrzvcSIHJLlBVqZSwX-UmsygOg,12718
|
|
67
67
|
pulumi_aiven/get_gcp_org_vpc_peering_connection.py,sha256=XoHeTOkj3pI6JF1oxFjVzLvtG75XhNQ4got4G73sTCU,8799
|
|
68
68
|
pulumi_aiven/get_gcp_privatelink.py,sha256=EcO555NU-FbdPbPc5wpJQn6eUbT5arOIOdO7CRY9ox0,7628
|
|
69
69
|
pulumi_aiven/get_gcp_vpc_peering_connection.py,sha256=BunbVN9QE1wORRTIa0hpLSg1838SfsJ0zAZ-FxNL_Pg,8285
|
|
70
|
-
pulumi_aiven/get_grafana.py,sha256=
|
|
70
|
+
pulumi_aiven/get_grafana.py,sha256=FkuXBM9i0xnLB_B0a5i9CFnCZY80Rl0lSfjiAximElM,25517
|
|
71
71
|
pulumi_aiven/get_influx_db.py,sha256=C4RuuGkmfEBvqOu-R-1YG3LGiOaqY5uyb5VtC5kl_4w,18419
|
|
72
72
|
pulumi_aiven/get_influxdb_database.py,sha256=8cFZW33esY0rYZKVKnz0SLWwggWfxrBXKKI0tUccAFU,5512
|
|
73
73
|
pulumi_aiven/get_influxdb_user.py,sha256=JWB8mrYrXqDj6HK5BV28WXX8S3OhMbaXeDdLj-4U43M,6463
|
|
74
|
-
pulumi_aiven/get_kafka.py,sha256=
|
|
74
|
+
pulumi_aiven/get_kafka.py,sha256=e6Asbzh4sLoSM5HL351fEjHlTI8Z66d4MGwEb7x6Sc8,26559
|
|
75
75
|
pulumi_aiven/get_kafka_acl.py,sha256=_AyE2G7KrpPQhiTpcit4wX8QMwvT2pref-zbwB0xGkI,9558
|
|
76
|
-
pulumi_aiven/get_kafka_connect.py,sha256=
|
|
76
|
+
pulumi_aiven/get_kafka_connect.py,sha256=WVoYsh9lFPbnYdjnm4EWq-RA-wuDjPgfgOwMahZvQ1o,25268
|
|
77
77
|
pulumi_aiven/get_kafka_connector.py,sha256=JDtVVM8ORPrcbAktKUUGCJ3yAooYBdDZRylSev7_-4I,11705
|
|
78
|
-
pulumi_aiven/get_kafka_mirror_maker.py,sha256
|
|
78
|
+
pulumi_aiven/get_kafka_mirror_maker.py,sha256=-49W7osOzTulhiFDTdZh6kUzSSXMYtLBL6xtrPMp75A,25490
|
|
79
79
|
pulumi_aiven/get_kafka_schema.py,sha256=bWPsKQC0CFr24PiHB5WuAGE-z1YsPl_X0U79rSku52s,9450
|
|
80
80
|
pulumi_aiven/get_kafka_schema_configuration.py,sha256=XtsjrxSPEXGTNMnyLEindL7AP73iAJ3gyeba17c3DwE,9450
|
|
81
81
|
pulumi_aiven/get_kafka_schema_registry_acl.py,sha256=ebVHE5QidQQ-SJg1cvcio2Yv5qYHv9NSKJ9EGp_rmb8,9766
|
|
82
82
|
pulumi_aiven/get_kafka_topic.py,sha256=dj4HXq6KrPHHYmbx5qdYijde9Ci9tRB0dnMIRd-hGNs,11243
|
|
83
83
|
pulumi_aiven/get_kafka_user.py,sha256=84aQNauWdsidVWqEvKerTifdqHqCfsZ_3tkYfL5L6HA,9127
|
|
84
|
-
pulumi_aiven/get_m3_aggregator.py,sha256
|
|
85
|
-
pulumi_aiven/get_m3_db.py,sha256=
|
|
84
|
+
pulumi_aiven/get_m3_aggregator.py,sha256=-lj4_oxzMCt9sU3x9eCyZxLjtgQdidxzfK4nYB3bOes,25840
|
|
85
|
+
pulumi_aiven/get_m3_db.py,sha256=Ape6AleFOmTNclus0m13uEqCc_YJL3rj6j6_sK6cvNw,26063
|
|
86
86
|
pulumi_aiven/get_m3db_user.py,sha256=F_lrGI_TdJ0HFsEcjw1Ui4xXU2MRKGPSd5HYnpQv2VY,8681
|
|
87
87
|
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=AccKlFxwyeqGgRhyIhMoHgNAjQNgtzDKLM52B7ghEuU,19152
|
|
88
|
-
pulumi_aiven/get_my_sql.py,sha256=
|
|
88
|
+
pulumi_aiven/get_my_sql.py,sha256=i_ZeZPcb2usoohSkov1itln1vXthuvfqOQvsKySXDIE,25360
|
|
89
89
|
pulumi_aiven/get_mysql_database.py,sha256=cC06o_BPw3ejRWRKB8oZttMp9SM3d2DSOdNSEcpvsiQ,7636
|
|
90
90
|
pulumi_aiven/get_mysql_user.py,sha256=PHpVn874D_gh-OkC9vE9P8PXqcFzXO4bIbZgdSeGK6M,9803
|
|
91
|
-
pulumi_aiven/get_open_search.py,sha256=
|
|
91
|
+
pulumi_aiven/get_open_search.py,sha256=kJZsDvWOd0AnuisYvAPbkKMDOv1Z4otn1AzAH6X8PI0,25741
|
|
92
92
|
pulumi_aiven/get_open_search_acl_config.py,sha256=siNBX-JhQlh7AMyPS7wEgfIWiW_lPwZULpzFk-NM9sU,7416
|
|
93
93
|
pulumi_aiven/get_open_search_acl_rule.py,sha256=JERSeEcc0uS1WGB1wOGkXkRFfcmNIRkuBmj4BoTogLA,9656
|
|
94
94
|
pulumi_aiven/get_opensearch_security_plugin_config.py,sha256=D1Tx0U2gdjpPy5ESLIYH-E37TEWcu2R0rWOF-y72vHo,8832
|
|
@@ -96,7 +96,7 @@ pulumi_aiven/get_opensearch_user.py,sha256=QwDa9uaiiRGxn2FI9aKev3Lt_bPoY2NL-rHKs
|
|
|
96
96
|
pulumi_aiven/get_organization.py,sha256=4Lh5NTja-BrKfITfgbPbw7N7lzd73xfIJqW8ztN9_Og,6521
|
|
97
97
|
pulumi_aiven/get_organization_address.py,sha256=JkiYUYkndRwLuIUnVwihd7HbwMnvvjiDWTzRu6gR_5A,9917
|
|
98
98
|
pulumi_aiven/get_organization_application_user.py,sha256=kKiYuf7FbKMpHJN8N3J88e4Vr6giumo73JUFJZZFiVw,6777
|
|
99
|
-
pulumi_aiven/get_organization_billing_group.py,sha256=
|
|
99
|
+
pulumi_aiven/get_organization_billing_group.py,sha256=OnHqyWl3mMWXbDqBlvEZ19IKvTCPUWrDmH_sNrxXUSI,11961
|
|
100
100
|
pulumi_aiven/get_organization_billing_group_list.py,sha256=esAAw3xB9ywZXZyABA7zQWfjuilVXw-WOlV830C-39M,6805
|
|
101
101
|
pulumi_aiven/get_organization_project.py,sha256=lW9HDtOfTqsfikj2Q_zxBKZlonJGlo-k7DVcpDahkvc,11863
|
|
102
102
|
pulumi_aiven/get_organization_user.py,sha256=r5W-8GbWqRSfLuPAMacstUTbqLZUbPmIROYXZYZhQSk,6031
|
|
@@ -104,31 +104,31 @@ pulumi_aiven/get_organization_user_group.py,sha256=t6KJw91jOGQOdR2Wbh7HUGEHnqku0
|
|
|
104
104
|
pulumi_aiven/get_organization_user_list.py,sha256=Korwlc_dc-j4FjBwnOe0voV8jc-FR9WKz4rDpt-Ep_Y,5017
|
|
105
105
|
pulumi_aiven/get_organization_vpc.py,sha256=uYjribN_K5-dDUC3IQm4w-9eE57HoedGtmxSScmlMz4,8137
|
|
106
106
|
pulumi_aiven/get_organizational_unit.py,sha256=tKlYJL2KugXkldPnIT_NmJ37GBWUPa1ihKkIkLvT7_E,5627
|
|
107
|
-
pulumi_aiven/get_pg.py,sha256=
|
|
107
|
+
pulumi_aiven/get_pg.py,sha256=Esez5_t2EsPGXTtvkdFpbX4hrEiyYzs9Yn1ddMVCkyg,25205
|
|
108
108
|
pulumi_aiven/get_pg_database.py,sha256=Fku00BL-0IJJTm0Np5PpBGCLqCitxhpb5WhSEzdc8Qk,8930
|
|
109
109
|
pulumi_aiven/get_pg_user.py,sha256=J_6hP3dWz2wwoe0vQNW3z88Db2uKcGWeD8WivgKw-yI,9881
|
|
110
110
|
pulumi_aiven/get_project.py,sha256=Zt4VCkd8pNG0hW3PpOvB-V8OfRJ59P5aDI5CJx9QcOo,13949
|
|
111
111
|
pulumi_aiven/get_project_user.py,sha256=rKNZYJBJrjvka62Au0H1o1jzJKDSYmfn_Mz2JV9GApw,7734
|
|
112
112
|
pulumi_aiven/get_project_vpc.py,sha256=MB2pIb3_IWiAYSz4YE9Ro9w3rQJonDSKib_bdgDAi-s,7373
|
|
113
|
-
pulumi_aiven/get_redis.py,sha256
|
|
113
|
+
pulumi_aiven/get_redis.py,sha256=O7sl3t8ZPagtOOnq6XIOmnLmVcbVPV289tmPbn-oen0,26944
|
|
114
114
|
pulumi_aiven/get_redis_user.py,sha256=VMvn-u5IQ0kso5MbZQF8kKY9ON6_cCrIPtauq8PQhsw,12747
|
|
115
115
|
pulumi_aiven/get_service_component.py,sha256=Ce5jVsgyS10b59AMNtrZd-n_R2uiScgaqNWjLQPz10c,13238
|
|
116
116
|
pulumi_aiven/get_service_integration.py,sha256=28YmkoQKaZRgtUGEglWkhWPzYJIzTh1NcMKmRq-H-Ag,29063
|
|
117
117
|
pulumi_aiven/get_service_integration_endpoint.py,sha256=JOYg9_OJ_TmkctzaqoB5uZd0AOd1s7uOpTqoOggjtcQ,27616
|
|
118
|
-
pulumi_aiven/get_thanos.py,sha256=
|
|
118
|
+
pulumi_aiven/get_thanos.py,sha256=JS8kfu2CZxetmBhKpXtChh1SNyWDSTnOhHR0L7_HOzY,25426
|
|
119
119
|
pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=ut45I5fP_LZERe-edLQKI15J9I3fneai9kBADs1bocw,10526
|
|
120
|
-
pulumi_aiven/get_valkey.py,sha256=
|
|
120
|
+
pulumi_aiven/get_valkey.py,sha256=w2J3hLpXV5tAsG8koqqYsEO5p2lV8KHTaG-09LzZ3-o,25433
|
|
121
121
|
pulumi_aiven/get_valkey_user.py,sha256=iywOy_7PM5CFh7kX0_VBXD3I3uKEGOmARoiqz8lLVfk,11107
|
|
122
122
|
pulumi_aiven/governance_access.py,sha256=zYh7N9cEKcottN8hJfvYOWtcwdkp73zehpMStkexCJk,21842
|
|
123
|
-
pulumi_aiven/grafana.py,sha256=
|
|
124
|
-
pulumi_aiven/influx_db.py,sha256=
|
|
123
|
+
pulumi_aiven/grafana.py,sha256=4ATeOK4e6W12d6OJIvtu0g3gg5aoVSdnRbHQ9j126wg,85431
|
|
124
|
+
pulumi_aiven/influx_db.py,sha256=ejMMTLWtXuorN8-YHj1nLuMyVNQTDR4xMO8mzHooWZM,86732
|
|
125
125
|
pulumi_aiven/influxdb_database.py,sha256=nRkJKfEW8ga9E3kBBrunqiaiWVA42bFynV-VP7TzlwY,14748
|
|
126
126
|
pulumi_aiven/influxdb_user.py,sha256=5QOiL_9wfUsYgi2cNQAogBV9Zlu1nc2JsJlWSoaDEog,19151
|
|
127
|
-
pulumi_aiven/kafka.py,sha256=
|
|
127
|
+
pulumi_aiven/kafka.py,sha256=tOtUcYgjlmgvrqFiAjySUBw0zhmenOIERnDDEbQ9Gvs,91113
|
|
128
128
|
pulumi_aiven/kafka_acl.py,sha256=AgrmVfZxufnEPEPmjbrEaaqeuCCVQlZ9n43NVPXlhT4,20023
|
|
129
|
-
pulumi_aiven/kafka_connect.py,sha256=
|
|
129
|
+
pulumi_aiven/kafka_connect.py,sha256=y38DL8t0su4fFln7GUX4dCCY5UXA9K906C-Wm4JwACM,87278
|
|
130
130
|
pulumi_aiven/kafka_connector.py,sha256=NJ0KTldZfFUg7RYU0Lb3OCQSyle48QHiYSMr9eO9S8E,25994
|
|
131
|
-
pulumi_aiven/kafka_mirror_maker.py,sha256=
|
|
131
|
+
pulumi_aiven/kafka_mirror_maker.py,sha256=ZDeac1BmM8TvwKDlWD1nTupmH0szVDYstUVrRZtz2Zc,85080
|
|
132
132
|
pulumi_aiven/kafka_native_acl.py,sha256=Kr9syEKWdyE2hJMrcP03yNYTuOsZJ7Sn5tJ2O9QQI50,34778
|
|
133
133
|
pulumi_aiven/kafka_quota.py,sha256=1IDgMekUIpb0S7XbMBln4GT1aqqit0xjDF3dM-WzROU,33386
|
|
134
134
|
pulumi_aiven/kafka_schema.py,sha256=1ZmV1UVLlmm8UKn1-ShSf388AFFIvhCJKbueEUDF0gQ,23709
|
|
@@ -136,14 +136,14 @@ pulumi_aiven/kafka_schema_configuration.py,sha256=7O8vjbPopXWpjlN_9BXqjErtXUy9rX
|
|
|
136
136
|
pulumi_aiven/kafka_schema_registry_acl.py,sha256=Y8aM1umSU-Gn8JZJ3wU248uw7tajjsM8BsD_FScHcBA,20394
|
|
137
137
|
pulumi_aiven/kafka_topic.py,sha256=pRRSxV0XUUf1Ij6U_VYcJVoZIbWOcYaIeu9Jo6YtTcE,30579
|
|
138
138
|
pulumi_aiven/kafka_user.py,sha256=1B3scsmNeYgCJV5Fx72cD45vJvmFenP-127gZwUmTh0,19309
|
|
139
|
-
pulumi_aiven/m3_aggregator.py,sha256=
|
|
140
|
-
pulumi_aiven/m3_db.py,sha256=
|
|
139
|
+
pulumi_aiven/m3_aggregator.py,sha256=o5O-RKuIVkOtv07S_Tqb2dJc2QeOgB1hvYLyb8Xpvok,86403
|
|
140
|
+
pulumi_aiven/m3_db.py,sha256=H70PFIXeNmNXTURJ2wxLwvhzofIri3QA6lpFIG4hPqw,85582
|
|
141
141
|
pulumi_aiven/m3db_user.py,sha256=Bnf-wnAwyazvMPmxjQsdKxFHfIJ1FPq0kQ3PXSUV5t8,17775
|
|
142
142
|
pulumi_aiven/mirror_maker_replication_flow.py,sha256=_azzWgflWX1wrgbUadixAcXjKlujmXqcB9fujq_5BKs,58120
|
|
143
|
-
pulumi_aiven/my_sql.py,sha256=
|
|
143
|
+
pulumi_aiven/my_sql.py,sha256=IKTriA5PtDVVE_NjgJNLKVxTNzzVGDPiQsN56NuOAcM,85314
|
|
144
144
|
pulumi_aiven/mysql_database.py,sha256=3o1WTGbP6q6RclxlYoI8ovFjX77jlZ0BqtX4LmKeyi8,15490
|
|
145
145
|
pulumi_aiven/mysql_user.py,sha256=SBZUBME40o_EOFP8aJ3LGFdpnpI-r_Z2HOQItQyQg3c,21917
|
|
146
|
-
pulumi_aiven/open_search.py,sha256=
|
|
146
|
+
pulumi_aiven/open_search.py,sha256=n_pBcwgSxuLR40LoRZefMNUUjO4qjAhXMomWhov2cCg,86986
|
|
147
147
|
pulumi_aiven/open_search_acl_config.py,sha256=JiPMxSBdJ5aAi5wjiTB1VkIzHDLiqrhhevojDN0zCO8,18331
|
|
148
148
|
pulumi_aiven/open_search_acl_rule.py,sha256=fYxhnvB5Z3JtuWmRZ2js2_TALxO17VLSU9sA8FqjPCE,23371
|
|
149
149
|
pulumi_aiven/opensearch_security_plugin_config.py,sha256=OXsOB8YMQa42PIbk6I5d8N3IsXiYlBAMjg0rR37Gbu4,18141
|
|
@@ -152,7 +152,7 @@ pulumi_aiven/organization.py,sha256=64fTBaJybLS6bRggfQgMvYiI6gEUIaTJewedv9AYvpA,
|
|
|
152
152
|
pulumi_aiven/organization_address.py,sha256=KPNBen0X6PmN1vqTRUuKaJH2fTytbsxz2YDXyaQ4i8I,23299
|
|
153
153
|
pulumi_aiven/organization_application_user.py,sha256=9pQZSN3cxFysovUwK-YrQ30KqMXowBdluSm-0cBwUK0,18573
|
|
154
154
|
pulumi_aiven/organization_application_user_token.py,sha256=EZi8w9NE2vcB9eXaey7MMRrQbGcWrOKEDxOUKGHmCcM,36875
|
|
155
|
-
pulumi_aiven/organization_billing_group.py,sha256=
|
|
155
|
+
pulumi_aiven/organization_billing_group.py,sha256=WRU2qNSFrA3pb7oCkoJIkVlGuceqS8qviJyi0GKLzK8,31481
|
|
156
156
|
pulumi_aiven/organization_group_project.py,sha256=Q6WqfPH1BmH2L4Q9WiBr_5eWYsaxQQkU8hRoI1lC1Kw,20708
|
|
157
157
|
pulumi_aiven/organization_permission.py,sha256=wJRazEHdP5B8_0DLQt67-fxZHZyv-UHRy49rtRZC9wE,18029
|
|
158
158
|
pulumi_aiven/organization_project.py,sha256=Pn-grjX4AzGNKHEV8LZpXQb4zW1g86wg8ZT5tOPMkwU,29973
|
|
@@ -161,29 +161,29 @@ pulumi_aiven/organization_user_group.py,sha256=GMwxze115BYArSTC7DZVhauPgz46-BGf4
|
|
|
161
161
|
pulumi_aiven/organization_user_group_member.py,sha256=MbEfaIWLDEl3yhoqtOmpbA-5L4u-k8W4jAWm7RBy810,14667
|
|
162
162
|
pulumi_aiven/organization_vpc.py,sha256=odKmnKHOBoJ4-PLvQJ0IJxOXoBmgqvl5r52AQS8wFV8,17856
|
|
163
163
|
pulumi_aiven/organizational_unit.py,sha256=ThPlzemfb0FbVoweCxXMgix2Vnm1SavQBgklZ5ZZ8Go,12150
|
|
164
|
-
pulumi_aiven/outputs.py,sha256=
|
|
165
|
-
pulumi_aiven/pg.py,sha256=
|
|
164
|
+
pulumi_aiven/outputs.py,sha256=RnmfDI3LFCNsdKa-ZmUKtGfa0C3dP-9-Vw2t38gCRAY,2629927
|
|
165
|
+
pulumi_aiven/pg.py,sha256=edCwN1Tbj7S8RAG1kBR5Oycmrxd4PC84anrRBuqfBr4,82912
|
|
166
166
|
pulumi_aiven/pg_database.py,sha256=K0fGtJT-rbdqFK0vX3LHlMPKdQrtBmLzcbOVhmYW8OE,20927
|
|
167
167
|
pulumi_aiven/pg_user.py,sha256=kr4ctYMRAwkTye2ZAMCl3x68V6BjvCS68lxl_ZNBhfg,22901
|
|
168
168
|
pulumi_aiven/project.py,sha256=tPa7dGN09VHWaj2SJPzCPmlAgC5zkElSpzUkG1qEYyc,46933
|
|
169
169
|
pulumi_aiven/project_user.py,sha256=RZqZ32vzYoHEzyYbrHvzYDkO17x2z4sHqvsWUsJuUC0,19733
|
|
170
170
|
pulumi_aiven/project_vpc.py,sha256=d__po7Cx8CGtK1GST__hAF9t7uIqRobaMc2rCRt1b9Q,14577
|
|
171
171
|
pulumi_aiven/provider.py,sha256=20FR5fU8L_2TNPC-5hevqJPxNTdsEUoM4SUA8EuOoVg,6038
|
|
172
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
172
|
+
pulumi_aiven/pulumi-plugin.json,sha256=6JfW2IqPFUCP02Gg0eooOhutUaQd7O5_7qvkr8xWwbc,82
|
|
173
173
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
pulumi_aiven/redis.py,sha256=
|
|
174
|
+
pulumi_aiven/redis.py,sha256=pey1x9SZedajBl9I7JUOmFjJyA5hrOEqWFYenxcomc8,86575
|
|
175
175
|
pulumi_aiven/redis_user.py,sha256=VWgWbBPEHvcJcbNGDXYqvAsUum6fvsTsV10V7jmAuhM,32241
|
|
176
176
|
pulumi_aiven/service_integration.py,sha256=Rewb8E6d1DI-K1AJ-COuKbUWwCVIrfw0Uc_WUCOA3p8,95334
|
|
177
177
|
pulumi_aiven/service_integration_endpoint.py,sha256=ZAS9gnwUM27zejtb30u_h3kKw6QnsWWOzU7fDuYeu_8,106130
|
|
178
178
|
pulumi_aiven/static_ip.py,sha256=DaLrCx7ZuU_42AU0kEzKkpbQDU8iJN0LWP8D_9SIoaU,14656
|
|
179
|
-
pulumi_aiven/thanos.py,sha256=
|
|
179
|
+
pulumi_aiven/thanos.py,sha256=u1cjlswxjDAp6aVI35cViYoKqvywFmTW_eMU8maZs5Y,85104
|
|
180
180
|
pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=D9lZyaT6hA9XfoSWeHHPFKZMCK17_H_TgFFNS9H0Mrc,22988
|
|
181
|
-
pulumi_aiven/valkey.py,sha256=
|
|
181
|
+
pulumi_aiven/valkey.py,sha256=CIAy9GZyeO_eTL_xBqGZDmq8cyqFRAZdGzf-Cg8xcPY,84834
|
|
182
182
|
pulumi_aiven/valkey_user.py,sha256=OFeLoIkMFaSzQ-uER7lPIxKXm8FbmfyEfI6omMMQb-A,34913
|
|
183
183
|
pulumi_aiven/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
|
|
184
184
|
pulumi_aiven/config/__init__.pyi,sha256=z4l0cj6cs4rLRsQ5hz4zRjkCteykDm9lHpkTS96BShY,637
|
|
185
185
|
pulumi_aiven/config/vars.py,sha256=CJXIH2wnBQ9zT1-OFyuaxOXGTm6wfprbkaUSZ-RNgr8,830
|
|
186
|
-
pulumi_aiven-6.
|
|
187
|
-
pulumi_aiven-6.
|
|
188
|
-
pulumi_aiven-6.
|
|
189
|
-
pulumi_aiven-6.
|
|
186
|
+
pulumi_aiven-6.41.0a1752729091.dist-info/METADATA,sha256=4I6iXbVr5ld6-N3NKmqoXm0kNQSZtm-y1AAwjaf7jeg,2598
|
|
187
|
+
pulumi_aiven-6.41.0a1752729091.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
188
|
+
pulumi_aiven-6.41.0a1752729091.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
189
|
+
pulumi_aiven-6.41.0a1752729091.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/top_level.txt
RENAMED
|
File without changes
|