pulumi-aiven 6.18.0__py3-none-any.whl → 6.18.0a1717478109__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 +1106 -1650
- pulumi_aiven/_utilities.py +0 -35
- pulumi_aiven/account.py +27 -9
- pulumi_aiven/account_authentication.py +4 -10
- pulumi_aiven/account_team.py +8 -16
- pulumi_aiven/account_team_member.py +8 -16
- pulumi_aiven/account_team_project.py +8 -16
- pulumi_aiven/azure_privatelink_connection_approval.py +2 -2
- pulumi_aiven/billing_group.py +9 -3
- pulumi_aiven/cassandra.py +9 -3
- pulumi_aiven/clickhouse.py +9 -3
- pulumi_aiven/dragonfly.py +9 -3
- pulumi_aiven/flink.py +9 -3
- pulumi_aiven/flink_application_version.py +18 -6
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -14
- pulumi_aiven/get_project.py +1 -1
- pulumi_aiven/grafana.py +9 -3
- pulumi_aiven/influx_db.py +9 -3
- pulumi_aiven/kafka.py +18 -6
- pulumi_aiven/kafka_connect.py +9 -3
- pulumi_aiven/kafka_mirror_maker.py +9 -3
- pulumi_aiven/m3_aggregator.py +9 -3
- pulumi_aiven/m3_db.py +9 -3
- pulumi_aiven/mirror_maker_replication_flow.py +0 -63
- pulumi_aiven/my_sql.py +9 -3
- pulumi_aiven/open_search.py +9 -3
- pulumi_aiven/organization.py +2 -2
- pulumi_aiven/organization_group_project.py +2 -2
- pulumi_aiven/organization_user.py +12 -4
- pulumi_aiven/organization_user_group.py +2 -2
- pulumi_aiven/organization_user_group_member.py +2 -2
- pulumi_aiven/organizational_unit.py +2 -2
- pulumi_aiven/outputs.py +2245 -3107
- pulumi_aiven/pg.py +9 -3
- pulumi_aiven/project.py +36 -18
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +9 -3
- pulumi_aiven/transit_gateway_vpc_attachment.py +9 -3
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/RECORD +42 -42
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.18.0.dist-info → pulumi_aiven-6.18.0a1717478109.dist-info}/top_level.txt +0 -0
pulumi_aiven/pg.py
CHANGED
|
@@ -135,11 +135,13 @@ 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.""")
|
|
139
138
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
140
139
|
"""
|
|
141
140
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
142
141
|
"""
|
|
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
|
+
|
|
143
145
|
return pulumi.get(self, "disk_space")
|
|
144
146
|
|
|
145
147
|
@disk_space.setter
|
|
@@ -439,11 +441,13 @@ class _PgState:
|
|
|
439
441
|
|
|
440
442
|
@property
|
|
441
443
|
@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.""")
|
|
443
444
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
444
445
|
"""
|
|
445
446
|
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
447
|
"""
|
|
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
|
+
|
|
447
451
|
return pulumi.get(self, "disk_space")
|
|
448
452
|
|
|
449
453
|
@disk_space.setter
|
|
@@ -1012,11 +1016,13 @@ class Pg(pulumi.CustomResource):
|
|
|
1012
1016
|
|
|
1013
1017
|
@property
|
|
1014
1018
|
@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.""")
|
|
1016
1019
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1017
1020
|
"""
|
|
1018
1021
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1019
1022
|
"""
|
|
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
|
+
|
|
1020
1026
|
return pulumi.get(self, "disk_space")
|
|
1021
1027
|
|
|
1022
1028
|
@property
|
pulumi_aiven/project.py
CHANGED
|
@@ -34,7 +34,7 @@ class ProjectArgs:
|
|
|
34
34
|
:param pulumi.Input[str] billing_group: The ID of the billing group this project is assigned to. To set up proper dependencies please refer to this variable as a reference.
|
|
35
35
|
:param pulumi.Input[str] copy_from_project: The name of the project to copy billing information, technical contacts, and some other project attributes from. This is most useful to set up the same billing method when you use bank transfers to pay invoices for other projects. You can only do this when creating a project. You can't set the billing over the API for an existing. To set up proper dependencies please refer to this variable as a reference.
|
|
36
36
|
:param pulumi.Input[str] default_cloud: Default cloud provider and region where services are hosted. This can be changed after the project is created and will not affect existing services.
|
|
37
|
-
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
37
|
+
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
38
38
|
:param pulumi.Input[Sequence[pulumi.Input['ProjectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
39
39
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: The email addresses for [project contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
|
|
40
40
|
:param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
|
|
@@ -82,11 +82,13 @@ 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.""")
|
|
86
85
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
|
87
86
|
"""
|
|
88
87
|
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.
|
|
89
88
|
"""
|
|
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
|
+
|
|
90
92
|
return pulumi.get(self, "account_id")
|
|
91
93
|
|
|
92
94
|
@account_id.setter
|
|
@@ -95,11 +97,13 @@ class ProjectArgs:
|
|
|
95
97
|
|
|
96
98
|
@property
|
|
97
99
|
@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.""")
|
|
99
100
|
def add_account_owners_admin_access(self) -> Optional[pulumi.Input[bool]]:
|
|
100
101
|
"""
|
|
101
102
|
If parent_id is set, grant account owner team admin access to the new project. The default value is `true`.
|
|
102
103
|
"""
|
|
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
|
+
|
|
103
107
|
return pulumi.get(self, "add_account_owners_admin_access")
|
|
104
108
|
|
|
105
109
|
@add_account_owners_admin_access.setter
|
|
@@ -146,7 +150,7 @@ class ProjectArgs:
|
|
|
146
150
|
@pulumi.getter(name="parentId")
|
|
147
151
|
def parent_id(self) -> Optional[pulumi.Input[str]]:
|
|
148
152
|
"""
|
|
149
|
-
Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
153
|
+
Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
150
154
|
"""
|
|
151
155
|
return pulumi.get(self, "parent_id")
|
|
152
156
|
|
|
@@ -180,11 +184,13 @@ class ProjectArgs:
|
|
|
180
184
|
|
|
181
185
|
@property
|
|
182
186
|
@pulumi.getter(name="useSourceProjectBillingGroup")
|
|
183
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
184
187
|
def use_source_project_billing_group(self) -> Optional[pulumi.Input[bool]]:
|
|
185
188
|
"""
|
|
186
189
|
Use the same billing group that is used in source project.
|
|
187
190
|
"""
|
|
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
|
+
|
|
188
194
|
return pulumi.get(self, "use_source_project_billing_group")
|
|
189
195
|
|
|
190
196
|
@use_source_project_billing_group.setter
|
|
@@ -219,7 +225,7 @@ class _ProjectState:
|
|
|
219
225
|
:param pulumi.Input[str] copy_from_project: The name of the project to copy billing information, technical contacts, and some other project attributes from. This is most useful to set up the same billing method when you use bank transfers to pay invoices for other projects. You can only do this when creating a project. You can't set the billing over the API for an existing. To set up proper dependencies please refer to this variable as a reference.
|
|
220
226
|
:param pulumi.Input[str] default_cloud: Default cloud provider and region where services are hosted. This can be changed after the project is created and will not affect existing services.
|
|
221
227
|
:param pulumi.Input[str] estimated_balance: The monthly running estimate for this project for the current billing period.
|
|
222
|
-
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
228
|
+
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
223
229
|
:param pulumi.Input[str] payment_method: The payment type used for this project. For example,`card`.
|
|
224
230
|
:param pulumi.Input[str] project: The name of the project. Names must be globally unique among all Aiven customers and cannot be changed later without destroying and re-creating the project, including all sub-resources.
|
|
225
231
|
:param pulumi.Input[Sequence[pulumi.Input['ProjectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
@@ -266,11 +272,13 @@ class _ProjectState:
|
|
|
266
272
|
|
|
267
273
|
@property
|
|
268
274
|
@pulumi.getter(name="accountId")
|
|
269
|
-
@_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
|
|
270
275
|
def account_id(self) -> Optional[pulumi.Input[str]]:
|
|
271
276
|
"""
|
|
272
277
|
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.
|
|
273
278
|
"""
|
|
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
|
+
|
|
274
282
|
return pulumi.get(self, "account_id")
|
|
275
283
|
|
|
276
284
|
@account_id.setter
|
|
@@ -279,11 +287,13 @@ class _ProjectState:
|
|
|
279
287
|
|
|
280
288
|
@property
|
|
281
289
|
@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.""")
|
|
283
290
|
def add_account_owners_admin_access(self) -> Optional[pulumi.Input[bool]]:
|
|
284
291
|
"""
|
|
285
292
|
If parent_id is set, grant account owner team admin access to the new project. The default value is `true`.
|
|
286
293
|
"""
|
|
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
|
+
|
|
287
297
|
return pulumi.get(self, "add_account_owners_admin_access")
|
|
288
298
|
|
|
289
299
|
@add_account_owners_admin_access.setter
|
|
@@ -366,7 +376,7 @@ class _ProjectState:
|
|
|
366
376
|
@pulumi.getter(name="parentId")
|
|
367
377
|
def parent_id(self) -> Optional[pulumi.Input[str]]:
|
|
368
378
|
"""
|
|
369
|
-
Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
379
|
+
Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
370
380
|
"""
|
|
371
381
|
return pulumi.get(self, "parent_id")
|
|
372
382
|
|
|
@@ -424,11 +434,13 @@ class _ProjectState:
|
|
|
424
434
|
|
|
425
435
|
@property
|
|
426
436
|
@pulumi.getter(name="useSourceProjectBillingGroup")
|
|
427
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
428
437
|
def use_source_project_billing_group(self) -> Optional[pulumi.Input[bool]]:
|
|
429
438
|
"""
|
|
430
439
|
Use the same billing group that is used in source project.
|
|
431
440
|
"""
|
|
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
|
+
|
|
432
444
|
return pulumi.get(self, "use_source_project_billing_group")
|
|
433
445
|
|
|
434
446
|
@use_source_project_billing_group.setter
|
|
@@ -453,7 +465,7 @@ class Project(pulumi.CustomResource):
|
|
|
453
465
|
use_source_project_billing_group: Optional[pulumi.Input[bool]] = None,
|
|
454
466
|
__props__=None):
|
|
455
467
|
"""
|
|
456
|
-
Creates and manages an [Aiven project](https://aiven.io/docs/platform/concepts/
|
|
468
|
+
Creates and manages an [Aiven project](https://aiven.io/docs/platform/concepts/projects_accounts_access#projects).
|
|
457
469
|
|
|
458
470
|
## Example Usage
|
|
459
471
|
|
|
@@ -479,7 +491,7 @@ class Project(pulumi.CustomResource):
|
|
|
479
491
|
:param pulumi.Input[str] billing_group: The ID of the billing group this project is assigned to. To set up proper dependencies please refer to this variable as a reference.
|
|
480
492
|
:param pulumi.Input[str] copy_from_project: The name of the project to copy billing information, technical contacts, and some other project attributes from. This is most useful to set up the same billing method when you use bank transfers to pay invoices for other projects. You can only do this when creating a project. You can't set the billing over the API for an existing. To set up proper dependencies please refer to this variable as a reference.
|
|
481
493
|
:param pulumi.Input[str] default_cloud: Default cloud provider and region where services are hosted. This can be changed after the project is created and will not affect existing services.
|
|
482
|
-
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
494
|
+
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
483
495
|
:param pulumi.Input[str] project: The name of the project. Names must be globally unique among all Aiven customers and cannot be changed later without destroying and re-creating the project, including all sub-resources.
|
|
484
496
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
485
497
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: The email addresses for [project contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
|
|
@@ -492,7 +504,7 @@ class Project(pulumi.CustomResource):
|
|
|
492
504
|
args: ProjectArgs,
|
|
493
505
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
494
506
|
"""
|
|
495
|
-
Creates and manages an [Aiven project](https://aiven.io/docs/platform/concepts/
|
|
507
|
+
Creates and manages an [Aiven project](https://aiven.io/docs/platform/concepts/projects_accounts_access#projects).
|
|
496
508
|
|
|
497
509
|
## Example Usage
|
|
498
510
|
|
|
@@ -602,7 +614,7 @@ class Project(pulumi.CustomResource):
|
|
|
602
614
|
:param pulumi.Input[str] copy_from_project: The name of the project to copy billing information, technical contacts, and some other project attributes from. This is most useful to set up the same billing method when you use bank transfers to pay invoices for other projects. You can only do this when creating a project. You can't set the billing over the API for an existing. To set up proper dependencies please refer to this variable as a reference.
|
|
603
615
|
:param pulumi.Input[str] default_cloud: Default cloud provider and region where services are hosted. This can be changed after the project is created and will not affect existing services.
|
|
604
616
|
:param pulumi.Input[str] estimated_balance: The monthly running estimate for this project for the current billing period.
|
|
605
|
-
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
617
|
+
:param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
606
618
|
:param pulumi.Input[str] payment_method: The payment type used for this project. For example,`card`.
|
|
607
619
|
:param pulumi.Input[str] project: The name of the project. Names must be globally unique among all Aiven customers and cannot be changed later without destroying and re-creating the project, including all sub-resources.
|
|
608
620
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize projects.
|
|
@@ -631,20 +643,24 @@ class Project(pulumi.CustomResource):
|
|
|
631
643
|
|
|
632
644
|
@property
|
|
633
645
|
@pulumi.getter(name="accountId")
|
|
634
|
-
@_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
|
|
635
646
|
def account_id(self) -> pulumi.Output[Optional[str]]:
|
|
636
647
|
"""
|
|
637
648
|
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.
|
|
638
649
|
"""
|
|
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
|
+
|
|
639
653
|
return pulumi.get(self, "account_id")
|
|
640
654
|
|
|
641
655
|
@property
|
|
642
656
|
@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.""")
|
|
644
657
|
def add_account_owners_admin_access(self) -> pulumi.Output[Optional[bool]]:
|
|
645
658
|
"""
|
|
646
659
|
If parent_id is set, grant account owner team admin access to the new project. The default value is `true`.
|
|
647
660
|
"""
|
|
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
|
+
|
|
648
664
|
return pulumi.get(self, "add_account_owners_admin_access")
|
|
649
665
|
|
|
650
666
|
@property
|
|
@@ -699,7 +715,7 @@ class Project(pulumi.CustomResource):
|
|
|
699
715
|
@pulumi.getter(name="parentId")
|
|
700
716
|
def parent_id(self) -> pulumi.Output[Optional[str]]:
|
|
701
717
|
"""
|
|
702
|
-
Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/
|
|
718
|
+
Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/projects_accounts_access) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
703
719
|
"""
|
|
704
720
|
return pulumi.get(self, "parent_id")
|
|
705
721
|
|
|
@@ -737,10 +753,12 @@ class Project(pulumi.CustomResource):
|
|
|
737
753
|
|
|
738
754
|
@property
|
|
739
755
|
@pulumi.getter(name="useSourceProjectBillingGroup")
|
|
740
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
741
756
|
def use_source_project_billing_group(self) -> pulumi.Output[Optional[bool]]:
|
|
742
757
|
"""
|
|
743
758
|
Use the same billing group that is used in source project.
|
|
744
759
|
"""
|
|
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
|
+
|
|
745
763
|
return pulumi.get(self, "use_source_project_billing_group")
|
|
746
764
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -146,11 +146,13 @@ 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.""")
|
|
150
149
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
151
150
|
"""
|
|
152
151
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
153
152
|
"""
|
|
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
|
+
|
|
154
156
|
return pulumi.get(self, "disk_space")
|
|
155
157
|
|
|
156
158
|
@disk_space.setter
|
|
@@ -438,11 +440,13 @@ class _RedisState:
|
|
|
438
440
|
|
|
439
441
|
@property
|
|
440
442
|
@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.""")
|
|
442
443
|
def disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
443
444
|
"""
|
|
444
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.
|
|
445
446
|
"""
|
|
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
|
+
|
|
446
450
|
return pulumi.get(self, "disk_space")
|
|
447
451
|
|
|
448
452
|
@disk_space.setter
|
|
@@ -1055,11 +1059,13 @@ class Redis(pulumi.CustomResource):
|
|
|
1055
1059
|
|
|
1056
1060
|
@property
|
|
1057
1061
|
@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.""")
|
|
1059
1062
|
def disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1060
1063
|
"""
|
|
1061
1064
|
Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1062
1065
|
"""
|
|
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
|
+
|
|
1063
1069
|
return pulumi.get(self, "disk_space")
|
|
1064
1070
|
|
|
1065
1071
|
@property
|
|
@@ -87,11 +87,13 @@ 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.""")
|
|
91
90
|
def peer_region(self) -> Optional[pulumi.Input[str]]:
|
|
92
91
|
"""
|
|
93
92
|
AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
94
93
|
"""
|
|
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
|
+
|
|
95
97
|
return pulumi.get(self, "peer_region")
|
|
96
98
|
|
|
97
99
|
@peer_region.setter
|
|
@@ -155,11 +157,13 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
155
157
|
|
|
156
158
|
@property
|
|
157
159
|
@pulumi.getter(name="peerRegion")
|
|
158
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
159
160
|
def peer_region(self) -> Optional[pulumi.Input[str]]:
|
|
160
161
|
"""
|
|
161
162
|
AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
162
163
|
"""
|
|
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
|
+
|
|
163
167
|
return pulumi.get(self, "peer_region")
|
|
164
168
|
|
|
165
169
|
@peer_region.setter
|
|
@@ -413,11 +417,13 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
413
417
|
|
|
414
418
|
@property
|
|
415
419
|
@pulumi.getter(name="peerRegion")
|
|
416
|
-
@_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
|
|
417
420
|
def peer_region(self) -> pulumi.Output[Optional[str]]:
|
|
418
421
|
"""
|
|
419
422
|
AWS region of the peered VPC (if not in the same region as Aiven VPC)
|
|
420
423
|
"""
|
|
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
|
+
|
|
421
427
|
return pulumi.get(self, "peer_region")
|
|
422
428
|
|
|
423
429
|
@property
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
pulumi_aiven/__init__.py,sha256=0h2zG50QpZLUQoqA306HEacGVpiLolClybi7bGHtHSo,17963
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256=
|
|
3
|
-
pulumi_aiven/_utilities.py,sha256=
|
|
4
|
-
pulumi_aiven/account.py,sha256=
|
|
5
|
-
pulumi_aiven/account_authentication.py,sha256=
|
|
6
|
-
pulumi_aiven/account_team.py,sha256=
|
|
7
|
-
pulumi_aiven/account_team_member.py,sha256=
|
|
8
|
-
pulumi_aiven/account_team_project.py,sha256=
|
|
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
|
|
5
|
+
pulumi_aiven/account_authentication.py,sha256=vltk7XN7jXSO12BQ834AKPy1p1RGKqsX8jrMKOU_7K0,36871
|
|
6
|
+
pulumi_aiven/account_team.py,sha256=GMCtLN3Fs6dk2mjDcHIuntSRXk9CSuUoozbU37XrCLk,11277
|
|
7
|
+
pulumi_aiven/account_team_member.py,sha256=tJX67UlZdL01c0Yt-doFkPWRPz4QaisV5W5jpZPzsEU,17415
|
|
8
|
+
pulumi_aiven/account_team_project.py,sha256=N8S9rHjWOFoxqk-9SuwtAdp3Z5RpJpKFSPf5zWpr4Fg,13913
|
|
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=
|
|
12
|
+
pulumi_aiven/azure_privatelink_connection_approval.py,sha256=iTJ1B6WRP1LH8LFe_5-7w0yYPsQZG1rKAXyAWs8Pd6Y,18926
|
|
13
13
|
pulumi_aiven/azure_vpc_peering_connection.py,sha256=ali1DX5gS9Wy3JJKelMPCsH-Ikk4LmBOihThXkVD0Io,25124
|
|
14
|
-
pulumi_aiven/billing_group.py,sha256=
|
|
15
|
-
pulumi_aiven/cassandra.py,sha256=
|
|
14
|
+
pulumi_aiven/billing_group.py,sha256=32WUU61rJV4hMMho2xdZ6FT4mQBarzhUDHCcRDhvGpU,37753
|
|
15
|
+
pulumi_aiven/cassandra.py,sha256=Aw76tZF_shuvdssqocp-8SNRskrJ5mOZSE05oSIhY7E,80242
|
|
16
16
|
pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
|
|
17
|
-
pulumi_aiven/clickhouse.py,sha256=
|
|
17
|
+
pulumi_aiven/clickhouse.py,sha256=x-0kDYWXrJRuBqRubqeTHDCAQPcCwgN2w8JQX1_zblM,79952
|
|
18
18
|
pulumi_aiven/clickhouse_database.py,sha256=Z16_Ddf9zKLCV16iO4S_9Wk5TEawdYJyO9nQq5IznxQ,14474
|
|
19
19
|
pulumi_aiven/clickhouse_grant.py,sha256=G52gABm-fNtzio74wy3ASxG9p0qCRFhBkyVA03uNVpw,25857
|
|
20
20
|
pulumi_aiven/clickhouse_role.py,sha256=Lk9H_bkZcsvaktXIno8QEqNMQdqeqYVRqoE2a30xzW8,13175
|
|
21
21
|
pulumi_aiven/clickhouse_user.py,sha256=v4XaOVURXHPJ8FWww6IRKaXSTMGlmKznplNWK78ksb0,15886
|
|
22
22
|
pulumi_aiven/connection_pool.py,sha256=3Vd_cbCNIZSSxP2ztuk_zm4CagEAYudGVKYmqCM6W1o,25462
|
|
23
|
-
pulumi_aiven/dragonfly.py,sha256
|
|
24
|
-
pulumi_aiven/flink.py,sha256=
|
|
23
|
+
pulumi_aiven/dragonfly.py,sha256=-u-O_rEFQPuBtCA5xKKEzRONU1E0dngjFEB88pwVHZg,79940
|
|
24
|
+
pulumi_aiven/flink.py,sha256=9MGzEozkyFRNqdngpwko47w3yM21OuvqEJh3LlLA7ig,79062
|
|
25
25
|
pulumi_aiven/flink_application.py,sha256=bIAE6Rt_JwOLchnG1T3PKm4mzaGpT_VTHLSqwcgrXNw,17200
|
|
26
26
|
pulumi_aiven/flink_application_deployment.py,sha256=I9eRnBXG5-rqIbWQHWEnQ96ovaQ31tU-H2yW1d3Vi4Q,23037
|
|
27
|
-
pulumi_aiven/flink_application_version.py,sha256=
|
|
27
|
+
pulumi_aiven/flink_application_version.py,sha256=mMv2vD54mDmybOYbkSiNozdSPZ1zJvPzkhIAgHMCOxI,34046
|
|
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
|
|
@@ -68,7 +68,7 @@ pulumi_aiven/get_kafka_user.py,sha256=clXblAYcGcQO-HhXEE7zacXmo2aK_LLt2E582LKwYY
|
|
|
68
68
|
pulumi_aiven/get_m3_aggregator.py,sha256=TwSZFJeScxrjeRp0okfJA7UwlI08Er0dTioka8bSKAE,22765
|
|
69
69
|
pulumi_aiven/get_m3_db.py,sha256=GD-w-6IaVGYvOtIeiT4f1RhKgm7MpAtVtI0DJ3vcu3E,22272
|
|
70
70
|
pulumi_aiven/get_m3db_user.py,sha256=AX7fioJ-ErVg_qk-kDWlQurD8q5MffNLLhhttmomXac,6865
|
|
71
|
-
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=
|
|
71
|
+
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=TbFL0Imtn17-Vxk5zBaiTV6hZDEzw0hy1VZTJlrf6pU,14365
|
|
72
72
|
pulumi_aiven/get_my_sql.py,sha256=RkFkcZDfrWZgiUVzeFfoZwnOZ1EJ3Sc18aHTpxyxqrc,22356
|
|
73
73
|
pulumi_aiven/get_mysql_database.py,sha256=1rryMxbdYRBK3ItPNYKe91eFxUZKxxvHl3LJ7m5_nrw,6647
|
|
74
74
|
pulumi_aiven/get_mysql_user.py,sha256=hSx5QNRf037dgIMg0JceSKQLLJ_M-94KsWRm4mAzUUo,8533
|
|
@@ -85,7 +85,7 @@ pulumi_aiven/get_organizational_unit.py,sha256=wuiMG9iefxZluA84PqT9iwArghn7JcH1P
|
|
|
85
85
|
pulumi_aiven/get_pg.py,sha256=h28v-WCAxiq_bj7qpit9FWQQp_u_aGw2RitFO7x0nBE,22166
|
|
86
86
|
pulumi_aiven/get_pg_database.py,sha256=Qf5Z0zXtox8_wSLm5xcEyl6r7MyXxf_8L_pMj_QEPDs,7774
|
|
87
87
|
pulumi_aiven/get_pg_user.py,sha256=MwMMXmC-f6O5bBWJtVqW0ILRchZwL3icFy2ougshnyY,8470
|
|
88
|
-
pulumi_aiven/get_project.py,sha256=
|
|
88
|
+
pulumi_aiven/get_project.py,sha256=2xcVnL2Meq9YnIU-9gnaCjM82jrsKVP-pua_oVUpICI,12311
|
|
89
89
|
pulumi_aiven/get_project_user.py,sha256=i3ip_La8okn6l-2mXkAeWS0FfH9xLsls5QCRxwy4nUM,5587
|
|
90
90
|
pulumi_aiven/get_project_vpc.py,sha256=M4wDUcR56X2GvGI4kfaxiYZOWX-5RC8FmotDYsKRmeg,6327
|
|
91
91
|
pulumi_aiven/get_redis.py,sha256=2JFVMxjLqYTjYAVRWydqTR03JgAUYbJUY3NS5gI51LE,22323
|
|
@@ -94,60 +94,60 @@ 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=
|
|
98
|
-
pulumi_aiven/influx_db.py,sha256=
|
|
97
|
+
pulumi_aiven/grafana.py,sha256=cHlTIJwFR7EUWmjoYfd7ICdnpNtlig44p1FQDyCEtAQ,79700
|
|
98
|
+
pulumi_aiven/influx_db.py,sha256=959eZMErgg1b6UGCnUDGlAdICzqbBWjI3Jxkx2IhjHg,80615
|
|
99
99
|
pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
|
|
100
100
|
pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
|
|
101
|
-
pulumi_aiven/kafka.py,sha256=
|
|
101
|
+
pulumi_aiven/kafka.py,sha256=QG1Y1j-a4OkkDZsP2yCz6Xblg3gbYfxnZdRg3rAPQHQ,85749
|
|
102
102
|
pulumi_aiven/kafka_acl.py,sha256=GLGuq8vGGI55_rjZ6Op6bZcAPTc1Iejgzr0DjS_S2sw,18524
|
|
103
|
-
pulumi_aiven/kafka_connect.py,sha256=
|
|
103
|
+
pulumi_aiven/kafka_connect.py,sha256=Ayy9UJWzu9X9Mfse84dIHG1Kj21Y7hajBJdOqUSXzoI,78773
|
|
104
104
|
pulumi_aiven/kafka_connector.py,sha256=0nhFbsNowonePH47YTneuh5q-U-cPY927G7w5u7E3rk,24050
|
|
105
|
-
pulumi_aiven/kafka_mirror_maker.py,sha256=
|
|
105
|
+
pulumi_aiven/kafka_mirror_maker.py,sha256=nQTPFV-zIhwyokmQbzuaJTnUyC0y6E_kMC66Dtha-wg,79229
|
|
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=
|
|
112
|
-
pulumi_aiven/m3_db.py,sha256=
|
|
111
|
+
pulumi_aiven/m3_aggregator.py,sha256=8Nt8WGtRuNHgi00gnh0W9rMqm-_7XvGNBuc-N2qryGg,80625
|
|
112
|
+
pulumi_aiven/m3_db.py,sha256=l1tvPA3pioMkrW7NVlExrwbIUZc_WhvCw8uu35AOpdk,79140
|
|
113
113
|
pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
|
|
114
|
-
pulumi_aiven/mirror_maker_replication_flow.py,sha256=
|
|
115
|
-
pulumi_aiven/my_sql.py,sha256=
|
|
114
|
+
pulumi_aiven/mirror_maker_replication_flow.py,sha256=lzxRVYPhHs8ic05vKce1IVd5DEsY92r0Qg1oOga2p2E,42742
|
|
115
|
+
pulumi_aiven/my_sql.py,sha256=Yc-oZLV1IbFX8YG90POPJgZf0bUVjDZw-pRCySlGIL0,79865
|
|
116
116
|
pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
|
|
117
117
|
pulumi_aiven/mysql_user.py,sha256=oiWZ0B1KJYCSl21uB61I-hB2gdmhzGiXNXx7xqLjs8M,21065
|
|
118
|
-
pulumi_aiven/open_search.py,sha256=
|
|
118
|
+
pulumi_aiven/open_search.py,sha256=TwvxY_rfqkOsKd469quNm9QCKWX6qg1fl1lIq1GyRXo,81336
|
|
119
119
|
pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
|
|
120
120
|
pulumi_aiven/open_search_acl_rule.py,sha256=_8D_sLAiM29SNMMjl1fLUzae8tgNQhLPmWaJAX_LwMs,21934
|
|
121
121
|
pulumi_aiven/opensearch_security_plugin_config.py,sha256=HpnFd2__mtiAwwOh9PFboST9zs8tRWruKvl_PFEaQKs,18636
|
|
122
122
|
pulumi_aiven/opensearch_user.py,sha256=N7mlHAEAKFXNrwzCJ-j-VBHD5pCHHk-UHoove-Y5Rjc,16488
|
|
123
|
-
pulumi_aiven/organization.py,sha256=
|
|
123
|
+
pulumi_aiven/organization.py,sha256=440RPNMMC4u9SrVovSjpXzOd9bk6HgBT4V9t24v2V5A,10891
|
|
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
|
-
pulumi_aiven/organization_group_project.py,sha256=
|
|
127
|
-
pulumi_aiven/organization_user.py,sha256=
|
|
128
|
-
pulumi_aiven/organization_user_group.py,sha256=
|
|
129
|
-
pulumi_aiven/organization_user_group_member.py,sha256=
|
|
130
|
-
pulumi_aiven/organizational_unit.py,sha256=
|
|
131
|
-
pulumi_aiven/outputs.py,sha256=
|
|
132
|
-
pulumi_aiven/pg.py,sha256=
|
|
126
|
+
pulumi_aiven/organization_group_project.py,sha256=3eh9eXSwQ1q-eJi3HOoAqG_c-Svuo1jfC7uGBFLwiOs,13476
|
|
127
|
+
pulumi_aiven/organization_user.py,sha256=0XAWD_j5GtN-YZz2vkCNOZLftYjQFSACR9Bxk4Kvbcg,16135
|
|
128
|
+
pulumi_aiven/organization_user_group.py,sha256=XTBcIrCH9uxRZewjGcMeWyEi91Zel3BrkIC0GcaNdfI,14704
|
|
129
|
+
pulumi_aiven/organization_user_group_member.py,sha256=hQNwloGq0KpEuSb0RCirDyA0bygxUSCM80_o-yOzb3o,14096
|
|
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
|
|
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=
|
|
135
|
+
pulumi_aiven/project.py,sha256=ArAEa2FDbKM-PkMxzPJascIcYq7BzSs5L0HPjAw7CAw,47105
|
|
136
136
|
pulumi_aiven/project_user.py,sha256=CAxxa2QCsyk1Apm-Mf7BZv5YeFbKbx8LxUEjtG5NUJA,13182
|
|
137
137
|
pulumi_aiven/project_vpc.py,sha256=_87HVOeC9IvAmG-fnln5tXW8Z3BdLCA8kER800tp5AE,13908
|
|
138
138
|
pulumi_aiven/provider.py,sha256=8Nv5JAKLMaDCG8iqDCiMTBS5DYK8bh5Fvv0Pl6_5LK0,4881
|
|
139
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
139
|
+
pulumi_aiven/pulumi-plugin.json,sha256=bXexgVhu2lGao9VB7x8mrBZ4VT53UFEzUebOVLl-ycU,82
|
|
140
140
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
pulumi_aiven/redis.py,sha256=
|
|
141
|
+
pulumi_aiven/redis.py,sha256=PHSRzKj2gEd5S5DW19sFIa5AyqxadfdHC98rh-Ud7T0,79358
|
|
142
142
|
pulumi_aiven/redis_user.py,sha256=jGHT0lw0egvRigZIBlokBIE6-_c8sbjhFM2bJLoaGHg,29184
|
|
143
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=
|
|
146
|
+
pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=CCP3cTy2oJVGieXjKEXi44-MFF8m7ztqyQpsSu19fLw,22959
|
|
147
147
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
148
148
|
pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
|
|
149
149
|
pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
|
|
150
|
-
pulumi_aiven-6.18.
|
|
151
|
-
pulumi_aiven-6.18.
|
|
152
|
-
pulumi_aiven-6.18.
|
|
153
|
-
pulumi_aiven-6.18.
|
|
150
|
+
pulumi_aiven-6.18.0a1717478109.dist-info/METADATA,sha256=JtSuyftC4rbuzfvHcGgCSXibdruN5tdhC8XLAlhnNkU,2532
|
|
151
|
+
pulumi_aiven-6.18.0a1717478109.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
152
|
+
pulumi_aiven-6.18.0a1717478109.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
153
|
+
pulumi_aiven-6.18.0a1717478109.dist-info/RECORD,,
|
|
File without changes
|