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,222 @@
|
|
|
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__ = ['FailoverGroupArgs', 'FailoverGroup']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class FailoverGroupArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
properties: pulumi.Input['FailoverGroupPropertiesArgs'],
|
|
26
|
+
resource_group_name: pulumi.Input[str],
|
|
27
|
+
sql_managed_instance_name: pulumi.Input[str],
|
|
28
|
+
failover_group_name: Optional[pulumi.Input[str]] = None):
|
|
29
|
+
"""
|
|
30
|
+
The set of arguments for constructing a FailoverGroup resource.
|
|
31
|
+
:param pulumi.Input['FailoverGroupPropertiesArgs'] properties: null
|
|
32
|
+
:param pulumi.Input[str] resource_group_name: The name of the Azure resource group
|
|
33
|
+
:param pulumi.Input[str] sql_managed_instance_name: Name of SQL Managed Instance
|
|
34
|
+
:param pulumi.Input[str] failover_group_name: The name of the Failover Group
|
|
35
|
+
"""
|
|
36
|
+
pulumi.set(__self__, "properties", properties)
|
|
37
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
38
|
+
pulumi.set(__self__, "sql_managed_instance_name", sql_managed_instance_name)
|
|
39
|
+
if failover_group_name is not None:
|
|
40
|
+
pulumi.set(__self__, "failover_group_name", failover_group_name)
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
@pulumi.getter
|
|
44
|
+
def properties(self) -> pulumi.Input['FailoverGroupPropertiesArgs']:
|
|
45
|
+
"""
|
|
46
|
+
null
|
|
47
|
+
"""
|
|
48
|
+
return pulumi.get(self, "properties")
|
|
49
|
+
|
|
50
|
+
@properties.setter
|
|
51
|
+
def properties(self, value: pulumi.Input['FailoverGroupPropertiesArgs']):
|
|
52
|
+
pulumi.set(self, "properties", value)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="resourceGroupName")
|
|
56
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
57
|
+
"""
|
|
58
|
+
The name of the Azure resource group
|
|
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="sqlManagedInstanceName")
|
|
68
|
+
def sql_managed_instance_name(self) -> pulumi.Input[str]:
|
|
69
|
+
"""
|
|
70
|
+
Name of SQL Managed Instance
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "sql_managed_instance_name")
|
|
73
|
+
|
|
74
|
+
@sql_managed_instance_name.setter
|
|
75
|
+
def sql_managed_instance_name(self, value: pulumi.Input[str]):
|
|
76
|
+
pulumi.set(self, "sql_managed_instance_name", value)
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="failoverGroupName")
|
|
80
|
+
def failover_group_name(self) -> Optional[pulumi.Input[str]]:
|
|
81
|
+
"""
|
|
82
|
+
The name of the Failover Group
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "failover_group_name")
|
|
85
|
+
|
|
86
|
+
@failover_group_name.setter
|
|
87
|
+
def failover_group_name(self, value: Optional[pulumi.Input[str]]):
|
|
88
|
+
pulumi.set(self, "failover_group_name", value)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
class FailoverGroup(pulumi.CustomResource):
|
|
92
|
+
@overload
|
|
93
|
+
def __init__(__self__,
|
|
94
|
+
resource_name: str,
|
|
95
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
96
|
+
failover_group_name: Optional[pulumi.Input[str]] = None,
|
|
97
|
+
properties: Optional[pulumi.Input[Union['FailoverGroupPropertiesArgs', 'FailoverGroupPropertiesArgsDict']]] = None,
|
|
98
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
99
|
+
sql_managed_instance_name: Optional[pulumi.Input[str]] = None,
|
|
100
|
+
__props__=None):
|
|
101
|
+
"""
|
|
102
|
+
A failover group 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] failover_group_name: The name of the Failover Group
|
|
107
|
+
:param pulumi.Input[Union['FailoverGroupPropertiesArgs', 'FailoverGroupPropertiesArgsDict']] properties: null
|
|
108
|
+
:param pulumi.Input[str] resource_group_name: The name of the Azure resource group
|
|
109
|
+
:param pulumi.Input[str] sql_managed_instance_name: Name of SQL Managed Instance
|
|
110
|
+
"""
|
|
111
|
+
...
|
|
112
|
+
@overload
|
|
113
|
+
def __init__(__self__,
|
|
114
|
+
resource_name: str,
|
|
115
|
+
args: FailoverGroupArgs,
|
|
116
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
117
|
+
"""
|
|
118
|
+
A failover group resource.
|
|
119
|
+
|
|
120
|
+
:param str resource_name: The name of the resource.
|
|
121
|
+
:param FailoverGroupArgs 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(FailoverGroupArgs, 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
|
+
failover_group_name: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
properties: Optional[pulumi.Input[Union['FailoverGroupPropertiesArgs', 'FailoverGroupPropertiesArgsDict']]] = None,
|
|
137
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
sql_managed_instance_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__ = FailoverGroupArgs.__new__(FailoverGroupArgs)
|
|
147
|
+
|
|
148
|
+
__props__.__dict__["failover_group_name"] = failover_group_name
|
|
149
|
+
if properties is None and not opts.urn:
|
|
150
|
+
raise TypeError("Missing required property 'properties'")
|
|
151
|
+
__props__.__dict__["properties"] = properties
|
|
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 sql_managed_instance_name is None and not opts.urn:
|
|
156
|
+
raise TypeError("Missing required property 'sql_managed_instance_name'")
|
|
157
|
+
__props__.__dict__["sql_managed_instance_name"] = sql_managed_instance_name
|
|
158
|
+
__props__.__dict__["name"] = None
|
|
159
|
+
__props__.__dict__["system_data"] = None
|
|
160
|
+
__props__.__dict__["type"] = None
|
|
161
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata:FailoverGroup"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:FailoverGroup"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:FailoverGroup")])
|
|
162
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
163
|
+
super(FailoverGroup, __self__).__init__(
|
|
164
|
+
'azure-native:azurearcdata/v20240501preview:FailoverGroup',
|
|
165
|
+
resource_name,
|
|
166
|
+
__props__,
|
|
167
|
+
opts)
|
|
168
|
+
|
|
169
|
+
@staticmethod
|
|
170
|
+
def get(resource_name: str,
|
|
171
|
+
id: pulumi.Input[str],
|
|
172
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'FailoverGroup':
|
|
173
|
+
"""
|
|
174
|
+
Get an existing FailoverGroup resource's state with the given name, id, and optional extra
|
|
175
|
+
properties used to qualify the lookup.
|
|
176
|
+
|
|
177
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
178
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
179
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
180
|
+
"""
|
|
181
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
182
|
+
|
|
183
|
+
__props__ = FailoverGroupArgs.__new__(FailoverGroupArgs)
|
|
184
|
+
|
|
185
|
+
__props__.__dict__["name"] = None
|
|
186
|
+
__props__.__dict__["properties"] = None
|
|
187
|
+
__props__.__dict__["system_data"] = None
|
|
188
|
+
__props__.__dict__["type"] = None
|
|
189
|
+
return FailoverGroup(resource_name, opts=opts, __props__=__props__)
|
|
190
|
+
|
|
191
|
+
@property
|
|
192
|
+
@pulumi.getter
|
|
193
|
+
def name(self) -> pulumi.Output[str]:
|
|
194
|
+
"""
|
|
195
|
+
The name of the resource
|
|
196
|
+
"""
|
|
197
|
+
return pulumi.get(self, "name")
|
|
198
|
+
|
|
199
|
+
@property
|
|
200
|
+
@pulumi.getter
|
|
201
|
+
def properties(self) -> pulumi.Output['outputs.FailoverGroupPropertiesResponse']:
|
|
202
|
+
"""
|
|
203
|
+
null
|
|
204
|
+
"""
|
|
205
|
+
return pulumi.get(self, "properties")
|
|
206
|
+
|
|
207
|
+
@property
|
|
208
|
+
@pulumi.getter(name="systemData")
|
|
209
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
210
|
+
"""
|
|
211
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
212
|
+
"""
|
|
213
|
+
return pulumi.get(self, "system_data")
|
|
214
|
+
|
|
215
|
+
@property
|
|
216
|
+
@pulumi.getter
|
|
217
|
+
def type(self) -> pulumi.Output[str]:
|
|
218
|
+
"""
|
|
219
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
220
|
+
"""
|
|
221
|
+
return pulumi.get(self, "type")
|
|
222
|
+
|
|
@@ -0,0 +1,141 @@
|
|
|
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
|
+
'GetActiveDirectoryConnectorResult',
|
|
20
|
+
'AwaitableGetActiveDirectoryConnectorResult',
|
|
21
|
+
'get_active_directory_connector',
|
|
22
|
+
'get_active_directory_connector_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetActiveDirectoryConnectorResult:
|
|
27
|
+
"""
|
|
28
|
+
Active directory connector resource
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, id=None, name=None, properties=None, system_data=None, type=None):
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if name and not isinstance(name, str):
|
|
35
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
36
|
+
pulumi.set(__self__, "name", name)
|
|
37
|
+
if properties and not isinstance(properties, dict):
|
|
38
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "properties", properties)
|
|
40
|
+
if system_data and not isinstance(system_data, dict):
|
|
41
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
43
|
+
if type and not isinstance(type, str):
|
|
44
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
45
|
+
pulumi.set(__self__, "type", type)
|
|
46
|
+
|
|
47
|
+
@property
|
|
48
|
+
@pulumi.getter
|
|
49
|
+
def id(self) -> str:
|
|
50
|
+
"""
|
|
51
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
52
|
+
"""
|
|
53
|
+
return pulumi.get(self, "id")
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter
|
|
57
|
+
def name(self) -> str:
|
|
58
|
+
"""
|
|
59
|
+
The name of the resource
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "name")
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter
|
|
65
|
+
def properties(self) -> 'outputs.ActiveDirectoryConnectorPropertiesResponse':
|
|
66
|
+
"""
|
|
67
|
+
null
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "properties")
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter(name="systemData")
|
|
73
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
74
|
+
"""
|
|
75
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "system_data")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter
|
|
81
|
+
def type(self) -> str:
|
|
82
|
+
"""
|
|
83
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "type")
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class AwaitableGetActiveDirectoryConnectorResult(GetActiveDirectoryConnectorResult):
|
|
89
|
+
# pylint: disable=using-constant-test
|
|
90
|
+
def __await__(self):
|
|
91
|
+
if False:
|
|
92
|
+
yield self
|
|
93
|
+
return GetActiveDirectoryConnectorResult(
|
|
94
|
+
id=self.id,
|
|
95
|
+
name=self.name,
|
|
96
|
+
properties=self.properties,
|
|
97
|
+
system_data=self.system_data,
|
|
98
|
+
type=self.type)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
def get_active_directory_connector(active_directory_connector_name: Optional[str] = None,
|
|
102
|
+
data_controller_name: Optional[str] = None,
|
|
103
|
+
resource_group_name: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetActiveDirectoryConnectorResult:
|
|
105
|
+
"""
|
|
106
|
+
Retrieves an Active Directory connector resource
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
:param str active_directory_connector_name: The name of the Active Directory connector instance
|
|
110
|
+
:param str data_controller_name: The name of the data controller
|
|
111
|
+
:param str resource_group_name: The name of the Azure resource group
|
|
112
|
+
"""
|
|
113
|
+
__args__ = dict()
|
|
114
|
+
__args__['activeDirectoryConnectorName'] = active_directory_connector_name
|
|
115
|
+
__args__['dataControllerName'] = data_controller_name
|
|
116
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
117
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
118
|
+
__ret__ = pulumi.runtime.invoke('azure-native:azurearcdata/v20240501preview:getActiveDirectoryConnector', __args__, opts=opts, typ=GetActiveDirectoryConnectorResult).value
|
|
119
|
+
|
|
120
|
+
return AwaitableGetActiveDirectoryConnectorResult(
|
|
121
|
+
id=pulumi.get(__ret__, 'id'),
|
|
122
|
+
name=pulumi.get(__ret__, 'name'),
|
|
123
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
124
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
125
|
+
type=pulumi.get(__ret__, 'type'))
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
@_utilities.lift_output_func(get_active_directory_connector)
|
|
129
|
+
def get_active_directory_connector_output(active_directory_connector_name: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
data_controller_name: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
132
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetActiveDirectoryConnectorResult]:
|
|
133
|
+
"""
|
|
134
|
+
Retrieves an Active Directory connector resource
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
:param str active_directory_connector_name: The name of the Active Directory connector instance
|
|
138
|
+
:param str data_controller_name: The name of the data controller
|
|
139
|
+
:param str resource_group_name: The name of the Azure resource group
|
|
140
|
+
"""
|
|
141
|
+
...
|
|
@@ -0,0 +1,175 @@
|
|
|
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
|
+
'GetDataControllerResult',
|
|
20
|
+
'AwaitableGetDataControllerResult',
|
|
21
|
+
'get_data_controller',
|
|
22
|
+
'get_data_controller_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetDataControllerResult:
|
|
27
|
+
"""
|
|
28
|
+
Data controller resource
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, extended_location=None, id=None, location=None, name=None, properties=None, system_data=None, tags=None, type=None):
|
|
31
|
+
if extended_location and not isinstance(extended_location, dict):
|
|
32
|
+
raise TypeError("Expected argument 'extended_location' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
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 location and not isinstance(location, str):
|
|
38
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
39
|
+
pulumi.set(__self__, "location", location)
|
|
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 properties and not isinstance(properties, dict):
|
|
44
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "properties", properties)
|
|
46
|
+
if system_data and not isinstance(system_data, dict):
|
|
47
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
49
|
+
if tags and not isinstance(tags, dict):
|
|
50
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "tags", tags)
|
|
52
|
+
if type and not isinstance(type, str):
|
|
53
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
54
|
+
pulumi.set(__self__, "type", type)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="extendedLocation")
|
|
58
|
+
def extended_location(self) -> Optional['outputs.ExtendedLocationResponse']:
|
|
59
|
+
"""
|
|
60
|
+
The extendedLocation of the resource.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "extended_location")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def id(self) -> str:
|
|
67
|
+
"""
|
|
68
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "id")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter
|
|
74
|
+
def location(self) -> str:
|
|
75
|
+
"""
|
|
76
|
+
The geo-location where the resource lives
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "location")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def name(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
The name of the resource
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "name")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def properties(self) -> 'outputs.DataControllerPropertiesResponse':
|
|
91
|
+
"""
|
|
92
|
+
The data controller's properties
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "properties")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter(name="systemData")
|
|
98
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
99
|
+
"""
|
|
100
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "system_data")
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter
|
|
106
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
107
|
+
"""
|
|
108
|
+
Resource tags.
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "tags")
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def type(self) -> str:
|
|
115
|
+
"""
|
|
116
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "type")
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
class AwaitableGetDataControllerResult(GetDataControllerResult):
|
|
122
|
+
# pylint: disable=using-constant-test
|
|
123
|
+
def __await__(self):
|
|
124
|
+
if False:
|
|
125
|
+
yield self
|
|
126
|
+
return GetDataControllerResult(
|
|
127
|
+
extended_location=self.extended_location,
|
|
128
|
+
id=self.id,
|
|
129
|
+
location=self.location,
|
|
130
|
+
name=self.name,
|
|
131
|
+
properties=self.properties,
|
|
132
|
+
system_data=self.system_data,
|
|
133
|
+
tags=self.tags,
|
|
134
|
+
type=self.type)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
def get_data_controller(data_controller_name: Optional[str] = None,
|
|
138
|
+
resource_group_name: Optional[str] = None,
|
|
139
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataControllerResult:
|
|
140
|
+
"""
|
|
141
|
+
Retrieves a dataController resource
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
:param str data_controller_name: The name of the data controller
|
|
145
|
+
:param str resource_group_name: The name of the Azure resource group
|
|
146
|
+
"""
|
|
147
|
+
__args__ = dict()
|
|
148
|
+
__args__['dataControllerName'] = data_controller_name
|
|
149
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
150
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
151
|
+
__ret__ = pulumi.runtime.invoke('azure-native:azurearcdata/v20240501preview:getDataController', __args__, opts=opts, typ=GetDataControllerResult).value
|
|
152
|
+
|
|
153
|
+
return AwaitableGetDataControllerResult(
|
|
154
|
+
extended_location=pulumi.get(__ret__, 'extended_location'),
|
|
155
|
+
id=pulumi.get(__ret__, 'id'),
|
|
156
|
+
location=pulumi.get(__ret__, 'location'),
|
|
157
|
+
name=pulumi.get(__ret__, 'name'),
|
|
158
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
159
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
160
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
161
|
+
type=pulumi.get(__ret__, 'type'))
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
@_utilities.lift_output_func(get_data_controller)
|
|
165
|
+
def get_data_controller_output(data_controller_name: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
167
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDataControllerResult]:
|
|
168
|
+
"""
|
|
169
|
+
Retrieves a dataController resource
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
:param str data_controller_name: The name of the data controller
|
|
173
|
+
:param str resource_group_name: The name of the Azure resource group
|
|
174
|
+
"""
|
|
175
|
+
...
|
|
@@ -0,0 +1,141 @@
|
|
|
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
|
+
'GetFailoverGroupResult',
|
|
20
|
+
'AwaitableGetFailoverGroupResult',
|
|
21
|
+
'get_failover_group',
|
|
22
|
+
'get_failover_group_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetFailoverGroupResult:
|
|
27
|
+
"""
|
|
28
|
+
A failover group resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, id=None, name=None, properties=None, system_data=None, type=None):
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if name and not isinstance(name, str):
|
|
35
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
36
|
+
pulumi.set(__self__, "name", name)
|
|
37
|
+
if properties and not isinstance(properties, dict):
|
|
38
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "properties", properties)
|
|
40
|
+
if system_data and not isinstance(system_data, dict):
|
|
41
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
43
|
+
if type and not isinstance(type, str):
|
|
44
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
45
|
+
pulumi.set(__self__, "type", type)
|
|
46
|
+
|
|
47
|
+
@property
|
|
48
|
+
@pulumi.getter
|
|
49
|
+
def id(self) -> str:
|
|
50
|
+
"""
|
|
51
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
52
|
+
"""
|
|
53
|
+
return pulumi.get(self, "id")
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter
|
|
57
|
+
def name(self) -> str:
|
|
58
|
+
"""
|
|
59
|
+
The name of the resource
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "name")
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter
|
|
65
|
+
def properties(self) -> 'outputs.FailoverGroupPropertiesResponse':
|
|
66
|
+
"""
|
|
67
|
+
null
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "properties")
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter(name="systemData")
|
|
73
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
74
|
+
"""
|
|
75
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "system_data")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter
|
|
81
|
+
def type(self) -> str:
|
|
82
|
+
"""
|
|
83
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "type")
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class AwaitableGetFailoverGroupResult(GetFailoverGroupResult):
|
|
89
|
+
# pylint: disable=using-constant-test
|
|
90
|
+
def __await__(self):
|
|
91
|
+
if False:
|
|
92
|
+
yield self
|
|
93
|
+
return GetFailoverGroupResult(
|
|
94
|
+
id=self.id,
|
|
95
|
+
name=self.name,
|
|
96
|
+
properties=self.properties,
|
|
97
|
+
system_data=self.system_data,
|
|
98
|
+
type=self.type)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
def get_failover_group(failover_group_name: Optional[str] = None,
|
|
102
|
+
resource_group_name: Optional[str] = None,
|
|
103
|
+
sql_managed_instance_name: Optional[str] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFailoverGroupResult:
|
|
105
|
+
"""
|
|
106
|
+
Retrieves a failover group resource
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
:param str failover_group_name: The name of the Failover Group
|
|
110
|
+
:param str resource_group_name: The name of the Azure resource group
|
|
111
|
+
:param str sql_managed_instance_name: Name of SQL Managed Instance
|
|
112
|
+
"""
|
|
113
|
+
__args__ = dict()
|
|
114
|
+
__args__['failoverGroupName'] = failover_group_name
|
|
115
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
116
|
+
__args__['sqlManagedInstanceName'] = sql_managed_instance_name
|
|
117
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
118
|
+
__ret__ = pulumi.runtime.invoke('azure-native:azurearcdata/v20240501preview:getFailoverGroup', __args__, opts=opts, typ=GetFailoverGroupResult).value
|
|
119
|
+
|
|
120
|
+
return AwaitableGetFailoverGroupResult(
|
|
121
|
+
id=pulumi.get(__ret__, 'id'),
|
|
122
|
+
name=pulumi.get(__ret__, 'name'),
|
|
123
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
124
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
125
|
+
type=pulumi.get(__ret__, 'type'))
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
@_utilities.lift_output_func(get_failover_group)
|
|
129
|
+
def get_failover_group_output(failover_group_name: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
sql_managed_instance_name: Optional[pulumi.Input[str]] = None,
|
|
132
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFailoverGroupResult]:
|
|
133
|
+
"""
|
|
134
|
+
Retrieves a failover group resource
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
:param str failover_group_name: The name of the Failover Group
|
|
138
|
+
:param str resource_group_name: The name of the Azure resource group
|
|
139
|
+
:param str sql_managed_instance_name: Name of SQL Managed Instance
|
|
140
|
+
"""
|
|
141
|
+
...
|