pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,258 @@
|
|
|
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
|
+
'GetCapacityReservationResult',
|
|
15
|
+
'AwaitableGetCapacityReservationResult',
|
|
16
|
+
'get_capacity_reservation',
|
|
17
|
+
'get_capacity_reservation_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetCapacityReservationResult:
|
|
22
|
+
"""
|
|
23
|
+
Specifies information about the capacity reservation.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, instance_view=None, location=None, name=None, platform_fault_domain_count=None, provisioning_state=None, provisioning_time=None, reservation_id=None, sku=None, tags=None, time_created=None, type=None, virtual_machines_associated=None, zones=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if instance_view and not isinstance(instance_view, dict):
|
|
30
|
+
raise TypeError("Expected argument 'instance_view' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
32
|
+
if location and not isinstance(location, str):
|
|
33
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
34
|
+
pulumi.set(__self__, "location", location)
|
|
35
|
+
if name and not isinstance(name, str):
|
|
36
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
37
|
+
pulumi.set(__self__, "name", name)
|
|
38
|
+
if platform_fault_domain_count and not isinstance(platform_fault_domain_count, int):
|
|
39
|
+
raise TypeError("Expected argument 'platform_fault_domain_count' to be a int")
|
|
40
|
+
pulumi.set(__self__, "platform_fault_domain_count", platform_fault_domain_count)
|
|
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 provisioning_time and not isinstance(provisioning_time, str):
|
|
45
|
+
raise TypeError("Expected argument 'provisioning_time' to be a str")
|
|
46
|
+
pulumi.set(__self__, "provisioning_time", provisioning_time)
|
|
47
|
+
if reservation_id and not isinstance(reservation_id, str):
|
|
48
|
+
raise TypeError("Expected argument 'reservation_id' to be a str")
|
|
49
|
+
pulumi.set(__self__, "reservation_id", reservation_id)
|
|
50
|
+
if sku and not isinstance(sku, dict):
|
|
51
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "sku", sku)
|
|
53
|
+
if tags and not isinstance(tags, dict):
|
|
54
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
55
|
+
pulumi.set(__self__, "tags", tags)
|
|
56
|
+
if time_created and not isinstance(time_created, str):
|
|
57
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
|
58
|
+
pulumi.set(__self__, "time_created", time_created)
|
|
59
|
+
if type and not isinstance(type, str):
|
|
60
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
61
|
+
pulumi.set(__self__, "type", type)
|
|
62
|
+
if virtual_machines_associated and not isinstance(virtual_machines_associated, list):
|
|
63
|
+
raise TypeError("Expected argument 'virtual_machines_associated' to be a list")
|
|
64
|
+
pulumi.set(__self__, "virtual_machines_associated", virtual_machines_associated)
|
|
65
|
+
if zones and not isinstance(zones, list):
|
|
66
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
67
|
+
pulumi.set(__self__, "zones", zones)
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def id(self) -> str:
|
|
72
|
+
"""
|
|
73
|
+
Resource Id
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "id")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="instanceView")
|
|
79
|
+
def instance_view(self) -> 'outputs.CapacityReservationInstanceViewResponse':
|
|
80
|
+
"""
|
|
81
|
+
The Capacity reservation instance view.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "instance_view")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def location(self) -> str:
|
|
88
|
+
"""
|
|
89
|
+
Resource location
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "location")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter
|
|
95
|
+
def name(self) -> str:
|
|
96
|
+
"""
|
|
97
|
+
Resource name
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "name")
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
@pulumi.getter(name="platformFaultDomainCount")
|
|
103
|
+
def platform_fault_domain_count(self) -> int:
|
|
104
|
+
"""
|
|
105
|
+
Specifies the value of fault domain count that Capacity Reservation supports for requested VM size. **Note:** The fault domain count specified for a resource (like virtual machines scale set) must be less than or equal to this value if it deploys using capacity reservation. Minimum api-version: 2022-08-01.
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "platform_fault_domain_count")
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter(name="provisioningState")
|
|
111
|
+
def provisioning_state(self) -> str:
|
|
112
|
+
"""
|
|
113
|
+
The provisioning state, which only appears in the response.
|
|
114
|
+
"""
|
|
115
|
+
return pulumi.get(self, "provisioning_state")
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
@pulumi.getter(name="provisioningTime")
|
|
119
|
+
def provisioning_time(self) -> str:
|
|
120
|
+
"""
|
|
121
|
+
The date time when the capacity reservation was last updated.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "provisioning_time")
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter(name="reservationId")
|
|
127
|
+
def reservation_id(self) -> str:
|
|
128
|
+
"""
|
|
129
|
+
A unique id generated and assigned to the capacity reservation by the platform which does not change throughout the lifetime of the resource.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "reservation_id")
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter
|
|
135
|
+
def sku(self) -> 'outputs.SkuResponse':
|
|
136
|
+
"""
|
|
137
|
+
SKU of the resource for which capacity needs be reserved. The SKU name and capacity is required to be set. Currently VM Skus with the capability called 'CapacityReservationSupported' set to true are supported. Refer to List Microsoft.Compute SKUs in a region (https://docs.microsoft.com/rest/api/compute/resourceskus/list) for supported values.
|
|
138
|
+
"""
|
|
139
|
+
return pulumi.get(self, "sku")
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
@pulumi.getter
|
|
143
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
144
|
+
"""
|
|
145
|
+
Resource tags
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "tags")
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
@pulumi.getter(name="timeCreated")
|
|
151
|
+
def time_created(self) -> str:
|
|
152
|
+
"""
|
|
153
|
+
Specifies the time at which the Capacity Reservation resource was created. Minimum api-version: 2021-11-01.
|
|
154
|
+
"""
|
|
155
|
+
return pulumi.get(self, "time_created")
|
|
156
|
+
|
|
157
|
+
@property
|
|
158
|
+
@pulumi.getter
|
|
159
|
+
def type(self) -> str:
|
|
160
|
+
"""
|
|
161
|
+
Resource type
|
|
162
|
+
"""
|
|
163
|
+
return pulumi.get(self, "type")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter(name="virtualMachinesAssociated")
|
|
167
|
+
def virtual_machines_associated(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
|
|
168
|
+
"""
|
|
169
|
+
A list of all virtual machine resource ids that are associated with the capacity reservation.
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "virtual_machines_associated")
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter
|
|
175
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
176
|
+
"""
|
|
177
|
+
Availability Zone to use for this capacity reservation. The zone has to be single value and also should be part for the list of zones specified during the capacity reservation group creation. The zone can be assigned only during creation. If not provided, the reservation supports only non-zonal deployments. If provided, enforces VM/VMSS using this capacity reservation to be in same zone.
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "zones")
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class AwaitableGetCapacityReservationResult(GetCapacityReservationResult):
|
|
183
|
+
# pylint: disable=using-constant-test
|
|
184
|
+
def __await__(self):
|
|
185
|
+
if False:
|
|
186
|
+
yield self
|
|
187
|
+
return GetCapacityReservationResult(
|
|
188
|
+
id=self.id,
|
|
189
|
+
instance_view=self.instance_view,
|
|
190
|
+
location=self.location,
|
|
191
|
+
name=self.name,
|
|
192
|
+
platform_fault_domain_count=self.platform_fault_domain_count,
|
|
193
|
+
provisioning_state=self.provisioning_state,
|
|
194
|
+
provisioning_time=self.provisioning_time,
|
|
195
|
+
reservation_id=self.reservation_id,
|
|
196
|
+
sku=self.sku,
|
|
197
|
+
tags=self.tags,
|
|
198
|
+
time_created=self.time_created,
|
|
199
|
+
type=self.type,
|
|
200
|
+
virtual_machines_associated=self.virtual_machines_associated,
|
|
201
|
+
zones=self.zones)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
def get_capacity_reservation(capacity_reservation_group_name: Optional[str] = None,
|
|
205
|
+
capacity_reservation_name: Optional[str] = None,
|
|
206
|
+
expand: Optional[str] = None,
|
|
207
|
+
resource_group_name: Optional[str] = None,
|
|
208
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCapacityReservationResult:
|
|
209
|
+
"""
|
|
210
|
+
The operation that retrieves information about the capacity reservation.
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
:param str capacity_reservation_group_name: The name of the capacity reservation group.
|
|
214
|
+
:param str capacity_reservation_name: The name of the capacity reservation.
|
|
215
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' retrieves a snapshot of the runtime properties of the capacity reservation that is managed by the platform and can change outside of control plane operations.
|
|
216
|
+
:param str resource_group_name: The name of the resource group.
|
|
217
|
+
"""
|
|
218
|
+
__args__ = dict()
|
|
219
|
+
__args__['capacityReservationGroupName'] = capacity_reservation_group_name
|
|
220
|
+
__args__['capacityReservationName'] = capacity_reservation_name
|
|
221
|
+
__args__['expand'] = expand
|
|
222
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
223
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
224
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getCapacityReservation', __args__, opts=opts, typ=GetCapacityReservationResult).value
|
|
225
|
+
|
|
226
|
+
return AwaitableGetCapacityReservationResult(
|
|
227
|
+
id=pulumi.get(__ret__, 'id'),
|
|
228
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
229
|
+
location=pulumi.get(__ret__, 'location'),
|
|
230
|
+
name=pulumi.get(__ret__, 'name'),
|
|
231
|
+
platform_fault_domain_count=pulumi.get(__ret__, 'platform_fault_domain_count'),
|
|
232
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
233
|
+
provisioning_time=pulumi.get(__ret__, 'provisioning_time'),
|
|
234
|
+
reservation_id=pulumi.get(__ret__, 'reservation_id'),
|
|
235
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
236
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
237
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
|
238
|
+
type=pulumi.get(__ret__, 'type'),
|
|
239
|
+
virtual_machines_associated=pulumi.get(__ret__, 'virtual_machines_associated'),
|
|
240
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
@_utilities.lift_output_func(get_capacity_reservation)
|
|
244
|
+
def get_capacity_reservation_output(capacity_reservation_group_name: Optional[pulumi.Input[str]] = None,
|
|
245
|
+
capacity_reservation_name: Optional[pulumi.Input[str]] = None,
|
|
246
|
+
expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
247
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
248
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCapacityReservationResult]:
|
|
249
|
+
"""
|
|
250
|
+
The operation that retrieves information about the capacity reservation.
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
:param str capacity_reservation_group_name: The name of the capacity reservation group.
|
|
254
|
+
:param str capacity_reservation_name: The name of the capacity reservation.
|
|
255
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' retrieves a snapshot of the runtime properties of the capacity reservation that is managed by the platform and can change outside of control plane operations.
|
|
256
|
+
:param str resource_group_name: The name of the resource group.
|
|
257
|
+
"""
|
|
258
|
+
...
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetCapacityReservationGroupResult',
|
|
15
|
+
'AwaitableGetCapacityReservationGroupResult',
|
|
16
|
+
'get_capacity_reservation_group',
|
|
17
|
+
'get_capacity_reservation_group_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetCapacityReservationGroupResult:
|
|
22
|
+
"""
|
|
23
|
+
Specifies information about the capacity reservation group that the capacity reservations should be assigned to. Currently, a capacity reservation can only be added to a capacity reservation group at creation time. An existing capacity reservation cannot be added or moved to another capacity reservation group.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, capacity_reservations=None, id=None, instance_view=None, location=None, name=None, sharing_profile=None, tags=None, type=None, virtual_machines_associated=None, zones=None):
|
|
26
|
+
if capacity_reservations and not isinstance(capacity_reservations, list):
|
|
27
|
+
raise TypeError("Expected argument 'capacity_reservations' to be a list")
|
|
28
|
+
pulumi.set(__self__, "capacity_reservations", capacity_reservations)
|
|
29
|
+
if id and not isinstance(id, str):
|
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "id", id)
|
|
32
|
+
if instance_view and not isinstance(instance_view, dict):
|
|
33
|
+
raise TypeError("Expected argument 'instance_view' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
35
|
+
if location and not isinstance(location, str):
|
|
36
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
37
|
+
pulumi.set(__self__, "location", location)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if sharing_profile and not isinstance(sharing_profile, dict):
|
|
42
|
+
raise TypeError("Expected argument 'sharing_profile' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "sharing_profile", sharing_profile)
|
|
44
|
+
if tags and not isinstance(tags, dict):
|
|
45
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "tags", tags)
|
|
47
|
+
if type and not isinstance(type, str):
|
|
48
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
49
|
+
pulumi.set(__self__, "type", type)
|
|
50
|
+
if virtual_machines_associated and not isinstance(virtual_machines_associated, list):
|
|
51
|
+
raise TypeError("Expected argument 'virtual_machines_associated' to be a list")
|
|
52
|
+
pulumi.set(__self__, "virtual_machines_associated", virtual_machines_associated)
|
|
53
|
+
if zones and not isinstance(zones, list):
|
|
54
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
55
|
+
pulumi.set(__self__, "zones", zones)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="capacityReservations")
|
|
59
|
+
def capacity_reservations(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
|
|
60
|
+
"""
|
|
61
|
+
A list of all capacity reservation resource ids that belong to capacity reservation group.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "capacity_reservations")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def id(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
Resource Id
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "id")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="instanceView")
|
|
75
|
+
def instance_view(self) -> 'outputs.CapacityReservationGroupInstanceViewResponse':
|
|
76
|
+
"""
|
|
77
|
+
The capacity reservation group instance view which has the list of instance views for all the capacity reservations that belong to the capacity reservation group.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "instance_view")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def location(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
Resource location
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "location")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def name(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
Resource name
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "name")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="sharingProfile")
|
|
99
|
+
def sharing_profile(self) -> Optional['outputs.ResourceSharingProfileResponse']:
|
|
100
|
+
"""
|
|
101
|
+
Specifies the settings to enable sharing across subscriptions for the capacity reservation group resource. Pls. keep in mind the capacity reservation group resource generally can be shared across subscriptions belonging to a single azure AAD tenant or cross AAD tenant if there is a trust relationship established between the AAD tenants. **Note:** Minimum api-version: 2023-09-01. Please refer to https://aka.ms/computereservationsharing for more details.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "sharing_profile")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
108
|
+
"""
|
|
109
|
+
Resource tags
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "tags")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def type(self) -> str:
|
|
116
|
+
"""
|
|
117
|
+
Resource type
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "type")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter(name="virtualMachinesAssociated")
|
|
123
|
+
def virtual_machines_associated(self) -> Sequence['outputs.SubResourceReadOnlyResponse']:
|
|
124
|
+
"""
|
|
125
|
+
A list of references to all virtual machines associated to the capacity reservation group.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "virtual_machines_associated")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
132
|
+
"""
|
|
133
|
+
Availability Zones to use for this capacity reservation group. The zones can be assigned only during creation. If not provided, the group supports only regional resources in the region. If provided, enforces each capacity reservation in the group to be in one of the zones.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "zones")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetCapacityReservationGroupResult(GetCapacityReservationGroupResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetCapacityReservationGroupResult(
|
|
144
|
+
capacity_reservations=self.capacity_reservations,
|
|
145
|
+
id=self.id,
|
|
146
|
+
instance_view=self.instance_view,
|
|
147
|
+
location=self.location,
|
|
148
|
+
name=self.name,
|
|
149
|
+
sharing_profile=self.sharing_profile,
|
|
150
|
+
tags=self.tags,
|
|
151
|
+
type=self.type,
|
|
152
|
+
virtual_machines_associated=self.virtual_machines_associated,
|
|
153
|
+
zones=self.zones)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_capacity_reservation_group(capacity_reservation_group_name: Optional[str] = None,
|
|
157
|
+
expand: Optional[str] = None,
|
|
158
|
+
resource_group_name: Optional[str] = None,
|
|
159
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCapacityReservationGroupResult:
|
|
160
|
+
"""
|
|
161
|
+
The operation that retrieves information about a capacity reservation group.
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
:param str capacity_reservation_group_name: The name of the capacity reservation group.
|
|
165
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the capacity reservations under the capacity reservation group which is a snapshot of the runtime properties of a capacity reservation that is managed by the platform and can change outside of control plane operations.
|
|
166
|
+
:param str resource_group_name: The name of the resource group.
|
|
167
|
+
"""
|
|
168
|
+
__args__ = dict()
|
|
169
|
+
__args__['capacityReservationGroupName'] = capacity_reservation_group_name
|
|
170
|
+
__args__['expand'] = expand
|
|
171
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
172
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
173
|
+
__ret__ = pulumi.runtime.invoke('azure-native:compute/v20230901:getCapacityReservationGroup', __args__, opts=opts, typ=GetCapacityReservationGroupResult).value
|
|
174
|
+
|
|
175
|
+
return AwaitableGetCapacityReservationGroupResult(
|
|
176
|
+
capacity_reservations=pulumi.get(__ret__, 'capacity_reservations'),
|
|
177
|
+
id=pulumi.get(__ret__, 'id'),
|
|
178
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
179
|
+
location=pulumi.get(__ret__, 'location'),
|
|
180
|
+
name=pulumi.get(__ret__, 'name'),
|
|
181
|
+
sharing_profile=pulumi.get(__ret__, 'sharing_profile'),
|
|
182
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
183
|
+
type=pulumi.get(__ret__, 'type'),
|
|
184
|
+
virtual_machines_associated=pulumi.get(__ret__, 'virtual_machines_associated'),
|
|
185
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
@_utilities.lift_output_func(get_capacity_reservation_group)
|
|
189
|
+
def get_capacity_reservation_group_output(capacity_reservation_group_name: Optional[pulumi.Input[str]] = None,
|
|
190
|
+
expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
191
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCapacityReservationGroupResult]:
|
|
193
|
+
"""
|
|
194
|
+
The operation that retrieves information about a capacity reservation group.
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
:param str capacity_reservation_group_name: The name of the capacity reservation group.
|
|
198
|
+
:param str expand: The expand expression to apply on the operation. 'InstanceView' will retrieve the list of instance views of the capacity reservations under the capacity reservation group which is a snapshot of the runtime properties of a capacity reservation that is managed by the platform and can change outside of control plane operations.
|
|
199
|
+
:param str resource_group_name: The name of the resource group.
|
|
200
|
+
"""
|
|
201
|
+
...
|