pulumi-aiven 6.37.0a1744182902__py3-none-any.whl → 6.37.0a1744255932__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 (62) hide show
  1. pulumi_aiven/__init__.py +21 -0
  2. pulumi_aiven/_inputs.py +603 -15
  3. pulumi_aiven/alloydbomni.py +7 -15
  4. pulumi_aiven/cassandra.py +7 -15
  5. pulumi_aiven/clickhouse.py +7 -15
  6. pulumi_aiven/dragonfly.py +7 -15
  7. pulumi_aiven/flink.py +7 -15
  8. pulumi_aiven/get_alloydbomni.py +1 -4
  9. pulumi_aiven/get_cassanda.py +1 -4
  10. pulumi_aiven/get_cassandra.py +1 -4
  11. pulumi_aiven/get_clickhouse.py +1 -4
  12. pulumi_aiven/get_dragonfly.py +1 -4
  13. pulumi_aiven/get_flink.py +1 -4
  14. pulumi_aiven/get_grafana.py +1 -4
  15. pulumi_aiven/get_kafka.py +1 -4
  16. pulumi_aiven/get_kafka_connect.py +1 -4
  17. pulumi_aiven/get_kafka_mirror_maker.py +1 -4
  18. pulumi_aiven/get_m3_aggregator.py +1 -4
  19. pulumi_aiven/get_m3_db.py +1 -4
  20. pulumi_aiven/get_my_sql.py +1 -4
  21. pulumi_aiven/get_open_search.py +1 -4
  22. pulumi_aiven/get_organization.py +2 -2
  23. pulumi_aiven/get_organization_address.py +227 -0
  24. pulumi_aiven/get_organization_application_user.py +0 -20
  25. pulumi_aiven/get_organization_billing_group.py +241 -0
  26. pulumi_aiven/get_organization_billing_group_list.py +110 -0
  27. pulumi_aiven/get_organization_project.py +15 -1
  28. pulumi_aiven/get_organization_user_list.py +25 -13
  29. pulumi_aiven/get_pg.py +1 -4
  30. pulumi_aiven/get_redis.py +1 -4
  31. pulumi_aiven/get_service_component.py +15 -1
  32. pulumi_aiven/get_service_integration.py +2 -2
  33. pulumi_aiven/get_thanos.py +1 -4
  34. pulumi_aiven/get_valkey.py +1 -4
  35. pulumi_aiven/grafana.py +7 -15
  36. pulumi_aiven/influx_db.py +21 -15
  37. pulumi_aiven/kafka.py +7 -15
  38. pulumi_aiven/kafka_connect.py +7 -15
  39. pulumi_aiven/kafka_mirror_maker.py +7 -15
  40. pulumi_aiven/kafka_native_acl.py +1 -1
  41. pulumi_aiven/m3_aggregator.py +7 -15
  42. pulumi_aiven/m3_db.py +7 -15
  43. pulumi_aiven/my_sql.py +7 -15
  44. pulumi_aiven/open_search.py +7 -15
  45. pulumi_aiven/organization.py +2 -2
  46. pulumi_aiven/organization_address.py +557 -0
  47. pulumi_aiven/organization_application_user.py +4 -4
  48. pulumi_aiven/organization_billing_group.py +645 -0
  49. pulumi_aiven/organization_permission.py +2 -2
  50. pulumi_aiven/organization_project.py +47 -16
  51. pulumi_aiven/organization_user_group_member.py +0 -32
  52. pulumi_aiven/outputs.py +807 -42
  53. pulumi_aiven/pg.py +7 -15
  54. pulumi_aiven/pulumi-plugin.json +1 -1
  55. pulumi_aiven/redis.py +7 -15
  56. pulumi_aiven/service_integration.py +4 -4
  57. pulumi_aiven/thanos.py +7 -15
  58. pulumi_aiven/valkey.py +7 -15
  59. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/METADATA +1 -1
  60. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/RECORD +62 -57
  61. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/WHEEL +0 -0
  62. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,241 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from . import _utilities
17
+
18
+ __all__ = [
19
+ 'GetOrganizationBillingGroupResult',
20
+ 'AwaitableGetOrganizationBillingGroupResult',
21
+ 'get_organization_billing_group',
22
+ 'get_organization_billing_group_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetOrganizationBillingGroupResult:
27
+ """
28
+ A collection of values returned by getOrganizationBillingGroup.
29
+ """
30
+ def __init__(__self__, billing_address_id=None, billing_contact_emails=None, billing_currency=None, billing_emails=None, billing_group_id=None, billing_group_name=None, custom_invoice_text=None, id=None, organization_id=None, payment_method_id=None, shipping_address_id=None, vat_id=None):
31
+ if billing_address_id and not isinstance(billing_address_id, str):
32
+ raise TypeError("Expected argument 'billing_address_id' to be a str")
33
+ pulumi.set(__self__, "billing_address_id", billing_address_id)
34
+ if billing_contact_emails and not isinstance(billing_contact_emails, list):
35
+ raise TypeError("Expected argument 'billing_contact_emails' to be a list")
36
+ pulumi.set(__self__, "billing_contact_emails", billing_contact_emails)
37
+ if billing_currency and not isinstance(billing_currency, str):
38
+ raise TypeError("Expected argument 'billing_currency' to be a str")
39
+ pulumi.set(__self__, "billing_currency", billing_currency)
40
+ if billing_emails and not isinstance(billing_emails, list):
41
+ raise TypeError("Expected argument 'billing_emails' to be a list")
42
+ pulumi.set(__self__, "billing_emails", billing_emails)
43
+ if billing_group_id and not isinstance(billing_group_id, str):
44
+ raise TypeError("Expected argument 'billing_group_id' to be a str")
45
+ pulumi.set(__self__, "billing_group_id", billing_group_id)
46
+ if billing_group_name and not isinstance(billing_group_name, str):
47
+ raise TypeError("Expected argument 'billing_group_name' to be a str")
48
+ pulumi.set(__self__, "billing_group_name", billing_group_name)
49
+ if custom_invoice_text and not isinstance(custom_invoice_text, str):
50
+ raise TypeError("Expected argument 'custom_invoice_text' to be a str")
51
+ pulumi.set(__self__, "custom_invoice_text", custom_invoice_text)
52
+ if id and not isinstance(id, str):
53
+ raise TypeError("Expected argument 'id' to be a str")
54
+ pulumi.set(__self__, "id", id)
55
+ if organization_id and not isinstance(organization_id, str):
56
+ raise TypeError("Expected argument 'organization_id' to be a str")
57
+ pulumi.set(__self__, "organization_id", organization_id)
58
+ if payment_method_id and not isinstance(payment_method_id, str):
59
+ raise TypeError("Expected argument 'payment_method_id' to be a str")
60
+ pulumi.set(__self__, "payment_method_id", payment_method_id)
61
+ if shipping_address_id and not isinstance(shipping_address_id, str):
62
+ raise TypeError("Expected argument 'shipping_address_id' to be a str")
63
+ pulumi.set(__self__, "shipping_address_id", shipping_address_id)
64
+ if vat_id and not isinstance(vat_id, str):
65
+ raise TypeError("Expected argument 'vat_id' to be a str")
66
+ pulumi.set(__self__, "vat_id", vat_id)
67
+
68
+ @property
69
+ @pulumi.getter(name="billingAddressId")
70
+ def billing_address_id(self) -> builtins.str:
71
+ """
72
+ ID of the billing address.
73
+ """
74
+ return pulumi.get(self, "billing_address_id")
75
+
76
+ @property
77
+ @pulumi.getter(name="billingContactEmails")
78
+ def billing_contact_emails(self) -> Sequence[builtins.str]:
79
+ """
80
+ List of billing contact emails.
81
+ """
82
+ return pulumi.get(self, "billing_contact_emails")
83
+
84
+ @property
85
+ @pulumi.getter(name="billingCurrency")
86
+ def billing_currency(self) -> builtins.str:
87
+ """
88
+ Billing currency.
89
+ """
90
+ return pulumi.get(self, "billing_currency")
91
+
92
+ @property
93
+ @pulumi.getter(name="billingEmails")
94
+ def billing_emails(self) -> Sequence[builtins.str]:
95
+ """
96
+ List of billing emails.
97
+ """
98
+ return pulumi.get(self, "billing_emails")
99
+
100
+ @property
101
+ @pulumi.getter(name="billingGroupId")
102
+ def billing_group_id(self) -> builtins.str:
103
+ """
104
+ ID of the billing group.
105
+ """
106
+ return pulumi.get(self, "billing_group_id")
107
+
108
+ @property
109
+ @pulumi.getter(name="billingGroupName")
110
+ def billing_group_name(self) -> builtins.str:
111
+ """
112
+ Name of the billing group.
113
+ """
114
+ return pulumi.get(self, "billing_group_name")
115
+
116
+ @property
117
+ @pulumi.getter(name="customInvoiceText")
118
+ def custom_invoice_text(self) -> builtins.str:
119
+ """
120
+ Custom invoice text.
121
+ """
122
+ return pulumi.get(self, "custom_invoice_text")
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def id(self) -> builtins.str:
127
+ """
128
+ Resource ID, a composite of organization*id and billing*group_id.
129
+ """
130
+ return pulumi.get(self, "id")
131
+
132
+ @property
133
+ @pulumi.getter(name="organizationId")
134
+ def organization_id(self) -> builtins.str:
135
+ """
136
+ ID of the organization.
137
+ """
138
+ return pulumi.get(self, "organization_id")
139
+
140
+ @property
141
+ @pulumi.getter(name="paymentMethodId")
142
+ def payment_method_id(self) -> builtins.str:
143
+ """
144
+ ID of the payment method.
145
+ """
146
+ return pulumi.get(self, "payment_method_id")
147
+
148
+ @property
149
+ @pulumi.getter(name="shippingAddressId")
150
+ def shipping_address_id(self) -> builtins.str:
151
+ """
152
+ ID of the shipping address.
153
+ """
154
+ return pulumi.get(self, "shipping_address_id")
155
+
156
+ @property
157
+ @pulumi.getter(name="vatId")
158
+ def vat_id(self) -> builtins.str:
159
+ """
160
+ VAT ID.
161
+ """
162
+ return pulumi.get(self, "vat_id")
163
+
164
+
165
+ class AwaitableGetOrganizationBillingGroupResult(GetOrganizationBillingGroupResult):
166
+ # pylint: disable=using-constant-test
167
+ def __await__(self):
168
+ if False:
169
+ yield self
170
+ return GetOrganizationBillingGroupResult(
171
+ billing_address_id=self.billing_address_id,
172
+ billing_contact_emails=self.billing_contact_emails,
173
+ billing_currency=self.billing_currency,
174
+ billing_emails=self.billing_emails,
175
+ billing_group_id=self.billing_group_id,
176
+ billing_group_name=self.billing_group_name,
177
+ custom_invoice_text=self.custom_invoice_text,
178
+ id=self.id,
179
+ organization_id=self.organization_id,
180
+ payment_method_id=self.payment_method_id,
181
+ shipping_address_id=self.shipping_address_id,
182
+ vat_id=self.vat_id)
183
+
184
+
185
+ def get_organization_billing_group(billing_group_id: Optional[builtins.str] = None,
186
+ organization_id: Optional[builtins.str] = None,
187
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationBillingGroupResult:
188
+ """
189
+ Gets information about a billing group.
190
+
191
+
192
+ :param builtins.str billing_group_id: ID of the billing group.
193
+ :param builtins.str organization_id: ID of the organization.
194
+ """
195
+ __args__ = dict()
196
+ __args__['billingGroupId'] = billing_group_id
197
+ __args__['organizationId'] = organization_id
198
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
199
+ __ret__ = pulumi.runtime.invoke('aiven:index/getOrganizationBillingGroup:getOrganizationBillingGroup', __args__, opts=opts, typ=GetOrganizationBillingGroupResult).value
200
+
201
+ return AwaitableGetOrganizationBillingGroupResult(
202
+ billing_address_id=pulumi.get(__ret__, 'billing_address_id'),
203
+ billing_contact_emails=pulumi.get(__ret__, 'billing_contact_emails'),
204
+ billing_currency=pulumi.get(__ret__, 'billing_currency'),
205
+ billing_emails=pulumi.get(__ret__, 'billing_emails'),
206
+ billing_group_id=pulumi.get(__ret__, 'billing_group_id'),
207
+ billing_group_name=pulumi.get(__ret__, 'billing_group_name'),
208
+ custom_invoice_text=pulumi.get(__ret__, 'custom_invoice_text'),
209
+ id=pulumi.get(__ret__, 'id'),
210
+ organization_id=pulumi.get(__ret__, 'organization_id'),
211
+ payment_method_id=pulumi.get(__ret__, 'payment_method_id'),
212
+ shipping_address_id=pulumi.get(__ret__, 'shipping_address_id'),
213
+ vat_id=pulumi.get(__ret__, 'vat_id'))
214
+ def get_organization_billing_group_output(billing_group_id: Optional[pulumi.Input[builtins.str]] = None,
215
+ organization_id: Optional[pulumi.Input[builtins.str]] = None,
216
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOrganizationBillingGroupResult]:
217
+ """
218
+ Gets information about a billing group.
219
+
220
+
221
+ :param builtins.str billing_group_id: ID of the billing group.
222
+ :param builtins.str organization_id: ID of the organization.
223
+ """
224
+ __args__ = dict()
225
+ __args__['billingGroupId'] = billing_group_id
226
+ __args__['organizationId'] = organization_id
227
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
228
+ __ret__ = pulumi.runtime.invoke_output('aiven:index/getOrganizationBillingGroup:getOrganizationBillingGroup', __args__, opts=opts, typ=GetOrganizationBillingGroupResult)
229
+ return __ret__.apply(lambda __response__: GetOrganizationBillingGroupResult(
230
+ billing_address_id=pulumi.get(__response__, 'billing_address_id'),
231
+ billing_contact_emails=pulumi.get(__response__, 'billing_contact_emails'),
232
+ billing_currency=pulumi.get(__response__, 'billing_currency'),
233
+ billing_emails=pulumi.get(__response__, 'billing_emails'),
234
+ billing_group_id=pulumi.get(__response__, 'billing_group_id'),
235
+ billing_group_name=pulumi.get(__response__, 'billing_group_name'),
236
+ custom_invoice_text=pulumi.get(__response__, 'custom_invoice_text'),
237
+ id=pulumi.get(__response__, 'id'),
238
+ organization_id=pulumi.get(__response__, 'organization_id'),
239
+ payment_method_id=pulumi.get(__response__, 'payment_method_id'),
240
+ shipping_address_id=pulumi.get(__response__, 'shipping_address_id'),
241
+ vat_id=pulumi.get(__response__, 'vat_id')))
@@ -0,0 +1,110 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from . import _utilities
17
+ from . import outputs
18
+
19
+ __all__ = [
20
+ 'GetOrganizationBillingGroupListResult',
21
+ 'AwaitableGetOrganizationBillingGroupListResult',
22
+ 'get_organization_billing_group_list',
23
+ 'get_organization_billing_group_list_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetOrganizationBillingGroupListResult:
28
+ """
29
+ A collection of values returned by getOrganizationBillingGroupList.
30
+ """
31
+ def __init__(__self__, billing_groups=None, id=None, organization_id=None):
32
+ if billing_groups and not isinstance(billing_groups, list):
33
+ raise TypeError("Expected argument 'billing_groups' to be a list")
34
+ pulumi.set(__self__, "billing_groups", billing_groups)
35
+ if id and not isinstance(id, str):
36
+ raise TypeError("Expected argument 'id' to be a str")
37
+ pulumi.set(__self__, "id", id)
38
+ if organization_id and not isinstance(organization_id, str):
39
+ raise TypeError("Expected argument 'organization_id' to be a str")
40
+ pulumi.set(__self__, "organization_id", organization_id)
41
+
42
+ @property
43
+ @pulumi.getter(name="billingGroups")
44
+ def billing_groups(self) -> Sequence['outputs.GetOrganizationBillingGroupListBillingGroupResult']:
45
+ """
46
+ List of billing groups.
47
+ """
48
+ return pulumi.get(self, "billing_groups")
49
+
50
+ @property
51
+ @pulumi.getter
52
+ def id(self) -> builtins.str:
53
+ """
54
+ Resource ID, a composite of organization_id.
55
+ """
56
+ return pulumi.get(self, "id")
57
+
58
+ @property
59
+ @pulumi.getter(name="organizationId")
60
+ def organization_id(self) -> builtins.str:
61
+ """
62
+ ID of the organization.
63
+ """
64
+ return pulumi.get(self, "organization_id")
65
+
66
+
67
+ class AwaitableGetOrganizationBillingGroupListResult(GetOrganizationBillingGroupListResult):
68
+ # pylint: disable=using-constant-test
69
+ def __await__(self):
70
+ if False:
71
+ yield self
72
+ return GetOrganizationBillingGroupListResult(
73
+ billing_groups=self.billing_groups,
74
+ id=self.id,
75
+ organization_id=self.organization_id)
76
+
77
+
78
+ def get_organization_billing_group_list(organization_id: Optional[builtins.str] = None,
79
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationBillingGroupListResult:
80
+ """
81
+ Lists billing groups for an organization.
82
+
83
+
84
+ :param builtins.str organization_id: ID of the organization.
85
+ """
86
+ __args__ = dict()
87
+ __args__['organizationId'] = organization_id
88
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
89
+ __ret__ = pulumi.runtime.invoke('aiven:index/getOrganizationBillingGroupList:getOrganizationBillingGroupList', __args__, opts=opts, typ=GetOrganizationBillingGroupListResult).value
90
+
91
+ return AwaitableGetOrganizationBillingGroupListResult(
92
+ billing_groups=pulumi.get(__ret__, 'billing_groups'),
93
+ id=pulumi.get(__ret__, 'id'),
94
+ organization_id=pulumi.get(__ret__, 'organization_id'))
95
+ def get_organization_billing_group_list_output(organization_id: Optional[pulumi.Input[builtins.str]] = None,
96
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOrganizationBillingGroupListResult]:
97
+ """
98
+ Lists billing groups for an organization.
99
+
100
+
101
+ :param builtins.str organization_id: ID of the organization.
102
+ """
103
+ __args__ = dict()
104
+ __args__['organizationId'] = organization_id
105
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
106
+ __ret__ = pulumi.runtime.invoke_output('aiven:index/getOrganizationBillingGroupList:getOrganizationBillingGroupList', __args__, opts=opts, typ=GetOrganizationBillingGroupListResult)
107
+ return __ret__.apply(lambda __response__: GetOrganizationBillingGroupListResult(
108
+ billing_groups=pulumi.get(__response__, 'billing_groups'),
109
+ id=pulumi.get(__response__, 'id'),
110
+ organization_id=pulumi.get(__response__, 'organization_id')))
@@ -28,10 +28,13 @@ class GetOrganizationProjectResult:
28
28
  """
29
29
  A collection of values returned by getOrganizationProject.
30
30
  """
31
- def __init__(__self__, billing_group_id=None, id=None, organization_id=None, parent_id=None, project_id=None, tags=None, technical_emails=None):
31
+ def __init__(__self__, billing_group_id=None, ca_cert=None, id=None, organization_id=None, parent_id=None, project_id=None, tags=None, technical_emails=None):
32
32
  if billing_group_id and not isinstance(billing_group_id, str):
33
33
  raise TypeError("Expected argument 'billing_group_id' to be a str")
34
34
  pulumi.set(__self__, "billing_group_id", billing_group_id)
35
+ if ca_cert and not isinstance(ca_cert, str):
36
+ raise TypeError("Expected argument 'ca_cert' to be a str")
37
+ pulumi.set(__self__, "ca_cert", ca_cert)
35
38
  if id and not isinstance(id, str):
36
39
  raise TypeError("Expected argument 'id' to be a str")
37
40
  pulumi.set(__self__, "id", id)
@@ -59,6 +62,14 @@ class GetOrganizationProjectResult:
59
62
  """
60
63
  return pulumi.get(self, "billing_group_id")
61
64
 
65
+ @property
66
+ @pulumi.getter(name="caCert")
67
+ def ca_cert(self) -> builtins.str:
68
+ """
69
+ The CA certificate for the project. This is required for configuring clients that connect to certain services like Kafka.
70
+ """
71
+ return pulumi.get(self, "ca_cert")
72
+
62
73
  @property
63
74
  @pulumi.getter
64
75
  def id(self) -> builtins.str:
@@ -115,6 +126,7 @@ class AwaitableGetOrganizationProjectResult(GetOrganizationProjectResult):
115
126
  yield self
116
127
  return GetOrganizationProjectResult(
117
128
  billing_group_id=self.billing_group_id,
129
+ ca_cert=self.ca_cert,
118
130
  id=self.id,
119
131
  organization_id=self.organization_id,
120
132
  parent_id=self.parent_id,
@@ -154,6 +166,7 @@ def get_organization_project(organization_id: Optional[builtins.str] = None,
154
166
 
155
167
  return AwaitableGetOrganizationProjectResult(
156
168
  billing_group_id=pulumi.get(__ret__, 'billing_group_id'),
169
+ ca_cert=pulumi.get(__ret__, 'ca_cert'),
157
170
  id=pulumi.get(__ret__, 'id'),
158
171
  organization_id=pulumi.get(__ret__, 'organization_id'),
159
172
  parent_id=pulumi.get(__ret__, 'parent_id'),
@@ -190,6 +203,7 @@ def get_organization_project_output(organization_id: Optional[pulumi.Input[built
190
203
  __ret__ = pulumi.runtime.invoke_output('aiven:index/getOrganizationProject:getOrganizationProject', __args__, opts=opts, typ=GetOrganizationProjectResult)
191
204
  return __ret__.apply(lambda __response__: GetOrganizationProjectResult(
192
205
  billing_group_id=pulumi.get(__response__, 'billing_group_id'),
206
+ ca_cert=pulumi.get(__response__, 'ca_cert'),
193
207
  id=pulumi.get(__response__, 'id'),
194
208
  organization_id=pulumi.get(__response__, 'organization_id'),
195
209
  parent_id=pulumi.get(__response__, 'parent_id'),
@@ -43,7 +43,7 @@ class GetOrganizationUserListResult:
43
43
  @pulumi.getter
44
44
  def id(self) -> Optional[builtins.str]:
45
45
  """
46
- Organization id. Example: `org12345678`.
46
+ The ID of the organization.
47
47
  """
48
48
  return pulumi.get(self, "id")
49
49
 
@@ -51,7 +51,7 @@ class GetOrganizationUserListResult:
51
51
  @pulumi.getter
52
52
  def name(self) -> Optional[builtins.str]:
53
53
  """
54
- Organization name. Example: `aiven`.
54
+ The name of the organization.
55
55
  """
56
56
  return pulumi.get(self, "name")
57
57
 
@@ -59,7 +59,7 @@ class GetOrganizationUserListResult:
59
59
  @pulumi.getter
60
60
  def users(self) -> Sequence['outputs.GetOrganizationUserListUserResult']:
61
61
  """
62
- List of users of the organization
62
+ List of the users, their profile information, and other data.
63
63
  """
64
64
  return pulumi.get(self, "users")
65
65
 
@@ -79,14 +79,20 @@ def get_organization_user_list(id: Optional[builtins.str] = None,
79
79
  name: Optional[builtins.str] = None,
80
80
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationUserListResult:
81
81
  """
82
- List of users of the organization.
82
+ Returns a list of [users in the organization](https://aiven.io/docs/platform/concepts/user-access-management), their profile details, and other data . This includes users you add to your organization and application users.
83
83
 
84
- **This resource is in the beta stage and may change without notice.** Set
85
- the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
84
+ ## Example Usage
86
85
 
86
+ ```python
87
+ import pulumi
88
+ import pulumi_aiven as aiven
87
89
 
88
- :param builtins.str id: Organization id. Example: `org12345678`.
89
- :param builtins.str name: Organization name. Example: `aiven`.
90
+ users = aiven.get_organization_user_list(name="Example organization")
91
+ ```
92
+
93
+
94
+ :param builtins.str id: The ID of the organization.
95
+ :param builtins.str name: The name of the organization.
90
96
  """
91
97
  __args__ = dict()
92
98
  __args__['id'] = id
@@ -102,14 +108,20 @@ def get_organization_user_list_output(id: Optional[pulumi.Input[Optional[builtin
102
108
  name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
103
109
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOrganizationUserListResult]:
104
110
  """
105
- List of users of the organization.
111
+ Returns a list of [users in the organization](https://aiven.io/docs/platform/concepts/user-access-management), their profile details, and other data . This includes users you add to your organization and application users.
112
+
113
+ ## Example Usage
114
+
115
+ ```python
116
+ import pulumi
117
+ import pulumi_aiven as aiven
106
118
 
107
- **This resource is in the beta stage and may change without notice.** Set
108
- the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
119
+ users = aiven.get_organization_user_list(name="Example organization")
120
+ ```
109
121
 
110
122
 
111
- :param builtins.str id: Organization id. Example: `org12345678`.
112
- :param builtins.str name: Organization name. Example: `aiven`.
123
+ :param builtins.str id: The ID of the organization.
124
+ :param builtins.str name: The name of the organization.
113
125
  """
114
126
  __args__ = dict()
115
127
  __args__['id'] = id
pulumi_aiven/get_pg.py CHANGED
@@ -121,7 +121,7 @@ class GetPgResult:
121
121
  @pulumi.getter(name="additionalDiskSpace")
122
122
  def additional_disk_space(self) -> builtins.str:
123
123
  """
124
- Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
124
+ Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
125
125
  """
126
126
  return pulumi.get(self, "additional_disk_space")
127
127
 
@@ -312,9 +312,6 @@ class GetPgResult:
312
312
  @property
313
313
  @pulumi.getter
314
314
  def state(self) -> builtins.str:
315
- """
316
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
317
- """
318
315
  return pulumi.get(self, "state")
319
316
 
320
317
  @property
pulumi_aiven/get_redis.py CHANGED
@@ -121,7 +121,7 @@ class GetRedisResult:
121
121
  @pulumi.getter(name="additionalDiskSpace")
122
122
  def additional_disk_space(self) -> builtins.str:
123
123
  """
124
- Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
124
+ Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
125
125
  """
126
126
  return pulumi.get(self, "additional_disk_space")
127
127
 
@@ -312,9 +312,6 @@ class GetRedisResult:
312
312
  @property
313
313
  @pulumi.getter
314
314
  def state(self) -> builtins.str:
315
- """
316
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
317
- """
318
315
  return pulumi.get(self, "state")
319
316
 
320
317
  @property
@@ -27,7 +27,7 @@ class GetServiceComponentResult:
27
27
  """
28
28
  A collection of values returned by getServiceComponent.
29
29
  """
30
- def __init__(__self__, component=None, host=None, id=None, kafka_authentication_method=None, port=None, project=None, route=None, service_name=None, ssl=None, usage=None):
30
+ def __init__(__self__, component=None, host=None, id=None, kafka_authentication_method=None, kafka_ssl_ca=None, port=None, project=None, route=None, service_name=None, ssl=None, usage=None):
31
31
  if component and not isinstance(component, str):
32
32
  raise TypeError("Expected argument 'component' to be a str")
33
33
  pulumi.set(__self__, "component", component)
@@ -40,6 +40,9 @@ class GetServiceComponentResult:
40
40
  if kafka_authentication_method and not isinstance(kafka_authentication_method, str):
41
41
  raise TypeError("Expected argument 'kafka_authentication_method' to be a str")
42
42
  pulumi.set(__self__, "kafka_authentication_method", kafka_authentication_method)
43
+ if kafka_ssl_ca and not isinstance(kafka_ssl_ca, str):
44
+ raise TypeError("Expected argument 'kafka_ssl_ca' to be a str")
45
+ pulumi.set(__self__, "kafka_ssl_ca", kafka_ssl_ca)
43
46
  if port and not isinstance(port, int):
44
47
  raise TypeError("Expected argument 'port' to be a int")
45
48
  pulumi.set(__self__, "port", port)
@@ -91,6 +94,14 @@ class GetServiceComponentResult:
91
94
  """
92
95
  return pulumi.get(self, "kafka_authentication_method")
93
96
 
97
+ @property
98
+ @pulumi.getter(name="kafkaSslCa")
99
+ def kafka_ssl_ca(self) -> builtins.str:
100
+ """
101
+ Kafka certificate used. The possible values are `letsencrypt` and `project_ca`.
102
+ """
103
+ return pulumi.get(self, "kafka_ssl_ca")
104
+
94
105
  @property
95
106
  @pulumi.getter
96
107
  def port(self) -> builtins.int:
@@ -150,6 +161,7 @@ class AwaitableGetServiceComponentResult(GetServiceComponentResult):
150
161
  host=self.host,
151
162
  id=self.id,
152
163
  kafka_authentication_method=self.kafka_authentication_method,
164
+ kafka_ssl_ca=self.kafka_ssl_ca,
153
165
  port=self.port,
154
166
  project=self.project,
155
167
  route=self.route,
@@ -209,6 +221,7 @@ def get_service_component(component: Optional[builtins.str] = None,
209
221
  host=pulumi.get(__ret__, 'host'),
210
222
  id=pulumi.get(__ret__, 'id'),
211
223
  kafka_authentication_method=pulumi.get(__ret__, 'kafka_authentication_method'),
224
+ kafka_ssl_ca=pulumi.get(__ret__, 'kafka_ssl_ca'),
212
225
  port=pulumi.get(__ret__, 'port'),
213
226
  project=pulumi.get(__ret__, 'project'),
214
227
  route=pulumi.get(__ret__, 'route'),
@@ -265,6 +278,7 @@ def get_service_component_output(component: Optional[pulumi.Input[builtins.str]]
265
278
  host=pulumi.get(__response__, 'host'),
266
279
  id=pulumi.get(__response__, 'id'),
267
280
  kafka_authentication_method=pulumi.get(__response__, 'kafka_authentication_method'),
281
+ kafka_ssl_ca=pulumi.get(__response__, 'kafka_ssl_ca'),
268
282
  port=pulumi.get(__response__, 'port'),
269
283
  project=pulumi.get(__response__, 'project'),
270
284
  route=pulumi.get(__response__, 'route'),
@@ -342,7 +342,7 @@ def get_service_integration(destination_service_name: Optional[builtins.str] = N
342
342
  import pulumi_aiven as aiven
343
343
 
344
344
  example_integration = aiven.get_service_integration(project=example_project["project"],
345
- destination_service_name=example_m3db["serviceName"],
345
+ destination_service_name=example_thanos["serviceName"],
346
346
  integration_type="metrics",
347
347
  source_service_name=example_kafka["serviceName"])
348
348
  ```
@@ -401,7 +401,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
401
401
  import pulumi_aiven as aiven
402
402
 
403
403
  example_integration = aiven.get_service_integration(project=example_project["project"],
404
- destination_service_name=example_m3db["serviceName"],
404
+ destination_service_name=example_thanos["serviceName"],
405
405
  integration_type="metrics",
406
406
  source_service_name=example_kafka["serviceName"])
407
407
  ```
@@ -121,7 +121,7 @@ class GetThanosResult:
121
121
  @pulumi.getter(name="additionalDiskSpace")
122
122
  def additional_disk_space(self) -> builtins.str:
123
123
  """
124
- Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
124
+ Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
125
125
  """
126
126
  return pulumi.get(self, "additional_disk_space")
127
127
 
@@ -296,9 +296,6 @@ class GetThanosResult:
296
296
  @property
297
297
  @pulumi.getter
298
298
  def state(self) -> builtins.str:
299
- """
300
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
301
- """
302
299
  return pulumi.get(self, "state")
303
300
 
304
301
  @property
@@ -121,7 +121,7 @@ class GetValkeyResult:
121
121
  @pulumi.getter(name="additionalDiskSpace")
122
122
  def additional_disk_space(self) -> builtins.str:
123
123
  """
124
- Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
124
+ Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart, and there might be a short downtime for services without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
125
125
  """
126
126
  return pulumi.get(self, "additional_disk_space")
127
127
 
@@ -296,9 +296,6 @@ class GetValkeyResult:
296
296
  @property
297
297
  @pulumi.getter
298
298
  def state(self) -> builtins.str:
299
- """
300
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
301
- """
302
299
  return pulumi.get(self, "state")
303
300
 
304
301
  @property