pulumi-aiven 6.38.0a1747199280__py3-none-any.whl → 6.38.0a1747647727__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 +9 -0
- pulumi_aiven/_inputs.py +1302 -160
- pulumi_aiven/clickhouse_grant.py +18 -0
- pulumi_aiven/get_external_identity.py +5 -5
- pulumi_aiven/get_open_search.py +7 -7
- pulumi_aiven/get_open_search_acl_config.py +7 -7
- pulumi_aiven/get_open_search_acl_rule.py +19 -19
- pulumi_aiven/get_opensearch_security_plugin_config.py +7 -7
- pulumi_aiven/get_opensearch_user.py +13 -13
- pulumi_aiven/get_organization.py +24 -6
- pulumi_aiven/get_organization_address.py +52 -29
- pulumi_aiven/get_organization_billing_group.py +38 -15
- pulumi_aiven/get_organization_billing_group_list.py +40 -12
- pulumi_aiven/get_organization_project.py +50 -14
- pulumi_aiven/governance_access.py +418 -0
- pulumi_aiven/open_search.py +17 -19
- pulumi_aiven/open_search_acl_config.py +29 -41
- pulumi_aiven/open_search_acl_rule.py +47 -47
- pulumi_aiven/opensearch_security_plugin_config.py +14 -42
- pulumi_aiven/opensearch_user.py +32 -32
- pulumi_aiven/organization.py +24 -19
- pulumi_aiven/organization_address.py +102 -96
- pulumi_aiven/organization_application_user.py +9 -0
- pulumi_aiven/organization_billing_group.py +66 -60
- pulumi_aiven/organization_project.py +111 -62
- pulumi_aiven/outputs.py +1039 -189
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.38.0a1747199280.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.38.0a1747199280.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/RECORD +31 -30
- {pulumi_aiven-6.38.0a1747199280.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.38.0a1747199280.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -124,6 +124,7 @@ from .get_thanos import *
|
|
|
124
124
|
from .get_transit_gateway_vpc_attachment import *
|
|
125
125
|
from .get_valkey import *
|
|
126
126
|
from .get_valkey_user import *
|
|
127
|
+
from .governance_access import *
|
|
127
128
|
from .grafana import *
|
|
128
129
|
from .influx_db import *
|
|
129
130
|
from .influxdb_database import *
|
|
@@ -482,6 +483,14 @@ _utilities.register(
|
|
|
482
483
|
"aiven:index/gcpVpcPeeringConnection:GcpVpcPeeringConnection": "GcpVpcPeeringConnection"
|
|
483
484
|
}
|
|
484
485
|
},
|
|
486
|
+
{
|
|
487
|
+
"pkg": "aiven",
|
|
488
|
+
"mod": "index/governanceAccess",
|
|
489
|
+
"fqn": "pulumi_aiven",
|
|
490
|
+
"classes": {
|
|
491
|
+
"aiven:index/governanceAccess:GovernanceAccess": "GovernanceAccess"
|
|
492
|
+
}
|
|
493
|
+
},
|
|
485
494
|
{
|
|
486
495
|
"pkg": "aiven",
|
|
487
496
|
"mod": "index/grafana",
|