pulumi-azure-native 2.21.2__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.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2.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.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,466 @@
|
|
|
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
|
+
'GetVirtualMachineScaleSetVMResult',
|
|
15
|
+
'AwaitableGetVirtualMachineScaleSetVMResult',
|
|
16
|
+
'get_virtual_machine_scale_set_vm',
|
|
17
|
+
'get_virtual_machine_scale_set_vm_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetVirtualMachineScaleSetVMResult:
|
|
22
|
+
"""
|
|
23
|
+
Describes a virtual machine scale set virtual machine.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, additional_capabilities=None, availability_set=None, diagnostics_profile=None, etag=None, hardware_profile=None, id=None, identity=None, instance_id=None, instance_view=None, latest_model_applied=None, license_type=None, location=None, model_definition_applied=None, name=None, network_profile=None, network_profile_configuration=None, os_profile=None, plan=None, protection_policy=None, provisioning_state=None, resources=None, security_profile=None, sku=None, storage_profile=None, tags=None, time_created=None, type=None, user_data=None, vm_id=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 availability_set and not isinstance(availability_set, dict):
|
|
30
|
+
raise TypeError("Expected argument 'availability_set' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "availability_set", availability_set)
|
|
32
|
+
if diagnostics_profile and not isinstance(diagnostics_profile, dict):
|
|
33
|
+
raise TypeError("Expected argument 'diagnostics_profile' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "diagnostics_profile", diagnostics_profile)
|
|
35
|
+
if etag and not isinstance(etag, str):
|
|
36
|
+
raise TypeError("Expected argument 'etag' to be a str")
|
|
37
|
+
pulumi.set(__self__, "etag", etag)
|
|
38
|
+
if hardware_profile and not isinstance(hardware_profile, dict):
|
|
39
|
+
raise TypeError("Expected argument 'hardware_profile' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "hardware_profile", hardware_profile)
|
|
41
|
+
if id and not isinstance(id, str):
|
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
43
|
+
pulumi.set(__self__, "id", id)
|
|
44
|
+
if identity and not isinstance(identity, dict):
|
|
45
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "identity", identity)
|
|
47
|
+
if instance_id and not isinstance(instance_id, str):
|
|
48
|
+
raise TypeError("Expected argument 'instance_id' to be a str")
|
|
49
|
+
pulumi.set(__self__, "instance_id", instance_id)
|
|
50
|
+
if instance_view and not isinstance(instance_view, dict):
|
|
51
|
+
raise TypeError("Expected argument 'instance_view' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
53
|
+
if latest_model_applied and not isinstance(latest_model_applied, bool):
|
|
54
|
+
raise TypeError("Expected argument 'latest_model_applied' to be a bool")
|
|
55
|
+
pulumi.set(__self__, "latest_model_applied", latest_model_applied)
|
|
56
|
+
if license_type and not isinstance(license_type, str):
|
|
57
|
+
raise TypeError("Expected argument 'license_type' to be a str")
|
|
58
|
+
pulumi.set(__self__, "license_type", license_type)
|
|
59
|
+
if location and not isinstance(location, str):
|
|
60
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
61
|
+
pulumi.set(__self__, "location", location)
|
|
62
|
+
if model_definition_applied and not isinstance(model_definition_applied, str):
|
|
63
|
+
raise TypeError("Expected argument 'model_definition_applied' to be a str")
|
|
64
|
+
pulumi.set(__self__, "model_definition_applied", model_definition_applied)
|
|
65
|
+
if name and not isinstance(name, str):
|
|
66
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
67
|
+
pulumi.set(__self__, "name", name)
|
|
68
|
+
if network_profile and not isinstance(network_profile, dict):
|
|
69
|
+
raise TypeError("Expected argument 'network_profile' to be a dict")
|
|
70
|
+
pulumi.set(__self__, "network_profile", network_profile)
|
|
71
|
+
if network_profile_configuration and not isinstance(network_profile_configuration, dict):
|
|
72
|
+
raise TypeError("Expected argument 'network_profile_configuration' to be a dict")
|
|
73
|
+
pulumi.set(__self__, "network_profile_configuration", network_profile_configuration)
|
|
74
|
+
if os_profile and not isinstance(os_profile, dict):
|
|
75
|
+
raise TypeError("Expected argument 'os_profile' to be a dict")
|
|
76
|
+
pulumi.set(__self__, "os_profile", os_profile)
|
|
77
|
+
if plan and not isinstance(plan, dict):
|
|
78
|
+
raise TypeError("Expected argument 'plan' to be a dict")
|
|
79
|
+
pulumi.set(__self__, "plan", plan)
|
|
80
|
+
if protection_policy and not isinstance(protection_policy, dict):
|
|
81
|
+
raise TypeError("Expected argument 'protection_policy' to be a dict")
|
|
82
|
+
pulumi.set(__self__, "protection_policy", protection_policy)
|
|
83
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
84
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
85
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
86
|
+
if resources and not isinstance(resources, list):
|
|
87
|
+
raise TypeError("Expected argument 'resources' to be a list")
|
|
88
|
+
pulumi.set(__self__, "resources", resources)
|
|
89
|
+
if security_profile and not isinstance(security_profile, dict):
|
|
90
|
+
raise TypeError("Expected argument 'security_profile' to be a dict")
|
|
91
|
+
pulumi.set(__self__, "security_profile", security_profile)
|
|
92
|
+
if sku and not isinstance(sku, dict):
|
|
93
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
94
|
+
pulumi.set(__self__, "sku", sku)
|
|
95
|
+
if storage_profile and not isinstance(storage_profile, dict):
|
|
96
|
+
raise TypeError("Expected argument 'storage_profile' to be a dict")
|
|
97
|
+
pulumi.set(__self__, "storage_profile", storage_profile)
|
|
98
|
+
if tags and not isinstance(tags, dict):
|
|
99
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
100
|
+
pulumi.set(__self__, "tags", tags)
|
|
101
|
+
if time_created and not isinstance(time_created, str):
|
|
102
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
|
103
|
+
pulumi.set(__self__, "time_created", time_created)
|
|
104
|
+
if type and not isinstance(type, str):
|
|
105
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
106
|
+
pulumi.set(__self__, "type", type)
|
|
107
|
+
if user_data and not isinstance(user_data, str):
|
|
108
|
+
raise TypeError("Expected argument 'user_data' to be a str")
|
|
109
|
+
pulumi.set(__self__, "user_data", user_data)
|
|
110
|
+
if vm_id and not isinstance(vm_id, str):
|
|
111
|
+
raise TypeError("Expected argument 'vm_id' to be a str")
|
|
112
|
+
pulumi.set(__self__, "vm_id", vm_id)
|
|
113
|
+
if zones and not isinstance(zones, list):
|
|
114
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
115
|
+
pulumi.set(__self__, "zones", zones)
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
@pulumi.getter(name="additionalCapabilities")
|
|
119
|
+
def additional_capabilities(self) -> Optional['outputs.AdditionalCapabilitiesResponse']:
|
|
120
|
+
"""
|
|
121
|
+
Specifies additional capabilities enabled or disabled on the virtual machine in the scale set. For instance: whether the virtual machine has the capability to support attaching managed data disks with UltraSSD_LRS storage account type.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "additional_capabilities")
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter(name="availabilitySet")
|
|
127
|
+
def availability_set(self) -> Optional['outputs.SubResourceResponse']:
|
|
128
|
+
"""
|
|
129
|
+
Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Availability sets overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on Azure planned maintenance, see [Maintenance and updates for Virtual Machines in Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be added to availability set at creation time. An existing VM cannot be added to an availability set.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "availability_set")
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter(name="diagnosticsProfile")
|
|
135
|
+
def diagnostics_profile(self) -> Optional['outputs.DiagnosticsProfileResponse']:
|
|
136
|
+
"""
|
|
137
|
+
Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.
|
|
138
|
+
"""
|
|
139
|
+
return pulumi.get(self, "diagnostics_profile")
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
@pulumi.getter
|
|
143
|
+
def etag(self) -> str:
|
|
144
|
+
"""
|
|
145
|
+
Etag is property returned in Update/Get response of the VMSS VM, so that customer can supply it in the header to ensure optimistic updates.
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "etag")
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
@pulumi.getter(name="hardwareProfile")
|
|
151
|
+
def hardware_profile(self) -> Optional['outputs.HardwareProfileResponse']:
|
|
152
|
+
"""
|
|
153
|
+
Specifies the hardware settings for the virtual machine.
|
|
154
|
+
"""
|
|
155
|
+
return pulumi.get(self, "hardware_profile")
|
|
156
|
+
|
|
157
|
+
@property
|
|
158
|
+
@pulumi.getter
|
|
159
|
+
def id(self) -> str:
|
|
160
|
+
"""
|
|
161
|
+
Resource Id
|
|
162
|
+
"""
|
|
163
|
+
return pulumi.get(self, "id")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter
|
|
167
|
+
def identity(self) -> Optional['outputs.VirtualMachineIdentityResponse']:
|
|
168
|
+
"""
|
|
169
|
+
The identity of the virtual machine, if configured.
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "identity")
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter(name="instanceId")
|
|
175
|
+
def instance_id(self) -> str:
|
|
176
|
+
"""
|
|
177
|
+
The virtual machine instance ID.
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "instance_id")
|
|
180
|
+
|
|
181
|
+
@property
|
|
182
|
+
@pulumi.getter(name="instanceView")
|
|
183
|
+
def instance_view(self) -> 'outputs.VirtualMachineScaleSetVMInstanceViewResponse':
|
|
184
|
+
"""
|
|
185
|
+
The virtual machine instance view.
|
|
186
|
+
"""
|
|
187
|
+
return pulumi.get(self, "instance_view")
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
@pulumi.getter(name="latestModelApplied")
|
|
191
|
+
def latest_model_applied(self) -> bool:
|
|
192
|
+
"""
|
|
193
|
+
Specifies whether the latest model has been applied to the virtual machine.
|
|
194
|
+
"""
|
|
195
|
+
return pulumi.get(self, "latest_model_applied")
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter(name="licenseType")
|
|
199
|
+
def license_type(self) -> Optional[str]:
|
|
200
|
+
"""
|
|
201
|
+
Specifies that the image or disk that is being used was licensed on-premises. <br><br> Possible values for Windows Server operating system are: <br><br> Windows_Client <br><br> Windows_Server <br><br> Possible values for Linux Server operating system are: <br><br> RHEL_BYOS (for RHEL) <br><br> SLES_BYOS (for SUSE) <br><br> For more information, see [Azure Hybrid Use Benefit for Windows Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing) <br><br> [Azure Hybrid Use Benefit for Linux Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux) <br><br> Minimum api-version: 2015-06-15
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "license_type")
|
|
204
|
+
|
|
205
|
+
@property
|
|
206
|
+
@pulumi.getter
|
|
207
|
+
def location(self) -> str:
|
|
208
|
+
"""
|
|
209
|
+
Resource location
|
|
210
|
+
"""
|
|
211
|
+
return pulumi.get(self, "location")
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
@pulumi.getter(name="modelDefinitionApplied")
|
|
215
|
+
def model_definition_applied(self) -> str:
|
|
216
|
+
"""
|
|
217
|
+
Specifies whether the model applied to the virtual machine is the model of the virtual machine scale set or the customized model for the virtual machine.
|
|
218
|
+
"""
|
|
219
|
+
return pulumi.get(self, "model_definition_applied")
|
|
220
|
+
|
|
221
|
+
@property
|
|
222
|
+
@pulumi.getter
|
|
223
|
+
def name(self) -> str:
|
|
224
|
+
"""
|
|
225
|
+
Resource name
|
|
226
|
+
"""
|
|
227
|
+
return pulumi.get(self, "name")
|
|
228
|
+
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter(name="networkProfile")
|
|
231
|
+
def network_profile(self) -> Optional['outputs.NetworkProfileResponse']:
|
|
232
|
+
"""
|
|
233
|
+
Specifies the network interfaces of the virtual machine.
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "network_profile")
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
@pulumi.getter(name="networkProfileConfiguration")
|
|
239
|
+
def network_profile_configuration(self) -> Optional['outputs.VirtualMachineScaleSetVMNetworkProfileConfigurationResponse']:
|
|
240
|
+
"""
|
|
241
|
+
Specifies the network profile configuration of the virtual machine.
|
|
242
|
+
"""
|
|
243
|
+
return pulumi.get(self, "network_profile_configuration")
|
|
244
|
+
|
|
245
|
+
@property
|
|
246
|
+
@pulumi.getter(name="osProfile")
|
|
247
|
+
def os_profile(self) -> Optional['outputs.OSProfileResponse']:
|
|
248
|
+
"""
|
|
249
|
+
Specifies the operating system settings for the virtual machine.
|
|
250
|
+
"""
|
|
251
|
+
return pulumi.get(self, "os_profile")
|
|
252
|
+
|
|
253
|
+
@property
|
|
254
|
+
@pulumi.getter
|
|
255
|
+
def plan(self) -> Optional['outputs.PlanResponse']:
|
|
256
|
+
"""
|
|
257
|
+
Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**.
|
|
258
|
+
"""
|
|
259
|
+
return pulumi.get(self, "plan")
|
|
260
|
+
|
|
261
|
+
@property
|
|
262
|
+
@pulumi.getter(name="protectionPolicy")
|
|
263
|
+
def protection_policy(self) -> Optional['outputs.VirtualMachineScaleSetVMProtectionPolicyResponse']:
|
|
264
|
+
"""
|
|
265
|
+
Specifies the protection policy of the virtual machine.
|
|
266
|
+
"""
|
|
267
|
+
return pulumi.get(self, "protection_policy")
|
|
268
|
+
|
|
269
|
+
@property
|
|
270
|
+
@pulumi.getter(name="provisioningState")
|
|
271
|
+
def provisioning_state(self) -> str:
|
|
272
|
+
"""
|
|
273
|
+
The provisioning state, which only appears in the response.
|
|
274
|
+
"""
|
|
275
|
+
return pulumi.get(self, "provisioning_state")
|
|
276
|
+
|
|
277
|
+
@property
|
|
278
|
+
@pulumi.getter
|
|
279
|
+
def resources(self) -> Sequence['outputs.VirtualMachineExtensionResponse']:
|
|
280
|
+
"""
|
|
281
|
+
The virtual machine child extension resources.
|
|
282
|
+
"""
|
|
283
|
+
return pulumi.get(self, "resources")
|
|
284
|
+
|
|
285
|
+
@property
|
|
286
|
+
@pulumi.getter(name="securityProfile")
|
|
287
|
+
def security_profile(self) -> Optional['outputs.SecurityProfileResponse']:
|
|
288
|
+
"""
|
|
289
|
+
Specifies the Security related profile settings for the virtual machine.
|
|
290
|
+
"""
|
|
291
|
+
return pulumi.get(self, "security_profile")
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
@pulumi.getter
|
|
295
|
+
def sku(self) -> 'outputs.SkuResponse':
|
|
296
|
+
"""
|
|
297
|
+
The virtual machine SKU.
|
|
298
|
+
"""
|
|
299
|
+
return pulumi.get(self, "sku")
|
|
300
|
+
|
|
301
|
+
@property
|
|
302
|
+
@pulumi.getter(name="storageProfile")
|
|
303
|
+
def storage_profile(self) -> Optional['outputs.StorageProfileResponse']:
|
|
304
|
+
"""
|
|
305
|
+
Specifies the storage settings for the virtual machine disks.
|
|
306
|
+
"""
|
|
307
|
+
return pulumi.get(self, "storage_profile")
|
|
308
|
+
|
|
309
|
+
@property
|
|
310
|
+
@pulumi.getter
|
|
311
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
312
|
+
"""
|
|
313
|
+
Resource tags
|
|
314
|
+
"""
|
|
315
|
+
return pulumi.get(self, "tags")
|
|
316
|
+
|
|
317
|
+
@property
|
|
318
|
+
@pulumi.getter(name="timeCreated")
|
|
319
|
+
def time_created(self) -> str:
|
|
320
|
+
"""
|
|
321
|
+
Specifies the time at which the Virtual Machine resource was created.<br><br>Minimum api-version: 2021-11-01.
|
|
322
|
+
"""
|
|
323
|
+
return pulumi.get(self, "time_created")
|
|
324
|
+
|
|
325
|
+
@property
|
|
326
|
+
@pulumi.getter
|
|
327
|
+
def type(self) -> str:
|
|
328
|
+
"""
|
|
329
|
+
Resource type
|
|
330
|
+
"""
|
|
331
|
+
return pulumi.get(self, "type")
|
|
332
|
+
|
|
333
|
+
@property
|
|
334
|
+
@pulumi.getter(name="userData")
|
|
335
|
+
def user_data(self) -> Optional[str]:
|
|
336
|
+
"""
|
|
337
|
+
UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. <br><br>Minimum api-version: 2021-03-01
|
|
338
|
+
"""
|
|
339
|
+
return pulumi.get(self, "user_data")
|
|
340
|
+
|
|
341
|
+
@property
|
|
342
|
+
@pulumi.getter(name="vmId")
|
|
343
|
+
def vm_id(self) -> str:
|
|
344
|
+
"""
|
|
345
|
+
Azure VM unique ID.
|
|
346
|
+
"""
|
|
347
|
+
return pulumi.get(self, "vm_id")
|
|
348
|
+
|
|
349
|
+
@property
|
|
350
|
+
@pulumi.getter
|
|
351
|
+
def zones(self) -> Sequence[str]:
|
|
352
|
+
"""
|
|
353
|
+
The virtual machine zones.
|
|
354
|
+
"""
|
|
355
|
+
return pulumi.get(self, "zones")
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class AwaitableGetVirtualMachineScaleSetVMResult(GetVirtualMachineScaleSetVMResult):
|
|
359
|
+
# pylint: disable=using-constant-test
|
|
360
|
+
def __await__(self):
|
|
361
|
+
if False:
|
|
362
|
+
yield self
|
|
363
|
+
return GetVirtualMachineScaleSetVMResult(
|
|
364
|
+
additional_capabilities=self.additional_capabilities,
|
|
365
|
+
availability_set=self.availability_set,
|
|
366
|
+
diagnostics_profile=self.diagnostics_profile,
|
|
367
|
+
etag=self.etag,
|
|
368
|
+
hardware_profile=self.hardware_profile,
|
|
369
|
+
id=self.id,
|
|
370
|
+
identity=self.identity,
|
|
371
|
+
instance_id=self.instance_id,
|
|
372
|
+
instance_view=self.instance_view,
|
|
373
|
+
latest_model_applied=self.latest_model_applied,
|
|
374
|
+
license_type=self.license_type,
|
|
375
|
+
location=self.location,
|
|
376
|
+
model_definition_applied=self.model_definition_applied,
|
|
377
|
+
name=self.name,
|
|
378
|
+
network_profile=self.network_profile,
|
|
379
|
+
network_profile_configuration=self.network_profile_configuration,
|
|
380
|
+
os_profile=self.os_profile,
|
|
381
|
+
plan=self.plan,
|
|
382
|
+
protection_policy=self.protection_policy,
|
|
383
|
+
provisioning_state=self.provisioning_state,
|
|
384
|
+
resources=self.resources,
|
|
385
|
+
security_profile=self.security_profile,
|
|
386
|
+
sku=self.sku,
|
|
387
|
+
storage_profile=self.storage_profile,
|
|
388
|
+
tags=self.tags,
|
|
389
|
+
time_created=self.time_created,
|
|
390
|
+
type=self.type,
|
|
391
|
+
user_data=self.user_data,
|
|
392
|
+
vm_id=self.vm_id,
|
|
393
|
+
zones=self.zones)
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
def get_virtual_machine_scale_set_vm(expand: Optional[str] = None,
|
|
397
|
+
instance_id: Optional[str] = None,
|
|
398
|
+
resource_group_name: Optional[str] = None,
|
|
399
|
+
vm_scale_set_name: Optional[str] = None,
|
|
400
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVirtualMachineScaleSetVMResult:
|
|
401
|
+
"""
|
|
402
|
+
Gets a virtual machine from a VM scale set.
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the instance view of the virtual machine. 'UserData' will retrieve the UserData of the virtual machine.
|
|
406
|
+
:param str instance_id: The instance ID of the virtual machine.
|
|
407
|
+
:param str resource_group_name: The name of the resource group.
|
|
408
|
+
:param str vm_scale_set_name: The name of the VM scale set.
|
|
409
|
+
"""
|
|
410
|
+
__args__ = dict()
|
|
411
|
+
__args__['expand'] = expand
|
|
412
|
+
__args__['instanceId'] = instance_id
|
|
413
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
414
|
+
__args__['vmScaleSetName'] = vm_scale_set_name
|
|
415
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
416
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getVirtualMachineScaleSetVM', __args__, opts=opts, typ=GetVirtualMachineScaleSetVMResult).value
|
|
417
|
+
|
|
418
|
+
return AwaitableGetVirtualMachineScaleSetVMResult(
|
|
419
|
+
additional_capabilities=pulumi.get(__ret__, 'additional_capabilities'),
|
|
420
|
+
availability_set=pulumi.get(__ret__, 'availability_set'),
|
|
421
|
+
diagnostics_profile=pulumi.get(__ret__, 'diagnostics_profile'),
|
|
422
|
+
etag=pulumi.get(__ret__, 'etag'),
|
|
423
|
+
hardware_profile=pulumi.get(__ret__, 'hardware_profile'),
|
|
424
|
+
id=pulumi.get(__ret__, 'id'),
|
|
425
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
426
|
+
instance_id=pulumi.get(__ret__, 'instance_id'),
|
|
427
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
428
|
+
latest_model_applied=pulumi.get(__ret__, 'latest_model_applied'),
|
|
429
|
+
license_type=pulumi.get(__ret__, 'license_type'),
|
|
430
|
+
location=pulumi.get(__ret__, 'location'),
|
|
431
|
+
model_definition_applied=pulumi.get(__ret__, 'model_definition_applied'),
|
|
432
|
+
name=pulumi.get(__ret__, 'name'),
|
|
433
|
+
network_profile=pulumi.get(__ret__, 'network_profile'),
|
|
434
|
+
network_profile_configuration=pulumi.get(__ret__, 'network_profile_configuration'),
|
|
435
|
+
os_profile=pulumi.get(__ret__, 'os_profile'),
|
|
436
|
+
plan=pulumi.get(__ret__, 'plan'),
|
|
437
|
+
protection_policy=pulumi.get(__ret__, 'protection_policy'),
|
|
438
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
439
|
+
resources=pulumi.get(__ret__, 'resources'),
|
|
440
|
+
security_profile=pulumi.get(__ret__, 'security_profile'),
|
|
441
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
442
|
+
storage_profile=pulumi.get(__ret__, 'storage_profile'),
|
|
443
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
444
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
|
445
|
+
type=pulumi.get(__ret__, 'type'),
|
|
446
|
+
user_data=pulumi.get(__ret__, 'user_data'),
|
|
447
|
+
vm_id=pulumi.get(__ret__, 'vm_id'),
|
|
448
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
@_utilities.lift_output_func(get_virtual_machine_scale_set_vm)
|
|
452
|
+
def get_virtual_machine_scale_set_vm_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
453
|
+
instance_id: Optional[pulumi.Input[str]] = None,
|
|
454
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
455
|
+
vm_scale_set_name: Optional[pulumi.Input[str]] = None,
|
|
456
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVirtualMachineScaleSetVMResult]:
|
|
457
|
+
"""
|
|
458
|
+
Gets a virtual machine from a VM scale set.
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the instance view of the virtual machine. 'UserData' will retrieve the UserData of the virtual machine.
|
|
462
|
+
:param str instance_id: The instance ID of the virtual machine.
|
|
463
|
+
:param str resource_group_name: The name of the resource group.
|
|
464
|
+
:param str vm_scale_set_name: The name of the VM scale set.
|
|
465
|
+
"""
|
|
466
|
+
...
|