pulumi-aiven 6.29.0a1733326259__py3-none-any.whl → 6.29.0a1733489396__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 +513 -36
- pulumi_aiven/billing_group.py +7 -7
- pulumi_aiven/get_billing_group.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +15 -1
- pulumi_aiven/get_valkey_user.py +9 -9
- pulumi_aiven/kafka_native_acl.py +534 -0
- pulumi_aiven/mirror_maker_replication_flow.py +47 -0
- pulumi_aiven/outputs.py +719 -48
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/valkey.py +2 -2
- pulumi_aiven/valkey_user.py +142 -48
- {pulumi_aiven-6.29.0a1733326259.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.29.0a1733326259.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/RECORD +16 -15
- {pulumi_aiven-6.29.0a1733326259.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.29.0a1733326259.dist-info → pulumi_aiven-6.29.0a1733489396.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -112,6 +112,7 @@ from .kafka_acl import *
|
|
|
112
112
|
from .kafka_connect import *
|
|
113
113
|
from .kafka_connector import *
|
|
114
114
|
from .kafka_mirror_maker import *
|
|
115
|
+
from .kafka_native_acl import *
|
|
115
116
|
from .kafka_schema import *
|
|
116
117
|
from .kafka_schema_configuration import *
|
|
117
118
|
from .kafka_schema_registry_acl import *
|
|
@@ -455,6 +456,14 @@ _utilities.register(
|
|
|
455
456
|
"aiven:index/kafkaMirrorMaker:KafkaMirrorMaker": "KafkaMirrorMaker"
|
|
456
457
|
}
|
|
457
458
|
},
|
|
459
|
+
{
|
|
460
|
+
"pkg": "aiven",
|
|
461
|
+
"mod": "index/kafkaNativeAcl",
|
|
462
|
+
"fqn": "pulumi_aiven",
|
|
463
|
+
"classes": {
|
|
464
|
+
"aiven:index/kafkaNativeAcl:KafkaNativeAcl": "KafkaNativeAcl"
|
|
465
|
+
}
|
|
466
|
+
},
|
|
458
467
|
{
|
|
459
468
|
"pkg": "aiven",
|
|
460
469
|
"mod": "index/kafkaSchema",
|