pulumi-aiven 6.14.0a1714596828__py3-none-any.whl → 6.15.0__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/outputs.py CHANGED
@@ -171,6 +171,8 @@ __all__ = [
171
171
  'OpenSearchServiceIntegration',
172
172
  'OpenSearchTag',
173
173
  'OpenSearchTechEmail',
174
+ 'OrganizationApplicationUserTimeouts',
175
+ 'OrganizationApplicationUserTokenTimeouts',
174
176
  'OrganizationGroupProjectTimeouts',
175
177
  'OrganizationTimeouts',
176
178
  'OrganizationUserGroupMemberTimeouts',
@@ -14669,6 +14671,116 @@ class OpenSearchTechEmail(dict):
14669
14671
  return pulumi.get(self, "email")
14670
14672
 
14671
14673
 
14674
+ @pulumi.output_type
14675
+ class OrganizationApplicationUserTimeouts(dict):
14676
+ def __init__(__self__, *,
14677
+ create: Optional[str] = None,
14678
+ delete: Optional[str] = None,
14679
+ read: Optional[str] = None,
14680
+ update: Optional[str] = None):
14681
+ """
14682
+ :param str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14683
+ :param str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
14684
+ :param str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
14685
+ :param str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14686
+ """
14687
+ if create is not None:
14688
+ pulumi.set(__self__, "create", create)
14689
+ if delete is not None:
14690
+ pulumi.set(__self__, "delete", delete)
14691
+ if read is not None:
14692
+ pulumi.set(__self__, "read", read)
14693
+ if update is not None:
14694
+ pulumi.set(__self__, "update", update)
14695
+
14696
+ @property
14697
+ @pulumi.getter
14698
+ def create(self) -> Optional[str]:
14699
+ """
14700
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14701
+ """
14702
+ return pulumi.get(self, "create")
14703
+
14704
+ @property
14705
+ @pulumi.getter
14706
+ def delete(self) -> Optional[str]:
14707
+ """
14708
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
14709
+ """
14710
+ return pulumi.get(self, "delete")
14711
+
14712
+ @property
14713
+ @pulumi.getter
14714
+ def read(self) -> Optional[str]:
14715
+ """
14716
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
14717
+ """
14718
+ return pulumi.get(self, "read")
14719
+
14720
+ @property
14721
+ @pulumi.getter
14722
+ def update(self) -> Optional[str]:
14723
+ """
14724
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14725
+ """
14726
+ return pulumi.get(self, "update")
14727
+
14728
+
14729
+ @pulumi.output_type
14730
+ class OrganizationApplicationUserTokenTimeouts(dict):
14731
+ def __init__(__self__, *,
14732
+ create: Optional[str] = None,
14733
+ delete: Optional[str] = None,
14734
+ read: Optional[str] = None,
14735
+ update: Optional[str] = None):
14736
+ """
14737
+ :param str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14738
+ :param str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
14739
+ :param str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
14740
+ :param str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14741
+ """
14742
+ if create is not None:
14743
+ pulumi.set(__self__, "create", create)
14744
+ if delete is not None:
14745
+ pulumi.set(__self__, "delete", delete)
14746
+ if read is not None:
14747
+ pulumi.set(__self__, "read", read)
14748
+ if update is not None:
14749
+ pulumi.set(__self__, "update", update)
14750
+
14751
+ @property
14752
+ @pulumi.getter
14753
+ def create(self) -> Optional[str]:
14754
+ """
14755
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14756
+ """
14757
+ return pulumi.get(self, "create")
14758
+
14759
+ @property
14760
+ @pulumi.getter
14761
+ def delete(self) -> Optional[str]:
14762
+ """
14763
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
14764
+ """
14765
+ return pulumi.get(self, "delete")
14766
+
14767
+ @property
14768
+ @pulumi.getter
14769
+ def read(self) -> Optional[str]:
14770
+ """
14771
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
14772
+ """
14773
+ return pulumi.get(self, "read")
14774
+
14775
+ @property
14776
+ @pulumi.getter
14777
+ def update(self) -> Optional[str]:
14778
+ """
14779
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
14780
+ """
14781
+ return pulumi.get(self, "update")
14782
+
14783
+
14672
14784
  @pulumi.output_type
14673
14785
  class OrganizationGroupProjectTimeouts(dict):
14674
14786
  def __init__(__self__, *,
@@ -27,8 +27,6 @@ class PgDatabaseArgs:
27
27
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
28
28
  :param pulumi.Input[str] lc_collate: Default string sort order (`LC_COLLATE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
29
29
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
30
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
31
- recommended to enable this for any production databases containing critical data. The default value is `false`.
32
30
  """
33
31
  pulumi.set(__self__, "database_name", database_name)
34
32
  pulumi.set(__self__, "project", project)
@@ -103,10 +101,6 @@ class PgDatabaseArgs:
103
101
  @property
104
102
  @pulumi.getter(name="terminationProtection")
105
103
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
106
- """
107
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
108
- recommended to enable this for any production databases containing critical data. The default value is `false`.
109
- """
110
104
  return pulumi.get(self, "termination_protection")
111
105
 
112
106
  @termination_protection.setter
@@ -130,8 +124,6 @@ class _PgDatabaseState:
130
124
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
131
125
  :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.
132
126
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
133
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
134
- recommended to enable this for any production databases containing critical data. The default value is `false`.
135
127
  """
136
128
  if database_name is not None:
137
129
  pulumi.set(__self__, "database_name", database_name)
@@ -209,10 +201,6 @@ class _PgDatabaseState:
209
201
  @property
210
202
  @pulumi.getter(name="terminationProtection")
211
203
  def termination_protection(self) -> Optional[pulumi.Input[bool]]:
212
- """
213
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
214
- recommended to enable this for any production databases containing critical data. The default value is `false`.
215
- """
216
204
  return pulumi.get(self, "termination_protection")
217
205
 
218
206
  @termination_protection.setter
@@ -260,8 +248,6 @@ class PgDatabase(pulumi.CustomResource):
260
248
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
261
249
  :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.
262
250
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
263
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
264
- recommended to enable this for any production databases containing critical data. The default value is `false`.
265
251
  """
266
252
  ...
267
253
  @overload
@@ -360,8 +346,6 @@ class PgDatabase(pulumi.CustomResource):
360
346
  :param pulumi.Input[str] lc_ctype: Default character classification (`LC_CTYPE`) of the database. The default value is `en_US.UTF-8`. Changing this property forces recreation of the resource.
361
347
  :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.
362
348
  :param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
363
- :param pulumi.Input[bool] termination_protection: It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
364
- recommended to enable this for any production databases containing critical data. The default value is `false`.
365
349
  """
366
350
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
367
351
 
@@ -418,9 +402,5 @@ class PgDatabase(pulumi.CustomResource):
418
402
  @property
419
403
  @pulumi.getter(name="terminationProtection")
420
404
  def termination_protection(self) -> pulumi.Output[Optional[bool]]:
421
- """
422
- It is a Terraform client-side deletion protections, which prevents the database from being deleted by Terraform. It is
423
- recommended to enable this for any production databases containing critical data. The default value is `false`.
424
- """
425
405
  return pulumi.get(self, "termination_protection")
426
406
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.14.0a1714596828
3
+ Version: 6.15.0
4
4
  Summary: A Pulumi package for creating and managing Aiven cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,5 +1,5 @@
1
- pulumi_aiven/__init__.py,sha256=6sfOeGhPMewe-c18YxiNqWS-lk8QjDv4Yc7ohAGw45o,17360
2
- pulumi_aiven/_inputs.py,sha256=OKhUWVQ-9KdcbXo3iSs6WAISXXOfThw-Cp7fsNvR57A,999381
1
+ pulumi_aiven/__init__.py,sha256=0h2zG50QpZLUQoqA306HEacGVpiLolClybi7bGHtHSo,17963
2
+ pulumi_aiven/_inputs.py,sha256=nlwaUKen1b0hKjdb8U1klU3HpYlts1Rw4CLOJs6mCnY,1007703
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
@@ -15,9 +15,9 @@ pulumi_aiven/billing_group.py,sha256=32WUU61rJV4hMMho2xdZ6FT4mQBarzhUDHCcRDhvGpU
15
15
  pulumi_aiven/cassandra.py,sha256=7LK6JdNlAnJKudT-Ebo4kvyl4DT14AOJCW-svh1Doto,78026
16
16
  pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
17
17
  pulumi_aiven/clickhouse.py,sha256=2N403DQENgGri5RIVLglZAvhm0nCNVgTu6pguB6BaPg,77668
18
- pulumi_aiven/clickhouse_database.py,sha256=wIumRQnXk9RudW2ieaIDYFVYCfI8Uvxi6iYGZezRmdQ,16741
18
+ pulumi_aiven/clickhouse_database.py,sha256=Z16_Ddf9zKLCV16iO4S_9Wk5TEawdYJyO9nQq5IznxQ,14474
19
19
  pulumi_aiven/clickhouse_grant.py,sha256=G52gABm-fNtzio74wy3ASxG9p0qCRFhBkyVA03uNVpw,25857
20
- pulumi_aiven/clickhouse_role.py,sha256=VsWUTH_cS0VOXZt3RmDfHzHaPpjl0q0dPe_9FHyiokY,13185
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
23
  pulumi_aiven/dragonfly.py,sha256=6uoEhc4unuUJjlH1DEECEXMOn78K92-jh_LyFks5mHg,77724
@@ -78,6 +78,7 @@ pulumi_aiven/get_open_search_acl_rule.py,sha256=ALOv6HiP9C_pynlN0-kgQPh642Heccfu
78
78
  pulumi_aiven/get_opensearch_security_plugin_config.py,sha256=FdUNjCJduz412aQE85-cnXU4Ya2NwQOil1hEVThfnxM,7739
79
79
  pulumi_aiven/get_opensearch_user.py,sha256=jMvtCufiKwIUzAKXf9eFqEQujpfEmZJS3HH9_tZTgFc,7069
80
80
  pulumi_aiven/get_organization.py,sha256=NtZz1DpiyYUGkbTKum5oP27A_KYtLW_y0u6vbccaovI,4646
81
+ pulumi_aiven/get_organization_application_user.py,sha256=0lZ9tqYCaOGzcvmy9_wPgSYEpGpzEcPPJbn5fsDK2YY,5740
81
82
  pulumi_aiven/get_organization_user.py,sha256=1hdtZ9xCzN9ci-yM7xKGiEfEYtgYhxYJuRncX4fxnhM,5050
82
83
  pulumi_aiven/get_organization_user_group.py,sha256=jFvrv0G0CnTENs0YSLFrPotJW-1RQJ0IC5AdTVvNR3E,6462
83
84
  pulumi_aiven/get_organizational_unit.py,sha256=wuiMG9iefxZluA84PqT9iwArghn7JcH1PdF12jei8uE,4697
@@ -95,7 +96,7 @@ pulumi_aiven/get_service_integration_endpoint.py,sha256=lq4NjVNKEJzVE2qIey3OypQu
95
96
  pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=7KYmjS-lxR5ipZNCkfLQMm0j8AFfRFe-TiTB9kzWY9s,9117
96
97
  pulumi_aiven/grafana.py,sha256=YMBstRgct1Y8Dou5dDuIrgja34ixPSyQYtBC0TqT_Xc,77620
97
98
  pulumi_aiven/influx_db.py,sha256=Umimggf7YJXJy-bT85RblUtAgf6n62s2VYIdPbDbQXs,79426
98
- pulumi_aiven/influxdb_database.py,sha256=DUJquUNzU81LkOwMDvecHaAaK2KOcYXO9ToDCPBsRqg,16069
99
+ pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
99
100
  pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
100
101
  pulumi_aiven/kafka.py,sha256=VDbez_3PeMw9Gs-FP9pFh0CBD8fh-8nuNaqDp-33ftw,84657
101
102
  pulumi_aiven/kafka_acl.py,sha256=GLGuq8vGGI55_rjZ6Op6bZcAPTc1Iejgzr0DjS_S2sw,18524
@@ -105,14 +106,14 @@ pulumi_aiven/kafka_mirror_maker.py,sha256=nQTPFV-zIhwyokmQbzuaJTnUyC0y6E_kMC66Dt
105
106
  pulumi_aiven/kafka_schema.py,sha256=dzVrDdWK7QzIlVTSKrRpemuYo0SmDeuygkiVHRWlnnc,22597
106
107
  pulumi_aiven/kafka_schema_configuration.py,sha256=kJVMjKWs19pf0m16wtUnTboIkHj5-5Mqo7yvD6qHUwk,14026
107
108
  pulumi_aiven/kafka_schema_registry_acl.py,sha256=unoLvRS6Xx7oaKmYlyN3_laQrHAmMD4pj7SkZDlxqIE,19435
108
- pulumi_aiven/kafka_topic.py,sha256=Hge8XdymVan3iCnfzqNwkWedjYcWyHAbSCKC9jend6o,24550
109
+ pulumi_aiven/kafka_topic.py,sha256=elP1YmNuQUBtvdYrJPiEJDpHJq8jtmpMCDo96SY36t8,23039
109
110
  pulumi_aiven/kafka_user.py,sha256=EmDWeof7mZkmvaqEUXyX3Movvun9Tjzq3-zyM_qi7C0,18410
110
111
  pulumi_aiven/m3_aggregator.py,sha256=R3tJboDK4DBedihqQtqPIQhFzzW6QMPu3Kz7eAAFSa4,78198
111
112
  pulumi_aiven/m3_db.py,sha256=s1OgStCLeFTlimSbNHTYxXtil3lAC3VBsSDAtQdHnhI,77264
112
113
  pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
113
114
  pulumi_aiven/mirror_maker_replication_flow.py,sha256=54VhbUgpBfpI57LT5iU7PgaISAh-su5Bhun0NKQeBnQ,40172
114
115
  pulumi_aiven/my_sql.py,sha256=KY0K4FLYM7kTWibJMbcxkOtvz4XE53B2hfi1SeN-2Qg,77858
115
- pulumi_aiven/mysql_database.py,sha256=2ppKNtTVGnZUcIo2MtQ5f8CxNkdrx4LJXl-RiwaBDis,16783
116
+ pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
116
117
  pulumi_aiven/mysql_user.py,sha256=oiWZ0B1KJYCSl21uB61I-hB2gdmhzGiXNXx7xqLjs8M,21065
117
118
  pulumi_aiven/open_search.py,sha256=Zed1LfajTCo5w9wTDM3BWovZRTVLLuOH5JZ1DLP1H0s,80065
118
119
  pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
@@ -120,14 +121,16 @@ pulumi_aiven/open_search_acl_rule.py,sha256=_8D_sLAiM29SNMMjl1fLUzae8tgNQhLPmWaJ
120
121
  pulumi_aiven/opensearch_security_plugin_config.py,sha256=HpnFd2__mtiAwwOh9PFboST9zs8tRWruKvl_PFEaQKs,18636
121
122
  pulumi_aiven/opensearch_user.py,sha256=N7mlHAEAKFXNrwzCJ-j-VBHD5pCHHk-UHoove-Y5Rjc,16488
122
123
  pulumi_aiven/organization.py,sha256=440RPNMMC4u9SrVovSjpXzOd9bk6HgBT4V9t24v2V5A,10891
124
+ pulumi_aiven/organization_application_user.py,sha256=raxJsj-Zn43lJ-GbM59hwzmxalfY2xN6tri6c3Q1P_U,13082
125
+ pulumi_aiven/organization_application_user_token.py,sha256=vavSryZ82e8CtSZn1jiTzoz33kroC6N--2lRxZ3EaTk,32786
123
126
  pulumi_aiven/organization_group_project.py,sha256=3eh9eXSwQ1q-eJi3HOoAqG_c-Svuo1jfC7uGBFLwiOs,13476
124
127
  pulumi_aiven/organization_user.py,sha256=0XAWD_j5GtN-YZz2vkCNOZLftYjQFSACR9Bxk4Kvbcg,16135
125
128
  pulumi_aiven/organization_user_group.py,sha256=XTBcIrCH9uxRZewjGcMeWyEi91Zel3BrkIC0GcaNdfI,14704
126
129
  pulumi_aiven/organization_user_group_member.py,sha256=hQNwloGq0KpEuSb0RCirDyA0bygxUSCM80_o-yOzb3o,14096
127
130
  pulumi_aiven/organizational_unit.py,sha256=dgHOIJKfjAhuLeRsOI9vLYRwVfteIFrWKXe_kTBU-JU,11475
128
- pulumi_aiven/outputs.py,sha256=qQFHbTc3nLoyAA5n5SiMBd1E0R2VnFcphjNk7cUCTc0,1645406
131
+ pulumi_aiven/outputs.py,sha256=Ahr3zytMG20lWGihd8AbVRlo244KBcyL1jPq_r698GI,1652442
129
132
  pulumi_aiven/pg.py,sha256=pOsirgL0ryQZmRHSfeTydDcXAxhTyI4AJXzsRn_cz0I,77421
130
- pulumi_aiven/pg_database.py,sha256=SsLBisN7zYYy_jRXgS3Yc_ojEbNI5WqvqWKiYg4x4SQ,22050
133
+ pulumi_aiven/pg_database.py,sha256=qsYKZAioLzv2bzYAFVxLumkEV-2e031ysC77h9HkqLA,20021
131
134
  pulumi_aiven/pg_user.py,sha256=O25YPH3N19lRc_QoLgw9NK9i8W2jys0dejq37f3EaXo,20775
132
135
  pulumi_aiven/project.py,sha256=ArAEa2FDbKM-PkMxzPJascIcYq7BzSs5L0HPjAw7CAw,47105
133
136
  pulumi_aiven/project_user.py,sha256=CAxxa2QCsyk1Apm-Mf7BZv5YeFbKbx8LxUEjtG5NUJA,13182
@@ -144,7 +147,7 @@ pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=CCP3cTy2oJVGieXjKEXi44-MFF
144
147
  pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
145
148
  pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
146
149
  pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
147
- pulumi_aiven-6.14.0a1714596828.dist-info/METADATA,sha256=sUFm55FyenQqTrMb5WqHPXo5ACTioQziDSkjpAzxRsA,2532
148
- pulumi_aiven-6.14.0a1714596828.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
149
- pulumi_aiven-6.14.0a1714596828.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
150
- pulumi_aiven-6.14.0a1714596828.dist-info/RECORD,,
150
+ pulumi_aiven-6.15.0.dist-info/METADATA,sha256=Zfp4Es7-Z5UM_xIewyBIrcKKkx2Mrf1riGbmp5ctgLM,2521
151
+ pulumi_aiven-6.15.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
152
+ pulumi_aiven-6.15.0.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
153
+ pulumi_aiven-6.15.0.dist-info/RECORD,,