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,409 @@
|
|
|
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
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetServerResult',
|
|
20
|
+
'AwaitableGetServerResult',
|
|
21
|
+
'get_server',
|
|
22
|
+
'get_server_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetServerResult:
|
|
27
|
+
"""
|
|
28
|
+
Represents a server.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, administrator_login=None, auth_config=None, availability_zone=None, backup=None, data_encryption=None, fully_qualified_domain_name=None, high_availability=None, id=None, identity=None, location=None, maintenance_window=None, minor_version=None, name=None, network=None, private_endpoint_connections=None, replica=None, replica_capacity=None, replication_role=None, sku=None, source_server_resource_id=None, state=None, storage=None, system_data=None, tags=None, type=None, version=None):
|
|
31
|
+
if administrator_login and not isinstance(administrator_login, str):
|
|
32
|
+
raise TypeError("Expected argument 'administrator_login' to be a str")
|
|
33
|
+
pulumi.set(__self__, "administrator_login", administrator_login)
|
|
34
|
+
if auth_config and not isinstance(auth_config, dict):
|
|
35
|
+
raise TypeError("Expected argument 'auth_config' to be a dict")
|
|
36
|
+
pulumi.set(__self__, "auth_config", auth_config)
|
|
37
|
+
if availability_zone and not isinstance(availability_zone, str):
|
|
38
|
+
raise TypeError("Expected argument 'availability_zone' to be a str")
|
|
39
|
+
pulumi.set(__self__, "availability_zone", availability_zone)
|
|
40
|
+
if backup and not isinstance(backup, dict):
|
|
41
|
+
raise TypeError("Expected argument 'backup' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "backup", backup)
|
|
43
|
+
if data_encryption and not isinstance(data_encryption, dict):
|
|
44
|
+
raise TypeError("Expected argument 'data_encryption' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "data_encryption", data_encryption)
|
|
46
|
+
if fully_qualified_domain_name and not isinstance(fully_qualified_domain_name, str):
|
|
47
|
+
raise TypeError("Expected argument 'fully_qualified_domain_name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "fully_qualified_domain_name", fully_qualified_domain_name)
|
|
49
|
+
if high_availability and not isinstance(high_availability, dict):
|
|
50
|
+
raise TypeError("Expected argument 'high_availability' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "high_availability", high_availability)
|
|
52
|
+
if id and not isinstance(id, str):
|
|
53
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
54
|
+
pulumi.set(__self__, "id", id)
|
|
55
|
+
if identity and not isinstance(identity, dict):
|
|
56
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
57
|
+
pulumi.set(__self__, "identity", identity)
|
|
58
|
+
if location and not isinstance(location, str):
|
|
59
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
60
|
+
pulumi.set(__self__, "location", location)
|
|
61
|
+
if maintenance_window and not isinstance(maintenance_window, dict):
|
|
62
|
+
raise TypeError("Expected argument 'maintenance_window' to be a dict")
|
|
63
|
+
pulumi.set(__self__, "maintenance_window", maintenance_window)
|
|
64
|
+
if minor_version and not isinstance(minor_version, str):
|
|
65
|
+
raise TypeError("Expected argument 'minor_version' to be a str")
|
|
66
|
+
pulumi.set(__self__, "minor_version", minor_version)
|
|
67
|
+
if name and not isinstance(name, str):
|
|
68
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
69
|
+
pulumi.set(__self__, "name", name)
|
|
70
|
+
if network and not isinstance(network, dict):
|
|
71
|
+
raise TypeError("Expected argument 'network' to be a dict")
|
|
72
|
+
pulumi.set(__self__, "network", network)
|
|
73
|
+
if private_endpoint_connections and not isinstance(private_endpoint_connections, list):
|
|
74
|
+
raise TypeError("Expected argument 'private_endpoint_connections' to be a list")
|
|
75
|
+
pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
|
|
76
|
+
if replica and not isinstance(replica, dict):
|
|
77
|
+
raise TypeError("Expected argument 'replica' to be a dict")
|
|
78
|
+
pulumi.set(__self__, "replica", replica)
|
|
79
|
+
if replica_capacity and not isinstance(replica_capacity, int):
|
|
80
|
+
raise TypeError("Expected argument 'replica_capacity' to be a int")
|
|
81
|
+
pulumi.set(__self__, "replica_capacity", replica_capacity)
|
|
82
|
+
if replication_role and not isinstance(replication_role, str):
|
|
83
|
+
raise TypeError("Expected argument 'replication_role' to be a str")
|
|
84
|
+
pulumi.set(__self__, "replication_role", replication_role)
|
|
85
|
+
if sku and not isinstance(sku, dict):
|
|
86
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
87
|
+
pulumi.set(__self__, "sku", sku)
|
|
88
|
+
if source_server_resource_id and not isinstance(source_server_resource_id, str):
|
|
89
|
+
raise TypeError("Expected argument 'source_server_resource_id' to be a str")
|
|
90
|
+
pulumi.set(__self__, "source_server_resource_id", source_server_resource_id)
|
|
91
|
+
if state and not isinstance(state, str):
|
|
92
|
+
raise TypeError("Expected argument 'state' to be a str")
|
|
93
|
+
pulumi.set(__self__, "state", state)
|
|
94
|
+
if storage and not isinstance(storage, dict):
|
|
95
|
+
raise TypeError("Expected argument 'storage' to be a dict")
|
|
96
|
+
pulumi.set(__self__, "storage", storage)
|
|
97
|
+
if system_data and not isinstance(system_data, dict):
|
|
98
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
99
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
100
|
+
if tags and not isinstance(tags, dict):
|
|
101
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
102
|
+
pulumi.set(__self__, "tags", tags)
|
|
103
|
+
if type and not isinstance(type, str):
|
|
104
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
105
|
+
pulumi.set(__self__, "type", type)
|
|
106
|
+
if version and not isinstance(version, str):
|
|
107
|
+
raise TypeError("Expected argument 'version' to be a str")
|
|
108
|
+
pulumi.set(__self__, "version", version)
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter(name="administratorLogin")
|
|
112
|
+
def administrator_login(self) -> Optional[str]:
|
|
113
|
+
"""
|
|
114
|
+
The administrator's login name of a server. Can only be specified when the server is being created (and is required for creation).
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "administrator_login")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter(name="authConfig")
|
|
120
|
+
def auth_config(self) -> Optional['outputs.AuthConfigResponse']:
|
|
121
|
+
"""
|
|
122
|
+
AuthConfig properties of a server.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "auth_config")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter(name="availabilityZone")
|
|
128
|
+
def availability_zone(self) -> Optional[str]:
|
|
129
|
+
"""
|
|
130
|
+
availability zone information of the server.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "availability_zone")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def backup(self) -> Optional['outputs.BackupResponse']:
|
|
137
|
+
"""
|
|
138
|
+
Backup properties of a server.
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "backup")
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
@pulumi.getter(name="dataEncryption")
|
|
144
|
+
def data_encryption(self) -> Optional['outputs.DataEncryptionResponse']:
|
|
145
|
+
"""
|
|
146
|
+
Data encryption properties of a server.
|
|
147
|
+
"""
|
|
148
|
+
return pulumi.get(self, "data_encryption")
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
@pulumi.getter(name="fullyQualifiedDomainName")
|
|
152
|
+
def fully_qualified_domain_name(self) -> str:
|
|
153
|
+
"""
|
|
154
|
+
The fully qualified domain name of a server.
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "fully_qualified_domain_name")
|
|
157
|
+
|
|
158
|
+
@property
|
|
159
|
+
@pulumi.getter(name="highAvailability")
|
|
160
|
+
def high_availability(self) -> Optional['outputs.HighAvailabilityResponse']:
|
|
161
|
+
"""
|
|
162
|
+
High availability properties of a server.
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "high_availability")
|
|
165
|
+
|
|
166
|
+
@property
|
|
167
|
+
@pulumi.getter
|
|
168
|
+
def id(self) -> str:
|
|
169
|
+
"""
|
|
170
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
171
|
+
"""
|
|
172
|
+
return pulumi.get(self, "id")
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
@pulumi.getter
|
|
176
|
+
def identity(self) -> Optional['outputs.UserAssignedIdentityResponse']:
|
|
177
|
+
"""
|
|
178
|
+
Describes the identity of the application.
|
|
179
|
+
"""
|
|
180
|
+
return pulumi.get(self, "identity")
|
|
181
|
+
|
|
182
|
+
@property
|
|
183
|
+
@pulumi.getter
|
|
184
|
+
def location(self) -> str:
|
|
185
|
+
"""
|
|
186
|
+
The geo-location where the resource lives
|
|
187
|
+
"""
|
|
188
|
+
return pulumi.get(self, "location")
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter(name="maintenanceWindow")
|
|
192
|
+
def maintenance_window(self) -> Optional['outputs.MaintenanceWindowResponse']:
|
|
193
|
+
"""
|
|
194
|
+
Maintenance window properties of a server.
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "maintenance_window")
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter(name="minorVersion")
|
|
200
|
+
def minor_version(self) -> str:
|
|
201
|
+
"""
|
|
202
|
+
The minor version of the server.
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "minor_version")
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
@pulumi.getter
|
|
208
|
+
def name(self) -> str:
|
|
209
|
+
"""
|
|
210
|
+
The name of the resource
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "name")
|
|
213
|
+
|
|
214
|
+
@property
|
|
215
|
+
@pulumi.getter
|
|
216
|
+
def network(self) -> Optional['outputs.NetworkResponse']:
|
|
217
|
+
"""
|
|
218
|
+
Network properties of a server. This Network property is required to be passed only in case you want the server to be Private access server.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "network")
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
224
|
+
def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
|
|
225
|
+
"""
|
|
226
|
+
List of private endpoint connections associated with the specified resource.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
229
|
+
|
|
230
|
+
@property
|
|
231
|
+
@pulumi.getter
|
|
232
|
+
def replica(self) -> Optional['outputs.ReplicaResponse']:
|
|
233
|
+
"""
|
|
234
|
+
Replica properties of a server. These Replica properties are required to be passed only in case you want to Promote a server.
|
|
235
|
+
"""
|
|
236
|
+
return pulumi.get(self, "replica")
|
|
237
|
+
|
|
238
|
+
@property
|
|
239
|
+
@pulumi.getter(name="replicaCapacity")
|
|
240
|
+
def replica_capacity(self) -> int:
|
|
241
|
+
"""
|
|
242
|
+
Replicas allowed for a server.
|
|
243
|
+
"""
|
|
244
|
+
return pulumi.get(self, "replica_capacity")
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
@pulumi.getter(name="replicationRole")
|
|
248
|
+
def replication_role(self) -> Optional[str]:
|
|
249
|
+
"""
|
|
250
|
+
Replication role of the server
|
|
251
|
+
"""
|
|
252
|
+
return pulumi.get(self, "replication_role")
|
|
253
|
+
|
|
254
|
+
@property
|
|
255
|
+
@pulumi.getter
|
|
256
|
+
def sku(self) -> Optional['outputs.SkuResponse']:
|
|
257
|
+
"""
|
|
258
|
+
The SKU (pricing tier) of the server.
|
|
259
|
+
"""
|
|
260
|
+
return pulumi.get(self, "sku")
|
|
261
|
+
|
|
262
|
+
@property
|
|
263
|
+
@pulumi.getter(name="sourceServerResourceId")
|
|
264
|
+
def source_server_resource_id(self) -> Optional[str]:
|
|
265
|
+
"""
|
|
266
|
+
The source server resource ID to restore from. It's required when 'createMode' is 'PointInTimeRestore' or 'GeoRestore' or 'Replica' or 'ReviveDropped'. This property is returned only for Replica server
|
|
267
|
+
"""
|
|
268
|
+
return pulumi.get(self, "source_server_resource_id")
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
@pulumi.getter
|
|
272
|
+
def state(self) -> str:
|
|
273
|
+
"""
|
|
274
|
+
A state of a server that is visible to user.
|
|
275
|
+
"""
|
|
276
|
+
return pulumi.get(self, "state")
|
|
277
|
+
|
|
278
|
+
@property
|
|
279
|
+
@pulumi.getter
|
|
280
|
+
def storage(self) -> Optional['outputs.StorageResponse']:
|
|
281
|
+
"""
|
|
282
|
+
Storage properties of a server.
|
|
283
|
+
"""
|
|
284
|
+
return pulumi.get(self, "storage")
|
|
285
|
+
|
|
286
|
+
@property
|
|
287
|
+
@pulumi.getter(name="systemData")
|
|
288
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
289
|
+
"""
|
|
290
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
291
|
+
"""
|
|
292
|
+
return pulumi.get(self, "system_data")
|
|
293
|
+
|
|
294
|
+
@property
|
|
295
|
+
@pulumi.getter
|
|
296
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
297
|
+
"""
|
|
298
|
+
Resource tags.
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "tags")
|
|
301
|
+
|
|
302
|
+
@property
|
|
303
|
+
@pulumi.getter
|
|
304
|
+
def type(self) -> str:
|
|
305
|
+
"""
|
|
306
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
307
|
+
"""
|
|
308
|
+
return pulumi.get(self, "type")
|
|
309
|
+
|
|
310
|
+
@property
|
|
311
|
+
@pulumi.getter
|
|
312
|
+
def version(self) -> Optional[str]:
|
|
313
|
+
"""
|
|
314
|
+
PostgreSQL Server version.
|
|
315
|
+
"""
|
|
316
|
+
return pulumi.get(self, "version")
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
class AwaitableGetServerResult(GetServerResult):
|
|
320
|
+
# pylint: disable=using-constant-test
|
|
321
|
+
def __await__(self):
|
|
322
|
+
if False:
|
|
323
|
+
yield self
|
|
324
|
+
return GetServerResult(
|
|
325
|
+
administrator_login=self.administrator_login,
|
|
326
|
+
auth_config=self.auth_config,
|
|
327
|
+
availability_zone=self.availability_zone,
|
|
328
|
+
backup=self.backup,
|
|
329
|
+
data_encryption=self.data_encryption,
|
|
330
|
+
fully_qualified_domain_name=self.fully_qualified_domain_name,
|
|
331
|
+
high_availability=self.high_availability,
|
|
332
|
+
id=self.id,
|
|
333
|
+
identity=self.identity,
|
|
334
|
+
location=self.location,
|
|
335
|
+
maintenance_window=self.maintenance_window,
|
|
336
|
+
minor_version=self.minor_version,
|
|
337
|
+
name=self.name,
|
|
338
|
+
network=self.network,
|
|
339
|
+
private_endpoint_connections=self.private_endpoint_connections,
|
|
340
|
+
replica=self.replica,
|
|
341
|
+
replica_capacity=self.replica_capacity,
|
|
342
|
+
replication_role=self.replication_role,
|
|
343
|
+
sku=self.sku,
|
|
344
|
+
source_server_resource_id=self.source_server_resource_id,
|
|
345
|
+
state=self.state,
|
|
346
|
+
storage=self.storage,
|
|
347
|
+
system_data=self.system_data,
|
|
348
|
+
tags=self.tags,
|
|
349
|
+
type=self.type,
|
|
350
|
+
version=self.version)
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
def get_server(resource_group_name: Optional[str] = None,
|
|
354
|
+
server_name: Optional[str] = None,
|
|
355
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServerResult:
|
|
356
|
+
"""
|
|
357
|
+
Gets information about a server.
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
361
|
+
:param str server_name: The name of the server.
|
|
362
|
+
"""
|
|
363
|
+
__args__ = dict()
|
|
364
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
365
|
+
__args__['serverName'] = server_name
|
|
366
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
367
|
+
__ret__ = pulumi.runtime.invoke('azure-native:dbforpostgresql/v20240801:getServer', __args__, opts=opts, typ=GetServerResult).value
|
|
368
|
+
|
|
369
|
+
return AwaitableGetServerResult(
|
|
370
|
+
administrator_login=pulumi.get(__ret__, 'administrator_login'),
|
|
371
|
+
auth_config=pulumi.get(__ret__, 'auth_config'),
|
|
372
|
+
availability_zone=pulumi.get(__ret__, 'availability_zone'),
|
|
373
|
+
backup=pulumi.get(__ret__, 'backup'),
|
|
374
|
+
data_encryption=pulumi.get(__ret__, 'data_encryption'),
|
|
375
|
+
fully_qualified_domain_name=pulumi.get(__ret__, 'fully_qualified_domain_name'),
|
|
376
|
+
high_availability=pulumi.get(__ret__, 'high_availability'),
|
|
377
|
+
id=pulumi.get(__ret__, 'id'),
|
|
378
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
379
|
+
location=pulumi.get(__ret__, 'location'),
|
|
380
|
+
maintenance_window=pulumi.get(__ret__, 'maintenance_window'),
|
|
381
|
+
minor_version=pulumi.get(__ret__, 'minor_version'),
|
|
382
|
+
name=pulumi.get(__ret__, 'name'),
|
|
383
|
+
network=pulumi.get(__ret__, 'network'),
|
|
384
|
+
private_endpoint_connections=pulumi.get(__ret__, 'private_endpoint_connections'),
|
|
385
|
+
replica=pulumi.get(__ret__, 'replica'),
|
|
386
|
+
replica_capacity=pulumi.get(__ret__, 'replica_capacity'),
|
|
387
|
+
replication_role=pulumi.get(__ret__, 'replication_role'),
|
|
388
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
389
|
+
source_server_resource_id=pulumi.get(__ret__, 'source_server_resource_id'),
|
|
390
|
+
state=pulumi.get(__ret__, 'state'),
|
|
391
|
+
storage=pulumi.get(__ret__, 'storage'),
|
|
392
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
393
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
394
|
+
type=pulumi.get(__ret__, 'type'),
|
|
395
|
+
version=pulumi.get(__ret__, 'version'))
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
@_utilities.lift_output_func(get_server)
|
|
399
|
+
def get_server_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
400
|
+
server_name: Optional[pulumi.Input[str]] = None,
|
|
401
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServerResult]:
|
|
402
|
+
"""
|
|
403
|
+
Gets information about a server.
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
407
|
+
:param str server_name: The name of the server.
|
|
408
|
+
"""
|
|
409
|
+
...
|
|
@@ -0,0 +1,167 @@
|
|
|
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
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetVirtualEndpointResult',
|
|
20
|
+
'AwaitableGetVirtualEndpointResult',
|
|
21
|
+
'get_virtual_endpoint',
|
|
22
|
+
'get_virtual_endpoint_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetVirtualEndpointResult:
|
|
27
|
+
"""
|
|
28
|
+
Represents a virtual endpoint for a server.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, endpoint_type=None, id=None, members=None, name=None, system_data=None, type=None, virtual_endpoints=None):
|
|
31
|
+
if endpoint_type and not isinstance(endpoint_type, str):
|
|
32
|
+
raise TypeError("Expected argument 'endpoint_type' to be a str")
|
|
33
|
+
pulumi.set(__self__, "endpoint_type", endpoint_type)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if members and not isinstance(members, list):
|
|
38
|
+
raise TypeError("Expected argument 'members' to be a list")
|
|
39
|
+
pulumi.set(__self__, "members", members)
|
|
40
|
+
if name and not isinstance(name, str):
|
|
41
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
43
|
+
if system_data and not isinstance(system_data, dict):
|
|
44
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
46
|
+
if type and not isinstance(type, str):
|
|
47
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
if virtual_endpoints and not isinstance(virtual_endpoints, list):
|
|
50
|
+
raise TypeError("Expected argument 'virtual_endpoints' to be a list")
|
|
51
|
+
pulumi.set(__self__, "virtual_endpoints", virtual_endpoints)
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter(name="endpointType")
|
|
55
|
+
def endpoint_type(self) -> Optional[str]:
|
|
56
|
+
"""
|
|
57
|
+
The endpoint type for the virtual endpoint.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "endpoint_type")
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def id(self) -> str:
|
|
64
|
+
"""
|
|
65
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "id")
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def members(self) -> Optional[Sequence[str]]:
|
|
72
|
+
"""
|
|
73
|
+
List of members for a virtual endpoint
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "members")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter
|
|
79
|
+
def name(self) -> str:
|
|
80
|
+
"""
|
|
81
|
+
The name of the resource
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "name")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="systemData")
|
|
87
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
88
|
+
"""
|
|
89
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "system_data")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter
|
|
95
|
+
def type(self) -> str:
|
|
96
|
+
"""
|
|
97
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "type")
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
@pulumi.getter(name="virtualEndpoints")
|
|
103
|
+
def virtual_endpoints(self) -> Sequence[str]:
|
|
104
|
+
"""
|
|
105
|
+
List of virtual endpoints for a server
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "virtual_endpoints")
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
class AwaitableGetVirtualEndpointResult(GetVirtualEndpointResult):
|
|
111
|
+
# pylint: disable=using-constant-test
|
|
112
|
+
def __await__(self):
|
|
113
|
+
if False:
|
|
114
|
+
yield self
|
|
115
|
+
return GetVirtualEndpointResult(
|
|
116
|
+
endpoint_type=self.endpoint_type,
|
|
117
|
+
id=self.id,
|
|
118
|
+
members=self.members,
|
|
119
|
+
name=self.name,
|
|
120
|
+
system_data=self.system_data,
|
|
121
|
+
type=self.type,
|
|
122
|
+
virtual_endpoints=self.virtual_endpoints)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def get_virtual_endpoint(resource_group_name: Optional[str] = None,
|
|
126
|
+
server_name: Optional[str] = None,
|
|
127
|
+
virtual_endpoint_name: Optional[str] = None,
|
|
128
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVirtualEndpointResult:
|
|
129
|
+
"""
|
|
130
|
+
Gets information about a virtual endpoint.
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
134
|
+
:param str server_name: The name of the server.
|
|
135
|
+
:param str virtual_endpoint_name: The name of the virtual endpoint.
|
|
136
|
+
"""
|
|
137
|
+
__args__ = dict()
|
|
138
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
139
|
+
__args__['serverName'] = server_name
|
|
140
|
+
__args__['virtualEndpointName'] = virtual_endpoint_name
|
|
141
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
142
|
+
__ret__ = pulumi.runtime.invoke('azure-native:dbforpostgresql/v20240801:getVirtualEndpoint', __args__, opts=opts, typ=GetVirtualEndpointResult).value
|
|
143
|
+
|
|
144
|
+
return AwaitableGetVirtualEndpointResult(
|
|
145
|
+
endpoint_type=pulumi.get(__ret__, 'endpoint_type'),
|
|
146
|
+
id=pulumi.get(__ret__, 'id'),
|
|
147
|
+
members=pulumi.get(__ret__, 'members'),
|
|
148
|
+
name=pulumi.get(__ret__, 'name'),
|
|
149
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
150
|
+
type=pulumi.get(__ret__, 'type'),
|
|
151
|
+
virtual_endpoints=pulumi.get(__ret__, 'virtual_endpoints'))
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
@_utilities.lift_output_func(get_virtual_endpoint)
|
|
155
|
+
def get_virtual_endpoint_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
server_name: Optional[pulumi.Input[str]] = None,
|
|
157
|
+
virtual_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVirtualEndpointResult]:
|
|
159
|
+
"""
|
|
160
|
+
Gets information about a virtual endpoint.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
164
|
+
:param str server_name: The name of the server.
|
|
165
|
+
:param str virtual_endpoint_name: The name of the virtual endpoint.
|
|
166
|
+
"""
|
|
167
|
+
...
|