pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.0a1728295684__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-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +95 -2
- pulumi_azure_native/authorization/__init__.py +3 -0
- pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
- pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
- pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
- pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
- pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
- pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
- pulumi_azure_native/azurearcdata/__init__.py +8 -0
- pulumi_azure_native/azurearcdata/_enums.py +55 -0
- pulumi_azure_native/azurearcdata/_inputs.py +226 -0
- pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
- pulumi_azure_native/azurearcdata/data_controller.py +3 -3
- pulumi_azure_native/azurearcdata/failover_group.py +3 -3
- pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
- pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
- pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
- pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
- pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
- pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
- pulumi_azure_native/azurearcdata/outputs.py +489 -0
- pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
- pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
- pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
- pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
- pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
- pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
- pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
- pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
- pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
- pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
- pulumi_azure_native/azurefleet/__init__.py +3 -0
- pulumi_azure_native/azurefleet/fleet.py +3 -3
- pulumi_azure_native/azurefleet/get_fleet.py +2 -2
- pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
- pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
- pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
- pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
- pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
- pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
- pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
- pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
- pulumi_azure_native/codesigning/__init__.py +3 -0
- pulumi_azure_native/codesigning/certificate_profile.py +5 -1
- pulumi_azure_native/codesigning/code_signing_account.py +5 -1
- pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
- pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
- pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
- pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
- pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
- pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
- pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
- pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
- pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
- pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
- pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
- pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
- pulumi_azure_native/containerinstance/__init__.py +8 -0
- pulumi_azure_native/containerinstance/_enums.py +1 -1
- pulumi_azure_native/containerinstance/_inputs.py +165 -0
- pulumi_azure_native/containerinstance/container_group.py +3 -3
- pulumi_azure_native/containerinstance/get_container_group.py +2 -2
- pulumi_azure_native/containerinstance/get_n_group.py +216 -0
- pulumi_azure_native/containerinstance/n_group.py +357 -0
- pulumi_azure_native/containerinstance/outputs.py +328 -0
- pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
- pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
- pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
- pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
- pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
- pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
- pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
- pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
- pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
- pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
- pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
- pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
- pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
- pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
- pulumi_azure_native/dbforpostgresql/backup.py +5 -1
- pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
- pulumi_azure_native/dbforpostgresql/database.py +3 -3
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
- pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
- pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
- pulumi_azure_native/dbforpostgresql/migration.py +3 -3
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/server.py +3 -3
- pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
- pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
- pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
- pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
- pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
- pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
- pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
- pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
- pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
- pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
- pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
- pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
- pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
- pulumi_azure_native/iotoperations/__init__.py +3 -0
- pulumi_azure_native/iotoperations/broker.py +3 -3
- pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
- pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
- pulumi_azure_native/iotoperations/broker_listener.py +3 -3
- pulumi_azure_native/iotoperations/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/get_broker.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
- pulumi_azure_native/iotoperations/get_instance.py +2 -2
- pulumi_azure_native/iotoperations/instance.py +3 -3
- pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
- pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
- pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
- pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
- pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/RECORD +273 -164
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'ActiveDirectoryAuthEnum',
|
|
9
|
+
'ArmServerKeyType',
|
|
10
|
+
'AzureManagedDiskPerformanceTiers',
|
|
11
|
+
'CancelEnum',
|
|
12
|
+
'CreateMode',
|
|
13
|
+
'GeoRedundantBackupEnum',
|
|
14
|
+
'HighAvailabilityMode',
|
|
15
|
+
'IdentityType',
|
|
16
|
+
'KeyStatusEnum',
|
|
17
|
+
'LogicalReplicationOnSourceDbEnum',
|
|
18
|
+
'MigrateRolesEnum',
|
|
19
|
+
'MigrationMode',
|
|
20
|
+
'MigrationOption',
|
|
21
|
+
'OverwriteDbsInTargetEnum',
|
|
22
|
+
'PasswordAuthEnum',
|
|
23
|
+
'PrincipalType',
|
|
24
|
+
'PrivateEndpointServiceConnectionStatus',
|
|
25
|
+
'ReadReplicaPromoteMode',
|
|
26
|
+
'ReplicationPromoteOption',
|
|
27
|
+
'ReplicationRole',
|
|
28
|
+
'ServerPublicNetworkAccessState',
|
|
29
|
+
'ServerVersion',
|
|
30
|
+
'SkuTier',
|
|
31
|
+
'SourceType',
|
|
32
|
+
'SslMode',
|
|
33
|
+
'StartDataMigrationEnum',
|
|
34
|
+
'StorageAutoGrow',
|
|
35
|
+
'StorageType',
|
|
36
|
+
'TriggerCutoverEnum',
|
|
37
|
+
'VirtualEndpointType',
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class ActiveDirectoryAuthEnum(str, Enum):
|
|
42
|
+
"""
|
|
43
|
+
If Enabled, Azure Active Directory authentication is enabled.
|
|
44
|
+
"""
|
|
45
|
+
ENABLED = "Enabled"
|
|
46
|
+
DISABLED = "Disabled"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ArmServerKeyType(str, Enum):
|
|
50
|
+
"""
|
|
51
|
+
Data encryption type to depict if it is System Managed vs Azure Key vault.
|
|
52
|
+
"""
|
|
53
|
+
SYSTEM_MANAGED = "SystemManaged"
|
|
54
|
+
AZURE_KEY_VAULT = "AzureKeyVault"
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class AzureManagedDiskPerformanceTiers(str, Enum):
|
|
58
|
+
"""
|
|
59
|
+
Name of storage tier for IOPS.
|
|
60
|
+
"""
|
|
61
|
+
P1 = "P1"
|
|
62
|
+
P2 = "P2"
|
|
63
|
+
P3 = "P3"
|
|
64
|
+
P4 = "P4"
|
|
65
|
+
P6 = "P6"
|
|
66
|
+
P10 = "P10"
|
|
67
|
+
P15 = "P15"
|
|
68
|
+
P20 = "P20"
|
|
69
|
+
P30 = "P30"
|
|
70
|
+
P40 = "P40"
|
|
71
|
+
P50 = "P50"
|
|
72
|
+
P60 = "P60"
|
|
73
|
+
P70 = "P70"
|
|
74
|
+
P80 = "P80"
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
class CancelEnum(str, Enum):
|
|
78
|
+
"""
|
|
79
|
+
To trigger cancel for entire migration we need to send this flag as True
|
|
80
|
+
"""
|
|
81
|
+
TRUE = "True"
|
|
82
|
+
FALSE = "False"
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class CreateMode(str, Enum):
|
|
86
|
+
"""
|
|
87
|
+
The mode to create a new PostgreSQL server.
|
|
88
|
+
"""
|
|
89
|
+
DEFAULT = "Default"
|
|
90
|
+
CREATE = "Create"
|
|
91
|
+
UPDATE = "Update"
|
|
92
|
+
POINT_IN_TIME_RESTORE = "PointInTimeRestore"
|
|
93
|
+
GEO_RESTORE = "GeoRestore"
|
|
94
|
+
REPLICA = "Replica"
|
|
95
|
+
REVIVE_DROPPED = "ReviveDropped"
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class GeoRedundantBackupEnum(str, Enum):
|
|
99
|
+
"""
|
|
100
|
+
A value indicating whether Geo-Redundant backup is enabled on the server.
|
|
101
|
+
"""
|
|
102
|
+
ENABLED = "Enabled"
|
|
103
|
+
DISABLED = "Disabled"
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
class HighAvailabilityMode(str, Enum):
|
|
107
|
+
"""
|
|
108
|
+
The HA mode for the server.
|
|
109
|
+
"""
|
|
110
|
+
DISABLED = "Disabled"
|
|
111
|
+
ZONE_REDUNDANT = "ZoneRedundant"
|
|
112
|
+
SAME_ZONE = "SameZone"
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
class IdentityType(str, Enum):
|
|
116
|
+
"""
|
|
117
|
+
the types of identities associated with this resource; currently restricted to 'None and UserAssigned'
|
|
118
|
+
"""
|
|
119
|
+
NONE = "None"
|
|
120
|
+
USER_ASSIGNED = "UserAssigned"
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
class KeyStatusEnum(str, Enum):
|
|
124
|
+
"""
|
|
125
|
+
Primary encryption key status for Data encryption enabled server.
|
|
126
|
+
"""
|
|
127
|
+
VALID = "Valid"
|
|
128
|
+
INVALID = "Invalid"
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
class LogicalReplicationOnSourceDbEnum(str, Enum):
|
|
132
|
+
"""
|
|
133
|
+
Indicates whether to setup LogicalReplicationOnSourceDb, if needed
|
|
134
|
+
"""
|
|
135
|
+
TRUE = "True"
|
|
136
|
+
FALSE = "False"
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
class MigrateRolesEnum(str, Enum):
|
|
140
|
+
"""
|
|
141
|
+
To migrate roles and permissions we need to send this flag as True
|
|
142
|
+
"""
|
|
143
|
+
TRUE = "True"
|
|
144
|
+
FALSE = "False"
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class MigrationMode(str, Enum):
|
|
148
|
+
"""
|
|
149
|
+
There are two types of migration modes Online and Offline
|
|
150
|
+
"""
|
|
151
|
+
OFFLINE = "Offline"
|
|
152
|
+
ONLINE = "Online"
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
class MigrationOption(str, Enum):
|
|
156
|
+
"""
|
|
157
|
+
This indicates the supported Migration option for the migration
|
|
158
|
+
"""
|
|
159
|
+
VALIDATE = "Validate"
|
|
160
|
+
MIGRATE = "Migrate"
|
|
161
|
+
VALIDATE_AND_MIGRATE = "ValidateAndMigrate"
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
class OverwriteDbsInTargetEnum(str, Enum):
|
|
165
|
+
"""
|
|
166
|
+
Indicates whether the databases on the target server can be overwritten, if already present. If set to False, the migration workflow will wait for a confirmation, if it detects that the database already exists.
|
|
167
|
+
"""
|
|
168
|
+
TRUE = "True"
|
|
169
|
+
FALSE = "False"
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
class PasswordAuthEnum(str, Enum):
|
|
173
|
+
"""
|
|
174
|
+
If Enabled, Password authentication is enabled.
|
|
175
|
+
"""
|
|
176
|
+
ENABLED = "Enabled"
|
|
177
|
+
DISABLED = "Disabled"
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
class PrincipalType(str, Enum):
|
|
181
|
+
"""
|
|
182
|
+
The principal type used to represent the type of Active Directory Administrator.
|
|
183
|
+
"""
|
|
184
|
+
UNKNOWN = "Unknown"
|
|
185
|
+
USER = "User"
|
|
186
|
+
GROUP = "Group"
|
|
187
|
+
SERVICE_PRINCIPAL = "ServicePrincipal"
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
class PrivateEndpointServiceConnectionStatus(str, Enum):
|
|
191
|
+
"""
|
|
192
|
+
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
|
|
193
|
+
"""
|
|
194
|
+
PENDING = "Pending"
|
|
195
|
+
APPROVED = "Approved"
|
|
196
|
+
REJECTED = "Rejected"
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
class ReadReplicaPromoteMode(str, Enum):
|
|
200
|
+
"""
|
|
201
|
+
Sets the promote mode for a replica server. This is a write only property.
|
|
202
|
+
"""
|
|
203
|
+
STANDALONE = "standalone"
|
|
204
|
+
SWITCHOVER = "switchover"
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
class ReplicationPromoteOption(str, Enum):
|
|
208
|
+
"""
|
|
209
|
+
Sets the promote options for a replica server. This is a write only property.
|
|
210
|
+
"""
|
|
211
|
+
PLANNED = "planned"
|
|
212
|
+
FORCED = "forced"
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
class ReplicationRole(str, Enum):
|
|
216
|
+
"""
|
|
217
|
+
Replication role of the server
|
|
218
|
+
"""
|
|
219
|
+
NONE = "None"
|
|
220
|
+
PRIMARY = "Primary"
|
|
221
|
+
ASYNC_REPLICA = "AsyncReplica"
|
|
222
|
+
GEO_ASYNC_REPLICA = "GeoAsyncReplica"
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
class ServerPublicNetworkAccessState(str, Enum):
|
|
226
|
+
"""
|
|
227
|
+
public network access is enabled or not
|
|
228
|
+
"""
|
|
229
|
+
ENABLED = "Enabled"
|
|
230
|
+
DISABLED = "Disabled"
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
class ServerVersion(str, Enum):
|
|
234
|
+
"""
|
|
235
|
+
PostgreSQL Server version.
|
|
236
|
+
"""
|
|
237
|
+
SERVER_VERSION_16 = "16"
|
|
238
|
+
SERVER_VERSION_15 = "15"
|
|
239
|
+
SERVER_VERSION_14 = "14"
|
|
240
|
+
SERVER_VERSION_13 = "13"
|
|
241
|
+
SERVER_VERSION_12 = "12"
|
|
242
|
+
SERVER_VERSION_11 = "11"
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
class SkuTier(str, Enum):
|
|
246
|
+
"""
|
|
247
|
+
The tier of the particular SKU, e.g. Burstable.
|
|
248
|
+
"""
|
|
249
|
+
BURSTABLE = "Burstable"
|
|
250
|
+
GENERAL_PURPOSE = "GeneralPurpose"
|
|
251
|
+
MEMORY_OPTIMIZED = "MemoryOptimized"
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
class SourceType(str, Enum):
|
|
255
|
+
"""
|
|
256
|
+
migration source server type : OnPremises, AWS, GCP, AzureVM, PostgreSQLSingleServer, AWS_RDS, AWS_AURORA, AWS_EC2, GCP_CloudSQL, GCP_AlloyDB, GCP_Compute, or EDB
|
|
257
|
+
"""
|
|
258
|
+
ON_PREMISES = "OnPremises"
|
|
259
|
+
AWS = "AWS"
|
|
260
|
+
GCP = "GCP"
|
|
261
|
+
AZURE_VM = "AzureVM"
|
|
262
|
+
POSTGRE_SQL_SINGLE_SERVER = "PostgreSQLSingleServer"
|
|
263
|
+
AW_S_RDS = "AWS_RDS"
|
|
264
|
+
AW_S_AURORA = "AWS_AURORA"
|
|
265
|
+
AW_S_EC2 = "AWS_EC2"
|
|
266
|
+
GC_P_CLOUD_SQL = "GCP_CloudSQL"
|
|
267
|
+
GC_P_ALLOY_DB = "GCP_AlloyDB"
|
|
268
|
+
GC_P_COMPUTE = "GCP_Compute"
|
|
269
|
+
EDB = "EDB"
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
class SslMode(str, Enum):
|
|
273
|
+
"""
|
|
274
|
+
SSL modes for migration. Default SSL mode for PostgreSQLSingleServer is VerifyFull and Prefer for other source types
|
|
275
|
+
"""
|
|
276
|
+
PREFER = "Prefer"
|
|
277
|
+
REQUIRE = "Require"
|
|
278
|
+
VERIFY_CA = "VerifyCA"
|
|
279
|
+
VERIFY_FULL = "VerifyFull"
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
class StartDataMigrationEnum(str, Enum):
|
|
283
|
+
"""
|
|
284
|
+
Indicates whether the data migration should start right away
|
|
285
|
+
"""
|
|
286
|
+
TRUE = "True"
|
|
287
|
+
FALSE = "False"
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
class StorageAutoGrow(str, Enum):
|
|
291
|
+
"""
|
|
292
|
+
Flag to enable / disable Storage Auto grow for flexible server.
|
|
293
|
+
"""
|
|
294
|
+
ENABLED = "Enabled"
|
|
295
|
+
DISABLED = "Disabled"
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
class StorageType(str, Enum):
|
|
299
|
+
"""
|
|
300
|
+
Storage type for the server. Allowed values are Premium_LRS and PremiumV2_LRS, and default is Premium_LRS if not specified
|
|
301
|
+
"""
|
|
302
|
+
PREMIUM_LRS = "Premium_LRS"
|
|
303
|
+
PREMIUM_V2_LRS = "PremiumV2_LRS"
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
class TriggerCutoverEnum(str, Enum):
|
|
307
|
+
"""
|
|
308
|
+
To trigger cutover for entire migration we need to send this flag as True
|
|
309
|
+
"""
|
|
310
|
+
TRUE = "True"
|
|
311
|
+
FALSE = "False"
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
class VirtualEndpointType(str, Enum):
|
|
315
|
+
"""
|
|
316
|
+
The endpoint type for the virtual endpoint.
|
|
317
|
+
"""
|
|
318
|
+
READ_WRITE = "ReadWrite"
|