pulumi-aiven 6.31.0a1736849214__py3-none-any.whl → 6.32.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 +9 -0
- pulumi_aiven/_inputs.py +495 -3
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration_endpoint.py +15 -1
- pulumi_aiven/kafka_quota.py +604 -0
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/organization_user_group_member.py +6 -4
- pulumi_aiven/outputs.py +657 -2
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/service_integration_endpoint.py +47 -0
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/RECORD +17 -16
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -119,6 +119,7 @@ from .kafka_connect import *
|
|
|
119
119
|
from .kafka_connector import *
|
|
120
120
|
from .kafka_mirror_maker import *
|
|
121
121
|
from .kafka_native_acl import *
|
|
122
|
+
from .kafka_quota import *
|
|
122
123
|
from .kafka_schema import *
|
|
123
124
|
from .kafka_schema_configuration import *
|
|
124
125
|
from .kafka_schema_registry_acl import *
|
|
@@ -494,6 +495,14 @@ _utilities.register(
|
|
|
494
495
|
"aiven:index/kafkaNativeAcl:KafkaNativeAcl": "KafkaNativeAcl"
|
|
495
496
|
}
|
|
496
497
|
},
|
|
498
|
+
{
|
|
499
|
+
"pkg": "aiven",
|
|
500
|
+
"mod": "index/kafkaQuota",
|
|
501
|
+
"fqn": "pulumi_aiven",
|
|
502
|
+
"classes": {
|
|
503
|
+
"aiven:index/kafkaQuota:KafkaQuota": "KafkaQuota"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
497
506
|
{
|
|
498
507
|
"pkg": "aiven",
|
|
499
508
|
"mod": "index/kafkaSchema",
|