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,252 @@
|
|
|
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
|
+
from ._enums import *
|
|
18
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['PrivateEndpointConnectionArgs', 'PrivateEndpointConnection']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class PrivateEndpointConnectionArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
private_link_service_connection_state: pulumi.Input['PrivateLinkServiceConnectionStateArgs'],
|
|
26
|
+
resource_group_name: pulumi.Input[str],
|
|
27
|
+
server_name: pulumi.Input[str],
|
|
28
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None):
|
|
29
|
+
"""
|
|
30
|
+
The set of arguments for constructing a PrivateEndpointConnection resource.
|
|
31
|
+
:param pulumi.Input['PrivateLinkServiceConnectionStateArgs'] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
32
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
33
|
+
:param pulumi.Input[str] server_name: The name of the server.
|
|
34
|
+
:param pulumi.Input[str] private_endpoint_connection_name: The name of the private endpoint connection.
|
|
35
|
+
"""
|
|
36
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
37
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
38
|
+
pulumi.set(__self__, "server_name", server_name)
|
|
39
|
+
if private_endpoint_connection_name is not None:
|
|
40
|
+
pulumi.set(__self__, "private_endpoint_connection_name", private_endpoint_connection_name)
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
44
|
+
def private_link_service_connection_state(self) -> pulumi.Input['PrivateLinkServiceConnectionStateArgs']:
|
|
45
|
+
"""
|
|
46
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
47
|
+
"""
|
|
48
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
49
|
+
|
|
50
|
+
@private_link_service_connection_state.setter
|
|
51
|
+
def private_link_service_connection_state(self, value: pulumi.Input['PrivateLinkServiceConnectionStateArgs']):
|
|
52
|
+
pulumi.set(self, "private_link_service_connection_state", value)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="resourceGroupName")
|
|
56
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
57
|
+
"""
|
|
58
|
+
The name of the resource group. The name is case insensitive.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "resource_group_name")
|
|
61
|
+
|
|
62
|
+
@resource_group_name.setter
|
|
63
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
64
|
+
pulumi.set(self, "resource_group_name", value)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="serverName")
|
|
68
|
+
def server_name(self) -> pulumi.Input[str]:
|
|
69
|
+
"""
|
|
70
|
+
The name of the server.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "server_name")
|
|
73
|
+
|
|
74
|
+
@server_name.setter
|
|
75
|
+
def server_name(self, value: pulumi.Input[str]):
|
|
76
|
+
pulumi.set(self, "server_name", value)
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="privateEndpointConnectionName")
|
|
80
|
+
def private_endpoint_connection_name(self) -> Optional[pulumi.Input[str]]:
|
|
81
|
+
"""
|
|
82
|
+
The name of the private endpoint connection.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "private_endpoint_connection_name")
|
|
85
|
+
|
|
86
|
+
@private_endpoint_connection_name.setter
|
|
87
|
+
def private_endpoint_connection_name(self, value: Optional[pulumi.Input[str]]):
|
|
88
|
+
pulumi.set(self, "private_endpoint_connection_name", value)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
class PrivateEndpointConnection(pulumi.CustomResource):
|
|
92
|
+
@overload
|
|
93
|
+
def __init__(__self__,
|
|
94
|
+
resource_name: str,
|
|
95
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
96
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
97
|
+
private_link_service_connection_state: Optional[pulumi.Input[Union['PrivateLinkServiceConnectionStateArgs', 'PrivateLinkServiceConnectionStateArgsDict']]] = None,
|
|
98
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
99
|
+
server_name: Optional[pulumi.Input[str]] = None,
|
|
100
|
+
__props__=None):
|
|
101
|
+
"""
|
|
102
|
+
The private endpoint connection resource.
|
|
103
|
+
|
|
104
|
+
:param str resource_name: The name of the resource.
|
|
105
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
106
|
+
:param pulumi.Input[str] private_endpoint_connection_name: The name of the private endpoint connection.
|
|
107
|
+
:param pulumi.Input[Union['PrivateLinkServiceConnectionStateArgs', 'PrivateLinkServiceConnectionStateArgsDict']] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
108
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
109
|
+
:param pulumi.Input[str] server_name: The name of the server.
|
|
110
|
+
"""
|
|
111
|
+
...
|
|
112
|
+
@overload
|
|
113
|
+
def __init__(__self__,
|
|
114
|
+
resource_name: str,
|
|
115
|
+
args: PrivateEndpointConnectionArgs,
|
|
116
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
117
|
+
"""
|
|
118
|
+
The private endpoint connection resource.
|
|
119
|
+
|
|
120
|
+
:param str resource_name: The name of the resource.
|
|
121
|
+
:param PrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
122
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
123
|
+
"""
|
|
124
|
+
...
|
|
125
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
126
|
+
resource_args, opts = _utilities.get_resource_args_opts(PrivateEndpointConnectionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
127
|
+
if resource_args is not None:
|
|
128
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
129
|
+
else:
|
|
130
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
131
|
+
|
|
132
|
+
def _internal_init(__self__,
|
|
133
|
+
resource_name: str,
|
|
134
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
135
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
private_link_service_connection_state: Optional[pulumi.Input[Union['PrivateLinkServiceConnectionStateArgs', 'PrivateLinkServiceConnectionStateArgsDict']]] = None,
|
|
137
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
server_name: Optional[pulumi.Input[str]] = None,
|
|
139
|
+
__props__=None):
|
|
140
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
141
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
142
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
143
|
+
if opts.id is None:
|
|
144
|
+
if __props__ is not None:
|
|
145
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
146
|
+
__props__ = PrivateEndpointConnectionArgs.__new__(PrivateEndpointConnectionArgs)
|
|
147
|
+
|
|
148
|
+
__props__.__dict__["private_endpoint_connection_name"] = private_endpoint_connection_name
|
|
149
|
+
if private_link_service_connection_state is None and not opts.urn:
|
|
150
|
+
raise TypeError("Missing required property 'private_link_service_connection_state'")
|
|
151
|
+
__props__.__dict__["private_link_service_connection_state"] = private_link_service_connection_state
|
|
152
|
+
if resource_group_name is None and not opts.urn:
|
|
153
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
154
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
155
|
+
if server_name is None and not opts.urn:
|
|
156
|
+
raise TypeError("Missing required property 'server_name'")
|
|
157
|
+
__props__.__dict__["server_name"] = server_name
|
|
158
|
+
__props__.__dict__["group_ids"] = None
|
|
159
|
+
__props__.__dict__["name"] = None
|
|
160
|
+
__props__.__dict__["private_endpoint"] = None
|
|
161
|
+
__props__.__dict__["provisioning_state"] = None
|
|
162
|
+
__props__.__dict__["system_data"] = None
|
|
163
|
+
__props__.__dict__["type"] = None
|
|
164
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:dbforpostgresql/v20230601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20231201preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:dbforpostgresql/v20240301preview:PrivateEndpointConnection")])
|
|
165
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
166
|
+
super(PrivateEndpointConnection, __self__).__init__(
|
|
167
|
+
'azure-native:dbforpostgresql/v20240801:PrivateEndpointConnection',
|
|
168
|
+
resource_name,
|
|
169
|
+
__props__,
|
|
170
|
+
opts)
|
|
171
|
+
|
|
172
|
+
@staticmethod
|
|
173
|
+
def get(resource_name: str,
|
|
174
|
+
id: pulumi.Input[str],
|
|
175
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'PrivateEndpointConnection':
|
|
176
|
+
"""
|
|
177
|
+
Get an existing PrivateEndpointConnection resource's state with the given name, id, and optional extra
|
|
178
|
+
properties used to qualify the lookup.
|
|
179
|
+
|
|
180
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
181
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
182
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
183
|
+
"""
|
|
184
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
185
|
+
|
|
186
|
+
__props__ = PrivateEndpointConnectionArgs.__new__(PrivateEndpointConnectionArgs)
|
|
187
|
+
|
|
188
|
+
__props__.__dict__["group_ids"] = None
|
|
189
|
+
__props__.__dict__["name"] = None
|
|
190
|
+
__props__.__dict__["private_endpoint"] = None
|
|
191
|
+
__props__.__dict__["private_link_service_connection_state"] = None
|
|
192
|
+
__props__.__dict__["provisioning_state"] = None
|
|
193
|
+
__props__.__dict__["system_data"] = None
|
|
194
|
+
__props__.__dict__["type"] = None
|
|
195
|
+
return PrivateEndpointConnection(resource_name, opts=opts, __props__=__props__)
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter(name="groupIds")
|
|
199
|
+
def group_ids(self) -> pulumi.Output[Sequence[str]]:
|
|
200
|
+
"""
|
|
201
|
+
The group ids for the private endpoint resource.
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "group_ids")
|
|
204
|
+
|
|
205
|
+
@property
|
|
206
|
+
@pulumi.getter
|
|
207
|
+
def name(self) -> pulumi.Output[str]:
|
|
208
|
+
"""
|
|
209
|
+
The name of the resource
|
|
210
|
+
"""
|
|
211
|
+
return pulumi.get(self, "name")
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
@pulumi.getter(name="privateEndpoint")
|
|
215
|
+
def private_endpoint(self) -> pulumi.Output[Optional['outputs.PrivateEndpointResponse']]:
|
|
216
|
+
"""
|
|
217
|
+
The private endpoint resource.
|
|
218
|
+
"""
|
|
219
|
+
return pulumi.get(self, "private_endpoint")
|
|
220
|
+
|
|
221
|
+
@property
|
|
222
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
223
|
+
def private_link_service_connection_state(self) -> pulumi.Output['outputs.PrivateLinkServiceConnectionStateResponse']:
|
|
224
|
+
"""
|
|
225
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
226
|
+
"""
|
|
227
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
228
|
+
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter(name="provisioningState")
|
|
231
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
232
|
+
"""
|
|
233
|
+
The provisioning state of the private endpoint connection resource.
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "provisioning_state")
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
@pulumi.getter(name="systemData")
|
|
239
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
240
|
+
"""
|
|
241
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
242
|
+
"""
|
|
243
|
+
return pulumi.get(self, "system_data")
|
|
244
|
+
|
|
245
|
+
@property
|
|
246
|
+
@pulumi.getter
|
|
247
|
+
def type(self) -> pulumi.Output[str]:
|
|
248
|
+
"""
|
|
249
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
250
|
+
"""
|
|
251
|
+
return pulumi.get(self, "type")
|
|
252
|
+
|