pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__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 +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,271 @@
|
|
|
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 pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetDedicatedHostResult',
|
|
15
|
+
'AwaitableGetDedicatedHostResult',
|
|
16
|
+
'get_dedicated_host',
|
|
17
|
+
'get_dedicated_host_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetDedicatedHostResult:
|
|
22
|
+
"""
|
|
23
|
+
Specifies information about the Dedicated host.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, auto_replace_on_failure=None, host_id=None, id=None, instance_view=None, license_type=None, location=None, name=None, platform_fault_domain=None, provisioning_state=None, provisioning_time=None, sku=None, tags=None, time_created=None, type=None, virtual_machines=None):
|
|
26
|
+
if auto_replace_on_failure and not isinstance(auto_replace_on_failure, bool):
|
|
27
|
+
raise TypeError("Expected argument 'auto_replace_on_failure' to be a bool")
|
|
28
|
+
pulumi.set(__self__, "auto_replace_on_failure", auto_replace_on_failure)
|
|
29
|
+
if host_id and not isinstance(host_id, str):
|
|
30
|
+
raise TypeError("Expected argument 'host_id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "host_id", host_id)
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "id", id)
|
|
35
|
+
if instance_view and not isinstance(instance_view, dict):
|
|
36
|
+
raise TypeError("Expected argument 'instance_view' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
38
|
+
if license_type and not isinstance(license_type, str):
|
|
39
|
+
raise TypeError("Expected argument 'license_type' to be a str")
|
|
40
|
+
pulumi.set(__self__, "license_type", license_type)
|
|
41
|
+
if location and not isinstance(location, str):
|
|
42
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
43
|
+
pulumi.set(__self__, "location", location)
|
|
44
|
+
if name and not isinstance(name, str):
|
|
45
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
46
|
+
pulumi.set(__self__, "name", name)
|
|
47
|
+
if platform_fault_domain and not isinstance(platform_fault_domain, int):
|
|
48
|
+
raise TypeError("Expected argument 'platform_fault_domain' to be a int")
|
|
49
|
+
pulumi.set(__self__, "platform_fault_domain", platform_fault_domain)
|
|
50
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
51
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
52
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
53
|
+
if provisioning_time and not isinstance(provisioning_time, str):
|
|
54
|
+
raise TypeError("Expected argument 'provisioning_time' to be a str")
|
|
55
|
+
pulumi.set(__self__, "provisioning_time", provisioning_time)
|
|
56
|
+
if sku and not isinstance(sku, dict):
|
|
57
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
58
|
+
pulumi.set(__self__, "sku", sku)
|
|
59
|
+
if tags and not isinstance(tags, dict):
|
|
60
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
61
|
+
pulumi.set(__self__, "tags", tags)
|
|
62
|
+
if time_created and not isinstance(time_created, str):
|
|
63
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
|
64
|
+
pulumi.set(__self__, "time_created", time_created)
|
|
65
|
+
if type and not isinstance(type, str):
|
|
66
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
67
|
+
pulumi.set(__self__, "type", type)
|
|
68
|
+
if virtual_machines and not isinstance(virtual_machines, list):
|
|
69
|
+
raise TypeError("Expected argument 'virtual_machines' to be a list")
|
|
70
|
+
pulumi.set(__self__, "virtual_machines", virtual_machines)
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="autoReplaceOnFailure")
|
|
74
|
+
def auto_replace_on_failure(self) -> Optional[bool]:
|
|
75
|
+
"""
|
|
76
|
+
Specifies whether the dedicated host should be replaced automatically in case of a failure. The value is defaulted to 'true' when not provided.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "auto_replace_on_failure")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter(name="hostId")
|
|
82
|
+
def host_id(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
A unique id generated and assigned to the dedicated host by the platform. Does not change throughout the lifetime of the host.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "host_id")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def id(self) -> str:
|
|
91
|
+
"""
|
|
92
|
+
Resource Id
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "id")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter(name="instanceView")
|
|
98
|
+
def instance_view(self) -> 'outputs.DedicatedHostInstanceViewResponse':
|
|
99
|
+
"""
|
|
100
|
+
The dedicated host instance view.
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "instance_view")
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter(name="licenseType")
|
|
106
|
+
def license_type(self) -> Optional[str]:
|
|
107
|
+
"""
|
|
108
|
+
Specifies the software license type that will be applied to the VMs deployed on the dedicated host. Possible values are: **None,** **Windows_Server_Hybrid,** **Windows_Server_Perpetual.** The default value is: **None.**
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "license_type")
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def location(self) -> str:
|
|
115
|
+
"""
|
|
116
|
+
Resource location
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "location")
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter
|
|
122
|
+
def name(self) -> str:
|
|
123
|
+
"""
|
|
124
|
+
Resource name
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "name")
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter(name="platformFaultDomain")
|
|
130
|
+
def platform_fault_domain(self) -> Optional[int]:
|
|
131
|
+
"""
|
|
132
|
+
Fault domain of the dedicated host within a dedicated host group.
|
|
133
|
+
"""
|
|
134
|
+
return pulumi.get(self, "platform_fault_domain")
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
@pulumi.getter(name="provisioningState")
|
|
138
|
+
def provisioning_state(self) -> str:
|
|
139
|
+
"""
|
|
140
|
+
The provisioning state, which only appears in the response.
|
|
141
|
+
"""
|
|
142
|
+
return pulumi.get(self, "provisioning_state")
|
|
143
|
+
|
|
144
|
+
@property
|
|
145
|
+
@pulumi.getter(name="provisioningTime")
|
|
146
|
+
def provisioning_time(self) -> str:
|
|
147
|
+
"""
|
|
148
|
+
The date when the host was first provisioned.
|
|
149
|
+
"""
|
|
150
|
+
return pulumi.get(self, "provisioning_time")
|
|
151
|
+
|
|
152
|
+
@property
|
|
153
|
+
@pulumi.getter
|
|
154
|
+
def sku(self) -> 'outputs.SkuResponse':
|
|
155
|
+
"""
|
|
156
|
+
SKU of the dedicated host for Hardware Generation and VM family. Only name is required to be set. List Microsoft.Compute SKUs for a list of possible values.
|
|
157
|
+
"""
|
|
158
|
+
return pulumi.get(self, "sku")
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter
|
|
162
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
163
|
+
"""
|
|
164
|
+
Resource tags
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "tags")
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="timeCreated")
|
|
170
|
+
def time_created(self) -> str:
|
|
171
|
+
"""
|
|
172
|
+
Specifies the time at which the Dedicated Host resource was created. Minimum api-version: 2021-11-01.
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "time_created")
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
@pulumi.getter
|
|
178
|
+
def type(self) -> str:
|
|
179
|
+
"""
|
|
180
|
+
Resource type
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "type")
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
@pulumi.getter(name="virtualMachines")
|
|
186
|
+
def virtual_machines(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
|
|
187
|
+
"""
|
|
188
|
+
A list of references to all virtual machines in the Dedicated Host.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "virtual_machines")
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
class AwaitableGetDedicatedHostResult(GetDedicatedHostResult):
|
|
194
|
+
# pylint: disable=using-constant-test
|
|
195
|
+
def __await__(self):
|
|
196
|
+
if False:
|
|
197
|
+
yield self
|
|
198
|
+
return GetDedicatedHostResult(
|
|
199
|
+
auto_replace_on_failure=self.auto_replace_on_failure,
|
|
200
|
+
host_id=self.host_id,
|
|
201
|
+
id=self.id,
|
|
202
|
+
instance_view=self.instance_view,
|
|
203
|
+
license_type=self.license_type,
|
|
204
|
+
location=self.location,
|
|
205
|
+
name=self.name,
|
|
206
|
+
platform_fault_domain=self.platform_fault_domain,
|
|
207
|
+
provisioning_state=self.provisioning_state,
|
|
208
|
+
provisioning_time=self.provisioning_time,
|
|
209
|
+
sku=self.sku,
|
|
210
|
+
tags=self.tags,
|
|
211
|
+
time_created=self.time_created,
|
|
212
|
+
type=self.type,
|
|
213
|
+
virtual_machines=self.virtual_machines)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
def get_dedicated_host(expand: Optional[str] = None,
|
|
217
|
+
host_group_name: Optional[str] = None,
|
|
218
|
+
host_name: Optional[str] = None,
|
|
219
|
+
resource_group_name: Optional[str] = None,
|
|
220
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedHostResult:
|
|
221
|
+
"""
|
|
222
|
+
Retrieves information about a dedicated host.
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated host. 'UserData' is not supported for dedicated host.
|
|
226
|
+
:param str host_group_name: The name of the dedicated host group.
|
|
227
|
+
:param str host_name: The name of the dedicated host.
|
|
228
|
+
:param str resource_group_name: The name of the resource group.
|
|
229
|
+
"""
|
|
230
|
+
__args__ = dict()
|
|
231
|
+
__args__['expand'] = expand
|
|
232
|
+
__args__['hostGroupName'] = host_group_name
|
|
233
|
+
__args__['hostName'] = host_name
|
|
234
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
235
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
236
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getDedicatedHost', __args__, opts=opts, typ=GetDedicatedHostResult).value
|
|
237
|
+
|
|
238
|
+
return AwaitableGetDedicatedHostResult(
|
|
239
|
+
auto_replace_on_failure=pulumi.get(__ret__, 'auto_replace_on_failure'),
|
|
240
|
+
host_id=pulumi.get(__ret__, 'host_id'),
|
|
241
|
+
id=pulumi.get(__ret__, 'id'),
|
|
242
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
243
|
+
license_type=pulumi.get(__ret__, 'license_type'),
|
|
244
|
+
location=pulumi.get(__ret__, 'location'),
|
|
245
|
+
name=pulumi.get(__ret__, 'name'),
|
|
246
|
+
platform_fault_domain=pulumi.get(__ret__, 'platform_fault_domain'),
|
|
247
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
248
|
+
provisioning_time=pulumi.get(__ret__, 'provisioning_time'),
|
|
249
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
250
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
251
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
|
252
|
+
type=pulumi.get(__ret__, 'type'),
|
|
253
|
+
virtual_machines=pulumi.get(__ret__, 'virtual_machines'))
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
@_utilities.lift_output_func(get_dedicated_host)
|
|
257
|
+
def get_dedicated_host_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
258
|
+
host_group_name: Optional[pulumi.Input[str]] = None,
|
|
259
|
+
host_name: Optional[pulumi.Input[str]] = None,
|
|
260
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
261
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedHostResult]:
|
|
262
|
+
"""
|
|
263
|
+
Retrieves information about a dedicated host.
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated host. 'UserData' is not supported for dedicated host.
|
|
267
|
+
:param str host_group_name: The name of the dedicated host group.
|
|
268
|
+
:param str host_name: The name of the dedicated host.
|
|
269
|
+
:param str resource_group_name: The name of the resource group.
|
|
270
|
+
"""
|
|
271
|
+
...
|
|
@@ -0,0 +1,214 @@
|
|
|
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 pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetDedicatedHostGroupResult',
|
|
15
|
+
'AwaitableGetDedicatedHostGroupResult',
|
|
16
|
+
'get_dedicated_host_group',
|
|
17
|
+
'get_dedicated_host_group_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetDedicatedHostGroupResult:
|
|
22
|
+
"""
|
|
23
|
+
Specifies information about the dedicated host group that the dedicated hosts should be assigned to. Currently, a dedicated host can only be added to a dedicated host group at creation time. An existing dedicated host cannot be added to another dedicated host group.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, additional_capabilities=None, hosts=None, id=None, instance_view=None, location=None, name=None, platform_fault_domain_count=None, support_automatic_placement=None, tags=None, type=None, zones=None):
|
|
26
|
+
if additional_capabilities and not isinstance(additional_capabilities, dict):
|
|
27
|
+
raise TypeError("Expected argument 'additional_capabilities' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "additional_capabilities", additional_capabilities)
|
|
29
|
+
if hosts and not isinstance(hosts, list):
|
|
30
|
+
raise TypeError("Expected argument 'hosts' to be a list")
|
|
31
|
+
pulumi.set(__self__, "hosts", hosts)
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "id", id)
|
|
35
|
+
if instance_view and not isinstance(instance_view, dict):
|
|
36
|
+
raise TypeError("Expected argument 'instance_view' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
38
|
+
if location and not isinstance(location, str):
|
|
39
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
40
|
+
pulumi.set(__self__, "location", location)
|
|
41
|
+
if name and not isinstance(name, str):
|
|
42
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
43
|
+
pulumi.set(__self__, "name", name)
|
|
44
|
+
if platform_fault_domain_count and not isinstance(platform_fault_domain_count, int):
|
|
45
|
+
raise TypeError("Expected argument 'platform_fault_domain_count' to be a int")
|
|
46
|
+
pulumi.set(__self__, "platform_fault_domain_count", platform_fault_domain_count)
|
|
47
|
+
if support_automatic_placement and not isinstance(support_automatic_placement, bool):
|
|
48
|
+
raise TypeError("Expected argument 'support_automatic_placement' to be a bool")
|
|
49
|
+
pulumi.set(__self__, "support_automatic_placement", support_automatic_placement)
|
|
50
|
+
if tags and not isinstance(tags, dict):
|
|
51
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "tags", tags)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
if zones and not isinstance(zones, list):
|
|
57
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
58
|
+
pulumi.set(__self__, "zones", zones)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="additionalCapabilities")
|
|
62
|
+
def additional_capabilities(self) -> Optional['outputs.DedicatedHostGroupPropertiesResponseAdditionalCapabilities']:
|
|
63
|
+
"""
|
|
64
|
+
Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "additional_capabilities")
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter
|
|
70
|
+
def hosts(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
|
|
71
|
+
"""
|
|
72
|
+
A list of references to all dedicated hosts in the dedicated host group.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "hosts")
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def id(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
Resource Id
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "id")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter(name="instanceView")
|
|
86
|
+
def instance_view(self) -> 'outputs.DedicatedHostGroupInstanceViewResponse':
|
|
87
|
+
"""
|
|
88
|
+
The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "instance_view")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def location(self) -> str:
|
|
95
|
+
"""
|
|
96
|
+
Resource location
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "location")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def name(self) -> str:
|
|
103
|
+
"""
|
|
104
|
+
Resource name
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "name")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter(name="platformFaultDomainCount")
|
|
110
|
+
def platform_fault_domain_count(self) -> int:
|
|
111
|
+
"""
|
|
112
|
+
Number of fault domains that the host group can span.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "platform_fault_domain_count")
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter(name="supportAutomaticPlacement")
|
|
118
|
+
def support_automatic_placement(self) -> Optional[bool]:
|
|
119
|
+
"""
|
|
120
|
+
Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "support_automatic_placement")
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter
|
|
126
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
127
|
+
"""
|
|
128
|
+
Resource tags
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "tags")
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter
|
|
134
|
+
def type(self) -> str:
|
|
135
|
+
"""
|
|
136
|
+
Resource type
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "type")
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
@pulumi.getter
|
|
142
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
143
|
+
"""
|
|
144
|
+
Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
|
|
145
|
+
"""
|
|
146
|
+
return pulumi.get(self, "zones")
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class AwaitableGetDedicatedHostGroupResult(GetDedicatedHostGroupResult):
|
|
150
|
+
# pylint: disable=using-constant-test
|
|
151
|
+
def __await__(self):
|
|
152
|
+
if False:
|
|
153
|
+
yield self
|
|
154
|
+
return GetDedicatedHostGroupResult(
|
|
155
|
+
additional_capabilities=self.additional_capabilities,
|
|
156
|
+
hosts=self.hosts,
|
|
157
|
+
id=self.id,
|
|
158
|
+
instance_view=self.instance_view,
|
|
159
|
+
location=self.location,
|
|
160
|
+
name=self.name,
|
|
161
|
+
platform_fault_domain_count=self.platform_fault_domain_count,
|
|
162
|
+
support_automatic_placement=self.support_automatic_placement,
|
|
163
|
+
tags=self.tags,
|
|
164
|
+
type=self.type,
|
|
165
|
+
zones=self.zones)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
def get_dedicated_host_group(expand: Optional[str] = None,
|
|
169
|
+
host_group_name: Optional[str] = None,
|
|
170
|
+
resource_group_name: Optional[str] = None,
|
|
171
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDedicatedHostGroupResult:
|
|
172
|
+
"""
|
|
173
|
+
Retrieves information about a dedicated host group.
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated hosts under the dedicated host group. 'UserData' is not supported for dedicated host group.
|
|
177
|
+
:param str host_group_name: The name of the dedicated host group.
|
|
178
|
+
:param str resource_group_name: The name of the resource group.
|
|
179
|
+
"""
|
|
180
|
+
__args__ = dict()
|
|
181
|
+
__args__['expand'] = expand
|
|
182
|
+
__args__['hostGroupName'] = host_group_name
|
|
183
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
184
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
185
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getDedicatedHostGroup', __args__, opts=opts, typ=GetDedicatedHostGroupResult).value
|
|
186
|
+
|
|
187
|
+
return AwaitableGetDedicatedHostGroupResult(
|
|
188
|
+
additional_capabilities=pulumi.get(__ret__, 'additional_capabilities'),
|
|
189
|
+
hosts=pulumi.get(__ret__, 'hosts'),
|
|
190
|
+
id=pulumi.get(__ret__, 'id'),
|
|
191
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
192
|
+
location=pulumi.get(__ret__, 'location'),
|
|
193
|
+
name=pulumi.get(__ret__, 'name'),
|
|
194
|
+
platform_fault_domain_count=pulumi.get(__ret__, 'platform_fault_domain_count'),
|
|
195
|
+
support_automatic_placement=pulumi.get(__ret__, 'support_automatic_placement'),
|
|
196
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
197
|
+
type=pulumi.get(__ret__, 'type'),
|
|
198
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
@_utilities.lift_output_func(get_dedicated_host_group)
|
|
202
|
+
def get_dedicated_host_group_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
203
|
+
host_group_name: Optional[pulumi.Input[str]] = None,
|
|
204
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
205
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDedicatedHostGroupResult]:
|
|
206
|
+
"""
|
|
207
|
+
Retrieves information about a dedicated host group.
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the dedicated hosts under the dedicated host group. 'UserData' is not supported for dedicated host group.
|
|
211
|
+
:param str host_group_name: The name of the dedicated host group.
|
|
212
|
+
:param str resource_group_name: The name of the resource group.
|
|
213
|
+
"""
|
|
214
|
+
...
|
|
@@ -0,0 +1,201 @@
|
|
|
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 pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetImageResult',
|
|
15
|
+
'AwaitableGetImageResult',
|
|
16
|
+
'get_image',
|
|
17
|
+
'get_image_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetImageResult:
|
|
22
|
+
"""
|
|
23
|
+
The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, extended_location=None, hyper_v_generation=None, id=None, location=None, name=None, provisioning_state=None, source_virtual_machine=None, storage_profile=None, tags=None, type=None):
|
|
26
|
+
if extended_location and not isinstance(extended_location, dict):
|
|
27
|
+
raise TypeError("Expected argument 'extended_location' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
29
|
+
if hyper_v_generation and not isinstance(hyper_v_generation, str):
|
|
30
|
+
raise TypeError("Expected argument 'hyper_v_generation' to be a str")
|
|
31
|
+
pulumi.set(__self__, "hyper_v_generation", hyper_v_generation)
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "id", id)
|
|
35
|
+
if location and not isinstance(location, str):
|
|
36
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
37
|
+
pulumi.set(__self__, "location", location)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
42
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
43
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
44
|
+
if source_virtual_machine and not isinstance(source_virtual_machine, dict):
|
|
45
|
+
raise TypeError("Expected argument 'source_virtual_machine' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "source_virtual_machine", source_virtual_machine)
|
|
47
|
+
if storage_profile and not isinstance(storage_profile, dict):
|
|
48
|
+
raise TypeError("Expected argument 'storage_profile' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "storage_profile", storage_profile)
|
|
50
|
+
if tags and not isinstance(tags, dict):
|
|
51
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "tags", tags)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="extendedLocation")
|
|
59
|
+
def extended_location(self) -> Optional['outputs.ExtendedLocationResponse']:
|
|
60
|
+
"""
|
|
61
|
+
The extended location of the Image.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "extended_location")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="hyperVGeneration")
|
|
67
|
+
def hyper_v_generation(self) -> Optional[str]:
|
|
68
|
+
"""
|
|
69
|
+
Specifies the HyperVGenerationType of the VirtualMachine created from the image. From API Version 2019-03-01 if the image source is a blob, then we need the user to specify the value, if the source is managed resource like disk or snapshot, we may require the user to specify the property if we cannot deduce it from the source managed resource.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "hyper_v_generation")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter
|
|
75
|
+
def id(self) -> str:
|
|
76
|
+
"""
|
|
77
|
+
Resource Id
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "id")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def location(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
Resource location
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "location")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def name(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
Resource name
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "name")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="provisioningState")
|
|
99
|
+
def provisioning_state(self) -> str:
|
|
100
|
+
"""
|
|
101
|
+
The provisioning state.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "provisioning_state")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="sourceVirtualMachine")
|
|
107
|
+
def source_virtual_machine(self) -> Optional['outputs.SubResourceResponse']:
|
|
108
|
+
"""
|
|
109
|
+
The source virtual machine from which Image is created.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "source_virtual_machine")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="storageProfile")
|
|
115
|
+
def storage_profile(self) -> Optional['outputs.ImageStorageProfileResponse']:
|
|
116
|
+
"""
|
|
117
|
+
Specifies the storage settings for the virtual machine disks.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "storage_profile")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
124
|
+
"""
|
|
125
|
+
Resource tags
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "tags")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def type(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
Resource type
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "type")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetImageResult(GetImageResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetImageResult(
|
|
144
|
+
extended_location=self.extended_location,
|
|
145
|
+
hyper_v_generation=self.hyper_v_generation,
|
|
146
|
+
id=self.id,
|
|
147
|
+
location=self.location,
|
|
148
|
+
name=self.name,
|
|
149
|
+
provisioning_state=self.provisioning_state,
|
|
150
|
+
source_virtual_machine=self.source_virtual_machine,
|
|
151
|
+
storage_profile=self.storage_profile,
|
|
152
|
+
tags=self.tags,
|
|
153
|
+
type=self.type)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_image(expand: Optional[str] = None,
|
|
157
|
+
image_name: Optional[str] = None,
|
|
158
|
+
resource_group_name: Optional[str] = None,
|
|
159
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetImageResult:
|
|
160
|
+
"""
|
|
161
|
+
Gets an image.
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
:param str expand: The expand expression to apply on the operation.
|
|
165
|
+
:param str image_name: The name of the image.
|
|
166
|
+
:param str resource_group_name: The name of the resource group.
|
|
167
|
+
"""
|
|
168
|
+
__args__ = dict()
|
|
169
|
+
__args__['expand'] = expand
|
|
170
|
+
__args__['imageName'] = image_name
|
|
171
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
172
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
173
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getImage', __args__, opts=opts, typ=GetImageResult).value
|
|
174
|
+
|
|
175
|
+
return AwaitableGetImageResult(
|
|
176
|
+
extended_location=pulumi.get(__ret__, 'extended_location'),
|
|
177
|
+
hyper_v_generation=pulumi.get(__ret__, 'hyper_v_generation'),
|
|
178
|
+
id=pulumi.get(__ret__, 'id'),
|
|
179
|
+
location=pulumi.get(__ret__, 'location'),
|
|
180
|
+
name=pulumi.get(__ret__, 'name'),
|
|
181
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
182
|
+
source_virtual_machine=pulumi.get(__ret__, 'source_virtual_machine'),
|
|
183
|
+
storage_profile=pulumi.get(__ret__, 'storage_profile'),
|
|
184
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
185
|
+
type=pulumi.get(__ret__, 'type'))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
@_utilities.lift_output_func(get_image)
|
|
189
|
+
def get_image_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
190
|
+
image_name: Optional[pulumi.Input[str]] = None,
|
|
191
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetImageResult]:
|
|
193
|
+
"""
|
|
194
|
+
Gets an image.
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
:param str expand: The expand expression to apply on the operation.
|
|
198
|
+
:param str image_name: The name of the image.
|
|
199
|
+
:param str resource_group_name: The name of the resource group.
|
|
200
|
+
"""
|
|
201
|
+
...
|