pulumi-aiven 6.13.0a1710156545__tar.gz → 6.31.0__tar.gz
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-6.13.0a1710156545 → pulumi_aiven-6.31.0}/PKG-INFO +5 -4
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/__init__.py +136 -0
- pulumi_aiven-6.31.0/pulumi_aiven/_inputs.py +39623 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/_utilities.py +41 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/account.py +32 -45
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/account_authentication.py +24 -9
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/account_team.py +35 -14
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/account_team_member.py +48 -39
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/account_team_project.py +40 -27
- pulumi_aiven-6.31.0/pulumi_aiven/alloydbomni.py +1335 -0
- pulumi_aiven-6.31.0/pulumi_aiven/alloydbomni_database.py +347 -0
- pulumi_aiven-6.31.0/pulumi_aiven/alloydbomni_user.py +433 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/aws_privatelink.py +44 -43
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/aws_vpc_peering_connection.py +72 -61
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/azure_privatelink.py +54 -53
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/azure_vpc_peering_connection.py +86 -77
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/billing_group.py +33 -34
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/cassandra.py +145 -126
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/cassandra_user.py +59 -58
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/clickhouse.py +133 -114
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/clickhouse_database.py +58 -62
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/clickhouse_grant.py +135 -134
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/clickhouse_role.py +36 -49
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/clickhouse_user.py +50 -49
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/config/__init__.pyi +5 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/config/vars.py +5 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/connection_pool.py +67 -66
- pulumi_aiven-6.31.0/pulumi_aiven/dragonfly.py +1256 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/flink.py +104 -104
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/flink_application.py +58 -55
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/flink_application_deployment.py +178 -73
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/flink_application_version.py +179 -96
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/gcp_privatelink.py +69 -42
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/gcp_privatelink_connection_approval.py +78 -49
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/gcp_vpc_peering_connection.py +49 -48
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_account.py +20 -9
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_account_authentication.py +31 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_account_team.py +18 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_account_team_member.py +29 -14
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_account_team_project.py +19 -6
- pulumi_aiven-6.31.0/pulumi_aiven/get_alloydbomni.py +499 -0
- pulumi_aiven-6.31.0/pulumi_aiven/get_alloydbomni_database.py +168 -0
- pulumi_aiven-6.31.0/pulumi_aiven/get_alloydbomni_user.py +210 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_aws_privatelink.py +33 -24
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_aws_vpc_peering_connection.py +56 -33
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_azure_privatelink.py +37 -26
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_billing_group.py +31 -8
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_cassanda.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_cassandra.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_cassandra_user.py +42 -30
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_clickhouse.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_clickhouse_database.py +35 -26
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_clickhouse_user.py +40 -29
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_connection_pool.py +43 -30
- pulumi_aiven-6.31.0/pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven-6.31.0/pulumi_aiven/get_external_identity.py +160 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_flink.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_flink_application.py +44 -31
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_flink_application_version.py +55 -37
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_gcp_privatelink.py +63 -7
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -28
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_grafana.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_influx_db.py +41 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_influxdb_database.py +18 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_influxdb_user.py +21 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka.py +59 -25
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_acl.py +50 -37
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_connect.py +54 -36
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_connector.py +44 -28
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_mirror_maker.py +50 -32
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_schema.py +35 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_schema_configuration.py +32 -21
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_topic.py +70 -29
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_kafka_user.py +42 -30
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_m3_aggregator.py +51 -19
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_m3_db.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_m3db_user.py +38 -28
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_mirror_maker_replication_flow.py +86 -25
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_my_sql.py +50 -18
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_mysql_database.py +31 -22
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_mysql_user.py +36 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_open_search.py +50 -18
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_open_search_acl_config.py +27 -19
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_open_search_acl_rule.py +37 -25
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_opensearch_security_plugin_config.py +29 -19
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_opensearch_user.py +32 -22
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_organization.py +25 -17
- pulumi_aiven-6.31.0/pulumi_aiven/get_organization_application_user.py +176 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_organization_user.py +18 -5
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_organization_user_group.py +48 -14
- pulumi_aiven-6.31.0/pulumi_aiven/get_organization_user_list.py +121 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_organizational_unit.py +26 -14
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_pg.py +55 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_pg_database.py +39 -28
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_pg_user.py +44 -31
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_project.py +43 -26
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_project_user.py +27 -19
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_project_vpc.py +31 -23
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_redis.py +50 -18
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_redis_user.py +40 -26
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_service_component.py +40 -22
- pulumi_aiven-6.31.0/pulumi_aiven/get_service_integration.py +445 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_service_integration_endpoint.py +128 -37
- pulumi_aiven-6.31.0/pulumi_aiven/get_thanos.py +499 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -22
- pulumi_aiven-6.31.0/pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven-6.31.0/pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven-6.31.0/pulumi_aiven/grafana.py +1265 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/influx_db.py +127 -90
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/influxdb_database.py +40 -55
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/influxdb_user.py +47 -42
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka.py +157 -144
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_acl.py +64 -57
- pulumi_aiven-6.31.0/pulumi_aiven/kafka_connect.py +1275 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_connector.py +67 -60
- pulumi_aiven-6.31.0/pulumi_aiven/kafka_mirror_maker.py +1219 -0
- pulumi_aiven-6.31.0/pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven-6.31.0/pulumi_aiven/kafka_quota.py +604 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_schema.py +63 -58
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_schema_configuration.py +25 -24
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_topic.py +184 -65
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/kafka_user.py +59 -58
- pulumi_aiven-6.31.0/pulumi_aiven/m3_aggregator.py +1260 -0
- pulumi_aiven-6.31.0/pulumi_aiven/m3_db.py +1268 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/m3db_user.py +51 -50
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/mirror_maker_replication_flow.py +215 -55
- pulumi_aiven-6.31.0/pulumi_aiven/my_sql.py +1274 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/mysql_database.py +32 -51
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/mysql_user.py +37 -36
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/open_search.py +126 -107
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/open_search_acl_config.py +33 -36
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/open_search_acl_rule.py +55 -54
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/opensearch_user.py +30 -29
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/organization.py +18 -17
- pulumi_aiven-6.31.0/pulumi_aiven/organization_application_user.py +345 -0
- pulumi_aiven-6.31.0/pulumi_aiven/organization_application_user_token.py +711 -0
- pulumi_aiven-6.31.0/pulumi_aiven/organization_group_project.py +349 -0
- pulumi_aiven-6.31.0/pulumi_aiven/organization_permission.py +421 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/organization_user.py +25 -46
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/organization_user_group.py +64 -23
- pulumi_aiven-6.31.0/pulumi_aiven/organization_user_group_member.py +359 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/organizational_unit.py +41 -36
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/outputs.py +38976 -21894
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/pg.py +92 -88
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/pg_database.py +52 -71
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/pg_user.py +80 -65
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/project.py +111 -102
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/project_user.py +44 -35
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/project_vpc.py +58 -29
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/provider.py +5 -0
- pulumi_aiven-6.31.0/pulumi_aiven/pulumi-plugin.json +5 -0
- pulumi_aiven-6.31.0/pulumi_aiven/redis.py +1266 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/redis_user.py +58 -57
- pulumi_aiven-6.31.0/pulumi_aiven/service_integration.py +1237 -0
- pulumi_aiven-6.31.0/pulumi_aiven/service_integration_endpoint.py +1191 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/static_ip.py +21 -16
- pulumi_aiven-6.31.0/pulumi_aiven/thanos.py +1262 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/transit_gateway_vpc_attachment.py +44 -58
- pulumi_aiven-6.31.0/pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven-6.31.0/pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven.egg-info/PKG-INFO +5 -4
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven.egg-info/SOURCES.txt +24 -0
- pulumi_aiven-6.31.0/pulumi_aiven.egg-info/requires.txt +6 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pyproject.toml +3 -3
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/_inputs.py +0 -20585
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/get_service_integration.py +0 -335
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/grafana.py +0 -1399
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/kafka_connect.py +0 -1406
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/kafka_mirror_maker.py +0 -1402
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/m3_aggregator.py +0 -1396
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/m3_db.py +0 -1404
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/my_sql.py +0 -1410
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/pulumi-plugin.json +0 -4
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/redis.py +0 -1402
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/service_integration.py +0 -891
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven/service_integration_endpoint.py +0 -883
- pulumi_aiven-6.13.0a1710156545/pulumi_aiven.egg-info/requires.txt +0 -3
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/README.md +0 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/config/__init__.py +0 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven/py.typed +0 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven.egg-info/dependency_links.txt +0 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/pulumi_aiven.egg-info/top_level.txt +0 -0
- {pulumi_aiven-6.13.0a1710156545 → pulumi_aiven-6.31.0}/setup.cfg +0 -0
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: pulumi_aiven
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.31.0
|
|
4
4
|
Summary: A Pulumi package for creating and managing Aiven cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-aiven
|
|
8
8
|
Keywords: pulumi,aiven
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.142.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://github.com/pulumi/pulumi-aiven/actions)
|
|
16
17
|
[](https://slack.pulumi.com)
|
|
@@ -10,6 +10,9 @@ from .account_authentication import *
|
|
|
10
10
|
from .account_team import *
|
|
11
11
|
from .account_team_member import *
|
|
12
12
|
from .account_team_project import *
|
|
13
|
+
from .alloydbomni import *
|
|
14
|
+
from .alloydbomni_database import *
|
|
15
|
+
from .alloydbomni_user import *
|
|
13
16
|
from .aws_privatelink import *
|
|
14
17
|
from .aws_vpc_peering_connection import *
|
|
15
18
|
from .azure_privatelink import *
|
|
@@ -24,6 +27,7 @@ from .clickhouse_grant import *
|
|
|
24
27
|
from .clickhouse_role import *
|
|
25
28
|
from .clickhouse_user import *
|
|
26
29
|
from .connection_pool import *
|
|
30
|
+
from .dragonfly import *
|
|
27
31
|
from .flink import *
|
|
28
32
|
from .flink_application import *
|
|
29
33
|
from .flink_application_deployment import *
|
|
@@ -36,6 +40,9 @@ from .get_account_authentication import *
|
|
|
36
40
|
from .get_account_team import *
|
|
37
41
|
from .get_account_team_member import *
|
|
38
42
|
from .get_account_team_project import *
|
|
43
|
+
from .get_alloydbomni import *
|
|
44
|
+
from .get_alloydbomni_database import *
|
|
45
|
+
from .get_alloydbomni_user import *
|
|
39
46
|
from .get_aws_privatelink import *
|
|
40
47
|
from .get_aws_vpc_peering_connection import *
|
|
41
48
|
from .get_azure_privatelink import *
|
|
@@ -48,6 +55,8 @@ from .get_clickhouse import *
|
|
|
48
55
|
from .get_clickhouse_database import *
|
|
49
56
|
from .get_clickhouse_user import *
|
|
50
57
|
from .get_connection_pool import *
|
|
58
|
+
from .get_dragonfly import *
|
|
59
|
+
from .get_external_identity import *
|
|
51
60
|
from .get_flink import *
|
|
52
61
|
from .get_flink_application import *
|
|
53
62
|
from .get_flink_application_version import *
|
|
@@ -80,8 +89,10 @@ from .get_open_search_acl_rule import *
|
|
|
80
89
|
from .get_opensearch_security_plugin_config import *
|
|
81
90
|
from .get_opensearch_user import *
|
|
82
91
|
from .get_organization import *
|
|
92
|
+
from .get_organization_application_user import *
|
|
83
93
|
from .get_organization_user import *
|
|
84
94
|
from .get_organization_user_group import *
|
|
95
|
+
from .get_organization_user_list import *
|
|
85
96
|
from .get_organizational_unit import *
|
|
86
97
|
from .get_pg import *
|
|
87
98
|
from .get_pg_database import *
|
|
@@ -94,7 +105,10 @@ from .get_redis_user import *
|
|
|
94
105
|
from .get_service_component import *
|
|
95
106
|
from .get_service_integration import *
|
|
96
107
|
from .get_service_integration_endpoint import *
|
|
108
|
+
from .get_thanos import *
|
|
97
109
|
from .get_transit_gateway_vpc_attachment import *
|
|
110
|
+
from .get_valkey import *
|
|
111
|
+
from .get_valkey_user import *
|
|
98
112
|
from .grafana import *
|
|
99
113
|
from .influx_db import *
|
|
100
114
|
from .influxdb_database import *
|
|
@@ -104,6 +118,8 @@ from .kafka_acl import *
|
|
|
104
118
|
from .kafka_connect import *
|
|
105
119
|
from .kafka_connector import *
|
|
106
120
|
from .kafka_mirror_maker import *
|
|
121
|
+
from .kafka_native_acl import *
|
|
122
|
+
from .kafka_quota import *
|
|
107
123
|
from .kafka_schema import *
|
|
108
124
|
from .kafka_schema_configuration import *
|
|
109
125
|
from .kafka_schema_registry_acl import *
|
|
@@ -122,8 +138,13 @@ from .open_search_acl_rule import *
|
|
|
122
138
|
from .opensearch_security_plugin_config import *
|
|
123
139
|
from .opensearch_user import *
|
|
124
140
|
from .organization import *
|
|
141
|
+
from .organization_application_user import *
|
|
142
|
+
from .organization_application_user_token import *
|
|
143
|
+
from .organization_group_project import *
|
|
144
|
+
from .organization_permission import *
|
|
125
145
|
from .organization_user import *
|
|
126
146
|
from .organization_user_group import *
|
|
147
|
+
from .organization_user_group_member import *
|
|
127
148
|
from .organizational_unit import *
|
|
128
149
|
from .pg import *
|
|
129
150
|
from .pg_database import *
|
|
@@ -137,7 +158,10 @@ from .redis_user import *
|
|
|
137
158
|
from .service_integration import *
|
|
138
159
|
from .service_integration_endpoint import *
|
|
139
160
|
from .static_ip import *
|
|
161
|
+
from .thanos import *
|
|
140
162
|
from .transit_gateway_vpc_attachment import *
|
|
163
|
+
from .valkey import *
|
|
164
|
+
from .valkey_user import *
|
|
141
165
|
from ._inputs import *
|
|
142
166
|
from . import outputs
|
|
143
167
|
|
|
@@ -191,6 +215,30 @@ _utilities.register(
|
|
|
191
215
|
"aiven:index/accountTeamProject:AccountTeamProject": "AccountTeamProject"
|
|
192
216
|
}
|
|
193
217
|
},
|
|
218
|
+
{
|
|
219
|
+
"pkg": "aiven",
|
|
220
|
+
"mod": "index/alloydbomni",
|
|
221
|
+
"fqn": "pulumi_aiven",
|
|
222
|
+
"classes": {
|
|
223
|
+
"aiven:index/alloydbomni:Alloydbomni": "Alloydbomni"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"pkg": "aiven",
|
|
228
|
+
"mod": "index/alloydbomniDatabase",
|
|
229
|
+
"fqn": "pulumi_aiven",
|
|
230
|
+
"classes": {
|
|
231
|
+
"aiven:index/alloydbomniDatabase:AlloydbomniDatabase": "AlloydbomniDatabase"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"pkg": "aiven",
|
|
236
|
+
"mod": "index/alloydbomniUser",
|
|
237
|
+
"fqn": "pulumi_aiven",
|
|
238
|
+
"classes": {
|
|
239
|
+
"aiven:index/alloydbomniUser:AlloydbomniUser": "AlloydbomniUser"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
194
242
|
{
|
|
195
243
|
"pkg": "aiven",
|
|
196
244
|
"mod": "index/awsPrivatelink",
|
|
@@ -303,6 +351,14 @@ _utilities.register(
|
|
|
303
351
|
"aiven:index/connectionPool:ConnectionPool": "ConnectionPool"
|
|
304
352
|
}
|
|
305
353
|
},
|
|
354
|
+
{
|
|
355
|
+
"pkg": "aiven",
|
|
356
|
+
"mod": "index/dragonfly",
|
|
357
|
+
"fqn": "pulumi_aiven",
|
|
358
|
+
"classes": {
|
|
359
|
+
"aiven:index/dragonfly:Dragonfly": "Dragonfly"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
306
362
|
{
|
|
307
363
|
"pkg": "aiven",
|
|
308
364
|
"mod": "index/flink",
|
|
@@ -431,6 +487,22 @@ _utilities.register(
|
|
|
431
487
|
"aiven:index/kafkaMirrorMaker:KafkaMirrorMaker": "KafkaMirrorMaker"
|
|
432
488
|
}
|
|
433
489
|
},
|
|
490
|
+
{
|
|
491
|
+
"pkg": "aiven",
|
|
492
|
+
"mod": "index/kafkaNativeAcl",
|
|
493
|
+
"fqn": "pulumi_aiven",
|
|
494
|
+
"classes": {
|
|
495
|
+
"aiven:index/kafkaNativeAcl:KafkaNativeAcl": "KafkaNativeAcl"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"pkg": "aiven",
|
|
500
|
+
"mod": "index/kafkaQuota",
|
|
501
|
+
"fqn": "pulumi_aiven",
|
|
502
|
+
"classes": {
|
|
503
|
+
"aiven:index/kafkaQuota:KafkaQuota": "KafkaQuota"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
434
506
|
{
|
|
435
507
|
"pkg": "aiven",
|
|
436
508
|
"mod": "index/kafkaSchema",
|
|
@@ -575,6 +647,38 @@ _utilities.register(
|
|
|
575
647
|
"aiven:index/organization:Organization": "Organization"
|
|
576
648
|
}
|
|
577
649
|
},
|
|
650
|
+
{
|
|
651
|
+
"pkg": "aiven",
|
|
652
|
+
"mod": "index/organizationApplicationUser",
|
|
653
|
+
"fqn": "pulumi_aiven",
|
|
654
|
+
"classes": {
|
|
655
|
+
"aiven:index/organizationApplicationUser:OrganizationApplicationUser": "OrganizationApplicationUser"
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"pkg": "aiven",
|
|
660
|
+
"mod": "index/organizationApplicationUserToken",
|
|
661
|
+
"fqn": "pulumi_aiven",
|
|
662
|
+
"classes": {
|
|
663
|
+
"aiven:index/organizationApplicationUserToken:OrganizationApplicationUserToken": "OrganizationApplicationUserToken"
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"pkg": "aiven",
|
|
668
|
+
"mod": "index/organizationGroupProject",
|
|
669
|
+
"fqn": "pulumi_aiven",
|
|
670
|
+
"classes": {
|
|
671
|
+
"aiven:index/organizationGroupProject:OrganizationGroupProject": "OrganizationGroupProject"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"pkg": "aiven",
|
|
676
|
+
"mod": "index/organizationPermission",
|
|
677
|
+
"fqn": "pulumi_aiven",
|
|
678
|
+
"classes": {
|
|
679
|
+
"aiven:index/organizationPermission:OrganizationPermission": "OrganizationPermission"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
578
682
|
{
|
|
579
683
|
"pkg": "aiven",
|
|
580
684
|
"mod": "index/organizationUser",
|
|
@@ -591,6 +695,14 @@ _utilities.register(
|
|
|
591
695
|
"aiven:index/organizationUserGroup:OrganizationUserGroup": "OrganizationUserGroup"
|
|
592
696
|
}
|
|
593
697
|
},
|
|
698
|
+
{
|
|
699
|
+
"pkg": "aiven",
|
|
700
|
+
"mod": "index/organizationUserGroupMember",
|
|
701
|
+
"fqn": "pulumi_aiven",
|
|
702
|
+
"classes": {
|
|
703
|
+
"aiven:index/organizationUserGroupMember:OrganizationUserGroupMember": "OrganizationUserGroupMember"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
594
706
|
{
|
|
595
707
|
"pkg": "aiven",
|
|
596
708
|
"mod": "index/organizationalUnit",
|
|
@@ -687,6 +799,14 @@ _utilities.register(
|
|
|
687
799
|
"aiven:index/staticIp:StaticIp": "StaticIp"
|
|
688
800
|
}
|
|
689
801
|
},
|
|
802
|
+
{
|
|
803
|
+
"pkg": "aiven",
|
|
804
|
+
"mod": "index/thanos",
|
|
805
|
+
"fqn": "pulumi_aiven",
|
|
806
|
+
"classes": {
|
|
807
|
+
"aiven:index/thanos:Thanos": "Thanos"
|
|
808
|
+
}
|
|
809
|
+
},
|
|
690
810
|
{
|
|
691
811
|
"pkg": "aiven",
|
|
692
812
|
"mod": "index/transitGatewayVpcAttachment",
|
|
@@ -694,6 +814,22 @@ _utilities.register(
|
|
|
694
814
|
"classes": {
|
|
695
815
|
"aiven:index/transitGatewayVpcAttachment:TransitGatewayVpcAttachment": "TransitGatewayVpcAttachment"
|
|
696
816
|
}
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"pkg": "aiven",
|
|
820
|
+
"mod": "index/valkey",
|
|
821
|
+
"fqn": "pulumi_aiven",
|
|
822
|
+
"classes": {
|
|
823
|
+
"aiven:index/valkey:Valkey": "Valkey"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"pkg": "aiven",
|
|
828
|
+
"mod": "index/valkeyUser",
|
|
829
|
+
"fqn": "pulumi_aiven",
|
|
830
|
+
"classes": {
|
|
831
|
+
"aiven:index/valkeyUser:ValkeyUser": "ValkeyUser"
|
|
832
|
+
}
|
|
697
833
|
}
|
|
698
834
|
]
|
|
699
835
|
""",
|