pulumi-aiven 6.25.0a1727423161__py3-none-any.whl → 6.26.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +1 -0
- pulumi_aiven/_inputs.py +261 -53
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +7 -2
- pulumi_aiven/clickhouse.py +6 -1
- pulumi_aiven/dragonfly.py +7 -2
- pulumi_aiven/flink.py +7 -2
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_external_identity.py +146 -0
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration.py +17 -4
- pulumi_aiven/get_thanos.py +0 -6
- pulumi_aiven/get_valkey.py +0 -6
- pulumi_aiven/get_valkey_user.py +0 -6
- pulumi_aiven/grafana.py +7 -2
- pulumi_aiven/influx_db.py +7 -2
- pulumi_aiven/kafka.py +7 -2
- pulumi_aiven/kafka_connect.py +7 -2
- pulumi_aiven/kafka_mirror_maker.py +7 -2
- pulumi_aiven/m3_aggregator.py +7 -2
- pulumi_aiven/m3_db.py +7 -2
- pulumi_aiven/my_sql.py +7 -2
- pulumi_aiven/open_search.py +7 -2
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/organization_permission.py +89 -21
- pulumi_aiven/outputs.py +424 -76
- pulumi_aiven/pg.py +7 -2
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -2
- pulumi_aiven/service_integration.py +54 -7
- pulumi_aiven/static_ip.py +2 -2
- pulumi_aiven/thanos.py +7 -8
- pulumi_aiven/valkey.py +7 -8
- pulumi_aiven/valkey_user.py +0 -6
- {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/RECORD +39 -38
- {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.25.0a1727423161.dist-info → pulumi_aiven-6.26.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -50,6 +50,7 @@ from .get_clickhouse_database import *
|
|
|
50
50
|
from .get_clickhouse_user import *
|
|
51
51
|
from .get_connection_pool import *
|
|
52
52
|
from .get_dragonfly import *
|
|
53
|
+
from .get_external_identity import *
|
|
53
54
|
from .get_flink import *
|
|
54
55
|
from .get_flink_application import *
|
|
55
56
|
from .get_flink_application_version import *
|