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,246 @@
|
|
|
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__ = ['RoleManagementPolicyAssignmentArgs', 'RoleManagementPolicyAssignment']
|
|
19
|
+
|
|
20
|
+
@pulumi.input_type
|
|
21
|
+
class RoleManagementPolicyAssignmentArgs:
|
|
22
|
+
def __init__(__self__, *,
|
|
23
|
+
scope: pulumi.Input[str],
|
|
24
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
role_definition_id: Optional[pulumi.Input[str]] = None,
|
|
26
|
+
role_management_policy_assignment_name: Optional[pulumi.Input[str]] = None):
|
|
27
|
+
"""
|
|
28
|
+
The set of arguments for constructing a RoleManagementPolicyAssignment resource.
|
|
29
|
+
:param pulumi.Input[str] scope: The role management policy scope.
|
|
30
|
+
:param pulumi.Input[str] policy_id: The policy id role management policy assignment.
|
|
31
|
+
:param pulumi.Input[str] role_definition_id: The role definition of management policy assignment.
|
|
32
|
+
:param pulumi.Input[str] role_management_policy_assignment_name: The name of format {guid_guid} the role management policy assignment to upsert.
|
|
33
|
+
"""
|
|
34
|
+
pulumi.set(__self__, "scope", scope)
|
|
35
|
+
if policy_id is not None:
|
|
36
|
+
pulumi.set(__self__, "policy_id", policy_id)
|
|
37
|
+
if role_definition_id is not None:
|
|
38
|
+
pulumi.set(__self__, "role_definition_id", role_definition_id)
|
|
39
|
+
if role_management_policy_assignment_name is not None:
|
|
40
|
+
pulumi.set(__self__, "role_management_policy_assignment_name", role_management_policy_assignment_name)
|
|
41
|
+
|
|
42
|
+
@property
|
|
43
|
+
@pulumi.getter
|
|
44
|
+
def scope(self) -> pulumi.Input[str]:
|
|
45
|
+
"""
|
|
46
|
+
The role management policy scope.
|
|
47
|
+
"""
|
|
48
|
+
return pulumi.get(self, "scope")
|
|
49
|
+
|
|
50
|
+
@scope.setter
|
|
51
|
+
def scope(self, value: pulumi.Input[str]):
|
|
52
|
+
pulumi.set(self, "scope", value)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="policyId")
|
|
56
|
+
def policy_id(self) -> Optional[pulumi.Input[str]]:
|
|
57
|
+
"""
|
|
58
|
+
The policy id role management policy assignment.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "policy_id")
|
|
61
|
+
|
|
62
|
+
@policy_id.setter
|
|
63
|
+
def policy_id(self, value: Optional[pulumi.Input[str]]):
|
|
64
|
+
pulumi.set(self, "policy_id", value)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="roleDefinitionId")
|
|
68
|
+
def role_definition_id(self) -> Optional[pulumi.Input[str]]:
|
|
69
|
+
"""
|
|
70
|
+
The role definition of management policy assignment.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "role_definition_id")
|
|
73
|
+
|
|
74
|
+
@role_definition_id.setter
|
|
75
|
+
def role_definition_id(self, value: Optional[pulumi.Input[str]]):
|
|
76
|
+
pulumi.set(self, "role_definition_id", value)
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="roleManagementPolicyAssignmentName")
|
|
80
|
+
def role_management_policy_assignment_name(self) -> Optional[pulumi.Input[str]]:
|
|
81
|
+
"""
|
|
82
|
+
The name of format {guid_guid} the role management policy assignment to upsert.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "role_management_policy_assignment_name")
|
|
85
|
+
|
|
86
|
+
@role_management_policy_assignment_name.setter
|
|
87
|
+
def role_management_policy_assignment_name(self, value: Optional[pulumi.Input[str]]):
|
|
88
|
+
pulumi.set(self, "role_management_policy_assignment_name", value)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
class RoleManagementPolicyAssignment(pulumi.CustomResource):
|
|
92
|
+
@overload
|
|
93
|
+
def __init__(__self__,
|
|
94
|
+
resource_name: str,
|
|
95
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
96
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
|
97
|
+
role_definition_id: Optional[pulumi.Input[str]] = None,
|
|
98
|
+
role_management_policy_assignment_name: Optional[pulumi.Input[str]] = None,
|
|
99
|
+
scope: Optional[pulumi.Input[str]] = None,
|
|
100
|
+
__props__=None):
|
|
101
|
+
"""
|
|
102
|
+
Role management policy
|
|
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] policy_id: The policy id role management policy assignment.
|
|
107
|
+
:param pulumi.Input[str] role_definition_id: The role definition of management policy assignment.
|
|
108
|
+
:param pulumi.Input[str] role_management_policy_assignment_name: The name of format {guid_guid} the role management policy assignment to upsert.
|
|
109
|
+
:param pulumi.Input[str] scope: The role management policy scope.
|
|
110
|
+
"""
|
|
111
|
+
...
|
|
112
|
+
@overload
|
|
113
|
+
def __init__(__self__,
|
|
114
|
+
resource_name: str,
|
|
115
|
+
args: RoleManagementPolicyAssignmentArgs,
|
|
116
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
117
|
+
"""
|
|
118
|
+
Role management policy
|
|
119
|
+
|
|
120
|
+
:param str resource_name: The name of the resource.
|
|
121
|
+
:param RoleManagementPolicyAssignmentArgs 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(RoleManagementPolicyAssignmentArgs, 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
|
+
policy_id: Optional[pulumi.Input[str]] = None,
|
|
136
|
+
role_definition_id: Optional[pulumi.Input[str]] = None,
|
|
137
|
+
role_management_policy_assignment_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
scope: 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__ = RoleManagementPolicyAssignmentArgs.__new__(RoleManagementPolicyAssignmentArgs)
|
|
147
|
+
|
|
148
|
+
__props__.__dict__["policy_id"] = policy_id
|
|
149
|
+
__props__.__dict__["role_definition_id"] = role_definition_id
|
|
150
|
+
__props__.__dict__["role_management_policy_assignment_name"] = role_management_policy_assignment_name
|
|
151
|
+
if scope is None and not opts.urn:
|
|
152
|
+
raise TypeError("Missing required property 'scope'")
|
|
153
|
+
__props__.__dict__["scope"] = scope
|
|
154
|
+
__props__.__dict__["effective_rules"] = None
|
|
155
|
+
__props__.__dict__["name"] = None
|
|
156
|
+
__props__.__dict__["policy_assignment_properties"] = None
|
|
157
|
+
__props__.__dict__["type"] = None
|
|
158
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:authorization:RoleManagementPolicyAssignment"), pulumi.Alias(type_="azure-native:authorization/v20201001:RoleManagementPolicyAssignment"), pulumi.Alias(type_="azure-native:authorization/v20201001preview:RoleManagementPolicyAssignment"), pulumi.Alias(type_="azure-native:authorization/v20240201preview:RoleManagementPolicyAssignment")])
|
|
159
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
160
|
+
super(RoleManagementPolicyAssignment, __self__).__init__(
|
|
161
|
+
'azure-native:authorization/v20240901preview:RoleManagementPolicyAssignment',
|
|
162
|
+
resource_name,
|
|
163
|
+
__props__,
|
|
164
|
+
opts)
|
|
165
|
+
|
|
166
|
+
@staticmethod
|
|
167
|
+
def get(resource_name: str,
|
|
168
|
+
id: pulumi.Input[str],
|
|
169
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'RoleManagementPolicyAssignment':
|
|
170
|
+
"""
|
|
171
|
+
Get an existing RoleManagementPolicyAssignment resource's state with the given name, id, and optional extra
|
|
172
|
+
properties used to qualify the lookup.
|
|
173
|
+
|
|
174
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
175
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
176
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
177
|
+
"""
|
|
178
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
179
|
+
|
|
180
|
+
__props__ = RoleManagementPolicyAssignmentArgs.__new__(RoleManagementPolicyAssignmentArgs)
|
|
181
|
+
|
|
182
|
+
__props__.__dict__["effective_rules"] = None
|
|
183
|
+
__props__.__dict__["name"] = None
|
|
184
|
+
__props__.__dict__["policy_assignment_properties"] = None
|
|
185
|
+
__props__.__dict__["policy_id"] = None
|
|
186
|
+
__props__.__dict__["role_definition_id"] = None
|
|
187
|
+
__props__.__dict__["scope"] = None
|
|
188
|
+
__props__.__dict__["type"] = None
|
|
189
|
+
return RoleManagementPolicyAssignment(resource_name, opts=opts, __props__=__props__)
|
|
190
|
+
|
|
191
|
+
@property
|
|
192
|
+
@pulumi.getter(name="effectiveRules")
|
|
193
|
+
def effective_rules(self) -> pulumi.Output[Sequence[Any]]:
|
|
194
|
+
"""
|
|
195
|
+
The readonly computed rule applied to the policy.
|
|
196
|
+
"""
|
|
197
|
+
return pulumi.get(self, "effective_rules")
|
|
198
|
+
|
|
199
|
+
@property
|
|
200
|
+
@pulumi.getter
|
|
201
|
+
def name(self) -> pulumi.Output[str]:
|
|
202
|
+
"""
|
|
203
|
+
The role management policy name.
|
|
204
|
+
"""
|
|
205
|
+
return pulumi.get(self, "name")
|
|
206
|
+
|
|
207
|
+
@property
|
|
208
|
+
@pulumi.getter(name="policyAssignmentProperties")
|
|
209
|
+
def policy_assignment_properties(self) -> pulumi.Output['outputs.PolicyAssignmentPropertiesResponse']:
|
|
210
|
+
"""
|
|
211
|
+
Additional properties of scope, role definition and policy
|
|
212
|
+
"""
|
|
213
|
+
return pulumi.get(self, "policy_assignment_properties")
|
|
214
|
+
|
|
215
|
+
@property
|
|
216
|
+
@pulumi.getter(name="policyId")
|
|
217
|
+
def policy_id(self) -> pulumi.Output[Optional[str]]:
|
|
218
|
+
"""
|
|
219
|
+
The policy id role management policy assignment.
|
|
220
|
+
"""
|
|
221
|
+
return pulumi.get(self, "policy_id")
|
|
222
|
+
|
|
223
|
+
@property
|
|
224
|
+
@pulumi.getter(name="roleDefinitionId")
|
|
225
|
+
def role_definition_id(self) -> pulumi.Output[Optional[str]]:
|
|
226
|
+
"""
|
|
227
|
+
The role definition of management policy assignment.
|
|
228
|
+
"""
|
|
229
|
+
return pulumi.get(self, "role_definition_id")
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
@pulumi.getter
|
|
233
|
+
def scope(self) -> pulumi.Output[Optional[str]]:
|
|
234
|
+
"""
|
|
235
|
+
The role management policy scope.
|
|
236
|
+
"""
|
|
237
|
+
return pulumi.get(self, "scope")
|
|
238
|
+
|
|
239
|
+
@property
|
|
240
|
+
@pulumi.getter
|
|
241
|
+
def type(self) -> pulumi.Output[str]:
|
|
242
|
+
"""
|
|
243
|
+
The role management policy type.
|
|
244
|
+
"""
|
|
245
|
+
return pulumi.get(self, "type")
|
|
246
|
+
|
|
@@ -17,13 +17,18 @@ from .get_sql_managed_instance import *
|
|
|
17
17
|
from .get_sql_server_availability_group import *
|
|
18
18
|
from .get_sql_server_availability_group_detail_view import *
|
|
19
19
|
from .get_sql_server_database import *
|
|
20
|
+
from .get_sql_server_esu_license import *
|
|
20
21
|
from .get_sql_server_instance import *
|
|
22
|
+
from .get_sql_server_instance_jobs_status import *
|
|
21
23
|
from .get_sql_server_instance_telemetry import *
|
|
24
|
+
from .get_sql_server_license import *
|
|
22
25
|
from .postgres_instance import *
|
|
23
26
|
from .sql_managed_instance import *
|
|
24
27
|
from .sql_server_availability_group import *
|
|
25
28
|
from .sql_server_database import *
|
|
29
|
+
from .sql_server_esu_license import *
|
|
26
30
|
from .sql_server_instance import *
|
|
31
|
+
from .sql_server_license import *
|
|
27
32
|
from ._inputs import *
|
|
28
33
|
from . import outputs
|
|
29
34
|
|
|
@@ -33,7 +38,10 @@ if typing.TYPE_CHECKING:
|
|
|
33
38
|
v20230115preview = __v20230115preview
|
|
34
39
|
import pulumi_azure_native.azurearcdata.v20240101 as __v20240101
|
|
35
40
|
v20240101 = __v20240101
|
|
41
|
+
import pulumi_azure_native.azurearcdata.v20240501preview as __v20240501preview
|
|
42
|
+
v20240501preview = __v20240501preview
|
|
36
43
|
else:
|
|
37
44
|
v20230115preview = _utilities.lazy_import('pulumi_azure_native.azurearcdata.v20230115preview')
|
|
38
45
|
v20240101 = _utilities.lazy_import('pulumi_azure_native.azurearcdata.v20240101')
|
|
46
|
+
v20240501preview = _utilities.lazy_import('pulumi_azure_native.azurearcdata.v20240501preview')
|
|
39
47
|
|
|
@@ -6,9 +6,11 @@ from enum import Enum
|
|
|
6
6
|
|
|
7
7
|
__all__ = [
|
|
8
8
|
'AccountProvisioningMode',
|
|
9
|
+
'ActivationState',
|
|
9
10
|
'AggregationType',
|
|
10
11
|
'ArcSqlManagedInstanceLicenseType',
|
|
11
12
|
'ArcSqlServerLicenseType',
|
|
13
|
+
'BillingPlan',
|
|
12
14
|
'ConnectionStatus',
|
|
13
15
|
'DatabaseState',
|
|
14
16
|
'DefenderStatus',
|
|
@@ -18,11 +20,15 @@ __all__ = [
|
|
|
18
20
|
'HostType',
|
|
19
21
|
'Infrastructure',
|
|
20
22
|
'InstanceFailoverGroupRole',
|
|
23
|
+
'LicenseCategory',
|
|
21
24
|
'PostgresInstanceSkuTier',
|
|
22
25
|
'RecoveryMode',
|
|
26
|
+
'ScopeType',
|
|
23
27
|
'SqlManagedInstanceSkuName',
|
|
24
28
|
'SqlManagedInstanceSkuTier',
|
|
25
29
|
'SqlVersion',
|
|
30
|
+
'State',
|
|
31
|
+
'Version',
|
|
26
32
|
]
|
|
27
33
|
|
|
28
34
|
|
|
@@ -34,6 +40,14 @@ class AccountProvisioningMode(str, Enum):
|
|
|
34
40
|
MANUAL = "manual"
|
|
35
41
|
|
|
36
42
|
|
|
43
|
+
class ActivationState(str, Enum):
|
|
44
|
+
"""
|
|
45
|
+
The activation state of the license.
|
|
46
|
+
"""
|
|
47
|
+
ACTIVATED = "Activated"
|
|
48
|
+
DEACTIVATED = "Deactivated"
|
|
49
|
+
|
|
50
|
+
|
|
37
51
|
class AggregationType(str, Enum):
|
|
38
52
|
"""
|
|
39
53
|
The aggregation type to use for the numerical columns in the dataset.
|
|
@@ -67,6 +81,14 @@ class ArcSqlServerLicenseType(str, Enum):
|
|
|
67
81
|
PAID = "Paid"
|
|
68
82
|
|
|
69
83
|
|
|
84
|
+
class BillingPlan(str, Enum):
|
|
85
|
+
"""
|
|
86
|
+
SQL Server license type.
|
|
87
|
+
"""
|
|
88
|
+
PAYG = "PAYG"
|
|
89
|
+
PAID = "Paid"
|
|
90
|
+
|
|
91
|
+
|
|
70
92
|
class ConnectionStatus(str, Enum):
|
|
71
93
|
"""
|
|
72
94
|
The cloud connectivity status.
|
|
@@ -170,6 +192,13 @@ class InstanceFailoverGroupRole(str, Enum):
|
|
|
170
192
|
FORCE_SECONDARY = "force-secondary"
|
|
171
193
|
|
|
172
194
|
|
|
195
|
+
class LicenseCategory(str, Enum):
|
|
196
|
+
"""
|
|
197
|
+
This property represents the choice between SQL Server Core and ESU licenses.
|
|
198
|
+
"""
|
|
199
|
+
CORE = "Core"
|
|
200
|
+
|
|
201
|
+
|
|
173
202
|
class PostgresInstanceSkuTier(str, Enum):
|
|
174
203
|
"""
|
|
175
204
|
This field is required to be implemented by the Resource Provider if the service has more than one tier.
|
|
@@ -186,6 +215,15 @@ class RecoveryMode(str, Enum):
|
|
|
186
215
|
SIMPLE = "Simple"
|
|
187
216
|
|
|
188
217
|
|
|
218
|
+
class ScopeType(str, Enum):
|
|
219
|
+
"""
|
|
220
|
+
The Azure scope to which the license will apply.
|
|
221
|
+
"""
|
|
222
|
+
TENANT = "Tenant"
|
|
223
|
+
SUBSCRIPTION = "Subscription"
|
|
224
|
+
RESOURCE_GROUP = "ResourceGroup"
|
|
225
|
+
|
|
226
|
+
|
|
189
227
|
class SqlManagedInstanceSkuName(str, Enum):
|
|
190
228
|
"""
|
|
191
229
|
The name of the SKU.
|
|
@@ -212,3 +250,20 @@ class SqlVersion(str, Enum):
|
|
|
212
250
|
SQ_L_SERVER_2019 = "SQL Server 2019"
|
|
213
251
|
SQ_L_SERVER_2022 = "SQL Server 2022"
|
|
214
252
|
UNKNOWN = "Unknown"
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
class State(str, Enum):
|
|
256
|
+
"""
|
|
257
|
+
The activation state of the license.
|
|
258
|
+
"""
|
|
259
|
+
INACTIVE = "Inactive"
|
|
260
|
+
ACTIVE = "Active"
|
|
261
|
+
TERMINATED = "Terminated"
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
class Version(str, Enum):
|
|
265
|
+
"""
|
|
266
|
+
The SQL Server version the license covers.
|
|
267
|
+
"""
|
|
268
|
+
SQ_L_SERVER_2012 = "SQL Server 2012"
|
|
269
|
+
SQ_L_SERVER_2014 = "SQL Server 2014"
|
|
@@ -98,8 +98,12 @@ __all__ = [
|
|
|
98
98
|
'SqlServerDatabaseResourcePropertiesDatabaseOptionsArgsDict',
|
|
99
99
|
'SqlServerDatabaseResourcePropertiesArgs',
|
|
100
100
|
'SqlServerDatabaseResourcePropertiesArgsDict',
|
|
101
|
+
'SqlServerEsuLicensePropertiesArgs',
|
|
102
|
+
'SqlServerEsuLicensePropertiesArgsDict',
|
|
101
103
|
'SqlServerInstancePropertiesArgs',
|
|
102
104
|
'SqlServerInstancePropertiesArgsDict',
|
|
105
|
+
'SqlServerLicensePropertiesArgs',
|
|
106
|
+
'SqlServerLicensePropertiesArgsDict',
|
|
103
107
|
'UploadServicePrincipalArgs',
|
|
104
108
|
'UploadServicePrincipalArgsDict',
|
|
105
109
|
'UploadWatermarkArgs',
|
|
@@ -3635,6 +3639,117 @@ class SqlServerDatabaseResourcePropertiesArgs:
|
|
|
3635
3639
|
pulumi.set(self, "state", value)
|
|
3636
3640
|
|
|
3637
3641
|
|
|
3642
|
+
if not MYPY:
|
|
3643
|
+
class SqlServerEsuLicensePropertiesArgsDict(TypedDict):
|
|
3644
|
+
"""
|
|
3645
|
+
Properties of SQL Server ESU license.
|
|
3646
|
+
"""
|
|
3647
|
+
activation_state: pulumi.Input[Union[str, 'State']]
|
|
3648
|
+
"""
|
|
3649
|
+
The activation state of the license.
|
|
3650
|
+
"""
|
|
3651
|
+
billing_plan: pulumi.Input[Union[str, 'BillingPlan']]
|
|
3652
|
+
"""
|
|
3653
|
+
SQL Server ESU license type.
|
|
3654
|
+
"""
|
|
3655
|
+
physical_cores: pulumi.Input[int]
|
|
3656
|
+
"""
|
|
3657
|
+
The number of total cores of the license covers.
|
|
3658
|
+
"""
|
|
3659
|
+
scope_type: pulumi.Input[Union[str, 'ScopeType']]
|
|
3660
|
+
"""
|
|
3661
|
+
The Azure scope to which the license will apply.
|
|
3662
|
+
"""
|
|
3663
|
+
version: pulumi.Input[Union[str, 'Version']]
|
|
3664
|
+
"""
|
|
3665
|
+
The SQL Server version the license covers.
|
|
3666
|
+
"""
|
|
3667
|
+
elif False:
|
|
3668
|
+
SqlServerEsuLicensePropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
3669
|
+
|
|
3670
|
+
@pulumi.input_type
|
|
3671
|
+
class SqlServerEsuLicensePropertiesArgs:
|
|
3672
|
+
def __init__(__self__, *,
|
|
3673
|
+
activation_state: pulumi.Input[Union[str, 'State']],
|
|
3674
|
+
billing_plan: pulumi.Input[Union[str, 'BillingPlan']],
|
|
3675
|
+
physical_cores: pulumi.Input[int],
|
|
3676
|
+
scope_type: pulumi.Input[Union[str, 'ScopeType']],
|
|
3677
|
+
version: pulumi.Input[Union[str, 'Version']]):
|
|
3678
|
+
"""
|
|
3679
|
+
Properties of SQL Server ESU license.
|
|
3680
|
+
:param pulumi.Input[Union[str, 'State']] activation_state: The activation state of the license.
|
|
3681
|
+
:param pulumi.Input[Union[str, 'BillingPlan']] billing_plan: SQL Server ESU license type.
|
|
3682
|
+
:param pulumi.Input[int] physical_cores: The number of total cores of the license covers.
|
|
3683
|
+
:param pulumi.Input[Union[str, 'ScopeType']] scope_type: The Azure scope to which the license will apply.
|
|
3684
|
+
:param pulumi.Input[Union[str, 'Version']] version: The SQL Server version the license covers.
|
|
3685
|
+
"""
|
|
3686
|
+
pulumi.set(__self__, "activation_state", activation_state)
|
|
3687
|
+
pulumi.set(__self__, "billing_plan", billing_plan)
|
|
3688
|
+
pulumi.set(__self__, "physical_cores", physical_cores)
|
|
3689
|
+
pulumi.set(__self__, "scope_type", scope_type)
|
|
3690
|
+
pulumi.set(__self__, "version", version)
|
|
3691
|
+
|
|
3692
|
+
@property
|
|
3693
|
+
@pulumi.getter(name="activationState")
|
|
3694
|
+
def activation_state(self) -> pulumi.Input[Union[str, 'State']]:
|
|
3695
|
+
"""
|
|
3696
|
+
The activation state of the license.
|
|
3697
|
+
"""
|
|
3698
|
+
return pulumi.get(self, "activation_state")
|
|
3699
|
+
|
|
3700
|
+
@activation_state.setter
|
|
3701
|
+
def activation_state(self, value: pulumi.Input[Union[str, 'State']]):
|
|
3702
|
+
pulumi.set(self, "activation_state", value)
|
|
3703
|
+
|
|
3704
|
+
@property
|
|
3705
|
+
@pulumi.getter(name="billingPlan")
|
|
3706
|
+
def billing_plan(self) -> pulumi.Input[Union[str, 'BillingPlan']]:
|
|
3707
|
+
"""
|
|
3708
|
+
SQL Server ESU license type.
|
|
3709
|
+
"""
|
|
3710
|
+
return pulumi.get(self, "billing_plan")
|
|
3711
|
+
|
|
3712
|
+
@billing_plan.setter
|
|
3713
|
+
def billing_plan(self, value: pulumi.Input[Union[str, 'BillingPlan']]):
|
|
3714
|
+
pulumi.set(self, "billing_plan", value)
|
|
3715
|
+
|
|
3716
|
+
@property
|
|
3717
|
+
@pulumi.getter(name="physicalCores")
|
|
3718
|
+
def physical_cores(self) -> pulumi.Input[int]:
|
|
3719
|
+
"""
|
|
3720
|
+
The number of total cores of the license covers.
|
|
3721
|
+
"""
|
|
3722
|
+
return pulumi.get(self, "physical_cores")
|
|
3723
|
+
|
|
3724
|
+
@physical_cores.setter
|
|
3725
|
+
def physical_cores(self, value: pulumi.Input[int]):
|
|
3726
|
+
pulumi.set(self, "physical_cores", value)
|
|
3727
|
+
|
|
3728
|
+
@property
|
|
3729
|
+
@pulumi.getter(name="scopeType")
|
|
3730
|
+
def scope_type(self) -> pulumi.Input[Union[str, 'ScopeType']]:
|
|
3731
|
+
"""
|
|
3732
|
+
The Azure scope to which the license will apply.
|
|
3733
|
+
"""
|
|
3734
|
+
return pulumi.get(self, "scope_type")
|
|
3735
|
+
|
|
3736
|
+
@scope_type.setter
|
|
3737
|
+
def scope_type(self, value: pulumi.Input[Union[str, 'ScopeType']]):
|
|
3738
|
+
pulumi.set(self, "scope_type", value)
|
|
3739
|
+
|
|
3740
|
+
@property
|
|
3741
|
+
@pulumi.getter
|
|
3742
|
+
def version(self) -> pulumi.Input[Union[str, 'Version']]:
|
|
3743
|
+
"""
|
|
3744
|
+
The SQL Server version the license covers.
|
|
3745
|
+
"""
|
|
3746
|
+
return pulumi.get(self, "version")
|
|
3747
|
+
|
|
3748
|
+
@version.setter
|
|
3749
|
+
def version(self, value: pulumi.Input[Union[str, 'Version']]):
|
|
3750
|
+
pulumi.set(self, "version", value)
|
|
3751
|
+
|
|
3752
|
+
|
|
3638
3753
|
if not MYPY:
|
|
3639
3754
|
class SqlServerInstancePropertiesArgsDict(TypedDict):
|
|
3640
3755
|
"""
|
|
@@ -3989,6 +4104,117 @@ class SqlServerInstancePropertiesArgs:
|
|
|
3989
4104
|
pulumi.set(self, "version", value)
|
|
3990
4105
|
|
|
3991
4106
|
|
|
4107
|
+
if not MYPY:
|
|
4108
|
+
class SqlServerLicensePropertiesArgsDict(TypedDict):
|
|
4109
|
+
"""
|
|
4110
|
+
Properties of SQL Server License.
|
|
4111
|
+
"""
|
|
4112
|
+
activation_state: pulumi.Input[Union[str, 'ActivationState']]
|
|
4113
|
+
"""
|
|
4114
|
+
The activation state of the license.
|
|
4115
|
+
"""
|
|
4116
|
+
billing_plan: pulumi.Input[Union[str, 'BillingPlan']]
|
|
4117
|
+
"""
|
|
4118
|
+
SQL Server license type.
|
|
4119
|
+
"""
|
|
4120
|
+
license_category: pulumi.Input[Union[str, 'LicenseCategory']]
|
|
4121
|
+
"""
|
|
4122
|
+
This property represents the choice between SQL Server Core and ESU licenses.
|
|
4123
|
+
"""
|
|
4124
|
+
physical_cores: pulumi.Input[int]
|
|
4125
|
+
"""
|
|
4126
|
+
The number of total cores of the license covers.
|
|
4127
|
+
"""
|
|
4128
|
+
scope_type: pulumi.Input[Union[str, 'ScopeType']]
|
|
4129
|
+
"""
|
|
4130
|
+
The Azure scope to which the license will apply.
|
|
4131
|
+
"""
|
|
4132
|
+
elif False:
|
|
4133
|
+
SqlServerLicensePropertiesArgsDict: TypeAlias = Mapping[str, Any]
|
|
4134
|
+
|
|
4135
|
+
@pulumi.input_type
|
|
4136
|
+
class SqlServerLicensePropertiesArgs:
|
|
4137
|
+
def __init__(__self__, *,
|
|
4138
|
+
activation_state: pulumi.Input[Union[str, 'ActivationState']],
|
|
4139
|
+
billing_plan: pulumi.Input[Union[str, 'BillingPlan']],
|
|
4140
|
+
license_category: pulumi.Input[Union[str, 'LicenseCategory']],
|
|
4141
|
+
physical_cores: pulumi.Input[int],
|
|
4142
|
+
scope_type: pulumi.Input[Union[str, 'ScopeType']]):
|
|
4143
|
+
"""
|
|
4144
|
+
Properties of SQL Server License.
|
|
4145
|
+
:param pulumi.Input[Union[str, 'ActivationState']] activation_state: The activation state of the license.
|
|
4146
|
+
:param pulumi.Input[Union[str, 'BillingPlan']] billing_plan: SQL Server license type.
|
|
4147
|
+
:param pulumi.Input[Union[str, 'LicenseCategory']] license_category: This property represents the choice between SQL Server Core and ESU licenses.
|
|
4148
|
+
:param pulumi.Input[int] physical_cores: The number of total cores of the license covers.
|
|
4149
|
+
:param pulumi.Input[Union[str, 'ScopeType']] scope_type: The Azure scope to which the license will apply.
|
|
4150
|
+
"""
|
|
4151
|
+
pulumi.set(__self__, "activation_state", activation_state)
|
|
4152
|
+
pulumi.set(__self__, "billing_plan", billing_plan)
|
|
4153
|
+
pulumi.set(__self__, "license_category", license_category)
|
|
4154
|
+
pulumi.set(__self__, "physical_cores", physical_cores)
|
|
4155
|
+
pulumi.set(__self__, "scope_type", scope_type)
|
|
4156
|
+
|
|
4157
|
+
@property
|
|
4158
|
+
@pulumi.getter(name="activationState")
|
|
4159
|
+
def activation_state(self) -> pulumi.Input[Union[str, 'ActivationState']]:
|
|
4160
|
+
"""
|
|
4161
|
+
The activation state of the license.
|
|
4162
|
+
"""
|
|
4163
|
+
return pulumi.get(self, "activation_state")
|
|
4164
|
+
|
|
4165
|
+
@activation_state.setter
|
|
4166
|
+
def activation_state(self, value: pulumi.Input[Union[str, 'ActivationState']]):
|
|
4167
|
+
pulumi.set(self, "activation_state", value)
|
|
4168
|
+
|
|
4169
|
+
@property
|
|
4170
|
+
@pulumi.getter(name="billingPlan")
|
|
4171
|
+
def billing_plan(self) -> pulumi.Input[Union[str, 'BillingPlan']]:
|
|
4172
|
+
"""
|
|
4173
|
+
SQL Server license type.
|
|
4174
|
+
"""
|
|
4175
|
+
return pulumi.get(self, "billing_plan")
|
|
4176
|
+
|
|
4177
|
+
@billing_plan.setter
|
|
4178
|
+
def billing_plan(self, value: pulumi.Input[Union[str, 'BillingPlan']]):
|
|
4179
|
+
pulumi.set(self, "billing_plan", value)
|
|
4180
|
+
|
|
4181
|
+
@property
|
|
4182
|
+
@pulumi.getter(name="licenseCategory")
|
|
4183
|
+
def license_category(self) -> pulumi.Input[Union[str, 'LicenseCategory']]:
|
|
4184
|
+
"""
|
|
4185
|
+
This property represents the choice between SQL Server Core and ESU licenses.
|
|
4186
|
+
"""
|
|
4187
|
+
return pulumi.get(self, "license_category")
|
|
4188
|
+
|
|
4189
|
+
@license_category.setter
|
|
4190
|
+
def license_category(self, value: pulumi.Input[Union[str, 'LicenseCategory']]):
|
|
4191
|
+
pulumi.set(self, "license_category", value)
|
|
4192
|
+
|
|
4193
|
+
@property
|
|
4194
|
+
@pulumi.getter(name="physicalCores")
|
|
4195
|
+
def physical_cores(self) -> pulumi.Input[int]:
|
|
4196
|
+
"""
|
|
4197
|
+
The number of total cores of the license covers.
|
|
4198
|
+
"""
|
|
4199
|
+
return pulumi.get(self, "physical_cores")
|
|
4200
|
+
|
|
4201
|
+
@physical_cores.setter
|
|
4202
|
+
def physical_cores(self, value: pulumi.Input[int]):
|
|
4203
|
+
pulumi.set(self, "physical_cores", value)
|
|
4204
|
+
|
|
4205
|
+
@property
|
|
4206
|
+
@pulumi.getter(name="scopeType")
|
|
4207
|
+
def scope_type(self) -> pulumi.Input[Union[str, 'ScopeType']]:
|
|
4208
|
+
"""
|
|
4209
|
+
The Azure scope to which the license will apply.
|
|
4210
|
+
"""
|
|
4211
|
+
return pulumi.get(self, "scope_type")
|
|
4212
|
+
|
|
4213
|
+
@scope_type.setter
|
|
4214
|
+
def scope_type(self, value: pulumi.Input[Union[str, 'ScopeType']]):
|
|
4215
|
+
pulumi.set(self, "scope_type", value)
|
|
4216
|
+
|
|
4217
|
+
|
|
3992
4218
|
if not MYPY:
|
|
3993
4219
|
class UploadServicePrincipalArgsDict(TypedDict):
|
|
3994
4220
|
"""
|
|
@@ -102,7 +102,7 @@ class ActiveDirectoryConnector(pulumi.CustomResource):
|
|
|
102
102
|
Active directory connector resource
|
|
103
103
|
Azure REST API version: 2023-01-15-preview. Prior API version in Azure Native 1.x: 2022-03-01-preview.
|
|
104
104
|
|
|
105
|
-
Other available API versions: 2024-01-01.
|
|
105
|
+
Other available API versions: 2024-01-01, 2024-05-01-preview.
|
|
106
106
|
|
|
107
107
|
:param str resource_name: The name of the resource.
|
|
108
108
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -121,7 +121,7 @@ class ActiveDirectoryConnector(pulumi.CustomResource):
|
|
|
121
121
|
Active directory connector resource
|
|
122
122
|
Azure REST API version: 2023-01-15-preview. Prior API version in Azure Native 1.x: 2022-03-01-preview.
|
|
123
123
|
|
|
124
|
-
Other available API versions: 2024-01-01.
|
|
124
|
+
Other available API versions: 2024-01-01, 2024-05-01-preview.
|
|
125
125
|
|
|
126
126
|
:param str resource_name: The name of the resource.
|
|
127
127
|
:param ActiveDirectoryConnectorArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -164,7 +164,7 @@ class ActiveDirectoryConnector(pulumi.CustomResource):
|
|
|
164
164
|
__props__.__dict__["name"] = None
|
|
165
165
|
__props__.__dict__["system_data"] = None
|
|
166
166
|
__props__.__dict__["type"] = None
|
|
167
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:ActiveDirectoryConnector")])
|
|
167
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurearcdata/v20220301preview:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20220615preview:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20230115preview:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20240101:ActiveDirectoryConnector"), pulumi.Alias(type_="azure-native:azurearcdata/v20240501preview:ActiveDirectoryConnector")])
|
|
168
168
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
169
169
|
super(ActiveDirectoryConnector, __self__).__init__(
|
|
170
170
|
'azure-native:azurearcdata:ActiveDirectoryConnector',
|