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,120 @@
|
|
|
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
|
+
from ._enums import *
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
'GetLogAnalyticExportRequestRateByIntervalResult',
|
|
16
|
+
'AwaitableGetLogAnalyticExportRequestRateByIntervalResult',
|
|
17
|
+
'get_log_analytic_export_request_rate_by_interval',
|
|
18
|
+
'get_log_analytic_export_request_rate_by_interval_output',
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
@pulumi.output_type
|
|
22
|
+
class GetLogAnalyticExportRequestRateByIntervalResult:
|
|
23
|
+
"""
|
|
24
|
+
LogAnalytics operation status response
|
|
25
|
+
"""
|
|
26
|
+
def __init__(__self__, properties=None):
|
|
27
|
+
if properties and not isinstance(properties, dict):
|
|
28
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
29
|
+
pulumi.set(__self__, "properties", properties)
|
|
30
|
+
|
|
31
|
+
@property
|
|
32
|
+
@pulumi.getter
|
|
33
|
+
def properties(self) -> 'outputs.LogAnalyticsOutputResponse':
|
|
34
|
+
"""
|
|
35
|
+
LogAnalyticsOutput
|
|
36
|
+
"""
|
|
37
|
+
return pulumi.get(self, "properties")
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class AwaitableGetLogAnalyticExportRequestRateByIntervalResult(GetLogAnalyticExportRequestRateByIntervalResult):
|
|
41
|
+
# pylint: disable=using-constant-test
|
|
42
|
+
def __await__(self):
|
|
43
|
+
if False:
|
|
44
|
+
yield self
|
|
45
|
+
return GetLogAnalyticExportRequestRateByIntervalResult(
|
|
46
|
+
properties=self.properties)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def get_log_analytic_export_request_rate_by_interval(blob_container_sas_uri: Optional[str] = None,
|
|
50
|
+
from_time: Optional[str] = None,
|
|
51
|
+
group_by_client_application_id: Optional[bool] = None,
|
|
52
|
+
group_by_operation_name: Optional[bool] = None,
|
|
53
|
+
group_by_resource_name: Optional[bool] = None,
|
|
54
|
+
group_by_throttle_policy: Optional[bool] = None,
|
|
55
|
+
group_by_user_agent: Optional[bool] = None,
|
|
56
|
+
interval_length: Optional['IntervalInMins'] = None,
|
|
57
|
+
location: Optional[str] = None,
|
|
58
|
+
to_time: Optional[str] = None,
|
|
59
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLogAnalyticExportRequestRateByIntervalResult:
|
|
60
|
+
"""
|
|
61
|
+
Export logs that show Api requests made by this subscription in the given time window to show throttling activities.
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
:param str blob_container_sas_uri: SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to.
|
|
65
|
+
:param str from_time: From time of the query
|
|
66
|
+
:param bool group_by_client_application_id: Group query result by Client Application ID.
|
|
67
|
+
:param bool group_by_operation_name: Group query result by Operation Name.
|
|
68
|
+
:param bool group_by_resource_name: Group query result by Resource Name.
|
|
69
|
+
:param bool group_by_throttle_policy: Group query result by Throttle Policy applied.
|
|
70
|
+
:param bool group_by_user_agent: Group query result by User Agent.
|
|
71
|
+
:param 'IntervalInMins' interval_length: Interval value in minutes used to create LogAnalytics call rate logs.
|
|
72
|
+
:param str location: The location upon which virtual-machine-sizes is queried.
|
|
73
|
+
:param str to_time: To time of the query
|
|
74
|
+
"""
|
|
75
|
+
__args__ = dict()
|
|
76
|
+
__args__['blobContainerSasUri'] = blob_container_sas_uri
|
|
77
|
+
__args__['fromTime'] = from_time
|
|
78
|
+
__args__['groupByClientApplicationId'] = group_by_client_application_id
|
|
79
|
+
__args__['groupByOperationName'] = group_by_operation_name
|
|
80
|
+
__args__['groupByResourceName'] = group_by_resource_name
|
|
81
|
+
__args__['groupByThrottlePolicy'] = group_by_throttle_policy
|
|
82
|
+
__args__['groupByUserAgent'] = group_by_user_agent
|
|
83
|
+
__args__['intervalLength'] = interval_length
|
|
84
|
+
__args__['location'] = location
|
|
85
|
+
__args__['toTime'] = to_time
|
|
86
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
87
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getLogAnalyticExportRequestRateByInterval', __args__, opts=opts, typ=GetLogAnalyticExportRequestRateByIntervalResult).value
|
|
88
|
+
|
|
89
|
+
return AwaitableGetLogAnalyticExportRequestRateByIntervalResult(
|
|
90
|
+
properties=pulumi.get(__ret__, 'properties'))
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
@_utilities.lift_output_func(get_log_analytic_export_request_rate_by_interval)
|
|
94
|
+
def get_log_analytic_export_request_rate_by_interval_output(blob_container_sas_uri: Optional[pulumi.Input[str]] = None,
|
|
95
|
+
from_time: Optional[pulumi.Input[str]] = None,
|
|
96
|
+
group_by_client_application_id: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
97
|
+
group_by_operation_name: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
98
|
+
group_by_resource_name: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
99
|
+
group_by_throttle_policy: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
100
|
+
group_by_user_agent: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
101
|
+
interval_length: Optional[pulumi.Input['IntervalInMins']] = None,
|
|
102
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
103
|
+
to_time: Optional[pulumi.Input[str]] = None,
|
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLogAnalyticExportRequestRateByIntervalResult]:
|
|
105
|
+
"""
|
|
106
|
+
Export logs that show Api requests made by this subscription in the given time window to show throttling activities.
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
:param str blob_container_sas_uri: SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to.
|
|
110
|
+
:param str from_time: From time of the query
|
|
111
|
+
:param bool group_by_client_application_id: Group query result by Client Application ID.
|
|
112
|
+
:param bool group_by_operation_name: Group query result by Operation Name.
|
|
113
|
+
:param bool group_by_resource_name: Group query result by Resource Name.
|
|
114
|
+
:param bool group_by_throttle_policy: Group query result by Throttle Policy applied.
|
|
115
|
+
:param bool group_by_user_agent: Group query result by User Agent.
|
|
116
|
+
:param 'IntervalInMins' interval_length: Interval value in minutes used to create LogAnalytics call rate logs.
|
|
117
|
+
:param str location: The location upon which virtual-machine-sizes is queried.
|
|
118
|
+
:param str to_time: To time of the query
|
|
119
|
+
"""
|
|
120
|
+
...
|
|
@@ -0,0 +1,114 @@
|
|
|
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
|
+
'GetLogAnalyticExportThrottledRequestsResult',
|
|
15
|
+
'AwaitableGetLogAnalyticExportThrottledRequestsResult',
|
|
16
|
+
'get_log_analytic_export_throttled_requests',
|
|
17
|
+
'get_log_analytic_export_throttled_requests_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetLogAnalyticExportThrottledRequestsResult:
|
|
22
|
+
"""
|
|
23
|
+
LogAnalytics operation status response
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, properties=None):
|
|
26
|
+
if properties and not isinstance(properties, dict):
|
|
27
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "properties", properties)
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
@pulumi.getter
|
|
32
|
+
def properties(self) -> 'outputs.LogAnalyticsOutputResponse':
|
|
33
|
+
"""
|
|
34
|
+
LogAnalyticsOutput
|
|
35
|
+
"""
|
|
36
|
+
return pulumi.get(self, "properties")
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class AwaitableGetLogAnalyticExportThrottledRequestsResult(GetLogAnalyticExportThrottledRequestsResult):
|
|
40
|
+
# pylint: disable=using-constant-test
|
|
41
|
+
def __await__(self):
|
|
42
|
+
if False:
|
|
43
|
+
yield self
|
|
44
|
+
return GetLogAnalyticExportThrottledRequestsResult(
|
|
45
|
+
properties=self.properties)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def get_log_analytic_export_throttled_requests(blob_container_sas_uri: Optional[str] = None,
|
|
49
|
+
from_time: Optional[str] = None,
|
|
50
|
+
group_by_client_application_id: Optional[bool] = None,
|
|
51
|
+
group_by_operation_name: Optional[bool] = None,
|
|
52
|
+
group_by_resource_name: Optional[bool] = None,
|
|
53
|
+
group_by_throttle_policy: Optional[bool] = None,
|
|
54
|
+
group_by_user_agent: Optional[bool] = None,
|
|
55
|
+
location: Optional[str] = None,
|
|
56
|
+
to_time: Optional[str] = None,
|
|
57
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetLogAnalyticExportThrottledRequestsResult:
|
|
58
|
+
"""
|
|
59
|
+
Export logs that show total throttled Api requests for this subscription in the given time window.
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
:param str blob_container_sas_uri: SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to.
|
|
63
|
+
:param str from_time: From time of the query
|
|
64
|
+
:param bool group_by_client_application_id: Group query result by Client Application ID.
|
|
65
|
+
:param bool group_by_operation_name: Group query result by Operation Name.
|
|
66
|
+
:param bool group_by_resource_name: Group query result by Resource Name.
|
|
67
|
+
:param bool group_by_throttle_policy: Group query result by Throttle Policy applied.
|
|
68
|
+
:param bool group_by_user_agent: Group query result by User Agent.
|
|
69
|
+
:param str location: The location upon which virtual-machine-sizes is queried.
|
|
70
|
+
:param str to_time: To time of the query
|
|
71
|
+
"""
|
|
72
|
+
__args__ = dict()
|
|
73
|
+
__args__['blobContainerSasUri'] = blob_container_sas_uri
|
|
74
|
+
__args__['fromTime'] = from_time
|
|
75
|
+
__args__['groupByClientApplicationId'] = group_by_client_application_id
|
|
76
|
+
__args__['groupByOperationName'] = group_by_operation_name
|
|
77
|
+
__args__['groupByResourceName'] = group_by_resource_name
|
|
78
|
+
__args__['groupByThrottlePolicy'] = group_by_throttle_policy
|
|
79
|
+
__args__['groupByUserAgent'] = group_by_user_agent
|
|
80
|
+
__args__['location'] = location
|
|
81
|
+
__args__['toTime'] = to_time
|
|
82
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
83
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getLogAnalyticExportThrottledRequests', __args__, opts=opts, typ=GetLogAnalyticExportThrottledRequestsResult).value
|
|
84
|
+
|
|
85
|
+
return AwaitableGetLogAnalyticExportThrottledRequestsResult(
|
|
86
|
+
properties=pulumi.get(__ret__, 'properties'))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
@_utilities.lift_output_func(get_log_analytic_export_throttled_requests)
|
|
90
|
+
def get_log_analytic_export_throttled_requests_output(blob_container_sas_uri: Optional[pulumi.Input[str]] = None,
|
|
91
|
+
from_time: Optional[pulumi.Input[str]] = None,
|
|
92
|
+
group_by_client_application_id: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
93
|
+
group_by_operation_name: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
94
|
+
group_by_resource_name: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
95
|
+
group_by_throttle_policy: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
96
|
+
group_by_user_agent: Optional[pulumi.Input[Optional[bool]]] = None,
|
|
97
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
98
|
+
to_time: Optional[pulumi.Input[str]] = None,
|
|
99
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetLogAnalyticExportThrottledRequestsResult]:
|
|
100
|
+
"""
|
|
101
|
+
Export logs that show total throttled Api requests for this subscription in the given time window.
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
:param str blob_container_sas_uri: SAS Uri of the logging blob container to which LogAnalytics Api writes output logs to.
|
|
105
|
+
:param str from_time: From time of the query
|
|
106
|
+
:param bool group_by_client_application_id: Group query result by Client Application ID.
|
|
107
|
+
:param bool group_by_operation_name: Group query result by Operation Name.
|
|
108
|
+
:param bool group_by_resource_name: Group query result by Resource Name.
|
|
109
|
+
:param bool group_by_throttle_policy: Group query result by Throttle Policy applied.
|
|
110
|
+
:param bool group_by_user_agent: Group query result by User Agent.
|
|
111
|
+
:param str location: The location upon which virtual-machine-sizes is queried.
|
|
112
|
+
:param str to_time: To time of the query
|
|
113
|
+
"""
|
|
114
|
+
...
|
|
@@ -0,0 +1,227 @@
|
|
|
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
|
+
'GetProximityPlacementGroupResult',
|
|
15
|
+
'AwaitableGetProximityPlacementGroupResult',
|
|
16
|
+
'get_proximity_placement_group',
|
|
17
|
+
'get_proximity_placement_group_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetProximityPlacementGroupResult:
|
|
22
|
+
"""
|
|
23
|
+
Specifies information about the proximity placement group.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, availability_sets=None, colocation_status=None, id=None, intent=None, location=None, name=None, proximity_placement_group_type=None, tags=None, type=None, virtual_machine_scale_sets=None, virtual_machines=None, zones=None):
|
|
26
|
+
if availability_sets and not isinstance(availability_sets, list):
|
|
27
|
+
raise TypeError("Expected argument 'availability_sets' to be a list")
|
|
28
|
+
pulumi.set(__self__, "availability_sets", availability_sets)
|
|
29
|
+
if colocation_status and not isinstance(colocation_status, dict):
|
|
30
|
+
raise TypeError("Expected argument 'colocation_status' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "colocation_status", colocation_status)
|
|
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 intent and not isinstance(intent, dict):
|
|
36
|
+
raise TypeError("Expected argument 'intent' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "intent", intent)
|
|
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 proximity_placement_group_type and not isinstance(proximity_placement_group_type, str):
|
|
45
|
+
raise TypeError("Expected argument 'proximity_placement_group_type' to be a str")
|
|
46
|
+
pulumi.set(__self__, "proximity_placement_group_type", proximity_placement_group_type)
|
|
47
|
+
if tags and not isinstance(tags, dict):
|
|
48
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "tags", tags)
|
|
50
|
+
if type and not isinstance(type, str):
|
|
51
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
52
|
+
pulumi.set(__self__, "type", type)
|
|
53
|
+
if virtual_machine_scale_sets and not isinstance(virtual_machine_scale_sets, list):
|
|
54
|
+
raise TypeError("Expected argument 'virtual_machine_scale_sets' to be a list")
|
|
55
|
+
pulumi.set(__self__, "virtual_machine_scale_sets", virtual_machine_scale_sets)
|
|
56
|
+
if virtual_machines and not isinstance(virtual_machines, list):
|
|
57
|
+
raise TypeError("Expected argument 'virtual_machines' to be a list")
|
|
58
|
+
pulumi.set(__self__, "virtual_machines", virtual_machines)
|
|
59
|
+
if zones and not isinstance(zones, list):
|
|
60
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
61
|
+
pulumi.set(__self__, "zones", zones)
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter(name="availabilitySets")
|
|
65
|
+
def availability_sets(self) -> Sequence['outputs.SubResourceWithColocationStatusResponse']:
|
|
66
|
+
"""
|
|
67
|
+
A list of references to all availability sets in the proximity placement group.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "availability_sets")
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter(name="colocationStatus")
|
|
73
|
+
def colocation_status(self) -> Optional['outputs.InstanceViewStatusResponse']:
|
|
74
|
+
"""
|
|
75
|
+
Describes colocation status of the Proximity Placement Group.
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "colocation_status")
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter
|
|
81
|
+
def id(self) -> str:
|
|
82
|
+
"""
|
|
83
|
+
Resource Id
|
|
84
|
+
"""
|
|
85
|
+
return pulumi.get(self, "id")
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter
|
|
89
|
+
def intent(self) -> Optional['outputs.ProximityPlacementGroupPropertiesResponseIntent']:
|
|
90
|
+
"""
|
|
91
|
+
Specifies the user intent of the proximity placement group.
|
|
92
|
+
"""
|
|
93
|
+
return pulumi.get(self, "intent")
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter
|
|
97
|
+
def location(self) -> str:
|
|
98
|
+
"""
|
|
99
|
+
Resource location
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "location")
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
@pulumi.getter
|
|
105
|
+
def name(self) -> str:
|
|
106
|
+
"""
|
|
107
|
+
Resource name
|
|
108
|
+
"""
|
|
109
|
+
return pulumi.get(self, "name")
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
@pulumi.getter(name="proximityPlacementGroupType")
|
|
113
|
+
def proximity_placement_group_type(self) -> Optional[str]:
|
|
114
|
+
"""
|
|
115
|
+
Specifies the type of the proximity placement group. Possible values are: **Standard** : Co-locate resources within an Azure region or Availability Zone. **Ultra** : For future use.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "proximity_placement_group_type")
|
|
118
|
+
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter
|
|
121
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
122
|
+
"""
|
|
123
|
+
Resource tags
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "tags")
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
@pulumi.getter
|
|
129
|
+
def type(self) -> str:
|
|
130
|
+
"""
|
|
131
|
+
Resource type
|
|
132
|
+
"""
|
|
133
|
+
return pulumi.get(self, "type")
|
|
134
|
+
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter(name="virtualMachineScaleSets")
|
|
137
|
+
def virtual_machine_scale_sets(self) -> Sequence['outputs.SubResourceWithColocationStatusResponse']:
|
|
138
|
+
"""
|
|
139
|
+
A list of references to all virtual machine scale sets in the proximity placement group.
|
|
140
|
+
"""
|
|
141
|
+
return pulumi.get(self, "virtual_machine_scale_sets")
|
|
142
|
+
|
|
143
|
+
@property
|
|
144
|
+
@pulumi.getter(name="virtualMachines")
|
|
145
|
+
def virtual_machines(self) -> Sequence['outputs.SubResourceWithColocationStatusResponse']:
|
|
146
|
+
"""
|
|
147
|
+
A list of references to all virtual machines in the proximity placement group.
|
|
148
|
+
"""
|
|
149
|
+
return pulumi.get(self, "virtual_machines")
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
@pulumi.getter
|
|
153
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
154
|
+
"""
|
|
155
|
+
Specifies the Availability Zone where virtual machine, virtual machine scale set or availability set associated with the proximity placement group can be created.
|
|
156
|
+
"""
|
|
157
|
+
return pulumi.get(self, "zones")
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
class AwaitableGetProximityPlacementGroupResult(GetProximityPlacementGroupResult):
|
|
161
|
+
# pylint: disable=using-constant-test
|
|
162
|
+
def __await__(self):
|
|
163
|
+
if False:
|
|
164
|
+
yield self
|
|
165
|
+
return GetProximityPlacementGroupResult(
|
|
166
|
+
availability_sets=self.availability_sets,
|
|
167
|
+
colocation_status=self.colocation_status,
|
|
168
|
+
id=self.id,
|
|
169
|
+
intent=self.intent,
|
|
170
|
+
location=self.location,
|
|
171
|
+
name=self.name,
|
|
172
|
+
proximity_placement_group_type=self.proximity_placement_group_type,
|
|
173
|
+
tags=self.tags,
|
|
174
|
+
type=self.type,
|
|
175
|
+
virtual_machine_scale_sets=self.virtual_machine_scale_sets,
|
|
176
|
+
virtual_machines=self.virtual_machines,
|
|
177
|
+
zones=self.zones)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
def get_proximity_placement_group(include_colocation_status: Optional[str] = None,
|
|
181
|
+
proximity_placement_group_name: Optional[str] = None,
|
|
182
|
+
resource_group_name: Optional[str] = None,
|
|
183
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProximityPlacementGroupResult:
|
|
184
|
+
"""
|
|
185
|
+
Retrieves information about a proximity placement group .
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
:param str include_colocation_status: includeColocationStatus=true enables fetching the colocation status of all the resources in the proximity placement group.
|
|
189
|
+
:param str proximity_placement_group_name: The name of the proximity placement group.
|
|
190
|
+
:param str resource_group_name: The name of the resource group.
|
|
191
|
+
"""
|
|
192
|
+
__args__ = dict()
|
|
193
|
+
__args__['includeColocationStatus'] = include_colocation_status
|
|
194
|
+
__args__['proximityPlacementGroupName'] = proximity_placement_group_name
|
|
195
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
196
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
197
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getProximityPlacementGroup', __args__, opts=opts, typ=GetProximityPlacementGroupResult).value
|
|
198
|
+
|
|
199
|
+
return AwaitableGetProximityPlacementGroupResult(
|
|
200
|
+
availability_sets=pulumi.get(__ret__, 'availability_sets'),
|
|
201
|
+
colocation_status=pulumi.get(__ret__, 'colocation_status'),
|
|
202
|
+
id=pulumi.get(__ret__, 'id'),
|
|
203
|
+
intent=pulumi.get(__ret__, 'intent'),
|
|
204
|
+
location=pulumi.get(__ret__, 'location'),
|
|
205
|
+
name=pulumi.get(__ret__, 'name'),
|
|
206
|
+
proximity_placement_group_type=pulumi.get(__ret__, 'proximity_placement_group_type'),
|
|
207
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
208
|
+
type=pulumi.get(__ret__, 'type'),
|
|
209
|
+
virtual_machine_scale_sets=pulumi.get(__ret__, 'virtual_machine_scale_sets'),
|
|
210
|
+
virtual_machines=pulumi.get(__ret__, 'virtual_machines'),
|
|
211
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
@_utilities.lift_output_func(get_proximity_placement_group)
|
|
215
|
+
def get_proximity_placement_group_output(include_colocation_status: Optional[pulumi.Input[Optional[str]]] = None,
|
|
216
|
+
proximity_placement_group_name: Optional[pulumi.Input[str]] = None,
|
|
217
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
218
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProximityPlacementGroupResult]:
|
|
219
|
+
"""
|
|
220
|
+
Retrieves information about a proximity placement group .
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
:param str include_colocation_status: includeColocationStatus=true enables fetching the colocation status of all the resources in the proximity placement group.
|
|
224
|
+
:param str proximity_placement_group_name: The name of the proximity placement group.
|
|
225
|
+
:param str resource_group_name: The name of the resource group.
|
|
226
|
+
"""
|
|
227
|
+
...
|
|
@@ -0,0 +1,206 @@
|
|
|
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
|
+
'GetRestorePointResult',
|
|
15
|
+
'AwaitableGetRestorePointResult',
|
|
16
|
+
'get_restore_point',
|
|
17
|
+
'get_restore_point_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetRestorePointResult:
|
|
22
|
+
"""
|
|
23
|
+
Restore Point details.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, consistency_mode=None, exclude_disks=None, id=None, instance_view=None, name=None, provisioning_state=None, source_metadata=None, source_restore_point=None, time_created=None, type=None):
|
|
26
|
+
if consistency_mode and not isinstance(consistency_mode, str):
|
|
27
|
+
raise TypeError("Expected argument 'consistency_mode' to be a str")
|
|
28
|
+
pulumi.set(__self__, "consistency_mode", consistency_mode)
|
|
29
|
+
if exclude_disks and not isinstance(exclude_disks, list):
|
|
30
|
+
raise TypeError("Expected argument 'exclude_disks' to be a list")
|
|
31
|
+
pulumi.set(__self__, "exclude_disks", exclude_disks)
|
|
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 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_metadata and not isinstance(source_metadata, dict):
|
|
45
|
+
raise TypeError("Expected argument 'source_metadata' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "source_metadata", source_metadata)
|
|
47
|
+
if source_restore_point and not isinstance(source_restore_point, dict):
|
|
48
|
+
raise TypeError("Expected argument 'source_restore_point' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "source_restore_point", source_restore_point)
|
|
50
|
+
if time_created and not isinstance(time_created, str):
|
|
51
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
|
52
|
+
pulumi.set(__self__, "time_created", time_created)
|
|
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="consistencyMode")
|
|
59
|
+
def consistency_mode(self) -> Optional[str]:
|
|
60
|
+
"""
|
|
61
|
+
ConsistencyMode of the RestorePoint. Can be specified in the input while creating a restore point. For now, only CrashConsistent is accepted as a valid input. Please refer to https://aka.ms/RestorePoints for more details.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "consistency_mode")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="excludeDisks")
|
|
67
|
+
def exclude_disks(self) -> Optional[Sequence['outputs.ApiEntityReferenceResponse']]:
|
|
68
|
+
"""
|
|
69
|
+
List of disk resource ids that the customer wishes to exclude from the restore point. If no disks are specified, all disks will be included.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "exclude_disks")
|
|
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(name="instanceView")
|
|
83
|
+
def instance_view(self) -> 'outputs.RestorePointInstanceViewResponse':
|
|
84
|
+
"""
|
|
85
|
+
The restore point instance view.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "instance_view")
|
|
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
|
+
Gets the provisioning state of the restore point.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "provisioning_state")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="sourceMetadata")
|
|
107
|
+
def source_metadata(self) -> Optional['outputs.RestorePointSourceMetadataResponse']:
|
|
108
|
+
"""
|
|
109
|
+
Gets the details of the VM captured at the time of the restore point creation.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "source_metadata")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="sourceRestorePoint")
|
|
115
|
+
def source_restore_point(self) -> Optional['outputs.ApiEntityReferenceResponse']:
|
|
116
|
+
"""
|
|
117
|
+
Resource Id of the source restore point from which a copy needs to be created.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "source_restore_point")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter(name="timeCreated")
|
|
123
|
+
def time_created(self) -> Optional[str]:
|
|
124
|
+
"""
|
|
125
|
+
Gets the creation time of the restore point.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "time_created")
|
|
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 AwaitableGetRestorePointResult(GetRestorePointResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetRestorePointResult(
|
|
144
|
+
consistency_mode=self.consistency_mode,
|
|
145
|
+
exclude_disks=self.exclude_disks,
|
|
146
|
+
id=self.id,
|
|
147
|
+
instance_view=self.instance_view,
|
|
148
|
+
name=self.name,
|
|
149
|
+
provisioning_state=self.provisioning_state,
|
|
150
|
+
source_metadata=self.source_metadata,
|
|
151
|
+
source_restore_point=self.source_restore_point,
|
|
152
|
+
time_created=self.time_created,
|
|
153
|
+
type=self.type)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_restore_point(expand: Optional[str] = None,
|
|
157
|
+
resource_group_name: Optional[str] = None,
|
|
158
|
+
restore_point_collection_name: Optional[str] = None,
|
|
159
|
+
restore_point_name: Optional[str] = None,
|
|
160
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRestorePointResult:
|
|
161
|
+
"""
|
|
162
|
+
The operation to get the restore point.
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' retrieves information about the run-time state of a restore point.
|
|
166
|
+
:param str resource_group_name: The name of the resource group.
|
|
167
|
+
:param str restore_point_collection_name: The name of the restore point collection.
|
|
168
|
+
:param str restore_point_name: The name of the restore point.
|
|
169
|
+
"""
|
|
170
|
+
__args__ = dict()
|
|
171
|
+
__args__['expand'] = expand
|
|
172
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
173
|
+
__args__['restorePointCollectionName'] = restore_point_collection_name
|
|
174
|
+
__args__['restorePointName'] = restore_point_name
|
|
175
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
176
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getRestorePoint', __args__, opts=opts, typ=GetRestorePointResult).value
|
|
177
|
+
|
|
178
|
+
return AwaitableGetRestorePointResult(
|
|
179
|
+
consistency_mode=pulumi.get(__ret__, 'consistency_mode'),
|
|
180
|
+
exclude_disks=pulumi.get(__ret__, 'exclude_disks'),
|
|
181
|
+
id=pulumi.get(__ret__, 'id'),
|
|
182
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
183
|
+
name=pulumi.get(__ret__, 'name'),
|
|
184
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
185
|
+
source_metadata=pulumi.get(__ret__, 'source_metadata'),
|
|
186
|
+
source_restore_point=pulumi.get(__ret__, 'source_restore_point'),
|
|
187
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
|
188
|
+
type=pulumi.get(__ret__, 'type'))
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
@_utilities.lift_output_func(get_restore_point)
|
|
192
|
+
def get_restore_point_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
193
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
194
|
+
restore_point_collection_name: Optional[pulumi.Input[str]] = None,
|
|
195
|
+
restore_point_name: Optional[pulumi.Input[str]] = None,
|
|
196
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRestorePointResult]:
|
|
197
|
+
"""
|
|
198
|
+
The operation to get the restore point.
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' retrieves information about the run-time state of a restore point.
|
|
202
|
+
:param str resource_group_name: The name of the resource group.
|
|
203
|
+
:param str restore_point_collection_name: The name of the restore point collection.
|
|
204
|
+
:param str restore_point_name: The name of the restore point.
|
|
205
|
+
"""
|
|
206
|
+
...
|