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,317 @@
|
|
|
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__ = ['PostgresInstanceArgs', 'PostgresInstance']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class PostgresInstanceArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
properties: pulumi.Input['PostgresInstancePropertiesArgs'],
|
|
26
|
+
resource_group_name: pulumi.Input[str],
|
|
27
|
+
extended_location: Optional[pulumi.Input['ExtendedLocationArgs']] = None,
|
|
28
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
29
|
+
postgres_instance_name: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
sku: Optional[pulumi.Input['PostgresInstanceSkuArgs']] = None,
|
|
31
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
32
|
+
"""
|
|
33
|
+
The set of arguments for constructing a PostgresInstance resource.
|
|
34
|
+
:param pulumi.Input['PostgresInstancePropertiesArgs'] properties: null
|
|
35
|
+
:param pulumi.Input[str] resource_group_name: The name of the Azure resource group
|
|
36
|
+
:param pulumi.Input['ExtendedLocationArgs'] extended_location: The extendedLocation of the resource.
|
|
37
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
38
|
+
:param pulumi.Input[str] postgres_instance_name: Name of Postgres Instance
|
|
39
|
+
:param pulumi.Input['PostgresInstanceSkuArgs'] sku: Resource sku.
|
|
40
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
41
|
+
"""
|
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
|
43
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
44
|
+
if extended_location is not None:
|
|
45
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
46
|
+
if location is not None:
|
|
47
|
+
pulumi.set(__self__, "location", location)
|
|
48
|
+
if postgres_instance_name is not None:
|
|
49
|
+
pulumi.set(__self__, "postgres_instance_name", postgres_instance_name)
|
|
50
|
+
if sku is not None:
|
|
51
|
+
pulumi.set(__self__, "sku", sku)
|
|
52
|
+
if tags is not None:
|
|
53
|
+
pulumi.set(__self__, "tags", tags)
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter
|
|
57
|
+
def properties(self) -> pulumi.Input['PostgresInstancePropertiesArgs']:
|
|
58
|
+
"""
|
|
59
|
+
null
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "properties")
|
|
62
|
+
|
|
63
|
+
@properties.setter
|
|
64
|
+
def properties(self, value: pulumi.Input['PostgresInstancePropertiesArgs']):
|
|
65
|
+
pulumi.set(self, "properties", value)
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="resourceGroupName")
|
|
69
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
70
|
+
"""
|
|
71
|
+
The name of the Azure resource group
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "resource_group_name")
|
|
74
|
+
|
|
75
|
+
@resource_group_name.setter
|
|
76
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
77
|
+
pulumi.set(self, "resource_group_name", value)
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="extendedLocation")
|
|
81
|
+
def extended_location(self) -> Optional[pulumi.Input['ExtendedLocationArgs']]:
|
|
82
|
+
"""
|
|
83
|
+
The extendedLocation of the resource.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "extended_location")
|
|
86
|
+
|
|
87
|
+
@extended_location.setter
|
|
88
|
+
def extended_location(self, value: Optional[pulumi.Input['ExtendedLocationArgs']]):
|
|
89
|
+
pulumi.set(self, "extended_location", value)
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter
|
|
93
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
94
|
+
"""
|
|
95
|
+
The geo-location where the resource lives
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "location")
|
|
98
|
+
|
|
99
|
+
@location.setter
|
|
100
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
101
|
+
pulumi.set(self, "location", value)
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter(name="postgresInstanceName")
|
|
105
|
+
def postgres_instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
106
|
+
"""
|
|
107
|
+
Name of Postgres Instance
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "postgres_instance_name")
|
|
110
|
+
|
|
111
|
+
@postgres_instance_name.setter
|
|
112
|
+
def postgres_instance_name(self, value: Optional[pulumi.Input[str]]):
|
|
113
|
+
pulumi.set(self, "postgres_instance_name", value)
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter
|
|
117
|
+
def sku(self) -> Optional[pulumi.Input['PostgresInstanceSkuArgs']]:
|
|
118
|
+
"""
|
|
119
|
+
Resource sku.
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "sku")
|
|
122
|
+
|
|
123
|
+
@sku.setter
|
|
124
|
+
def sku(self, value: Optional[pulumi.Input['PostgresInstanceSkuArgs']]):
|
|
125
|
+
pulumi.set(self, "sku", value)
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
@pulumi.getter
|
|
129
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
130
|
+
"""
|
|
131
|
+
Resource tags.
|
|
132
|
+
"""
|
|
133
|
+
return pulumi.get(self, "tags")
|
|
134
|
+
|
|
135
|
+
@tags.setter
|
|
136
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
137
|
+
pulumi.set(self, "tags", value)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class PostgresInstance(pulumi.CustomResource):
|
|
141
|
+
@overload
|
|
142
|
+
def __init__(__self__,
|
|
143
|
+
resource_name: str,
|
|
144
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
145
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
146
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
postgres_instance_name: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
properties: Optional[pulumi.Input[Union['PostgresInstancePropertiesArgs', 'PostgresInstancePropertiesArgsDict']]] = None,
|
|
149
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
150
|
+
sku: Optional[pulumi.Input[Union['PostgresInstanceSkuArgs', 'PostgresInstanceSkuArgsDict']]] = None,
|
|
151
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
152
|
+
__props__=None):
|
|
153
|
+
"""
|
|
154
|
+
A Postgres Instance.
|
|
155
|
+
|
|
156
|
+
:param str resource_name: The name of the resource.
|
|
157
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
158
|
+
:param pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']] extended_location: The extendedLocation of the resource.
|
|
159
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
160
|
+
:param pulumi.Input[str] postgres_instance_name: Name of Postgres Instance
|
|
161
|
+
:param pulumi.Input[Union['PostgresInstancePropertiesArgs', 'PostgresInstancePropertiesArgsDict']] properties: null
|
|
162
|
+
:param pulumi.Input[str] resource_group_name: The name of the Azure resource group
|
|
163
|
+
:param pulumi.Input[Union['PostgresInstanceSkuArgs', 'PostgresInstanceSkuArgsDict']] sku: Resource sku.
|
|
164
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
165
|
+
"""
|
|
166
|
+
...
|
|
167
|
+
@overload
|
|
168
|
+
def __init__(__self__,
|
|
169
|
+
resource_name: str,
|
|
170
|
+
args: PostgresInstanceArgs,
|
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
172
|
+
"""
|
|
173
|
+
A Postgres Instance.
|
|
174
|
+
|
|
175
|
+
:param str resource_name: The name of the resource.
|
|
176
|
+
:param PostgresInstanceArgs args: The arguments to use to populate this resource's properties.
|
|
177
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
178
|
+
"""
|
|
179
|
+
...
|
|
180
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
181
|
+
resource_args, opts = _utilities.get_resource_args_opts(PostgresInstanceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
182
|
+
if resource_args is not None:
|
|
183
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
184
|
+
else:
|
|
185
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
186
|
+
|
|
187
|
+
def _internal_init(__self__,
|
|
188
|
+
resource_name: str,
|
|
189
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
190
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
191
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
postgres_instance_name: Optional[pulumi.Input[str]] = None,
|
|
193
|
+
properties: Optional[pulumi.Input[Union['PostgresInstancePropertiesArgs', 'PostgresInstancePropertiesArgsDict']]] = None,
|
|
194
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
195
|
+
sku: Optional[pulumi.Input[Union['PostgresInstanceSkuArgs', 'PostgresInstanceSkuArgsDict']]] = None,
|
|
196
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
197
|
+
__props__=None):
|
|
198
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
199
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
200
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
201
|
+
if opts.id is None:
|
|
202
|
+
if __props__ is not None:
|
|
203
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
204
|
+
__props__ = PostgresInstanceArgs.__new__(PostgresInstanceArgs)
|
|
205
|
+
|
|
206
|
+
__props__.__dict__["extended_location"] = extended_location
|
|
207
|
+
__props__.__dict__["location"] = location
|
|
208
|
+
__props__.__dict__["postgres_instance_name"] = postgres_instance_name
|
|
209
|
+
if properties is None and not opts.urn:
|
|
210
|
+
raise TypeError("Missing required property 'properties'")
|
|
211
|
+
__props__.__dict__["properties"] = properties
|
|
212
|
+
if resource_group_name is None and not opts.urn:
|
|
213
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
214
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
215
|
+
__props__.__dict__["sku"] = sku
|
|
216
|
+
__props__.__dict__["tags"] = tags
|
|
217
|
+
__props__.__dict__["name"] = None
|
|
218
|
+
__props__.__dict__["system_data"] = None
|
|
219
|
+
__props__.__dict__["type"] = None
|
|
220
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210601preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210701preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:PostgresInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:PostgresInstance")])
|
|
221
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
222
|
+
super(PostgresInstance, __self__).__init__(
|
|
223
|
+
'azure-native:azurearcdata/v20240501preview:PostgresInstance',
|
|
224
|
+
resource_name,
|
|
225
|
+
__props__,
|
|
226
|
+
opts)
|
|
227
|
+
|
|
228
|
+
@staticmethod
|
|
229
|
+
def get(resource_name: str,
|
|
230
|
+
id: pulumi.Input[str],
|
|
231
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'PostgresInstance':
|
|
232
|
+
"""
|
|
233
|
+
Get an existing PostgresInstance resource's state with the given name, id, and optional extra
|
|
234
|
+
properties used to qualify the lookup.
|
|
235
|
+
|
|
236
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
237
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
238
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
239
|
+
"""
|
|
240
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
241
|
+
|
|
242
|
+
__props__ = PostgresInstanceArgs.__new__(PostgresInstanceArgs)
|
|
243
|
+
|
|
244
|
+
__props__.__dict__["extended_location"] = None
|
|
245
|
+
__props__.__dict__["location"] = None
|
|
246
|
+
__props__.__dict__["name"] = None
|
|
247
|
+
__props__.__dict__["properties"] = None
|
|
248
|
+
__props__.__dict__["sku"] = None
|
|
249
|
+
__props__.__dict__["system_data"] = None
|
|
250
|
+
__props__.__dict__["tags"] = None
|
|
251
|
+
__props__.__dict__["type"] = None
|
|
252
|
+
return PostgresInstance(resource_name, opts=opts, __props__=__props__)
|
|
253
|
+
|
|
254
|
+
@property
|
|
255
|
+
@pulumi.getter(name="extendedLocation")
|
|
256
|
+
def extended_location(self) -> pulumi.Output[Optional['outputs.ExtendedLocationResponse']]:
|
|
257
|
+
"""
|
|
258
|
+
The extendedLocation of the resource.
|
|
259
|
+
"""
|
|
260
|
+
return pulumi.get(self, "extended_location")
|
|
261
|
+
|
|
262
|
+
@property
|
|
263
|
+
@pulumi.getter
|
|
264
|
+
def location(self) -> pulumi.Output[str]:
|
|
265
|
+
"""
|
|
266
|
+
The geo-location where the resource lives
|
|
267
|
+
"""
|
|
268
|
+
return pulumi.get(self, "location")
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
@pulumi.getter
|
|
272
|
+
def name(self) -> pulumi.Output[str]:
|
|
273
|
+
"""
|
|
274
|
+
The name of the resource
|
|
275
|
+
"""
|
|
276
|
+
return pulumi.get(self, "name")
|
|
277
|
+
|
|
278
|
+
@property
|
|
279
|
+
@pulumi.getter
|
|
280
|
+
def properties(self) -> pulumi.Output['outputs.PostgresInstancePropertiesResponse']:
|
|
281
|
+
"""
|
|
282
|
+
null
|
|
283
|
+
"""
|
|
284
|
+
return pulumi.get(self, "properties")
|
|
285
|
+
|
|
286
|
+
@property
|
|
287
|
+
@pulumi.getter
|
|
288
|
+
def sku(self) -> pulumi.Output[Optional['outputs.PostgresInstanceSkuResponse']]:
|
|
289
|
+
"""
|
|
290
|
+
Resource sku.
|
|
291
|
+
"""
|
|
292
|
+
return pulumi.get(self, "sku")
|
|
293
|
+
|
|
294
|
+
@property
|
|
295
|
+
@pulumi.getter(name="systemData")
|
|
296
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
297
|
+
"""
|
|
298
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "system_data")
|
|
301
|
+
|
|
302
|
+
@property
|
|
303
|
+
@pulumi.getter
|
|
304
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
305
|
+
"""
|
|
306
|
+
Resource tags.
|
|
307
|
+
"""
|
|
308
|
+
return pulumi.get(self, "tags")
|
|
309
|
+
|
|
310
|
+
@property
|
|
311
|
+
@pulumi.getter
|
|
312
|
+
def type(self) -> pulumi.Output[str]:
|
|
313
|
+
"""
|
|
314
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
315
|
+
"""
|
|
316
|
+
return pulumi.get(self, "type")
|
|
317
|
+
|
|
@@ -0,0 +1,317 @@
|
|
|
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__ = ['SqlManagedInstanceArgs', 'SqlManagedInstance']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class SqlManagedInstanceArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
properties: pulumi.Input['SqlManagedInstancePropertiesArgs'],
|
|
26
|
+
resource_group_name: pulumi.Input[str],
|
|
27
|
+
extended_location: Optional[pulumi.Input['ExtendedLocationArgs']] = None,
|
|
28
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
29
|
+
sku: Optional[pulumi.Input['SqlManagedInstanceSkuArgs']] = None,
|
|
30
|
+
sql_managed_instance_name: Optional[pulumi.Input[str]] = None,
|
|
31
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
32
|
+
"""
|
|
33
|
+
The set of arguments for constructing a SqlManagedInstance resource.
|
|
34
|
+
:param pulumi.Input['SqlManagedInstancePropertiesArgs'] properties: null
|
|
35
|
+
:param pulumi.Input[str] resource_group_name: The name of the Azure resource group
|
|
36
|
+
:param pulumi.Input['ExtendedLocationArgs'] extended_location: The extendedLocation of the resource.
|
|
37
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
38
|
+
:param pulumi.Input['SqlManagedInstanceSkuArgs'] sku: Resource sku.
|
|
39
|
+
:param pulumi.Input[str] sql_managed_instance_name: Name of SQL Managed Instance
|
|
40
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
41
|
+
"""
|
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
|
43
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
44
|
+
if extended_location is not None:
|
|
45
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
46
|
+
if location is not None:
|
|
47
|
+
pulumi.set(__self__, "location", location)
|
|
48
|
+
if sku is not None:
|
|
49
|
+
pulumi.set(__self__, "sku", sku)
|
|
50
|
+
if sql_managed_instance_name is not None:
|
|
51
|
+
pulumi.set(__self__, "sql_managed_instance_name", sql_managed_instance_name)
|
|
52
|
+
if tags is not None:
|
|
53
|
+
pulumi.set(__self__, "tags", tags)
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter
|
|
57
|
+
def properties(self) -> pulumi.Input['SqlManagedInstancePropertiesArgs']:
|
|
58
|
+
"""
|
|
59
|
+
null
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "properties")
|
|
62
|
+
|
|
63
|
+
@properties.setter
|
|
64
|
+
def properties(self, value: pulumi.Input['SqlManagedInstancePropertiesArgs']):
|
|
65
|
+
pulumi.set(self, "properties", value)
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="resourceGroupName")
|
|
69
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
70
|
+
"""
|
|
71
|
+
The name of the Azure resource group
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "resource_group_name")
|
|
74
|
+
|
|
75
|
+
@resource_group_name.setter
|
|
76
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
77
|
+
pulumi.set(self, "resource_group_name", value)
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="extendedLocation")
|
|
81
|
+
def extended_location(self) -> Optional[pulumi.Input['ExtendedLocationArgs']]:
|
|
82
|
+
"""
|
|
83
|
+
The extendedLocation of the resource.
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "extended_location")
|
|
86
|
+
|
|
87
|
+
@extended_location.setter
|
|
88
|
+
def extended_location(self, value: Optional[pulumi.Input['ExtendedLocationArgs']]):
|
|
89
|
+
pulumi.set(self, "extended_location", value)
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter
|
|
93
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
94
|
+
"""
|
|
95
|
+
The geo-location where the resource lives
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "location")
|
|
98
|
+
|
|
99
|
+
@location.setter
|
|
100
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
101
|
+
pulumi.set(self, "location", value)
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter
|
|
105
|
+
def sku(self) -> Optional[pulumi.Input['SqlManagedInstanceSkuArgs']]:
|
|
106
|
+
"""
|
|
107
|
+
Resource sku.
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "sku")
|
|
110
|
+
|
|
111
|
+
@sku.setter
|
|
112
|
+
def sku(self, value: Optional[pulumi.Input['SqlManagedInstanceSkuArgs']]):
|
|
113
|
+
pulumi.set(self, "sku", value)
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter(name="sqlManagedInstanceName")
|
|
117
|
+
def sql_managed_instance_name(self) -> Optional[pulumi.Input[str]]:
|
|
118
|
+
"""
|
|
119
|
+
Name of SQL Managed Instance
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "sql_managed_instance_name")
|
|
122
|
+
|
|
123
|
+
@sql_managed_instance_name.setter
|
|
124
|
+
def sql_managed_instance_name(self, value: Optional[pulumi.Input[str]]):
|
|
125
|
+
pulumi.set(self, "sql_managed_instance_name", value)
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
@pulumi.getter
|
|
129
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
130
|
+
"""
|
|
131
|
+
Resource tags.
|
|
132
|
+
"""
|
|
133
|
+
return pulumi.get(self, "tags")
|
|
134
|
+
|
|
135
|
+
@tags.setter
|
|
136
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
137
|
+
pulumi.set(self, "tags", value)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class SqlManagedInstance(pulumi.CustomResource):
|
|
141
|
+
@overload
|
|
142
|
+
def __init__(__self__,
|
|
143
|
+
resource_name: str,
|
|
144
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
145
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
146
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
properties: Optional[pulumi.Input[Union['SqlManagedInstancePropertiesArgs', 'SqlManagedInstancePropertiesArgsDict']]] = None,
|
|
148
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
sku: Optional[pulumi.Input[Union['SqlManagedInstanceSkuArgs', 'SqlManagedInstanceSkuArgsDict']]] = None,
|
|
150
|
+
sql_managed_instance_name: Optional[pulumi.Input[str]] = None,
|
|
151
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
152
|
+
__props__=None):
|
|
153
|
+
"""
|
|
154
|
+
A SqlManagedInstance.
|
|
155
|
+
|
|
156
|
+
:param str resource_name: The name of the resource.
|
|
157
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
158
|
+
:param pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']] extended_location: The extendedLocation of the resource.
|
|
159
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
160
|
+
:param pulumi.Input[Union['SqlManagedInstancePropertiesArgs', 'SqlManagedInstancePropertiesArgsDict']] properties: null
|
|
161
|
+
:param pulumi.Input[str] resource_group_name: The name of the Azure resource group
|
|
162
|
+
:param pulumi.Input[Union['SqlManagedInstanceSkuArgs', 'SqlManagedInstanceSkuArgsDict']] sku: Resource sku.
|
|
163
|
+
:param pulumi.Input[str] sql_managed_instance_name: Name of SQL Managed Instance
|
|
164
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
165
|
+
"""
|
|
166
|
+
...
|
|
167
|
+
@overload
|
|
168
|
+
def __init__(__self__,
|
|
169
|
+
resource_name: str,
|
|
170
|
+
args: SqlManagedInstanceArgs,
|
|
171
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
172
|
+
"""
|
|
173
|
+
A SqlManagedInstance.
|
|
174
|
+
|
|
175
|
+
:param str resource_name: The name of the resource.
|
|
176
|
+
:param SqlManagedInstanceArgs args: The arguments to use to populate this resource's properties.
|
|
177
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
178
|
+
"""
|
|
179
|
+
...
|
|
180
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
181
|
+
resource_args, opts = _utilities.get_resource_args_opts(SqlManagedInstanceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
182
|
+
if resource_args is not None:
|
|
183
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
184
|
+
else:
|
|
185
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
186
|
+
|
|
187
|
+
def _internal_init(__self__,
|
|
188
|
+
resource_name: str,
|
|
189
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
190
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
191
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
properties: Optional[pulumi.Input[Union['SqlManagedInstancePropertiesArgs', 'SqlManagedInstancePropertiesArgsDict']]] = None,
|
|
193
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
194
|
+
sku: Optional[pulumi.Input[Union['SqlManagedInstanceSkuArgs', 'SqlManagedInstanceSkuArgsDict']]] = None,
|
|
195
|
+
sql_managed_instance_name: Optional[pulumi.Input[str]] = None,
|
|
196
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
197
|
+
__props__=None):
|
|
198
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
199
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
200
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
201
|
+
if opts.id is None:
|
|
202
|
+
if __props__ is not None:
|
|
203
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
204
|
+
__props__ = SqlManagedInstanceArgs.__new__(SqlManagedInstanceArgs)
|
|
205
|
+
|
|
206
|
+
__props__.__dict__["extended_location"] = extended_location
|
|
207
|
+
__props__.__dict__["location"] = location
|
|
208
|
+
if properties is None and not opts.urn:
|
|
209
|
+
raise TypeError("Missing required property 'properties'")
|
|
210
|
+
__props__.__dict__["properties"] = properties
|
|
211
|
+
if resource_group_name is None and not opts.urn:
|
|
212
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
213
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
214
|
+
__props__.__dict__["sku"] = sku
|
|
215
|
+
__props__.__dict__["sql_managed_instance_name"] = sql_managed_instance_name
|
|
216
|
+
__props__.__dict__["tags"] = tags
|
|
217
|
+
__props__.__dict__["name"] = None
|
|
218
|
+
__props__.__dict__["system_data"] = None
|
|
219
|
+
__props__.__dict__["type"] = None
|
|
220
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210601preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210701preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20210801:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20211101:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:SqlManagedInstance"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:SqlManagedInstance")])
|
|
221
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
222
|
+
super(SqlManagedInstance, __self__).__init__(
|
|
223
|
+
'azure-native:azurearcdata/v20240501preview:SqlManagedInstance',
|
|
224
|
+
resource_name,
|
|
225
|
+
__props__,
|
|
226
|
+
opts)
|
|
227
|
+
|
|
228
|
+
@staticmethod
|
|
229
|
+
def get(resource_name: str,
|
|
230
|
+
id: pulumi.Input[str],
|
|
231
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'SqlManagedInstance':
|
|
232
|
+
"""
|
|
233
|
+
Get an existing SqlManagedInstance resource's state with the given name, id, and optional extra
|
|
234
|
+
properties used to qualify the lookup.
|
|
235
|
+
|
|
236
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
237
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
238
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
239
|
+
"""
|
|
240
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
241
|
+
|
|
242
|
+
__props__ = SqlManagedInstanceArgs.__new__(SqlManagedInstanceArgs)
|
|
243
|
+
|
|
244
|
+
__props__.__dict__["extended_location"] = None
|
|
245
|
+
__props__.__dict__["location"] = None
|
|
246
|
+
__props__.__dict__["name"] = None
|
|
247
|
+
__props__.__dict__["properties"] = None
|
|
248
|
+
__props__.__dict__["sku"] = None
|
|
249
|
+
__props__.__dict__["system_data"] = None
|
|
250
|
+
__props__.__dict__["tags"] = None
|
|
251
|
+
__props__.__dict__["type"] = None
|
|
252
|
+
return SqlManagedInstance(resource_name, opts=opts, __props__=__props__)
|
|
253
|
+
|
|
254
|
+
@property
|
|
255
|
+
@pulumi.getter(name="extendedLocation")
|
|
256
|
+
def extended_location(self) -> pulumi.Output[Optional['outputs.ExtendedLocationResponse']]:
|
|
257
|
+
"""
|
|
258
|
+
The extendedLocation of the resource.
|
|
259
|
+
"""
|
|
260
|
+
return pulumi.get(self, "extended_location")
|
|
261
|
+
|
|
262
|
+
@property
|
|
263
|
+
@pulumi.getter
|
|
264
|
+
def location(self) -> pulumi.Output[str]:
|
|
265
|
+
"""
|
|
266
|
+
The geo-location where the resource lives
|
|
267
|
+
"""
|
|
268
|
+
return pulumi.get(self, "location")
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
@pulumi.getter
|
|
272
|
+
def name(self) -> pulumi.Output[str]:
|
|
273
|
+
"""
|
|
274
|
+
The name of the resource
|
|
275
|
+
"""
|
|
276
|
+
return pulumi.get(self, "name")
|
|
277
|
+
|
|
278
|
+
@property
|
|
279
|
+
@pulumi.getter
|
|
280
|
+
def properties(self) -> pulumi.Output['outputs.SqlManagedInstancePropertiesResponse']:
|
|
281
|
+
"""
|
|
282
|
+
null
|
|
283
|
+
"""
|
|
284
|
+
return pulumi.get(self, "properties")
|
|
285
|
+
|
|
286
|
+
@property
|
|
287
|
+
@pulumi.getter
|
|
288
|
+
def sku(self) -> pulumi.Output[Optional['outputs.SqlManagedInstanceSkuResponse']]:
|
|
289
|
+
"""
|
|
290
|
+
Resource sku.
|
|
291
|
+
"""
|
|
292
|
+
return pulumi.get(self, "sku")
|
|
293
|
+
|
|
294
|
+
@property
|
|
295
|
+
@pulumi.getter(name="systemData")
|
|
296
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
297
|
+
"""
|
|
298
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "system_data")
|
|
301
|
+
|
|
302
|
+
@property
|
|
303
|
+
@pulumi.getter
|
|
304
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
305
|
+
"""
|
|
306
|
+
Resource tags.
|
|
307
|
+
"""
|
|
308
|
+
return pulumi.get(self, "tags")
|
|
309
|
+
|
|
310
|
+
@property
|
|
311
|
+
@pulumi.getter
|
|
312
|
+
def type(self) -> pulumi.Output[str]:
|
|
313
|
+
"""
|
|
314
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
315
|
+
"""
|
|
316
|
+
return pulumi.get(self, "type")
|
|
317
|
+
|