pulumi-aiven 6.27.0__py3-none-any.whl → 6.27.0a1728590805__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/__init__.py +0 -1
- pulumi_aiven/_inputs.py +3 -931
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_kafka_schema.py +1 -1
- pulumi_aiven/get_kafka_schema_configuration.py +1 -1
- pulumi_aiven/get_kafka_topic.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_thanos.py +0 -20
- pulumi_aiven/kafka_schema.py +7 -7
- pulumi_aiven/kafka_topic.py +9 -11
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +2 -1465
- pulumi_aiven/project.py +1 -1
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/thanos.py +0 -50
- {pulumi_aiven-6.27.0.dist-info → pulumi_aiven-6.27.0a1728590805.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.27.0.dist-info → pulumi_aiven-6.27.0a1728590805.dist-info}/RECORD +21 -22
- {pulumi_aiven-6.27.0.dist-info → pulumi_aiven-6.27.0a1728590805.dist-info}/WHEEL +1 -1
- pulumi_aiven/get_organization_user_list.py +0 -121
- {pulumi_aiven-6.27.0.dist-info → pulumi_aiven-6.27.0a1728590805.dist-info}/top_level.txt +0 -0
pulumi_aiven/project.py
CHANGED
|
@@ -637,7 +637,7 @@ class Project(pulumi.CustomResource):
|
|
|
637
637
|
@property
|
|
638
638
|
@pulumi.getter(name="accountId")
|
|
639
639
|
@_utilities.deprecated("""Use parent_id instead. This field will be removed in the next major release.""")
|
|
640
|
-
def account_id(self) -> pulumi.Output[str]:
|
|
640
|
+
def account_id(self) -> pulumi.Output[Optional[str]]:
|
|
641
641
|
"""
|
|
642
642
|
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.
|
|
643
643
|
"""
|
pulumi_aiven/project_user.py
CHANGED
|
@@ -25,7 +25,7 @@ class ProjectUserArgs:
|
|
|
25
25
|
"""
|
|
26
26
|
The set of arguments for constructing a ProjectUser resource.
|
|
27
27
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
28
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
28
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
29
29
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
30
30
|
"""
|
|
31
31
|
pulumi.set(__self__, "email", email)
|
|
@@ -48,7 +48,7 @@ class ProjectUserArgs:
|
|
|
48
48
|
@pulumi.getter(name="memberType")
|
|
49
49
|
def member_type(self) -> pulumi.Input[str]:
|
|
50
50
|
"""
|
|
51
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
51
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
52
52
|
"""
|
|
53
53
|
return pulumi.get(self, "member_type")
|
|
54
54
|
|
|
@@ -80,7 +80,7 @@ class _ProjectUserState:
|
|
|
80
80
|
Input properties used for looking up and filtering ProjectUser resources.
|
|
81
81
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
82
82
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
83
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
83
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
84
84
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
85
85
|
"""
|
|
86
86
|
if accepted is not None:
|
|
@@ -120,7 +120,7 @@ class _ProjectUserState:
|
|
|
120
120
|
@pulumi.getter(name="memberType")
|
|
121
121
|
def member_type(self) -> Optional[pulumi.Input[str]]:
|
|
122
122
|
"""
|
|
123
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
123
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
124
124
|
"""
|
|
125
125
|
return pulumi.get(self, "member_type")
|
|
126
126
|
|
|
@@ -174,7 +174,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
174
174
|
:param str resource_name: The name of the resource.
|
|
175
175
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
176
176
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
177
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
177
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
178
178
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
179
179
|
"""
|
|
180
180
|
...
|
|
@@ -264,7 +264,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
264
264
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
265
265
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
266
266
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
267
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
267
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
268
268
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
269
269
|
"""
|
|
270
270
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -297,7 +297,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
297
297
|
@pulumi.getter(name="memberType")
|
|
298
298
|
def member_type(self) -> pulumi.Output[str]:
|
|
299
299
|
"""
|
|
300
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read
|
|
300
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
301
301
|
"""
|
|
302
302
|
return pulumi.get(self, "member_type")
|
|
303
303
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/thanos.py
CHANGED
|
@@ -772,31 +772,6 @@ class Thanos(pulumi.CustomResource):
|
|
|
772
772
|
"""
|
|
773
773
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
774
774
|
|
|
775
|
-
## Example Usage
|
|
776
|
-
|
|
777
|
-
```python
|
|
778
|
-
import pulumi
|
|
779
|
-
import pulumi_aiven as aiven
|
|
780
|
-
|
|
781
|
-
example_thanos = aiven.Thanos("example_thanos",
|
|
782
|
-
project=example_project["project"],
|
|
783
|
-
plan="startup-4",
|
|
784
|
-
cloud_name="google-europe-west1",
|
|
785
|
-
service_name="example-thanos-service",
|
|
786
|
-
thanos_user_config={
|
|
787
|
-
"compactor": {
|
|
788
|
-
"retention_days": 30,
|
|
789
|
-
},
|
|
790
|
-
"object_storage_usage_alert_threshold_gb": 10,
|
|
791
|
-
})
|
|
792
|
-
```
|
|
793
|
-
|
|
794
|
-
## Import
|
|
795
|
-
|
|
796
|
-
```sh
|
|
797
|
-
$ pulumi import aiven:index/thanos:Thanos example_thanos PROJECT/SERVICE_NAME
|
|
798
|
-
```
|
|
799
|
-
|
|
800
775
|
:param str resource_name: The name of the resource.
|
|
801
776
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
802
777
|
:param pulumi.Input[str] additional_disk_space: 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.
|
|
@@ -825,31 +800,6 @@ class Thanos(pulumi.CustomResource):
|
|
|
825
800
|
"""
|
|
826
801
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
827
802
|
|
|
828
|
-
## Example Usage
|
|
829
|
-
|
|
830
|
-
```python
|
|
831
|
-
import pulumi
|
|
832
|
-
import pulumi_aiven as aiven
|
|
833
|
-
|
|
834
|
-
example_thanos = aiven.Thanos("example_thanos",
|
|
835
|
-
project=example_project["project"],
|
|
836
|
-
plan="startup-4",
|
|
837
|
-
cloud_name="google-europe-west1",
|
|
838
|
-
service_name="example-thanos-service",
|
|
839
|
-
thanos_user_config={
|
|
840
|
-
"compactor": {
|
|
841
|
-
"retention_days": 30,
|
|
842
|
-
},
|
|
843
|
-
"object_storage_usage_alert_threshold_gb": 10,
|
|
844
|
-
})
|
|
845
|
-
```
|
|
846
|
-
|
|
847
|
-
## Import
|
|
848
|
-
|
|
849
|
-
```sh
|
|
850
|
-
$ pulumi import aiven:index/thanos:Thanos example_thanos PROJECT/SERVICE_NAME
|
|
851
|
-
```
|
|
852
|
-
|
|
853
803
|
:param str resource_name: The name of the resource.
|
|
854
804
|
:param ThanosArgs args: The arguments to use to populate this resource's properties.
|
|
855
805
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
pulumi_aiven/__init__.py,sha256=
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256=
|
|
1
|
+
pulumi_aiven/__init__.py,sha256=nE8GNHB17iUVBkNAeiQh8oOxn51vaa6JZW6OhxollQQ,18813
|
|
2
|
+
pulumi_aiven/_inputs.py,sha256=HUyJRVD_pDVIL0ogPcULYv5RzwCEFHr2giWyaXB2PUA,1569068
|
|
3
3
|
pulumi_aiven/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_aiven/account.py,sha256=INnmCQlB-rYogssxx8zMP5hrPGS3DAr03GccSR_qSe8,17025
|
|
5
5
|
pulumi_aiven/account_authentication.py,sha256=6YMnR97tSsbDGTeC-4Z0WRG3PyRxeZZyi3o6X1BX3jg,37749
|
|
6
6
|
pulumi_aiven/account_team.py,sha256=hcV_T88ON6X0lgflCbEGDK-BwrmsBb40fHbz85VeS9I,13101
|
|
7
7
|
pulumi_aiven/account_team_member.py,sha256=fJdyOsgcC8M3HDUqvtNVqUt6xRvX4BXXsypovPlZEVQ,18773
|
|
8
|
-
pulumi_aiven/account_team_project.py,sha256=
|
|
8
|
+
pulumi_aiven/account_team_project.py,sha256=DsTcH-IHBCAFc3IcGvoDsfhiywKXmLkjnRfY062R0aM,15461
|
|
9
9
|
pulumi_aiven/aws_privatelink.py,sha256=T_fAM8G1eLpgDiql6wO9kwTG28ecBQiRoZFAgXnR04M,15605
|
|
10
10
|
pulumi_aiven/aws_vpc_peering_connection.py,sha256=9o17R-3xjvBpT1cWmRl_1itRAaUgUOyFT8FZZ4V_y7I,18618
|
|
11
11
|
pulumi_aiven/azure_privatelink.py,sha256=hCrp07cYMAxJ1Ju8-7GnSI4bNJEm-vvVTT8LtrQZu2A,18156
|
|
@@ -32,7 +32,7 @@ pulumi_aiven/get_account.py,sha256=-BmF_rT0p7yv7_w1co8VNSAnPiYTIigq4t5smJwLuQU,7
|
|
|
32
32
|
pulumi_aiven/get_account_authentication.py,sha256=hZshH8eMofJlKVJiyW9s8GiPZ_rxCgsYnuBg1sAM-VE,14508
|
|
33
33
|
pulumi_aiven/get_account_team.py,sha256=xoIVzKTYKDhf7zXMA90vsoker_BwMb_RrFsMevXdvbU,5651
|
|
34
34
|
pulumi_aiven/get_account_team_member.py,sha256=qHtwjz2fGbGA32_h0hattQ2g-m1uPVXDoXc0kJ1S66o,8073
|
|
35
|
-
pulumi_aiven/get_account_team_project.py,sha256=
|
|
35
|
+
pulumi_aiven/get_account_team_project.py,sha256=KCxyVgM4dMKdVhX8dW94dF-7NseiladtrWQZn8GgtKE,5914
|
|
36
36
|
pulumi_aiven/get_aws_privatelink.py,sha256=rj2JWpNF8Op_LIlJpNIjYBCWb-jPoujtJyW2Wb3UM4I,7453
|
|
37
37
|
pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=MCsJpTngLawK9grOlrE_QXGDYOIyRditSoUq_KQa8E4,9980
|
|
38
38
|
pulumi_aiven/get_azure_privatelink.py,sha256=XylhGH1AUkltuCsRj9aIzzXuLkD4g1hdN0_JhNTdBMk,8763
|
|
@@ -61,10 +61,10 @@ pulumi_aiven/get_kafka_acl.py,sha256=7yEhFbGo5sOcj4ikoLhpypR9cKJorZd8lFCoIHtUYUw
|
|
|
61
61
|
pulumi_aiven/get_kafka_connect.py,sha256=3cZku4Dv6LUZJqcKhrgNPSsRx5yjdG5jEwQDuaT8aMI,24787
|
|
62
62
|
pulumi_aiven/get_kafka_connector.py,sha256=4PgGj5S4kYAmqYQBGgqZyqJaQOMlCXtbFwYuDUSBe1M,11459
|
|
63
63
|
pulumi_aiven/get_kafka_mirror_maker.py,sha256=mBPl743YMu_4v0PHNEfnwBHnlnrK6PXzPMvGmxjjf40,24981
|
|
64
|
-
pulumi_aiven/get_kafka_schema.py,sha256=
|
|
65
|
-
pulumi_aiven/get_kafka_schema_configuration.py,sha256
|
|
64
|
+
pulumi_aiven/get_kafka_schema.py,sha256=Y7AVolLUED6P2wXuShA4gmbLubt-eXqxLWcRfgXbVCg,9222
|
|
65
|
+
pulumi_aiven/get_kafka_schema_configuration.py,sha256=kCxNuCtMN8yvW1xF2ze8Pga1b4omdXCiWk2goTf_S7Y,9258
|
|
66
66
|
pulumi_aiven/get_kafka_schema_registry_acl.py,sha256=MJXEqJTY45HR4Jxx1ncraqwq2RwFRaq0i2GeqnCyzrY,9484
|
|
67
|
-
pulumi_aiven/get_kafka_topic.py,sha256=
|
|
67
|
+
pulumi_aiven/get_kafka_topic.py,sha256=I2hEYNMZdnGi4C6C34zRZY0ZfCD0HeRqrCADzkb6Ag4,10845
|
|
68
68
|
pulumi_aiven/get_kafka_user.py,sha256=inTk5YpnVHtgZ74Jn5MHKQSioxSwI7E84I66z7zxgOg,8908
|
|
69
69
|
pulumi_aiven/get_m3_aggregator.py,sha256=g7Yz6tRKRJI45AhxFRv9m3TqTDxJJHa4qNzKGiksW8M,25359
|
|
70
70
|
pulumi_aiven/get_m3_db.py,sha256=rTXxA3QDSHgGjwcc6Qtaq-297cPcfxos24wtxnwqAUs,24826
|
|
@@ -82,20 +82,19 @@ pulumi_aiven/get_organization.py,sha256=1hMnhRJdrfSlDgwsFiI4CfMyyywqc_zDhjBhnY9f
|
|
|
82
82
|
pulumi_aiven/get_organization_application_user.py,sha256=PLZWs3XM-TzlGJwMGb2NPrtg9XAV1q5I4OcR_dc8pTc,6896
|
|
83
83
|
pulumi_aiven/get_organization_user.py,sha256=VnVbLYB4VYbNA7aLRyNU9PK99EY4PS69dMnlaad2boA,5897
|
|
84
84
|
pulumi_aiven/get_organization_user_group.py,sha256=3NlyZQk0Dm-oqrFlOV-egObYSV1252XgGIFWw8_rhIQ,7391
|
|
85
|
-
pulumi_aiven/get_organization_user_list.py,sha256=ar_5IbSm-_F29eduALtQYPgXU8f5fqwPRRmgnbwLGuY,4518
|
|
86
85
|
pulumi_aiven/get_organizational_unit.py,sha256=UJj61rPfgnpo2wgCK5wNVgHgiZU8Qvss0KrJnQoz1R4,5498
|
|
87
86
|
pulumi_aiven/get_pg.py,sha256=YtuukRaLfnRcrxDG86uZ7dKthY4jMoYzLUi4DnDJeeY,24724
|
|
88
87
|
pulumi_aiven/get_pg_database.py,sha256=b__27cxYvirOwy2bV6Jidm5nHX9sppoPCS6fffvSgaE,8720
|
|
89
88
|
pulumi_aiven/get_pg_user.py,sha256=4kAt3iBeF1Utxto4UZOGWw6wtrOpYuDfW8VEYgt1YJM,9653
|
|
90
89
|
pulumi_aiven/get_project.py,sha256=i6a_N7HJsSFIr1hLjugDcQuQsfVu4hNbsirsHHLDxB4,13758
|
|
91
|
-
pulumi_aiven/get_project_user.py,sha256=
|
|
90
|
+
pulumi_aiven/get_project_user.py,sha256=jk-3W28IJpN6BsaA-T9FW-EIkmUxTx1XfoJ5kaTkoVI,6379
|
|
92
91
|
pulumi_aiven/get_project_vpc.py,sha256=qcxC33OPXvz-wfeTC7X2qMzmtpNMufT-UOxKDXKtyqE,7172
|
|
93
92
|
pulumi_aiven/get_redis.py,sha256=3rvrelbprD988AYWbR11Yn-z9rgpWbMeFqnoaigUn2Y,24867
|
|
94
93
|
pulumi_aiven/get_redis_user.py,sha256=A7lL5ZN0AD4e3PVV-DxH6mIm6g13tdckf4qd2fKWha4,10914
|
|
95
94
|
pulumi_aiven/get_service_component.py,sha256=YkA71k-Rva7m2E5lcym35yUge529VazxE4TXh1v8Gso,11627
|
|
96
95
|
pulumi_aiven/get_service_integration.py,sha256=Kgd-ef9fjacFDV9uingraIykcGRICKBjd4UXWJ_6hrU,25453
|
|
97
96
|
pulumi_aiven/get_service_integration_endpoint.py,sha256=bqmJ6XKilTlqGc8vXBP66-G3ZM5YgYkAe06v6T7X_qk,22215
|
|
98
|
-
pulumi_aiven/get_thanos.py,sha256=
|
|
97
|
+
pulumi_aiven/get_thanos.py,sha256=lHDHiIxCYdWzVSwK39pF4uimdVdyL6xw1ER_vAiBhRY,24509
|
|
99
98
|
pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=RDle8fWIB5pZs4KOthnIMN26t5JPX-MToy0cczmpPAc,10298
|
|
100
99
|
pulumi_aiven/get_valkey.py,sha256=MEd3JQdhCnV-XX4pDlsQi_c111ZnLwZzpw2vS04ApAA,24952
|
|
101
100
|
pulumi_aiven/get_valkey_user.py,sha256=pGKJ5gIM-rXDEPOdIC6Yffb26XfHcKZcuRGpzUC9kfk,10599
|
|
@@ -108,10 +107,10 @@ pulumi_aiven/kafka_acl.py,sha256=-7UE360QEcPiXUtMfkegqIPVglQkDM2MgkhcuGVCNfM,189
|
|
|
108
107
|
pulumi_aiven/kafka_connect.py,sha256=es1mgUwWZEhDA6GTV-MKHFf1AF6Wm-ID9u4OT3KvtAc,83713
|
|
109
108
|
pulumi_aiven/kafka_connector.py,sha256=BwN92oSatmqxaVO_qPymbY-5VNf5rVrxCJQZ66Fwnqk,25050
|
|
110
109
|
pulumi_aiven/kafka_mirror_maker.py,sha256=QeXAUfMqfbkIgfCc_pfdvSsMwLlg8GNRAhzCRfGoipc,81297
|
|
111
|
-
pulumi_aiven/kafka_schema.py,sha256=
|
|
110
|
+
pulumi_aiven/kafka_schema.py,sha256=9wYYSOjJd_R5Y8Hs4N9P2Kfp7OtLH0vljmyTIG1UWF8,22771
|
|
112
111
|
pulumi_aiven/kafka_schema_configuration.py,sha256=qXnCuKC8AFa1arFZJ4cg-KQEQs65TOvl6-mhst-KHqU,14200
|
|
113
112
|
pulumi_aiven/kafka_schema_registry_acl.py,sha256=3MseIwSoEn0dYwePspK68rVwnpC2gHItmNgrVv0oohE,19623
|
|
114
|
-
pulumi_aiven/kafka_topic.py,sha256=
|
|
113
|
+
pulumi_aiven/kafka_topic.py,sha256=l6UevxbWKOI_8iXdV1gJ_WkFq5yIfIPZZ-ZoNh2hh4Y,28259
|
|
115
114
|
pulumi_aiven/kafka_user.py,sha256=5tjVeLhqOm-sZwNRnacptp9prEhbubsKVxbZgaQz5jc,18564
|
|
116
115
|
pulumi_aiven/m3_aggregator.py,sha256=jf0o2SmSywZSK1flDFphus63loqGxGZnPAsmEpmo3dM,82838
|
|
117
116
|
pulumi_aiven/m3_db.py,sha256=acZ3M_zvKLqrFBv-O9UmDSoQwHp4o67tnV-bCvZ0DEA,81241
|
|
@@ -128,35 +127,35 @@ pulumi_aiven/opensearch_user.py,sha256=9nV4kt7Lo1TkLoQK6F0wmt7uJtqXvQhQTKACEVfqp
|
|
|
128
127
|
pulumi_aiven/organization.py,sha256=zXB949qBPuAW05VXXoFkIe5ZlEBwZTVlJDH10UGGTqo,11118
|
|
129
128
|
pulumi_aiven/organization_application_user.py,sha256=DvyL7Ujh7oGysLAT6WVSFk02iYV-1H8KzJNlSX5YkT0,15193
|
|
130
129
|
pulumi_aiven/organization_application_user_token.py,sha256=lrKPE0rZ_QZ2sWqgUgTN0c99ZWBJS2L4Sdkii9G01U8,33082
|
|
131
|
-
pulumi_aiven/organization_group_project.py,sha256=
|
|
130
|
+
pulumi_aiven/organization_group_project.py,sha256=HAKO8QxhnVRzq03k2v-EpHfRn62PnJ_c3-1CZHL-WOg,14753
|
|
132
131
|
pulumi_aiven/organization_permission.py,sha256=Hw1l1NR8V7arM11ht2iVCzRs5EpMsst_1H3O-5oyF2g,15511
|
|
133
132
|
pulumi_aiven/organization_user.py,sha256=4FHd1BCXslZnBdd9r_TpVaaLWdzTngJG5wFB695GnIc,15729
|
|
134
133
|
pulumi_aiven/organization_user_group.py,sha256=133e0-VfMmTnWDZPPnS4xzE-UU6R4PY4am7zMGMUrGo,14832
|
|
135
134
|
pulumi_aiven/organization_user_group_member.py,sha256=5iPu5lCGx5y-utd9w2iCKc2E7PHRTFnVVAF3j23pstc,14784
|
|
136
135
|
pulumi_aiven/organizational_unit.py,sha256=OnowaL-y9MDhQAQeTxuv9gmAC8iau2ZVnKCBdbNJfo8,11639
|
|
137
|
-
pulumi_aiven/outputs.py,sha256=
|
|
136
|
+
pulumi_aiven/outputs.py,sha256=5-CtCOV1FKkcaaGJhjRUeQcdGTMdsUvtDGkpTqWRKUQ,2017700
|
|
138
137
|
pulumi_aiven/pg.py,sha256=WpyAAeYUys4VhEknv2ma7rrdSMHylvFwdD5YHVVEMGQ,79367
|
|
139
138
|
pulumi_aiven/pg_database.py,sha256=bnts8s-gR6mPTf5fHY3EVPRqiHhze8roG6V16h2-Llc,20153
|
|
140
139
|
pulumi_aiven/pg_user.py,sha256=__gTbX36EdjtCthLm09hZn2PRerlPt7jpRCQuzqJ4k0,22036
|
|
141
|
-
pulumi_aiven/project.py,sha256=
|
|
142
|
-
pulumi_aiven/project_user.py,sha256=
|
|
140
|
+
pulumi_aiven/project.py,sha256=H1RdROl0yISvnrUIIuOtoCr0PxbZUVRptVnpkSWeHfg,45579
|
|
141
|
+
pulumi_aiven/project_user.py,sha256=DTRdb5Y8Y6KbCFl4qrCrVKRVpJN8zjc8-PD1ZAhxRHM,13643
|
|
143
142
|
pulumi_aiven/project_vpc.py,sha256=rcWiFl2dHdwrXFTZ2WYLpxiUZX-q9tPPZVUvl2bjWAQ,14082
|
|
144
143
|
pulumi_aiven/provider.py,sha256=N7Y-HFsoDOWeKC6iV1NEkU07Eg9ZV8d4FKFHKu5jHbY,5055
|
|
145
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
144
|
+
pulumi_aiven/pulumi-plugin.json,sha256=bgBQ4AML2Ivz2am2rbs-LasrhCdWax-miEJMpyOTLsk,82
|
|
146
145
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
146
|
pulumi_aiven/redis.py,sha256=hfEGhC01Rpkw-DgsCUYrFNaFjvFQmMHu6LToF5aBcoY,81268
|
|
148
147
|
pulumi_aiven/redis_user.py,sha256=WHnebXTj2UgkTtZf3I6-zqyNQtla131jHAnUJaF1DUA,29358
|
|
149
148
|
pulumi_aiven/service_integration.py,sha256=xORixpg5IqrV73cyExDN-8227gWx5IL7LjHZh0BqeVk,76583
|
|
150
149
|
pulumi_aiven/service_integration_endpoint.py,sha256=vS-6hUwR4hVFPM7BHerjI7PPq7RMesE6WqmcsyDjawA,74683
|
|
151
150
|
pulumi_aiven/static_ip.py,sha256=gs5Ps9wcnK8ont6Ps0jZTMmkhNBNMXzOt4a3uF98p38,14102
|
|
152
|
-
pulumi_aiven/thanos.py,sha256=
|
|
151
|
+
pulumi_aiven/thanos.py,sha256=TzE4Zs0pnvw-oGSYPK4q4JmVW6kVIOJyRf_zbadqYuc,80185
|
|
153
152
|
pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=kM9Z__ia5sxeOhkLMhZVpcDB_QCkaEj-JWxnPL8ov68,22081
|
|
154
153
|
pulumi_aiven/valkey.py,sha256=4GHaFa0mlMpfuyq1owltdFN1JswUog1Z-cHceDKVQ90,81275
|
|
155
154
|
pulumi_aiven/valkey_user.py,sha256=SE-l3-V73UP39vZ8etGuKm_Hk8ROfOLjh-pgEWcrfzY,28714
|
|
156
155
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
157
156
|
pulumi_aiven/config/__init__.pyi,sha256=6XkZH3EU98MVgoMLPFHFfEK17BQQzz0S0QFMh1FZrs0,639
|
|
158
157
|
pulumi_aiven/config/vars.py,sha256=jRqbkEfNSP8ga5cnbMhAzHUUb7ahIUROUqR5_KGkobM,832
|
|
159
|
-
pulumi_aiven-6.27.
|
|
160
|
-
pulumi_aiven-6.27.
|
|
161
|
-
pulumi_aiven-6.27.
|
|
162
|
-
pulumi_aiven-6.27.
|
|
158
|
+
pulumi_aiven-6.27.0a1728590805.dist-info/METADATA,sha256=DS1xbzPuapBtikN4ULJH4Rft1HeaiYW9rRtIGkjm_ck,2600
|
|
159
|
+
pulumi_aiven-6.27.0a1728590805.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
160
|
+
pulumi_aiven-6.27.0a1728590805.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
161
|
+
pulumi_aiven-6.27.0a1728590805.dist-info/RECORD,,
|
|
@@ -1,121 +0,0 @@
|
|
|
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 copy
|
|
6
|
-
import warnings
|
|
7
|
-
import sys
|
|
8
|
-
import pulumi
|
|
9
|
-
import pulumi.runtime
|
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
-
if sys.version_info >= (3, 11):
|
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
-
else:
|
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
-
from . import _utilities
|
|
16
|
-
from . import outputs
|
|
17
|
-
|
|
18
|
-
__all__ = [
|
|
19
|
-
'GetOrganizationUserListResult',
|
|
20
|
-
'AwaitableGetOrganizationUserListResult',
|
|
21
|
-
'get_organization_user_list',
|
|
22
|
-
'get_organization_user_list_output',
|
|
23
|
-
]
|
|
24
|
-
|
|
25
|
-
@pulumi.output_type
|
|
26
|
-
class GetOrganizationUserListResult:
|
|
27
|
-
"""
|
|
28
|
-
A collection of values returned by getOrganizationUserList.
|
|
29
|
-
"""
|
|
30
|
-
def __init__(__self__, id=None, name=None, users=None):
|
|
31
|
-
if id and not isinstance(id, str):
|
|
32
|
-
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
-
pulumi.set(__self__, "id", id)
|
|
34
|
-
if name and not isinstance(name, str):
|
|
35
|
-
raise TypeError("Expected argument 'name' to be a str")
|
|
36
|
-
pulumi.set(__self__, "name", name)
|
|
37
|
-
if users and not isinstance(users, list):
|
|
38
|
-
raise TypeError("Expected argument 'users' to be a list")
|
|
39
|
-
pulumi.set(__self__, "users", users)
|
|
40
|
-
|
|
41
|
-
@property
|
|
42
|
-
@pulumi.getter
|
|
43
|
-
def id(self) -> Optional[str]:
|
|
44
|
-
"""
|
|
45
|
-
Organization id. Example: `org12345678`.
|
|
46
|
-
"""
|
|
47
|
-
return pulumi.get(self, "id")
|
|
48
|
-
|
|
49
|
-
@property
|
|
50
|
-
@pulumi.getter
|
|
51
|
-
def name(self) -> Optional[str]:
|
|
52
|
-
"""
|
|
53
|
-
Organization name. Example: `aiven`.
|
|
54
|
-
"""
|
|
55
|
-
return pulumi.get(self, "name")
|
|
56
|
-
|
|
57
|
-
@property
|
|
58
|
-
@pulumi.getter
|
|
59
|
-
def users(self) -> Sequence['outputs.GetOrganizationUserListUserResult']:
|
|
60
|
-
"""
|
|
61
|
-
List of users of the organization
|
|
62
|
-
"""
|
|
63
|
-
return pulumi.get(self, "users")
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
class AwaitableGetOrganizationUserListResult(GetOrganizationUserListResult):
|
|
67
|
-
# pylint: disable=using-constant-test
|
|
68
|
-
def __await__(self):
|
|
69
|
-
if False:
|
|
70
|
-
yield self
|
|
71
|
-
return GetOrganizationUserListResult(
|
|
72
|
-
id=self.id,
|
|
73
|
-
name=self.name,
|
|
74
|
-
users=self.users)
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
def get_organization_user_list(id: Optional[str] = None,
|
|
78
|
-
name: Optional[str] = None,
|
|
79
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationUserListResult:
|
|
80
|
-
"""
|
|
81
|
-
List of users of the organization.
|
|
82
|
-
|
|
83
|
-
**This resource is in the beta stage and may change without notice.** Set
|
|
84
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
:param str id: Organization id. Example: `org12345678`.
|
|
88
|
-
:param str name: Organization name. Example: `aiven`.
|
|
89
|
-
"""
|
|
90
|
-
__args__ = dict()
|
|
91
|
-
__args__['id'] = id
|
|
92
|
-
__args__['name'] = name
|
|
93
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
94
|
-
__ret__ = pulumi.runtime.invoke('aiven:index/getOrganizationUserList:getOrganizationUserList', __args__, opts=opts, typ=GetOrganizationUserListResult).value
|
|
95
|
-
|
|
96
|
-
return AwaitableGetOrganizationUserListResult(
|
|
97
|
-
id=pulumi.get(__ret__, 'id'),
|
|
98
|
-
name=pulumi.get(__ret__, 'name'),
|
|
99
|
-
users=pulumi.get(__ret__, 'users'))
|
|
100
|
-
def get_organization_user_list_output(id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
101
|
-
name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
102
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOrganizationUserListResult]:
|
|
103
|
-
"""
|
|
104
|
-
List of users of the organization.
|
|
105
|
-
|
|
106
|
-
**This resource is in the beta stage and may change without notice.** Set
|
|
107
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
:param str id: Organization id. Example: `org12345678`.
|
|
111
|
-
:param str name: Organization name. Example: `aiven`.
|
|
112
|
-
"""
|
|
113
|
-
__args__ = dict()
|
|
114
|
-
__args__['id'] = id
|
|
115
|
-
__args__['name'] = name
|
|
116
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
117
|
-
__ret__ = pulumi.runtime.invoke_output('aiven:index/getOrganizationUserList:getOrganizationUserList', __args__, opts=opts, typ=GetOrganizationUserListResult)
|
|
118
|
-
return __ret__.apply(lambda __response__: GetOrganizationUserListResult(
|
|
119
|
-
id=pulumi.get(__response__, 'id'),
|
|
120
|
-
name=pulumi.get(__response__, 'name'),
|
|
121
|
-
users=pulumi.get(__response__, 'users')))
|
|
File without changes
|