pulumi-aiven 6.17.2__py3-none-any.whl → 6.18.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.

Files changed (40) hide show
  1. pulumi_aiven/_inputs.py +1650 -1106
  2. pulumi_aiven/_utilities.py +35 -0
  3. pulumi_aiven/account.py +9 -27
  4. pulumi_aiven/account_authentication.py +10 -4
  5. pulumi_aiven/account_team.py +16 -8
  6. pulumi_aiven/account_team_member.py +16 -8
  7. pulumi_aiven/account_team_project.py +16 -8
  8. pulumi_aiven/azure_privatelink_connection_approval.py +2 -2
  9. pulumi_aiven/billing_group.py +3 -9
  10. pulumi_aiven/cassandra.py +3 -9
  11. pulumi_aiven/clickhouse.py +3 -9
  12. pulumi_aiven/dragonfly.py +3 -9
  13. pulumi_aiven/flink.py +3 -9
  14. pulumi_aiven/flink_application_version.py +6 -18
  15. pulumi_aiven/get_project.py +1 -1
  16. pulumi_aiven/grafana.py +3 -9
  17. pulumi_aiven/influx_db.py +3 -9
  18. pulumi_aiven/kafka.py +6 -18
  19. pulumi_aiven/kafka_connect.py +3 -9
  20. pulumi_aiven/kafka_mirror_maker.py +3 -9
  21. pulumi_aiven/m3_aggregator.py +3 -9
  22. pulumi_aiven/m3_db.py +3 -9
  23. pulumi_aiven/my_sql.py +3 -9
  24. pulumi_aiven/open_search.py +3 -9
  25. pulumi_aiven/organization.py +2 -2
  26. pulumi_aiven/organization_group_project.py +2 -2
  27. pulumi_aiven/organization_user.py +4 -12
  28. pulumi_aiven/organization_user_group.py +2 -2
  29. pulumi_aiven/organization_user_group_member.py +2 -2
  30. pulumi_aiven/organizational_unit.py +2 -2
  31. pulumi_aiven/outputs.py +3107 -2245
  32. pulumi_aiven/pg.py +3 -9
  33. pulumi_aiven/project.py +18 -36
  34. pulumi_aiven/pulumi-plugin.json +1 -1
  35. pulumi_aiven/redis.py +3 -9
  36. pulumi_aiven/transit_gateway_vpc_attachment.py +3 -9
  37. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/METADATA +1 -1
  38. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/RECORD +40 -40
  39. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/WHEEL +1 -1
  40. {pulumi_aiven-6.17.2.dist-info → pulumi_aiven-6.18.0.dist-info}/top_level.txt +0 -0
@@ -88,13 +88,11 @@ class _OrganizationUserState:
88
88
 
89
89
  @property
90
90
  @pulumi.getter
91
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
91
92
  def accepted(self) -> Optional[pulumi.Input[bool]]:
92
93
  """
93
94
  This is a boolean flag that determines whether an invitation was accepted or not by the user. `false` value means that the invitation was sent to the user but not yet accepted. `true` means that the user accepted the invitation and now a member of an organization.
94
95
  """
95
- warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
96
- pulumi.log.warn("""accepted is deprecated: This field is deprecated and will be removed in the next major release. """)
97
-
98
96
  return pulumi.get(self, "accepted")
99
97
 
100
98
  @accepted.setter
@@ -115,13 +113,11 @@ class _OrganizationUserState:
115
113
 
116
114
  @property
117
115
  @pulumi.getter(name="invitedBy")
116
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
118
117
  def invited_by(self) -> Optional[pulumi.Input[str]]:
119
118
  """
120
119
  The email address of the user who sent an invitation to the user.
121
120
  """
122
- warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
123
- pulumi.log.warn("""invited_by is deprecated: This field is deprecated and will be removed in the next major release. """)
124
-
125
121
  return pulumi.get(self, "invited_by")
126
122
 
127
123
  @invited_by.setter
@@ -268,13 +264,11 @@ class OrganizationUser(pulumi.CustomResource):
268
264
 
269
265
  @property
270
266
  @pulumi.getter
267
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
271
268
  def accepted(self) -> pulumi.Output[bool]:
272
269
  """
273
270
  This is a boolean flag that determines whether an invitation was accepted or not by the user. `false` value means that the invitation was sent to the user but not yet accepted. `true` means that the user accepted the invitation and now a member of an organization.
274
271
  """
275
- warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
276
- pulumi.log.warn("""accepted is deprecated: This field is deprecated and will be removed in the next major release. """)
277
-
278
272
  return pulumi.get(self, "accepted")
279
273
 
280
274
  @property
@@ -287,13 +281,11 @@ class OrganizationUser(pulumi.CustomResource):
287
281
 
288
282
  @property
289
283
  @pulumi.getter(name="invitedBy")
284
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release. """)
290
285
  def invited_by(self) -> pulumi.Output[str]:
291
286
  """
292
287
  The email address of the user who sent an invitation to the user.
293
288
  """
294
- warnings.warn("""This field is deprecated and will be removed in the next major release. """, DeprecationWarning)
295
- pulumi.log.warn("""invited_by is deprecated: This field is deprecated and will be removed in the next major release. """)
296
-
297
289
  return pulumi.get(self, "invited_by")
298
290
 
299
291
  @property
@@ -179,7 +179,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
179
179
  organization_id: Optional[pulumi.Input[str]] = None,
180
180
  __props__=None):
181
181
  """
182
- Creates and manages a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) in an organization.
182
+ Creates and manages a [user group](https://aiven.io/docs/platform/howto/list-groups) in an organization.
183
183
 
184
184
  ## Example Usage
185
185
 
@@ -212,7 +212,7 @@ class OrganizationUserGroup(pulumi.CustomResource):
212
212
  args: OrganizationUserGroupArgs,
213
213
  opts: Optional[pulumi.ResourceOptions] = None):
214
214
  """
215
- Creates and manages a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups) in an organization.
215
+ Creates and manages a [user group](https://aiven.io/docs/platform/howto/list-groups) in an organization.
216
216
 
217
217
  ## Example Usage
218
218
 
@@ -173,7 +173,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
173
173
  user_id: Optional[pulumi.Input[str]] = None,
174
174
  __props__=None):
175
175
  """
176
- Adds and manages users in a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups).
176
+ Adds and manages users in a [user group](https://aiven.io/docs/platform/howto/list-groups).
177
177
 
178
178
  ## Example Usage
179
179
 
@@ -210,7 +210,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
210
210
  args: OrganizationUserGroupMemberArgs,
211
211
  opts: Optional[pulumi.ResourceOptions] = None):
212
212
  """
213
- Adds and manages users in a [user group](https://aiven.io/docs/platform/concepts/projects_accounts_access#groups).
213
+ Adds and manages users in a [user group](https://aiven.io/docs/platform/howto/list-groups).
214
214
 
215
215
  ## Example Usage
216
216
 
@@ -147,7 +147,7 @@ class OrganizationalUnit(pulumi.CustomResource):
147
147
  parent_id: Optional[pulumi.Input[str]] = None,
148
148
  __props__=None):
149
149
  """
150
- Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/projects_accounts_access) in an Aiven organization.
150
+ Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/orgs-units-projects) in an Aiven organization.
151
151
 
152
152
  ## Example Usage
153
153
 
@@ -178,7 +178,7 @@ class OrganizationalUnit(pulumi.CustomResource):
178
178
  args: OrganizationalUnitArgs,
179
179
  opts: Optional[pulumi.ResourceOptions] = None):
180
180
  """
181
- Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/projects_accounts_access) in an Aiven organization.
181
+ Creates and manages an [organizational unit](https://aiven.io/docs/platform/concepts/orgs-units-projects) in an Aiven organization.
182
182
 
183
183
  ## Example Usage
184
184