pulumi-aiven 6.15.0a1715335403__py3-none-any.whl → 6.15.0a1715356672__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__, *,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_aiven
3
- Version: 6.15.0a1715335403
3
+ Version: 6.15.0a1715356672
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
@@ -17,7 +17,7 @@ pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MC
17
17
  pulumi_aiven/clickhouse.py,sha256=2N403DQENgGri5RIVLglZAvhm0nCNVgTu6pguB6BaPg,77668
18
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
@@ -120,12 +121,14 @@ 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
133
  pulumi_aiven/pg_database.py,sha256=qsYKZAioLzv2bzYAFVxLumkEV-2e031ysC77h9HkqLA,20021
131
134
  pulumi_aiven/pg_user.py,sha256=O25YPH3N19lRc_QoLgw9NK9i8W2jys0dejq37f3EaXo,20775
@@ -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.15.0a1715335403.dist-info/METADATA,sha256=R6G8SostlraqQAbGkG6dBQE_v3nDK4CHHmPLbJ0y4xk,2532
148
- pulumi_aiven-6.15.0a1715335403.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
149
- pulumi_aiven-6.15.0a1715335403.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
150
- pulumi_aiven-6.15.0a1715335403.dist-info/RECORD,,
150
+ pulumi_aiven-6.15.0a1715356672.dist-info/METADATA,sha256=uI6W8SQiw7HO3m0mVgVqJYMvW1Vmqaz0DhrR5-TbKPU,2532
151
+ pulumi_aiven-6.15.0a1715356672.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
152
+ pulumi_aiven-6.15.0a1715356672.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
153
+ pulumi_aiven-6.15.0a1715356672.dist-info/RECORD,,