pulumi-aiven 6.37.0a1744182902__py3-none-any.whl → 6.38.0a1744261676__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.38.0a1744261676.dist-info}/METADATA +1 -1
  60. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/RECORD +62 -57
  61. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/WHEEL +0 -0
  62. {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.38.0a1744261676.dist-info}/top_level.txt +0 -0
@@ -124,7 +124,7 @@ class GetAlloydbomniResult:
124
124
  @pulumi.getter(name="additionalDiskSpace")
125
125
  def additional_disk_space(self) -> builtins.str:
126
126
  """
127
- 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.
127
+ 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.
128
128
  """
129
129
  return pulumi.get(self, "additional_disk_space")
130
130
 
@@ -323,9 +323,6 @@ class GetAlloydbomniResult:
323
323
  @property
324
324
  @pulumi.getter
325
325
  def state(self) -> builtins.str:
326
- """
327
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
328
- """
329
326
  return pulumi.get(self, "state")
330
327
 
331
328
  @property
@@ -123,7 +123,7 @@ class GetCassandaResult:
123
123
  @pulumi.getter(name="additionalDiskSpace")
124
124
  def additional_disk_space(self) -> builtins.str:
125
125
  """
126
- 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.
126
+ 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.
127
127
  """
128
128
  return pulumi.get(self, "additional_disk_space")
129
129
 
@@ -314,9 +314,6 @@ class GetCassandaResult:
314
314
  @property
315
315
  @pulumi.getter
316
316
  def state(self) -> builtins.str:
317
- """
318
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
319
- """
320
317
  return pulumi.get(self, "state")
321
318
 
322
319
  @property
@@ -121,7 +121,7 @@ class GetCassandraResult:
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 GetCassandraResult:
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
@@ -121,7 +121,7 @@ class GetClickhouseResult:
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 GetClickhouseResult:
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
@@ -121,7 +121,7 @@ class GetDragonflyResult:
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 GetDragonflyResult:
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_flink.py CHANGED
@@ -121,7 +121,7 @@ class GetFlinkResult:
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 GetFlinkResult:
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
@@ -121,7 +121,7 @@ class GetGrafanaResult:
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 GetGrafanaResult:
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_kafka.py CHANGED
@@ -127,7 +127,7 @@ class GetKafkaResult:
127
127
  @pulumi.getter(name="additionalDiskSpace")
128
128
  def additional_disk_space(self) -> builtins.str:
129
129
  """
130
- 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.
130
+ 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.
131
131
  """
132
132
  return pulumi.get(self, "additional_disk_space")
133
133
 
@@ -334,9 +334,6 @@ class GetKafkaResult:
334
334
  @property
335
335
  @pulumi.getter
336
336
  def state(self) -> builtins.str:
337
- """
338
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
339
- """
340
337
  return pulumi.get(self, "state")
341
338
 
342
339
  @property
@@ -118,7 +118,7 @@ class GetKafkaConnectResult:
118
118
  @pulumi.getter(name="additionalDiskSpace")
119
119
  def additional_disk_space(self) -> builtins.str:
120
120
  """
121
- 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.
121
+ 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.
122
122
  """
123
123
  return pulumi.get(self, "additional_disk_space")
124
124
 
@@ -301,9 +301,6 @@ class GetKafkaConnectResult:
301
301
  @property
302
302
  @pulumi.getter
303
303
  def state(self) -> builtins.str:
304
- """
305
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
306
- """
307
304
  return pulumi.get(self, "state")
308
305
 
309
306
  @property
@@ -118,7 +118,7 @@ class GetKafkaMirrorMakerResult:
118
118
  @pulumi.getter(name="additionalDiskSpace")
119
119
  def additional_disk_space(self) -> builtins.str:
120
120
  """
121
- 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.
121
+ 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.
122
122
  """
123
123
  return pulumi.get(self, "additional_disk_space")
124
124
 
@@ -301,9 +301,6 @@ class GetKafkaMirrorMakerResult:
301
301
  @property
302
302
  @pulumi.getter
303
303
  def state(self) -> builtins.str:
304
- """
305
- Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
306
- """
307
304
  return pulumi.get(self, "state")
308
305
 
309
306
  @property
@@ -121,7 +121,7 @@ class GetM3AggregatorResult:
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 GetM3AggregatorResult:
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_m3_db.py CHANGED
@@ -121,7 +121,7 @@ class GetM3DbResult:
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 GetM3DbResult:
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
@@ -121,7 +121,7 @@ class GetMySqlResult:
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 GetMySqlResult:
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
@@ -121,7 +121,7 @@ class GetOpenSearchResult:
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 GetOpenSearchResult:
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
@@ -54,7 +54,7 @@ class GetOrganizationResult:
54
54
 
55
55
  @property
56
56
  @pulumi.getter
57
- def id(self) -> Optional[builtins.str]:
57
+ def id(self) -> builtins.str:
58
58
  """
59
59
  ID of the organization.
60
60
  """
@@ -62,7 +62,7 @@ class GetOrganizationResult:
62
62
 
63
63
  @property
64
64
  @pulumi.getter
65
- def name(self) -> Optional[builtins.str]:
65
+ def name(self) -> builtins.str:
66
66
  """
67
67
  Name of the organization.
68
68
  """
@@ -0,0 +1,227 @@
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
+ 'GetOrganizationAddressResult',
20
+ 'AwaitableGetOrganizationAddressResult',
21
+ 'get_organization_address',
22
+ 'get_organization_address_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetOrganizationAddressResult:
27
+ """
28
+ A collection of values returned by getOrganizationAddress.
29
+ """
30
+ def __init__(__self__, address_id=None, address_lines=None, city=None, company_name=None, country_code=None, create_time=None, id=None, organization_id=None, state=None, update_time=None, zip_code=None):
31
+ if address_id and not isinstance(address_id, str):
32
+ raise TypeError("Expected argument 'address_id' to be a str")
33
+ pulumi.set(__self__, "address_id", address_id)
34
+ if address_lines and not isinstance(address_lines, list):
35
+ raise TypeError("Expected argument 'address_lines' to be a list")
36
+ pulumi.set(__self__, "address_lines", address_lines)
37
+ if city and not isinstance(city, str):
38
+ raise TypeError("Expected argument 'city' to be a str")
39
+ pulumi.set(__self__, "city", city)
40
+ if company_name and not isinstance(company_name, str):
41
+ raise TypeError("Expected argument 'company_name' to be a str")
42
+ pulumi.set(__self__, "company_name", company_name)
43
+ if country_code and not isinstance(country_code, str):
44
+ raise TypeError("Expected argument 'country_code' to be a str")
45
+ pulumi.set(__self__, "country_code", country_code)
46
+ if create_time and not isinstance(create_time, str):
47
+ raise TypeError("Expected argument 'create_time' to be a str")
48
+ pulumi.set(__self__, "create_time", create_time)
49
+ if id and not isinstance(id, str):
50
+ raise TypeError("Expected argument 'id' to be a str")
51
+ pulumi.set(__self__, "id", id)
52
+ if organization_id and not isinstance(organization_id, str):
53
+ raise TypeError("Expected argument 'organization_id' to be a str")
54
+ pulumi.set(__self__, "organization_id", organization_id)
55
+ if state and not isinstance(state, str):
56
+ raise TypeError("Expected argument 'state' to be a str")
57
+ pulumi.set(__self__, "state", state)
58
+ if update_time and not isinstance(update_time, str):
59
+ raise TypeError("Expected argument 'update_time' to be a str")
60
+ pulumi.set(__self__, "update_time", update_time)
61
+ if zip_code and not isinstance(zip_code, str):
62
+ raise TypeError("Expected argument 'zip_code' to be a str")
63
+ pulumi.set(__self__, "zip_code", zip_code)
64
+
65
+ @property
66
+ @pulumi.getter(name="addressId")
67
+ def address_id(self) -> builtins.str:
68
+ """
69
+ ID of the address.
70
+ """
71
+ return pulumi.get(self, "address_id")
72
+
73
+ @property
74
+ @pulumi.getter(name="addressLines")
75
+ def address_lines(self) -> Sequence[builtins.str]:
76
+ """
77
+ Array of address lines.
78
+ """
79
+ return pulumi.get(self, "address_lines")
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def city(self) -> builtins.str:
84
+ """
85
+ City name.
86
+ """
87
+ return pulumi.get(self, "city")
88
+
89
+ @property
90
+ @pulumi.getter(name="companyName")
91
+ def company_name(self) -> builtins.str:
92
+ """
93
+ Name of the company.
94
+ """
95
+ return pulumi.get(self, "company_name")
96
+
97
+ @property
98
+ @pulumi.getter(name="countryCode")
99
+ def country_code(self) -> builtins.str:
100
+ """
101
+ Country code.
102
+ """
103
+ return pulumi.get(self, "country_code")
104
+
105
+ @property
106
+ @pulumi.getter(name="createTime")
107
+ def create_time(self) -> builtins.str:
108
+ """
109
+ Timestamp of the creation.
110
+ """
111
+ return pulumi.get(self, "create_time")
112
+
113
+ @property
114
+ @pulumi.getter
115
+ def id(self) -> builtins.str:
116
+ """
117
+ Resource ID, a composite of organization*id and address*id.
118
+ """
119
+ return pulumi.get(self, "id")
120
+
121
+ @property
122
+ @pulumi.getter(name="organizationId")
123
+ def organization_id(self) -> builtins.str:
124
+ """
125
+ ID of organization.
126
+ """
127
+ return pulumi.get(self, "organization_id")
128
+
129
+ @property
130
+ @pulumi.getter
131
+ def state(self) -> builtins.str:
132
+ """
133
+ State name.
134
+ """
135
+ return pulumi.get(self, "state")
136
+
137
+ @property
138
+ @pulumi.getter(name="updateTime")
139
+ def update_time(self) -> builtins.str:
140
+ """
141
+ Timestamp of the last update.
142
+ """
143
+ return pulumi.get(self, "update_time")
144
+
145
+ @property
146
+ @pulumi.getter(name="zipCode")
147
+ def zip_code(self) -> builtins.str:
148
+ """
149
+ Zip code.
150
+ """
151
+ return pulumi.get(self, "zip_code")
152
+
153
+
154
+ class AwaitableGetOrganizationAddressResult(GetOrganizationAddressResult):
155
+ # pylint: disable=using-constant-test
156
+ def __await__(self):
157
+ if False:
158
+ yield self
159
+ return GetOrganizationAddressResult(
160
+ address_id=self.address_id,
161
+ address_lines=self.address_lines,
162
+ city=self.city,
163
+ company_name=self.company_name,
164
+ country_code=self.country_code,
165
+ create_time=self.create_time,
166
+ id=self.id,
167
+ organization_id=self.organization_id,
168
+ state=self.state,
169
+ update_time=self.update_time,
170
+ zip_code=self.zip_code)
171
+
172
+
173
+ def get_organization_address(address_id: Optional[builtins.str] = None,
174
+ organization_id: Optional[builtins.str] = None,
175
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationAddressResult:
176
+ """
177
+ Gets information about an organization address.
178
+
179
+
180
+ :param builtins.str address_id: ID of the address.
181
+ :param builtins.str organization_id: ID of organization.
182
+ """
183
+ __args__ = dict()
184
+ __args__['addressId'] = address_id
185
+ __args__['organizationId'] = organization_id
186
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
187
+ __ret__ = pulumi.runtime.invoke('aiven:index/getOrganizationAddress:getOrganizationAddress', __args__, opts=opts, typ=GetOrganizationAddressResult).value
188
+
189
+ return AwaitableGetOrganizationAddressResult(
190
+ address_id=pulumi.get(__ret__, 'address_id'),
191
+ address_lines=pulumi.get(__ret__, 'address_lines'),
192
+ city=pulumi.get(__ret__, 'city'),
193
+ company_name=pulumi.get(__ret__, 'company_name'),
194
+ country_code=pulumi.get(__ret__, 'country_code'),
195
+ create_time=pulumi.get(__ret__, 'create_time'),
196
+ id=pulumi.get(__ret__, 'id'),
197
+ organization_id=pulumi.get(__ret__, 'organization_id'),
198
+ state=pulumi.get(__ret__, 'state'),
199
+ update_time=pulumi.get(__ret__, 'update_time'),
200
+ zip_code=pulumi.get(__ret__, 'zip_code'))
201
+ def get_organization_address_output(address_id: Optional[pulumi.Input[builtins.str]] = None,
202
+ organization_id: Optional[pulumi.Input[builtins.str]] = None,
203
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOrganizationAddressResult]:
204
+ """
205
+ Gets information about an organization address.
206
+
207
+
208
+ :param builtins.str address_id: ID of the address.
209
+ :param builtins.str organization_id: ID of organization.
210
+ """
211
+ __args__ = dict()
212
+ __args__['addressId'] = address_id
213
+ __args__['organizationId'] = organization_id
214
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
215
+ __ret__ = pulumi.runtime.invoke_output('aiven:index/getOrganizationAddress:getOrganizationAddress', __args__, opts=opts, typ=GetOrganizationAddressResult)
216
+ return __ret__.apply(lambda __response__: GetOrganizationAddressResult(
217
+ address_id=pulumi.get(__response__, 'address_id'),
218
+ address_lines=pulumi.get(__response__, 'address_lines'),
219
+ city=pulumi.get(__response__, 'city'),
220
+ company_name=pulumi.get(__response__, 'company_name'),
221
+ country_code=pulumi.get(__response__, 'country_code'),
222
+ create_time=pulumi.get(__response__, 'create_time'),
223
+ id=pulumi.get(__response__, 'id'),
224
+ organization_id=pulumi.get(__response__, 'organization_id'),
225
+ state=pulumi.get(__response__, 'state'),
226
+ update_time=pulumi.get(__response__, 'update_time'),
227
+ zip_code=pulumi.get(__response__, 'zip_code')))
@@ -116,16 +116,6 @@ def get_organization_application_user(organization_id: Optional[builtins.str] =
116
116
  """
117
117
  Gets information about an application user.
118
118
 
119
- ## Example Usage
120
-
121
- ```python
122
- import pulumi
123
- import pulumi_aiven as aiven
124
-
125
- tf_user = aiven.get_organization_application_user(organization_id=main["id"],
126
- user_id="u123a456b7890c")
127
- ```
128
-
129
119
 
130
120
  :param builtins.str organization_id: The ID of the organization the application user belongs to.
131
121
  :param builtins.str user_id: The ID of the application user.
@@ -149,16 +139,6 @@ def get_organization_application_user_output(organization_id: Optional[pulumi.In
149
139
  """
150
140
  Gets information about an application user.
151
141
 
152
- ## Example Usage
153
-
154
- ```python
155
- import pulumi
156
- import pulumi_aiven as aiven
157
-
158
- tf_user = aiven.get_organization_application_user(organization_id=main["id"],
159
- user_id="u123a456b7890c")
160
- ```
161
-
162
142
 
163
143
  :param builtins.str organization_id: The ID of the organization the application user belongs to.
164
144
  :param builtins.str user_id: The ID of the application user.