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,498 @@
|
|
|
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
|
+
'ConfigurationAssignmentFilterPropertiesResponse',
|
|
16
|
+
'InputLinuxParametersResponse',
|
|
17
|
+
'InputPatchConfigurationResponse',
|
|
18
|
+
'InputWindowsParametersResponse',
|
|
19
|
+
'SystemDataResponse',
|
|
20
|
+
'TagSettingsPropertiesResponse',
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
@pulumi.output_type
|
|
24
|
+
class ConfigurationAssignmentFilterPropertiesResponse(dict):
|
|
25
|
+
"""
|
|
26
|
+
Azure query for the update configuration.
|
|
27
|
+
"""
|
|
28
|
+
@staticmethod
|
|
29
|
+
def __key_warning(key: str):
|
|
30
|
+
suggest = None
|
|
31
|
+
if key == "osTypes":
|
|
32
|
+
suggest = "os_types"
|
|
33
|
+
elif key == "resourceGroups":
|
|
34
|
+
suggest = "resource_groups"
|
|
35
|
+
elif key == "resourceTypes":
|
|
36
|
+
suggest = "resource_types"
|
|
37
|
+
elif key == "tagSettings":
|
|
38
|
+
suggest = "tag_settings"
|
|
39
|
+
|
|
40
|
+
if suggest:
|
|
41
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfigurationAssignmentFilterPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
42
|
+
|
|
43
|
+
def __getitem__(self, key: str) -> Any:
|
|
44
|
+
ConfigurationAssignmentFilterPropertiesResponse.__key_warning(key)
|
|
45
|
+
return super().__getitem__(key)
|
|
46
|
+
|
|
47
|
+
def get(self, key: str, default = None) -> Any:
|
|
48
|
+
ConfigurationAssignmentFilterPropertiesResponse.__key_warning(key)
|
|
49
|
+
return super().get(key, default)
|
|
50
|
+
|
|
51
|
+
def __init__(__self__, *,
|
|
52
|
+
locations: Optional[Sequence[str]] = None,
|
|
53
|
+
os_types: Optional[Sequence[str]] = None,
|
|
54
|
+
resource_groups: Optional[Sequence[str]] = None,
|
|
55
|
+
resource_types: Optional[Sequence[str]] = None,
|
|
56
|
+
tag_settings: Optional['outputs.TagSettingsPropertiesResponse'] = None):
|
|
57
|
+
"""
|
|
58
|
+
Azure query for the update configuration.
|
|
59
|
+
:param Sequence[str] locations: List of locations to scope the query to.
|
|
60
|
+
:param Sequence[str] os_types: List of allowed operating systems.
|
|
61
|
+
:param Sequence[str] resource_groups: List of allowed resource groups.
|
|
62
|
+
:param Sequence[str] resource_types: List of allowed resources.
|
|
63
|
+
:param 'TagSettingsPropertiesResponse' tag_settings: Tag settings for the VM.
|
|
64
|
+
"""
|
|
65
|
+
if locations is not None:
|
|
66
|
+
pulumi.set(__self__, "locations", locations)
|
|
67
|
+
if os_types is not None:
|
|
68
|
+
pulumi.set(__self__, "os_types", os_types)
|
|
69
|
+
if resource_groups is not None:
|
|
70
|
+
pulumi.set(__self__, "resource_groups", resource_groups)
|
|
71
|
+
if resource_types is not None:
|
|
72
|
+
pulumi.set(__self__, "resource_types", resource_types)
|
|
73
|
+
if tag_settings is not None:
|
|
74
|
+
pulumi.set(__self__, "tag_settings", tag_settings)
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def locations(self) -> Optional[Sequence[str]]:
|
|
79
|
+
"""
|
|
80
|
+
List of locations to scope the query to.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "locations")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter(name="osTypes")
|
|
86
|
+
def os_types(self) -> Optional[Sequence[str]]:
|
|
87
|
+
"""
|
|
88
|
+
List of allowed operating systems.
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "os_types")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter(name="resourceGroups")
|
|
94
|
+
def resource_groups(self) -> Optional[Sequence[str]]:
|
|
95
|
+
"""
|
|
96
|
+
List of allowed resource groups.
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "resource_groups")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter(name="resourceTypes")
|
|
102
|
+
def resource_types(self) -> Optional[Sequence[str]]:
|
|
103
|
+
"""
|
|
104
|
+
List of allowed resources.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "resource_types")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter(name="tagSettings")
|
|
110
|
+
def tag_settings(self) -> Optional['outputs.TagSettingsPropertiesResponse']:
|
|
111
|
+
"""
|
|
112
|
+
Tag settings for the VM.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "tag_settings")
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
@pulumi.output_type
|
|
118
|
+
class InputLinuxParametersResponse(dict):
|
|
119
|
+
"""
|
|
120
|
+
Input properties for patching a Linux machine.
|
|
121
|
+
"""
|
|
122
|
+
@staticmethod
|
|
123
|
+
def __key_warning(key: str):
|
|
124
|
+
suggest = None
|
|
125
|
+
if key == "classificationsToInclude":
|
|
126
|
+
suggest = "classifications_to_include"
|
|
127
|
+
elif key == "packageNameMasksToExclude":
|
|
128
|
+
suggest = "package_name_masks_to_exclude"
|
|
129
|
+
elif key == "packageNameMasksToInclude":
|
|
130
|
+
suggest = "package_name_masks_to_include"
|
|
131
|
+
|
|
132
|
+
if suggest:
|
|
133
|
+
pulumi.log.warn(f"Key '{key}' not found in InputLinuxParametersResponse. Access the value via the '{suggest}' property getter instead.")
|
|
134
|
+
|
|
135
|
+
def __getitem__(self, key: str) -> Any:
|
|
136
|
+
InputLinuxParametersResponse.__key_warning(key)
|
|
137
|
+
return super().__getitem__(key)
|
|
138
|
+
|
|
139
|
+
def get(self, key: str, default = None) -> Any:
|
|
140
|
+
InputLinuxParametersResponse.__key_warning(key)
|
|
141
|
+
return super().get(key, default)
|
|
142
|
+
|
|
143
|
+
def __init__(__self__, *,
|
|
144
|
+
classifications_to_include: Optional[Sequence[str]] = None,
|
|
145
|
+
package_name_masks_to_exclude: Optional[Sequence[str]] = None,
|
|
146
|
+
package_name_masks_to_include: Optional[Sequence[str]] = None):
|
|
147
|
+
"""
|
|
148
|
+
Input properties for patching a Linux machine.
|
|
149
|
+
:param Sequence[str] classifications_to_include: Classification category of patches to be patched
|
|
150
|
+
:param Sequence[str] package_name_masks_to_exclude: Package names to be excluded for patching.
|
|
151
|
+
:param Sequence[str] package_name_masks_to_include: Package names to be included for patching.
|
|
152
|
+
"""
|
|
153
|
+
if classifications_to_include is not None:
|
|
154
|
+
pulumi.set(__self__, "classifications_to_include", classifications_to_include)
|
|
155
|
+
if package_name_masks_to_exclude is not None:
|
|
156
|
+
pulumi.set(__self__, "package_name_masks_to_exclude", package_name_masks_to_exclude)
|
|
157
|
+
if package_name_masks_to_include is not None:
|
|
158
|
+
pulumi.set(__self__, "package_name_masks_to_include", package_name_masks_to_include)
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter(name="classificationsToInclude")
|
|
162
|
+
def classifications_to_include(self) -> Optional[Sequence[str]]:
|
|
163
|
+
"""
|
|
164
|
+
Classification category of patches to be patched
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "classifications_to_include")
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="packageNameMasksToExclude")
|
|
170
|
+
def package_name_masks_to_exclude(self) -> Optional[Sequence[str]]:
|
|
171
|
+
"""
|
|
172
|
+
Package names to be excluded for patching.
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "package_name_masks_to_exclude")
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
@pulumi.getter(name="packageNameMasksToInclude")
|
|
178
|
+
def package_name_masks_to_include(self) -> Optional[Sequence[str]]:
|
|
179
|
+
"""
|
|
180
|
+
Package names to be included for patching.
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "package_name_masks_to_include")
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
@pulumi.output_type
|
|
186
|
+
class InputPatchConfigurationResponse(dict):
|
|
187
|
+
"""
|
|
188
|
+
Input configuration for a patch run
|
|
189
|
+
"""
|
|
190
|
+
@staticmethod
|
|
191
|
+
def __key_warning(key: str):
|
|
192
|
+
suggest = None
|
|
193
|
+
if key == "linuxParameters":
|
|
194
|
+
suggest = "linux_parameters"
|
|
195
|
+
elif key == "rebootSetting":
|
|
196
|
+
suggest = "reboot_setting"
|
|
197
|
+
elif key == "windowsParameters":
|
|
198
|
+
suggest = "windows_parameters"
|
|
199
|
+
|
|
200
|
+
if suggest:
|
|
201
|
+
pulumi.log.warn(f"Key '{key}' not found in InputPatchConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
202
|
+
|
|
203
|
+
def __getitem__(self, key: str) -> Any:
|
|
204
|
+
InputPatchConfigurationResponse.__key_warning(key)
|
|
205
|
+
return super().__getitem__(key)
|
|
206
|
+
|
|
207
|
+
def get(self, key: str, default = None) -> Any:
|
|
208
|
+
InputPatchConfigurationResponse.__key_warning(key)
|
|
209
|
+
return super().get(key, default)
|
|
210
|
+
|
|
211
|
+
def __init__(__self__, *,
|
|
212
|
+
linux_parameters: Optional['outputs.InputLinuxParametersResponse'] = None,
|
|
213
|
+
reboot_setting: Optional[str] = None,
|
|
214
|
+
windows_parameters: Optional['outputs.InputWindowsParametersResponse'] = None):
|
|
215
|
+
"""
|
|
216
|
+
Input configuration for a patch run
|
|
217
|
+
:param 'InputLinuxParametersResponse' linux_parameters: Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
|
|
218
|
+
:param str reboot_setting: Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
|
|
219
|
+
:param 'InputWindowsParametersResponse' windows_parameters: Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
|
|
220
|
+
"""
|
|
221
|
+
if linux_parameters is not None:
|
|
222
|
+
pulumi.set(__self__, "linux_parameters", linux_parameters)
|
|
223
|
+
if reboot_setting is None:
|
|
224
|
+
reboot_setting = 'IfRequired'
|
|
225
|
+
if reboot_setting is not None:
|
|
226
|
+
pulumi.set(__self__, "reboot_setting", reboot_setting)
|
|
227
|
+
if windows_parameters is not None:
|
|
228
|
+
pulumi.set(__self__, "windows_parameters", windows_parameters)
|
|
229
|
+
|
|
230
|
+
@property
|
|
231
|
+
@pulumi.getter(name="linuxParameters")
|
|
232
|
+
def linux_parameters(self) -> Optional['outputs.InputLinuxParametersResponse']:
|
|
233
|
+
"""
|
|
234
|
+
Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
|
|
235
|
+
"""
|
|
236
|
+
return pulumi.get(self, "linux_parameters")
|
|
237
|
+
|
|
238
|
+
@property
|
|
239
|
+
@pulumi.getter(name="rebootSetting")
|
|
240
|
+
def reboot_setting(self) -> Optional[str]:
|
|
241
|
+
"""
|
|
242
|
+
Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
|
|
243
|
+
"""
|
|
244
|
+
return pulumi.get(self, "reboot_setting")
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
@pulumi.getter(name="windowsParameters")
|
|
248
|
+
def windows_parameters(self) -> Optional['outputs.InputWindowsParametersResponse']:
|
|
249
|
+
"""
|
|
250
|
+
Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
|
|
251
|
+
"""
|
|
252
|
+
return pulumi.get(self, "windows_parameters")
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
@pulumi.output_type
|
|
256
|
+
class InputWindowsParametersResponse(dict):
|
|
257
|
+
"""
|
|
258
|
+
Input properties for patching a Windows machine.
|
|
259
|
+
"""
|
|
260
|
+
@staticmethod
|
|
261
|
+
def __key_warning(key: str):
|
|
262
|
+
suggest = None
|
|
263
|
+
if key == "classificationsToInclude":
|
|
264
|
+
suggest = "classifications_to_include"
|
|
265
|
+
elif key == "excludeKbsRequiringReboot":
|
|
266
|
+
suggest = "exclude_kbs_requiring_reboot"
|
|
267
|
+
elif key == "kbNumbersToExclude":
|
|
268
|
+
suggest = "kb_numbers_to_exclude"
|
|
269
|
+
elif key == "kbNumbersToInclude":
|
|
270
|
+
suggest = "kb_numbers_to_include"
|
|
271
|
+
|
|
272
|
+
if suggest:
|
|
273
|
+
pulumi.log.warn(f"Key '{key}' not found in InputWindowsParametersResponse. Access the value via the '{suggest}' property getter instead.")
|
|
274
|
+
|
|
275
|
+
def __getitem__(self, key: str) -> Any:
|
|
276
|
+
InputWindowsParametersResponse.__key_warning(key)
|
|
277
|
+
return super().__getitem__(key)
|
|
278
|
+
|
|
279
|
+
def get(self, key: str, default = None) -> Any:
|
|
280
|
+
InputWindowsParametersResponse.__key_warning(key)
|
|
281
|
+
return super().get(key, default)
|
|
282
|
+
|
|
283
|
+
def __init__(__self__, *,
|
|
284
|
+
classifications_to_include: Optional[Sequence[str]] = None,
|
|
285
|
+
exclude_kbs_requiring_reboot: Optional[bool] = None,
|
|
286
|
+
kb_numbers_to_exclude: Optional[Sequence[str]] = None,
|
|
287
|
+
kb_numbers_to_include: Optional[Sequence[str]] = None):
|
|
288
|
+
"""
|
|
289
|
+
Input properties for patching a Windows machine.
|
|
290
|
+
:param Sequence[str] classifications_to_include: Classification category of patches to be patched
|
|
291
|
+
:param bool exclude_kbs_requiring_reboot: Exclude patches which need reboot
|
|
292
|
+
:param Sequence[str] kb_numbers_to_exclude: Windows KBID to be excluded for patching.
|
|
293
|
+
:param Sequence[str] kb_numbers_to_include: Windows KBID to be included for patching.
|
|
294
|
+
"""
|
|
295
|
+
if classifications_to_include is not None:
|
|
296
|
+
pulumi.set(__self__, "classifications_to_include", classifications_to_include)
|
|
297
|
+
if exclude_kbs_requiring_reboot is not None:
|
|
298
|
+
pulumi.set(__self__, "exclude_kbs_requiring_reboot", exclude_kbs_requiring_reboot)
|
|
299
|
+
if kb_numbers_to_exclude is not None:
|
|
300
|
+
pulumi.set(__self__, "kb_numbers_to_exclude", kb_numbers_to_exclude)
|
|
301
|
+
if kb_numbers_to_include is not None:
|
|
302
|
+
pulumi.set(__self__, "kb_numbers_to_include", kb_numbers_to_include)
|
|
303
|
+
|
|
304
|
+
@property
|
|
305
|
+
@pulumi.getter(name="classificationsToInclude")
|
|
306
|
+
def classifications_to_include(self) -> Optional[Sequence[str]]:
|
|
307
|
+
"""
|
|
308
|
+
Classification category of patches to be patched
|
|
309
|
+
"""
|
|
310
|
+
return pulumi.get(self, "classifications_to_include")
|
|
311
|
+
|
|
312
|
+
@property
|
|
313
|
+
@pulumi.getter(name="excludeKbsRequiringReboot")
|
|
314
|
+
def exclude_kbs_requiring_reboot(self) -> Optional[bool]:
|
|
315
|
+
"""
|
|
316
|
+
Exclude patches which need reboot
|
|
317
|
+
"""
|
|
318
|
+
return pulumi.get(self, "exclude_kbs_requiring_reboot")
|
|
319
|
+
|
|
320
|
+
@property
|
|
321
|
+
@pulumi.getter(name="kbNumbersToExclude")
|
|
322
|
+
def kb_numbers_to_exclude(self) -> Optional[Sequence[str]]:
|
|
323
|
+
"""
|
|
324
|
+
Windows KBID to be excluded for patching.
|
|
325
|
+
"""
|
|
326
|
+
return pulumi.get(self, "kb_numbers_to_exclude")
|
|
327
|
+
|
|
328
|
+
@property
|
|
329
|
+
@pulumi.getter(name="kbNumbersToInclude")
|
|
330
|
+
def kb_numbers_to_include(self) -> Optional[Sequence[str]]:
|
|
331
|
+
"""
|
|
332
|
+
Windows KBID to be included for patching.
|
|
333
|
+
"""
|
|
334
|
+
return pulumi.get(self, "kb_numbers_to_include")
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
@pulumi.output_type
|
|
338
|
+
class SystemDataResponse(dict):
|
|
339
|
+
"""
|
|
340
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
341
|
+
"""
|
|
342
|
+
@staticmethod
|
|
343
|
+
def __key_warning(key: str):
|
|
344
|
+
suggest = None
|
|
345
|
+
if key == "createdAt":
|
|
346
|
+
suggest = "created_at"
|
|
347
|
+
elif key == "createdBy":
|
|
348
|
+
suggest = "created_by"
|
|
349
|
+
elif key == "createdByType":
|
|
350
|
+
suggest = "created_by_type"
|
|
351
|
+
elif key == "lastModifiedAt":
|
|
352
|
+
suggest = "last_modified_at"
|
|
353
|
+
elif key == "lastModifiedBy":
|
|
354
|
+
suggest = "last_modified_by"
|
|
355
|
+
elif key == "lastModifiedByType":
|
|
356
|
+
suggest = "last_modified_by_type"
|
|
357
|
+
|
|
358
|
+
if suggest:
|
|
359
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
360
|
+
|
|
361
|
+
def __getitem__(self, key: str) -> Any:
|
|
362
|
+
SystemDataResponse.__key_warning(key)
|
|
363
|
+
return super().__getitem__(key)
|
|
364
|
+
|
|
365
|
+
def get(self, key: str, default = None) -> Any:
|
|
366
|
+
SystemDataResponse.__key_warning(key)
|
|
367
|
+
return super().get(key, default)
|
|
368
|
+
|
|
369
|
+
def __init__(__self__, *,
|
|
370
|
+
created_at: Optional[str] = None,
|
|
371
|
+
created_by: Optional[str] = None,
|
|
372
|
+
created_by_type: Optional[str] = None,
|
|
373
|
+
last_modified_at: Optional[str] = None,
|
|
374
|
+
last_modified_by: Optional[str] = None,
|
|
375
|
+
last_modified_by_type: Optional[str] = None):
|
|
376
|
+
"""
|
|
377
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
378
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
379
|
+
:param str created_by: The identity that created the resource.
|
|
380
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
381
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
382
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
383
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
384
|
+
"""
|
|
385
|
+
if created_at is not None:
|
|
386
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
387
|
+
if created_by is not None:
|
|
388
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
389
|
+
if created_by_type is not None:
|
|
390
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
391
|
+
if last_modified_at is not None:
|
|
392
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
393
|
+
if last_modified_by is not None:
|
|
394
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
395
|
+
if last_modified_by_type is not None:
|
|
396
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
397
|
+
|
|
398
|
+
@property
|
|
399
|
+
@pulumi.getter(name="createdAt")
|
|
400
|
+
def created_at(self) -> Optional[str]:
|
|
401
|
+
"""
|
|
402
|
+
The timestamp of resource creation (UTC).
|
|
403
|
+
"""
|
|
404
|
+
return pulumi.get(self, "created_at")
|
|
405
|
+
|
|
406
|
+
@property
|
|
407
|
+
@pulumi.getter(name="createdBy")
|
|
408
|
+
def created_by(self) -> Optional[str]:
|
|
409
|
+
"""
|
|
410
|
+
The identity that created the resource.
|
|
411
|
+
"""
|
|
412
|
+
return pulumi.get(self, "created_by")
|
|
413
|
+
|
|
414
|
+
@property
|
|
415
|
+
@pulumi.getter(name="createdByType")
|
|
416
|
+
def created_by_type(self) -> Optional[str]:
|
|
417
|
+
"""
|
|
418
|
+
The type of identity that created the resource.
|
|
419
|
+
"""
|
|
420
|
+
return pulumi.get(self, "created_by_type")
|
|
421
|
+
|
|
422
|
+
@property
|
|
423
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
424
|
+
def last_modified_at(self) -> Optional[str]:
|
|
425
|
+
"""
|
|
426
|
+
The timestamp of resource last modification (UTC)
|
|
427
|
+
"""
|
|
428
|
+
return pulumi.get(self, "last_modified_at")
|
|
429
|
+
|
|
430
|
+
@property
|
|
431
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
432
|
+
def last_modified_by(self) -> Optional[str]:
|
|
433
|
+
"""
|
|
434
|
+
The identity that last modified the resource.
|
|
435
|
+
"""
|
|
436
|
+
return pulumi.get(self, "last_modified_by")
|
|
437
|
+
|
|
438
|
+
@property
|
|
439
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
440
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
441
|
+
"""
|
|
442
|
+
The type of identity that last modified the resource.
|
|
443
|
+
"""
|
|
444
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
@pulumi.output_type
|
|
448
|
+
class TagSettingsPropertiesResponse(dict):
|
|
449
|
+
"""
|
|
450
|
+
Tag filter information for the VM.
|
|
451
|
+
"""
|
|
452
|
+
@staticmethod
|
|
453
|
+
def __key_warning(key: str):
|
|
454
|
+
suggest = None
|
|
455
|
+
if key == "filterOperator":
|
|
456
|
+
suggest = "filter_operator"
|
|
457
|
+
|
|
458
|
+
if suggest:
|
|
459
|
+
pulumi.log.warn(f"Key '{key}' not found in TagSettingsPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
460
|
+
|
|
461
|
+
def __getitem__(self, key: str) -> Any:
|
|
462
|
+
TagSettingsPropertiesResponse.__key_warning(key)
|
|
463
|
+
return super().__getitem__(key)
|
|
464
|
+
|
|
465
|
+
def get(self, key: str, default = None) -> Any:
|
|
466
|
+
TagSettingsPropertiesResponse.__key_warning(key)
|
|
467
|
+
return super().get(key, default)
|
|
468
|
+
|
|
469
|
+
def __init__(__self__, *,
|
|
470
|
+
filter_operator: Optional[str] = None,
|
|
471
|
+
tags: Optional[Mapping[str, Sequence[str]]] = None):
|
|
472
|
+
"""
|
|
473
|
+
Tag filter information for the VM.
|
|
474
|
+
:param str filter_operator: Filter VMs by Any or All specified tags.
|
|
475
|
+
:param Mapping[str, Sequence[str]] tags: Dictionary of tags with its list of values.
|
|
476
|
+
"""
|
|
477
|
+
if filter_operator is not None:
|
|
478
|
+
pulumi.set(__self__, "filter_operator", filter_operator)
|
|
479
|
+
if tags is not None:
|
|
480
|
+
pulumi.set(__self__, "tags", tags)
|
|
481
|
+
|
|
482
|
+
@property
|
|
483
|
+
@pulumi.getter(name="filterOperator")
|
|
484
|
+
def filter_operator(self) -> Optional[str]:
|
|
485
|
+
"""
|
|
486
|
+
Filter VMs by Any or All specified tags.
|
|
487
|
+
"""
|
|
488
|
+
return pulumi.get(self, "filter_operator")
|
|
489
|
+
|
|
490
|
+
@property
|
|
491
|
+
@pulumi.getter
|
|
492
|
+
def tags(self) -> Optional[Mapping[str, Sequence[str]]]:
|
|
493
|
+
"""
|
|
494
|
+
Dictionary of tags with its list of values.
|
|
495
|
+
"""
|
|
496
|
+
return pulumi.get(self, "tags")
|
|
497
|
+
|
|
498
|
+
|
|
@@ -44,6 +44,7 @@ from .get_governance_assignment import *
|
|
|
44
44
|
from .get_governance_rule import *
|
|
45
45
|
from .get_iot_security_solution import *
|
|
46
46
|
from .get_jit_network_access_policy import *
|
|
47
|
+
from .get_pricing import *
|
|
47
48
|
from .get_security_connector import *
|
|
48
49
|
from .get_security_connector_application import *
|
|
49
50
|
from .get_security_contact import *
|
|
@@ -60,6 +61,7 @@ from .list_azure_dev_ops_org_available import *
|
|
|
60
61
|
from .list_git_hub_owner_available import *
|
|
61
62
|
from .list_git_lab_group_available import *
|
|
62
63
|
from .list_git_lab_subgroup import *
|
|
64
|
+
from .pricing import *
|
|
63
65
|
from .security_connector import *
|
|
64
66
|
from .security_connector_application import *
|
|
65
67
|
from .security_contact import *
|
|
@@ -111,6 +113,8 @@ if typing.TYPE_CHECKING:
|
|
|
111
113
|
v20231001preview = __v20231001preview
|
|
112
114
|
import pulumi_azure_native.security.v20231115 as __v20231115
|
|
113
115
|
v20231115 = __v20231115
|
|
116
|
+
import pulumi_azure_native.security.v20240101 as __v20240101
|
|
117
|
+
v20240101 = __v20240101
|
|
114
118
|
else:
|
|
115
119
|
v20170801preview = _utilities.lazy_import('pulumi_azure_native.security.v20170801preview')
|
|
116
120
|
v20190101 = _utilities.lazy_import('pulumi_azure_native.security.v20190101')
|
|
@@ -131,4 +135,5 @@ else:
|
|
|
131
135
|
v20230901preview = _utilities.lazy_import('pulumi_azure_native.security.v20230901preview')
|
|
132
136
|
v20231001preview = _utilities.lazy_import('pulumi_azure_native.security.v20231001preview')
|
|
133
137
|
v20231115 = _utilities.lazy_import('pulumi_azure_native.security.v20231115')
|
|
138
|
+
v20240101 = _utilities.lazy_import('pulumi_azure_native.security.v20240101')
|
|
134
139
|
|
|
@@ -18,6 +18,7 @@ __all__ = [
|
|
|
18
18
|
'CloudName',
|
|
19
19
|
'DataSource',
|
|
20
20
|
'DevOpsProvisioningState',
|
|
21
|
+
'Enforce',
|
|
21
22
|
'EnvironmentType',
|
|
22
23
|
'EventSource',
|
|
23
24
|
'ExportData',
|
|
@@ -25,10 +26,12 @@ __all__ = [
|
|
|
25
26
|
'GovernanceRuleSourceResourceType',
|
|
26
27
|
'GovernanceRuleType',
|
|
27
28
|
'ImplementationEffort',
|
|
29
|
+
'IsEnabled',
|
|
28
30
|
'MinimalSeverity',
|
|
29
31
|
'OfferingType',
|
|
30
32
|
'Operator',
|
|
31
33
|
'OrganizationMembershipType',
|
|
34
|
+
'PricingTier',
|
|
32
35
|
'PropertyType',
|
|
33
36
|
'Protocol',
|
|
34
37
|
'RecommendationConfigStatus',
|
|
@@ -219,6 +222,20 @@ class DevOpsProvisioningState(str, Enum):
|
|
|
219
222
|
DELETION_FAILURE = "DeletionFailure"
|
|
220
223
|
|
|
221
224
|
|
|
225
|
+
class Enforce(str, Enum):
|
|
226
|
+
"""
|
|
227
|
+
If set to "False", it allows the descendants of this scope to override the pricing configuration set on this scope (allows setting inherited="False"). If set to "True", it prevents overrides and forces this pricing configuration on all the descendants of this scope. This field is only available for subscription-level pricing.
|
|
228
|
+
"""
|
|
229
|
+
FALSE = "False"
|
|
230
|
+
"""
|
|
231
|
+
Allows the descendants of this scope to override the pricing configuration set on this scope (allows setting inherited="False")
|
|
232
|
+
"""
|
|
233
|
+
TRUE = "True"
|
|
234
|
+
"""
|
|
235
|
+
Prevents overrides and forces the current scope's pricing configuration to all descendants
|
|
236
|
+
"""
|
|
237
|
+
|
|
238
|
+
|
|
222
239
|
class EnvironmentType(str, Enum):
|
|
223
240
|
"""
|
|
224
241
|
The type of the environment data.
|
|
@@ -301,6 +318,20 @@ class ImplementationEffort(str, Enum):
|
|
|
301
318
|
HIGH = "High"
|
|
302
319
|
|
|
303
320
|
|
|
321
|
+
class IsEnabled(str, Enum):
|
|
322
|
+
"""
|
|
323
|
+
Indicates whether the extension is enabled.
|
|
324
|
+
"""
|
|
325
|
+
TRUE = "True"
|
|
326
|
+
"""
|
|
327
|
+
Indicates the extension is enabled
|
|
328
|
+
"""
|
|
329
|
+
FALSE = "False"
|
|
330
|
+
"""
|
|
331
|
+
Indicates the extension is disabled
|
|
332
|
+
"""
|
|
333
|
+
|
|
334
|
+
|
|
304
335
|
class MinimalSeverity(str, Enum):
|
|
305
336
|
"""
|
|
306
337
|
Defines the minimal alert severity which will be sent as email notifications
|
|
@@ -392,6 +423,20 @@ class OrganizationMembershipType(str, Enum):
|
|
|
392
423
|
ORGANIZATION = "Organization"
|
|
393
424
|
|
|
394
425
|
|
|
426
|
+
class PricingTier(str, Enum):
|
|
427
|
+
"""
|
|
428
|
+
Indicates whether the Defender plan is enabled on the selected scope. Microsoft Defender for Cloud is provided in two pricing tiers: free and standard. The standard tier offers advanced security capabilities, while the free tier offers basic security features.
|
|
429
|
+
"""
|
|
430
|
+
FREE = "Free"
|
|
431
|
+
"""
|
|
432
|
+
Get free Microsoft Defender for Cloud experience with basic security features
|
|
433
|
+
"""
|
|
434
|
+
STANDARD = "Standard"
|
|
435
|
+
"""
|
|
436
|
+
Get the standard Microsoft Defender for Cloud experience with advanced security features
|
|
437
|
+
"""
|
|
438
|
+
|
|
439
|
+
|
|
395
440
|
class PropertyType(str, Enum):
|
|
396
441
|
"""
|
|
397
442
|
The data type of the compared operands (string, integer, floating point number or a boolean [true/false]]
|
|
@@ -89,6 +89,7 @@ __all__ = [
|
|
|
89
89
|
'DefenderForServersGcpOfferingArgs',
|
|
90
90
|
'DenylistCustomAlertRuleArgs',
|
|
91
91
|
'DevOpsConfigurationPropertiesArgs',
|
|
92
|
+
'ExtensionArgs',
|
|
92
93
|
'GcpCredentialsDetailsPropertiesArgs',
|
|
93
94
|
'GcpOrganizationalDataMemberArgs',
|
|
94
95
|
'GcpOrganizationalDataOrganizationArgs',
|
|
@@ -3612,6 +3613,68 @@ class DevOpsConfigurationPropertiesArgs:
|
|
|
3612
3613
|
pulumi.set(self, "top_level_inventory_list", value)
|
|
3613
3614
|
|
|
3614
3615
|
|
|
3616
|
+
@pulumi.input_type
|
|
3617
|
+
class ExtensionArgs:
|
|
3618
|
+
def __init__(__self__, *,
|
|
3619
|
+
is_enabled: pulumi.Input[Union[str, 'IsEnabled']],
|
|
3620
|
+
name: pulumi.Input[str],
|
|
3621
|
+
additional_extension_properties: Optional[Any] = None):
|
|
3622
|
+
"""
|
|
3623
|
+
A plan's extension properties
|
|
3624
|
+
:param pulumi.Input[Union[str, 'IsEnabled']] is_enabled: Indicates whether the extension is enabled.
|
|
3625
|
+
:param pulumi.Input[str] name: The extension name. Supported values are: <br><br>**AgentlessDiscoveryForKubernetes** - API-based discovery of information about Kubernetes cluster architecture, workload objects, and setup. Required for Kubernetes inventory, identity and network exposure detection, attack path analysis and risk hunting as part of the cloud security explorer.
|
|
3626
|
+
Available for CloudPosture plan.<br><br>**OnUploadMalwareScanning** - Limits the GB to be scanned per month for each storage account within the subscription. Once this limit reached on a given storage account, Blobs won't be scanned during current calendar month.
|
|
3627
|
+
Available for StorageAccounts plan.<br><br>**SensitiveDataDiscovery** - Sensitive data discovery identifies Blob storage container with sensitive data such as credentials, credit cards, and more, to help prioritize and investigate security events.
|
|
3628
|
+
Available for StorageAccounts and CloudPosture plans.<br><br>**ContainerRegistriesVulnerabilityAssessments** - Provides vulnerability management for images stored in your container registries.
|
|
3629
|
+
Available for CloudPosture and Containers plans.
|
|
3630
|
+
:param Any additional_extension_properties: Property values associated with the extension.
|
|
3631
|
+
"""
|
|
3632
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
|
3633
|
+
pulumi.set(__self__, "name", name)
|
|
3634
|
+
if additional_extension_properties is not None:
|
|
3635
|
+
pulumi.set(__self__, "additional_extension_properties", additional_extension_properties)
|
|
3636
|
+
|
|
3637
|
+
@property
|
|
3638
|
+
@pulumi.getter(name="isEnabled")
|
|
3639
|
+
def is_enabled(self) -> pulumi.Input[Union[str, 'IsEnabled']]:
|
|
3640
|
+
"""
|
|
3641
|
+
Indicates whether the extension is enabled.
|
|
3642
|
+
"""
|
|
3643
|
+
return pulumi.get(self, "is_enabled")
|
|
3644
|
+
|
|
3645
|
+
@is_enabled.setter
|
|
3646
|
+
def is_enabled(self, value: pulumi.Input[Union[str, 'IsEnabled']]):
|
|
3647
|
+
pulumi.set(self, "is_enabled", value)
|
|
3648
|
+
|
|
3649
|
+
@property
|
|
3650
|
+
@pulumi.getter
|
|
3651
|
+
def name(self) -> pulumi.Input[str]:
|
|
3652
|
+
"""
|
|
3653
|
+
The extension name. Supported values are: <br><br>**AgentlessDiscoveryForKubernetes** - API-based discovery of information about Kubernetes cluster architecture, workload objects, and setup. Required for Kubernetes inventory, identity and network exposure detection, attack path analysis and risk hunting as part of the cloud security explorer.
|
|
3654
|
+
Available for CloudPosture plan.<br><br>**OnUploadMalwareScanning** - Limits the GB to be scanned per month for each storage account within the subscription. Once this limit reached on a given storage account, Blobs won't be scanned during current calendar month.
|
|
3655
|
+
Available for StorageAccounts plan.<br><br>**SensitiveDataDiscovery** - Sensitive data discovery identifies Blob storage container with sensitive data such as credentials, credit cards, and more, to help prioritize and investigate security events.
|
|
3656
|
+
Available for StorageAccounts and CloudPosture plans.<br><br>**ContainerRegistriesVulnerabilityAssessments** - Provides vulnerability management for images stored in your container registries.
|
|
3657
|
+
Available for CloudPosture and Containers plans.
|
|
3658
|
+
"""
|
|
3659
|
+
return pulumi.get(self, "name")
|
|
3660
|
+
|
|
3661
|
+
@name.setter
|
|
3662
|
+
def name(self, value: pulumi.Input[str]):
|
|
3663
|
+
pulumi.set(self, "name", value)
|
|
3664
|
+
|
|
3665
|
+
@property
|
|
3666
|
+
@pulumi.getter(name="additionalExtensionProperties")
|
|
3667
|
+
def additional_extension_properties(self) -> Optional[Any]:
|
|
3668
|
+
"""
|
|
3669
|
+
Property values associated with the extension.
|
|
3670
|
+
"""
|
|
3671
|
+
return pulumi.get(self, "additional_extension_properties")
|
|
3672
|
+
|
|
3673
|
+
@additional_extension_properties.setter
|
|
3674
|
+
def additional_extension_properties(self, value: Optional[Any]):
|
|
3675
|
+
pulumi.set(self, "additional_extension_properties", value)
|
|
3676
|
+
|
|
3677
|
+
|
|
3615
3678
|
@pulumi.input_type
|
|
3616
3679
|
class GcpCredentialsDetailsPropertiesArgs:
|
|
3617
3680
|
def __init__(__self__, *,
|