pulumi-aiven 6.18.0a1719033317__py3-none-any.whl → 6.18.0a1719292452__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/pg.py CHANGED
@@ -135,13 +135,11 @@ class PgArgs:
135
135
 
136
136
  @property
137
137
  @pulumi.getter(name="diskSpace")
138
+ @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
138
139
  def disk_space(self) -> Optional[pulumi.Input[str]]:
139
140
  """
140
141
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
141
142
  """
142
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
143
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
144
-
145
143
  return pulumi.get(self, "disk_space")
146
144
 
147
145
  @disk_space.setter
@@ -441,13 +439,11 @@ class _PgState:
441
439
 
442
440
  @property
443
441
  @pulumi.getter(name="diskSpace")
442
+ @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
444
443
  def disk_space(self) -> Optional[pulumi.Input[str]]:
445
444
  """
446
445
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
447
446
  """
448
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
449
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
450
-
451
447
  return pulumi.get(self, "disk_space")
452
448
 
453
449
  @disk_space.setter
@@ -1016,13 +1012,11 @@ class Pg(pulumi.CustomResource):
1016
1012
 
1017
1013
  @property
1018
1014
  @pulumi.getter(name="diskSpace")
1015
+ @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1019
1016
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1020
1017
  """
1021
1018
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1022
1019
  """
1023
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
1024
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1025
-
1026
1020
  return pulumi.get(self, "disk_space")
1027
1021
 
1028
1022
  @property
pulumi_aiven/project.py CHANGED
@@ -82,13 +82,11 @@ class ProjectArgs:
82
82
 
83
83
  @property
84
84
  @pulumi.getter(name="accountId")
85
+ @_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
85
86
  def account_id(self) -> Optional[pulumi.Input[str]]:
86
87
  """
87
88
  Link a project to an existing account using its account ID. This field is deprecated. Use `parent_id` instead. To set up proper dependencies please refer to this variable as a reference.
88
89
  """
89
- warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
90
- pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
91
-
92
90
  return pulumi.get(self, "account_id")
93
91
 
94
92
  @account_id.setter
@@ -97,13 +95,11 @@ class ProjectArgs:
97
95
 
98
96
  @property
99
97
  @pulumi.getter(name="addAccountOwnersAdminAccess")
98
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""")
100
99
  def add_account_owners_admin_access(self) -> Optional[pulumi.Input[bool]]:
101
100
  """
102
101
  If parent_id is set, grant account owner team admin access to the new project. The default value is `true`.
103
102
  """
104
- warnings.warn("""This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""", DeprecationWarning)
105
- pulumi.log.warn("""add_account_owners_admin_access is deprecated: This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""")
106
-
107
103
  return pulumi.get(self, "add_account_owners_admin_access")
108
104
 
109
105
  @add_account_owners_admin_access.setter
@@ -184,13 +180,11 @@ class ProjectArgs:
184
180
 
185
181
  @property
186
182
  @pulumi.getter(name="useSourceProjectBillingGroup")
183
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
187
184
  def use_source_project_billing_group(self) -> Optional[pulumi.Input[bool]]:
188
185
  """
189
186
  Use the same billing group that is used in source project.
190
187
  """
191
- warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
192
- pulumi.log.warn("""use_source_project_billing_group is deprecated: This field is deprecated and will be removed in the next major release.""")
193
-
194
188
  return pulumi.get(self, "use_source_project_billing_group")
195
189
 
196
190
  @use_source_project_billing_group.setter
@@ -272,13 +266,11 @@ class _ProjectState:
272
266
 
273
267
  @property
274
268
  @pulumi.getter(name="accountId")
269
+ @_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
275
270
  def account_id(self) -> Optional[pulumi.Input[str]]:
276
271
  """
277
272
  Link a project to an existing account using its account ID. This field is deprecated. Use `parent_id` instead. To set up proper dependencies please refer to this variable as a reference.
278
273
  """
279
- warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
280
- pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
281
-
282
274
  return pulumi.get(self, "account_id")
283
275
 
284
276
  @account_id.setter
@@ -287,13 +279,11 @@ class _ProjectState:
287
279
 
288
280
  @property
289
281
  @pulumi.getter(name="addAccountOwnersAdminAccess")
282
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""")
290
283
  def add_account_owners_admin_access(self) -> Optional[pulumi.Input[bool]]:
291
284
  """
292
285
  If parent_id is set, grant account owner team admin access to the new project. The default value is `true`.
293
286
  """
294
- warnings.warn("""This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""", DeprecationWarning)
295
- pulumi.log.warn("""add_account_owners_admin_access is deprecated: This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""")
296
-
297
287
  return pulumi.get(self, "add_account_owners_admin_access")
298
288
 
299
289
  @add_account_owners_admin_access.setter
@@ -434,13 +424,11 @@ class _ProjectState:
434
424
 
435
425
  @property
436
426
  @pulumi.getter(name="useSourceProjectBillingGroup")
427
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
437
428
  def use_source_project_billing_group(self) -> Optional[pulumi.Input[bool]]:
438
429
  """
439
430
  Use the same billing group that is used in source project.
440
431
  """
441
- warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
442
- pulumi.log.warn("""use_source_project_billing_group is deprecated: This field is deprecated and will be removed in the next major release.""")
443
-
444
432
  return pulumi.get(self, "use_source_project_billing_group")
445
433
 
446
434
  @use_source_project_billing_group.setter
@@ -643,24 +631,20 @@ class Project(pulumi.CustomResource):
643
631
 
644
632
  @property
645
633
  @pulumi.getter(name="accountId")
634
+ @_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
646
635
  def account_id(self) -> pulumi.Output[Optional[str]]:
647
636
  """
648
637
  Link a project to an existing account using its account ID. This field is deprecated. Use `parent_id` instead. To set up proper dependencies please refer to this variable as a reference.
649
638
  """
650
- warnings.warn("""Use parent_id instead. This field will be removed in the next major release.""", DeprecationWarning)
651
- pulumi.log.warn("""account_id is deprecated: Use parent_id instead. This field will be removed in the next major release.""")
652
-
653
639
  return pulumi.get(self, "account_id")
654
640
 
655
641
  @property
656
642
  @pulumi.getter(name="addAccountOwnersAdminAccess")
643
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""")
657
644
  def add_account_owners_admin_access(self) -> pulumi.Output[Optional[bool]]:
658
645
  """
659
646
  If parent_id is set, grant account owner team admin access to the new project. The default value is `true`.
660
647
  """
661
- warnings.warn("""This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""", DeprecationWarning)
662
- pulumi.log.warn("""add_account_owners_admin_access is deprecated: This field is deprecated and will be removed in the next major release. Currently, it will always be set to true, regardless of the value set in the manifest.""")
663
-
664
648
  return pulumi.get(self, "add_account_owners_admin_access")
665
649
 
666
650
  @property
@@ -753,12 +737,10 @@ class Project(pulumi.CustomResource):
753
737
 
754
738
  @property
755
739
  @pulumi.getter(name="useSourceProjectBillingGroup")
740
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
756
741
  def use_source_project_billing_group(self) -> pulumi.Output[Optional[bool]]:
757
742
  """
758
743
  Use the same billing group that is used in source project.
759
744
  """
760
- warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
761
- pulumi.log.warn("""use_source_project_billing_group is deprecated: This field is deprecated and will be removed in the next major release.""")
762
-
763
745
  return pulumi.get(self, "use_source_project_billing_group")
764
746
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "aiven",
4
- "version": "6.18.0-alpha.1719033317"
4
+ "version": "6.18.0-alpha.1719292452"
5
5
  }
pulumi_aiven/redis.py CHANGED
@@ -146,13 +146,11 @@ class RedisArgs:
146
146
 
147
147
  @property
148
148
  @pulumi.getter(name="diskSpace")
149
+ @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
149
150
  def disk_space(self) -> Optional[pulumi.Input[str]]:
150
151
  """
151
152
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
152
153
  """
153
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
154
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
155
-
156
154
  return pulumi.get(self, "disk_space")
157
155
 
158
156
  @disk_space.setter
@@ -440,13 +438,11 @@ class _RedisState:
440
438
 
441
439
  @property
442
440
  @pulumi.getter(name="diskSpace")
441
+ @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
443
442
  def disk_space(self) -> Optional[pulumi.Input[str]]:
444
443
  """
445
444
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
446
445
  """
447
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
448
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
449
-
450
446
  return pulumi.get(self, "disk_space")
451
447
 
452
448
  @disk_space.setter
@@ -1059,13 +1055,11 @@ class Redis(pulumi.CustomResource):
1059
1055
 
1060
1056
  @property
1061
1057
  @pulumi.getter(name="diskSpace")
1058
+ @_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1062
1059
  def disk_space(self) -> pulumi.Output[Optional[str]]:
1063
1060
  """
1064
1061
  Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
1065
1062
  """
1066
- warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
1067
- pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
1068
-
1069
1063
  return pulumi.get(self, "disk_space")
1070
1064
 
1071
1065
  @property
@@ -87,13 +87,11 @@ class TransitGatewayVpcAttachmentArgs:
87
87
 
88
88
  @property
89
89
  @pulumi.getter(name="peerRegion")
90
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
90
91
  def peer_region(self) -> Optional[pulumi.Input[str]]:
91
92
  """
92
93
  AWS region of the peered VPC (if not in the same region as Aiven VPC)
93
94
  """
94
- warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
95
- pulumi.log.warn("""peer_region is deprecated: This field is deprecated and will be removed in the next major release.""")
96
-
97
95
  return pulumi.get(self, "peer_region")
98
96
 
99
97
  @peer_region.setter
@@ -157,13 +155,11 @@ class _TransitGatewayVpcAttachmentState:
157
155
 
158
156
  @property
159
157
  @pulumi.getter(name="peerRegion")
158
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
160
159
  def peer_region(self) -> Optional[pulumi.Input[str]]:
161
160
  """
162
161
  AWS region of the peered VPC (if not in the same region as Aiven VPC)
163
162
  """
164
- warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
165
- pulumi.log.warn("""peer_region is deprecated: This field is deprecated and will be removed in the next major release.""")
166
-
167
163
  return pulumi.get(self, "peer_region")
168
164
 
169
165
  @peer_region.setter
@@ -417,13 +413,11 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
417
413
 
418
414
  @property
419
415
  @pulumi.getter(name="peerRegion")
416
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
420
417
  def peer_region(self) -> pulumi.Output[Optional[str]]:
421
418
  """
422
419
  AWS region of the peered VPC (if not in the same region as Aiven VPC)
423
420
  """
424
- warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
425
- pulumi.log.warn("""peer_region is deprecated: This field is deprecated and will be removed in the next major release.""")
426
-
427
421
  return pulumi.get(self, "peer_region")
428
422
 
429
423
  @property
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.18.0a1719033317
3
+ Version: 6.18.0a1719292452
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,7 +1,7 @@
1
1
  pulumi_aiven/__init__.py,sha256=0h2zG50QpZLUQoqA306HEacGVpiLolClybi7bGHtHSo,17963
2
- pulumi_aiven/_inputs.py,sha256=WPyM_UyRR6QvgaMikF4CGwEff3dlR60B3c4Gap7nUwA,1036352
3
- pulumi_aiven/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
4
- pulumi_aiven/account.py,sha256=AgV088KZCyVC_ndgqWeFOeqb52-m9XtdPvjGSQ2LRrs,18274
2
+ pulumi_aiven/_inputs.py,sha256=st5JyyJmEkW1CbaTWJATOl9Uvjp0-vkiwr1z0ev81TM,1032673
3
+ pulumi_aiven/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
4
+ pulumi_aiven/account.py,sha256=MlCmPhnrhzt9_f2Elgjvm-4ZVPhFXz6eQ3DMJ5zoQZE,16851
5
5
  pulumi_aiven/account_authentication.py,sha256=vltk7XN7jXSO12BQ834AKPy1p1RGKqsX8jrMKOU_7K0,36871
6
6
  pulumi_aiven/account_team.py,sha256=GMCtLN3Fs6dk2mjDcHIuntSRXk9CSuUoozbU37XrCLk,11277
7
7
  pulumi_aiven/account_team_member.py,sha256=tJX67UlZdL01c0Yt-doFkPWRPz4QaisV5W5jpZPzsEU,17415
@@ -9,22 +9,22 @@ pulumi_aiven/account_team_project.py,sha256=N8S9rHjWOFoxqk-9SuwtAdp3Z5RpJpKFSPf5
9
9
  pulumi_aiven/aws_privatelink.py,sha256=unh4v3-UrdUTwOyYJeVl79bsbqfxfbMpA0iw6H1zwhY,15431
10
10
  pulumi_aiven/aws_vpc_peering_connection.py,sha256=g_8vsPQ3N0dScetTpgQ-EIoU0tulT1QR3Qouo_T0Di8,18360
11
11
  pulumi_aiven/azure_privatelink.py,sha256=fnW3eM-N2Og8IhfOgYbtaeo9PEFtnnoQ4utMEm_QdM4,17982
12
- pulumi_aiven/azure_privatelink_connection_approval.py,sha256=iTJ1B6WRP1LH8LFe_5-7w0yYPsQZG1rKAXyAWs8Pd6Y,18926
12
+ pulumi_aiven/azure_privatelink_connection_approval.py,sha256=z7LAxGgwqPrdTGj1rg-U0fyEwaq9myHLxGwHl8FP0t0,18930
13
13
  pulumi_aiven/azure_vpc_peering_connection.py,sha256=ali1DX5gS9Wy3JJKelMPCsH-Ikk4LmBOihThXkVD0Io,25124
14
- pulumi_aiven/billing_group.py,sha256=32WUU61rJV4hMMho2xdZ6FT4mQBarzhUDHCcRDhvGpU,37753
15
- pulumi_aiven/cassandra.py,sha256=Aw76tZF_shuvdssqocp-8SNRskrJ5mOZSE05oSIhY7E,80242
14
+ pulumi_aiven/billing_group.py,sha256=618QcUhxrSf6eahAcjspSpFYXQgMSCZ5vdXMrXwjNV0,37303
15
+ pulumi_aiven/cassandra.py,sha256=GZIRtbbufCXGg24AKVSEewxE8BSj6hP3odZyonKqMbw,79576
16
16
  pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
17
- pulumi_aiven/clickhouse.py,sha256=x-0kDYWXrJRuBqRubqeTHDCAQPcCwgN2w8JQX1_zblM,79952
17
+ pulumi_aiven/clickhouse.py,sha256=IUYo7lGrRI46YcuMOmJucj9r8NGs43b3pPxOwzLaDFM,79286
18
18
  pulumi_aiven/clickhouse_database.py,sha256=Z16_Ddf9zKLCV16iO4S_9Wk5TEawdYJyO9nQq5IznxQ,14474
19
19
  pulumi_aiven/clickhouse_grant.py,sha256=G52gABm-fNtzio74wy3ASxG9p0qCRFhBkyVA03uNVpw,25857
20
20
  pulumi_aiven/clickhouse_role.py,sha256=Lk9H_bkZcsvaktXIno8QEqNMQdqeqYVRqoE2a30xzW8,13175
21
21
  pulumi_aiven/clickhouse_user.py,sha256=v4XaOVURXHPJ8FWww6IRKaXSTMGlmKznplNWK78ksb0,15886
22
22
  pulumi_aiven/connection_pool.py,sha256=3Vd_cbCNIZSSxP2ztuk_zm4CagEAYudGVKYmqCM6W1o,25462
23
- pulumi_aiven/dragonfly.py,sha256=-u-O_rEFQPuBtCA5xKKEzRONU1E0dngjFEB88pwVHZg,79940
24
- pulumi_aiven/flink.py,sha256=9MGzEozkyFRNqdngpwko47w3yM21OuvqEJh3LlLA7ig,79062
23
+ pulumi_aiven/dragonfly.py,sha256=3fxaZmU_lBAYLwDXR16LRx6TQG2aYqB21SYlZOCO6wM,79274
24
+ pulumi_aiven/flink.py,sha256=3lmOzdvUibEsQC8EN7Ij1lZRuwBKRUJoRj2hUM7uJuo,78396
25
25
  pulumi_aiven/flink_application.py,sha256=bIAE6Rt_JwOLchnG1T3PKm4mzaGpT_VTHLSqwcgrXNw,17200
26
26
  pulumi_aiven/flink_application_deployment.py,sha256=I9eRnBXG5-rqIbWQHWEnQ96ovaQ31tU-H2yW1d3Vi4Q,23037
27
- pulumi_aiven/flink_application_version.py,sha256=mMv2vD54mDmybOYbkSiNozdSPZ1zJvPzkhIAgHMCOxI,34046
27
+ pulumi_aiven/flink_application_version.py,sha256=hmkVAxy0iAUAaLZevS2s8cQxNabfnT2G4UdGiQSg3tM,33074
28
28
  pulumi_aiven/gcp_privatelink.py,sha256=rSRoY5iNYhfZu-VpjUg7bjaIHh2JOjJOVIBB4OHU2k4,14004
29
29
  pulumi_aiven/gcp_privatelink_connection_approval.py,sha256=Pm9TB2M5OtboiVzswVNtQevjdts3cC0aRHpLLT3ahxA,16890
30
30
  pulumi_aiven/gcp_vpc_peering_connection.py,sha256=hnTUvskarwN5q19ZYIm0B0U6jGhxb5lhqvSQfkXgy9w,14854
@@ -94,28 +94,28 @@ pulumi_aiven/get_service_component.py,sha256=ej2tl74FPoQfgdI3KYQABT_b1b9advsU_z2
94
94
  pulumi_aiven/get_service_integration.py,sha256=lzpknk16sy9-q0wjYMSwPs2bbZXeThxCCDGU8ifhLPo,21706
95
95
  pulumi_aiven/get_service_integration_endpoint.py,sha256=NptyCHZAmQVpUMLFohCXarpM9-pb0-D-_HqTW6rlExs,17283
96
96
  pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=7KYmjS-lxR5ipZNCkfLQMm0j8AFfRFe-TiTB9kzWY9s,9117
97
- pulumi_aiven/grafana.py,sha256=cHlTIJwFR7EUWmjoYfd7ICdnpNtlig44p1FQDyCEtAQ,79700
98
- pulumi_aiven/influx_db.py,sha256=959eZMErgg1b6UGCnUDGlAdICzqbBWjI3Jxkx2IhjHg,80615
97
+ pulumi_aiven/grafana.py,sha256=M3FZEk5mnQ0SNWDl0ubbkLxDXh2whrAur1cEK7si2f0,79034
98
+ pulumi_aiven/influx_db.py,sha256=gkVI1wJCoSePJSWtA_QLOGcCrLBhl5tYbBLCJdS4bkM,79949
99
99
  pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
100
100
  pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
101
- pulumi_aiven/kafka.py,sha256=QG1Y1j-a4OkkDZsP2yCz6Xblg3gbYfxnZdRg3rAPQHQ,85749
101
+ pulumi_aiven/kafka.py,sha256=aKy3okGz4PDkgy3JvYmn8uDaBtpDREEDmIaD-WeYPdo,84762
102
102
  pulumi_aiven/kafka_acl.py,sha256=GLGuq8vGGI55_rjZ6Op6bZcAPTc1Iejgzr0DjS_S2sw,18524
103
- pulumi_aiven/kafka_connect.py,sha256=Ayy9UJWzu9X9Mfse84dIHG1Kj21Y7hajBJdOqUSXzoI,78773
103
+ pulumi_aiven/kafka_connect.py,sha256=g_Yen8ITafX5-uHpOM24lnPPkz7vGPeFM34LqX8iQDE,78107
104
104
  pulumi_aiven/kafka_connector.py,sha256=0nhFbsNowonePH47YTneuh5q-U-cPY927G7w5u7E3rk,24050
105
- pulumi_aiven/kafka_mirror_maker.py,sha256=nQTPFV-zIhwyokmQbzuaJTnUyC0y6E_kMC66Dtha-wg,79229
105
+ pulumi_aiven/kafka_mirror_maker.py,sha256=09k_IqMhASls1Or-n2j6gYDoMvNzAZSpB5xVsp-SP6U,78563
106
106
  pulumi_aiven/kafka_schema.py,sha256=dzVrDdWK7QzIlVTSKrRpemuYo0SmDeuygkiVHRWlnnc,22597
107
107
  pulumi_aiven/kafka_schema_configuration.py,sha256=kJVMjKWs19pf0m16wtUnTboIkHj5-5Mqo7yvD6qHUwk,14026
108
108
  pulumi_aiven/kafka_schema_registry_acl.py,sha256=unoLvRS6Xx7oaKmYlyN3_laQrHAmMD4pj7SkZDlxqIE,19435
109
109
  pulumi_aiven/kafka_topic.py,sha256=elP1YmNuQUBtvdYrJPiEJDpHJq8jtmpMCDo96SY36t8,23039
110
110
  pulumi_aiven/kafka_user.py,sha256=EmDWeof7mZkmvaqEUXyX3Movvun9Tjzq3-zyM_qi7C0,18410
111
- pulumi_aiven/m3_aggregator.py,sha256=8Nt8WGtRuNHgi00gnh0W9rMqm-_7XvGNBuc-N2qryGg,80625
112
- pulumi_aiven/m3_db.py,sha256=l1tvPA3pioMkrW7NVlExrwbIUZc_WhvCw8uu35AOpdk,79140
111
+ pulumi_aiven/m3_aggregator.py,sha256=CT1Dpagy_g_cHUgBFUCQ5_GOsVxCXmAWhREU67diVF4,79959
112
+ pulumi_aiven/m3_db.py,sha256=SwNdh1BicfylrFeZt0ub0OC-f3ePnu3NVcjVvrhl2hg,78474
113
113
  pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
114
114
  pulumi_aiven/mirror_maker_replication_flow.py,sha256=v-WC_KemMR7TlHOo_-ibMwP03oLvR4UQXPSHW9Q6UeI,50955
115
- pulumi_aiven/my_sql.py,sha256=Yc-oZLV1IbFX8YG90POPJgZf0bUVjDZw-pRCySlGIL0,79865
115
+ pulumi_aiven/my_sql.py,sha256=wgcGjPG3Tx3x7kPlW2atpBWl98og9yoqwC4HTyuCLn8,79199
116
116
  pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
117
117
  pulumi_aiven/mysql_user.py,sha256=oiWZ0B1KJYCSl21uB61I-hB2gdmhzGiXNXx7xqLjs8M,21065
118
- pulumi_aiven/open_search.py,sha256=TwvxY_rfqkOsKd469quNm9QCKWX6qg1fl1lIq1GyRXo,81336
118
+ pulumi_aiven/open_search.py,sha256=K2pBOIkUmCaijZSM4MyN4pgJ-NIuNcb1fuE12cwWMgY,80670
119
119
  pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
120
120
  pulumi_aiven/open_search_acl_rule.py,sha256=_8D_sLAiM29SNMMjl1fLUzae8tgNQhLPmWaJAX_LwMs,21934
121
121
  pulumi_aiven/opensearch_security_plugin_config.py,sha256=HpnFd2__mtiAwwOh9PFboST9zs8tRWruKvl_PFEaQKs,18636
@@ -124,30 +124,30 @@ pulumi_aiven/organization.py,sha256=440RPNMMC4u9SrVovSjpXzOd9bk6HgBT4V9t24v2V5A,
124
124
  pulumi_aiven/organization_application_user.py,sha256=wYLkE8Whvl13AUdl_29JUgATLUZ7MvEWSO2pVLc6LBE,14353
125
125
  pulumi_aiven/organization_application_user_token.py,sha256=7ut1Apo13uyi6-5Wn6Ksn4FKMh3x1CEgHSkJlknz8ws,30983
126
126
  pulumi_aiven/organization_group_project.py,sha256=3eh9eXSwQ1q-eJi3HOoAqG_c-Svuo1jfC7uGBFLwiOs,13476
127
- pulumi_aiven/organization_user.py,sha256=0XAWD_j5GtN-YZz2vkCNOZLftYjQFSACR9Bxk4Kvbcg,16135
127
+ pulumi_aiven/organization_user.py,sha256=eJ59ukayuIBnmYl08YyF_GJBDC8pjFpuBtsCkw6EXxo,15555
128
128
  pulumi_aiven/organization_user_group.py,sha256=XTBcIrCH9uxRZewjGcMeWyEi91Zel3BrkIC0GcaNdfI,14704
129
129
  pulumi_aiven/organization_user_group_member.py,sha256=hQNwloGq0KpEuSb0RCirDyA0bygxUSCM80_o-yOzb3o,14096
130
130
  pulumi_aiven/organizational_unit.py,sha256=dgHOIJKfjAhuLeRsOI9vLYRwVfteIFrWKXe_kTBU-JU,11475
131
- pulumi_aiven/outputs.py,sha256=pPDX_6wOLDS0QZ-GtHBMX1q2h-nYVDBHoMdydj10_Eo,1702061
132
- pulumi_aiven/pg.py,sha256=N1kRXffw28qSHOndjrfmuA6F4c2ZWAcpg4Vb6CbFH9s,77473
131
+ pulumi_aiven/outputs.py,sha256=PWbjlZ5ZG5DjMS-xpYw09mLsqMnZ4zDlOglS3ezp1fE,1694469
132
+ pulumi_aiven/pg.py,sha256=peePCkaLqIVjBjTv55jIrXpertrccwzn6is3SKh8icY,76807
133
133
  pulumi_aiven/pg_database.py,sha256=qsYKZAioLzv2bzYAFVxLumkEV-2e031ysC77h9HkqLA,20021
134
134
  pulumi_aiven/pg_user.py,sha256=O25YPH3N19lRc_QoLgw9NK9i8W2jys0dejq37f3EaXo,20775
135
- pulumi_aiven/project.py,sha256=ArAEa2FDbKM-PkMxzPJascIcYq7BzSs5L0HPjAw7CAw,47105
135
+ pulumi_aiven/project.py,sha256=fjxvGU7-PwB4RqVc1tFFIyfoirihsYZJwp8AbWu7bpw,45395
136
136
  pulumi_aiven/project_user.py,sha256=CAxxa2QCsyk1Apm-Mf7BZv5YeFbKbx8LxUEjtG5NUJA,13182
137
137
  pulumi_aiven/project_vpc.py,sha256=_87HVOeC9IvAmG-fnln5tXW8Z3BdLCA8kER800tp5AE,13908
138
138
  pulumi_aiven/provider.py,sha256=8Nv5JAKLMaDCG8iqDCiMTBS5DYK8bh5Fvv0Pl6_5LK0,4881
139
- pulumi_aiven/pulumi-plugin.json,sha256=w0v2hiJMsyJTBkX98RrPSAxokm9YZf0vKfbrv-2SyhY,82
139
+ pulumi_aiven/pulumi-plugin.json,sha256=baiFHkCOD1Pqgw2BIGtpX4y7XKNxX7oSA0RR88uqKTE,82
140
140
  pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
- pulumi_aiven/redis.py,sha256=PHSRzKj2gEd5S5DW19sFIa5AyqxadfdHC98rh-Ud7T0,79358
141
+ pulumi_aiven/redis.py,sha256=x7xVWYiMcqPFqMtj_I29Rn7TSbWmzBarj0XPYEFjlno,78692
142
142
  pulumi_aiven/redis_user.py,sha256=jGHT0lw0egvRigZIBlokBIE6-_c8sbjhFM2bJLoaGHg,29184
143
143
  pulumi_aiven/service_integration.py,sha256=JaxkGirFlQUSHkxTioXTR13Qq5Phuva5NoivC8h2Bqc,69074
144
144
  pulumi_aiven/service_integration_endpoint.py,sha256=eO6-LR3lh9KAo5HMyhf3ZORYgmI6KmmHw2nlydujlqs,60119
145
145
  pulumi_aiven/static_ip.py,sha256=gtPEBjinCRn1W_Eth41uMApeqQ1kN8jQFt9xFmHrcTw,13926
146
- pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=CCP3cTy2oJVGieXjKEXi44-MFF8m7ztqyQpsSu19fLw,22959
146
+ pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=C3mkzEZYqeRCJFLO2PM5vaCBWMSnuPWD1HQZ2bRcwms,22521
147
147
  pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
148
148
  pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
149
149
  pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
150
- pulumi_aiven-6.18.0a1719033317.dist-info/METADATA,sha256=HwMfZ9SKY5NJgMvHrGQtejIR6Stn1fA1PXEOHN4sVWw,2532
151
- pulumi_aiven-6.18.0a1719033317.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
152
- pulumi_aiven-6.18.0a1719033317.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
153
- pulumi_aiven-6.18.0a1719033317.dist-info/RECORD,,
150
+ pulumi_aiven-6.18.0a1719292452.dist-info/METADATA,sha256=cOTirY9MEeI7wcaDa6eQjqYVijgAea6Esi0ockpbQVM,2532
151
+ pulumi_aiven-6.18.0a1719292452.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
152
+ pulumi_aiven-6.18.0a1719292452.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
153
+ pulumi_aiven-6.18.0a1719292452.dist-info/RECORD,,