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,250 @@
|
|
|
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
|
+
'GetPricingResult',
|
|
15
|
+
'AwaitableGetPricingResult',
|
|
16
|
+
'get_pricing',
|
|
17
|
+
'get_pricing_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetPricingResult:
|
|
22
|
+
"""
|
|
23
|
+
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.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, deprecated=None, enablement_time=None, enforce=None, extensions=None, free_trial_remaining_time=None, id=None, inherited=None, inherited_from=None, name=None, pricing_tier=None, replaced_by=None, resources_coverage_status=None, sub_plan=None, type=None):
|
|
26
|
+
if deprecated and not isinstance(deprecated, bool):
|
|
27
|
+
raise TypeError("Expected argument 'deprecated' to be a bool")
|
|
28
|
+
pulumi.set(__self__, "deprecated", deprecated)
|
|
29
|
+
if enablement_time and not isinstance(enablement_time, str):
|
|
30
|
+
raise TypeError("Expected argument 'enablement_time' to be a str")
|
|
31
|
+
pulumi.set(__self__, "enablement_time", enablement_time)
|
|
32
|
+
if enforce and not isinstance(enforce, str):
|
|
33
|
+
raise TypeError("Expected argument 'enforce' to be a str")
|
|
34
|
+
pulumi.set(__self__, "enforce", enforce)
|
|
35
|
+
if extensions and not isinstance(extensions, list):
|
|
36
|
+
raise TypeError("Expected argument 'extensions' to be a list")
|
|
37
|
+
pulumi.set(__self__, "extensions", extensions)
|
|
38
|
+
if free_trial_remaining_time and not isinstance(free_trial_remaining_time, str):
|
|
39
|
+
raise TypeError("Expected argument 'free_trial_remaining_time' to be a str")
|
|
40
|
+
pulumi.set(__self__, "free_trial_remaining_time", free_trial_remaining_time)
|
|
41
|
+
if id and not isinstance(id, str):
|
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
43
|
+
pulumi.set(__self__, "id", id)
|
|
44
|
+
if inherited and not isinstance(inherited, str):
|
|
45
|
+
raise TypeError("Expected argument 'inherited' to be a str")
|
|
46
|
+
pulumi.set(__self__, "inherited", inherited)
|
|
47
|
+
if inherited_from and not isinstance(inherited_from, str):
|
|
48
|
+
raise TypeError("Expected argument 'inherited_from' to be a str")
|
|
49
|
+
pulumi.set(__self__, "inherited_from", inherited_from)
|
|
50
|
+
if name and not isinstance(name, str):
|
|
51
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
52
|
+
pulumi.set(__self__, "name", name)
|
|
53
|
+
if pricing_tier and not isinstance(pricing_tier, str):
|
|
54
|
+
raise TypeError("Expected argument 'pricing_tier' to be a str")
|
|
55
|
+
pulumi.set(__self__, "pricing_tier", pricing_tier)
|
|
56
|
+
if replaced_by and not isinstance(replaced_by, list):
|
|
57
|
+
raise TypeError("Expected argument 'replaced_by' to be a list")
|
|
58
|
+
pulumi.set(__self__, "replaced_by", replaced_by)
|
|
59
|
+
if resources_coverage_status and not isinstance(resources_coverage_status, str):
|
|
60
|
+
raise TypeError("Expected argument 'resources_coverage_status' to be a str")
|
|
61
|
+
pulumi.set(__self__, "resources_coverage_status", resources_coverage_status)
|
|
62
|
+
if sub_plan and not isinstance(sub_plan, str):
|
|
63
|
+
raise TypeError("Expected argument 'sub_plan' to be a str")
|
|
64
|
+
pulumi.set(__self__, "sub_plan", sub_plan)
|
|
65
|
+
if type and not isinstance(type, str):
|
|
66
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
67
|
+
pulumi.set(__self__, "type", type)
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def deprecated(self) -> bool:
|
|
72
|
+
"""
|
|
73
|
+
Optional. True if the plan is deprecated. If there are replacing plans they will appear in `replacedBy` property
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "deprecated")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="enablementTime")
|
|
79
|
+
def enablement_time(self) -> str:
|
|
80
|
+
"""
|
|
81
|
+
Optional. If `pricingTier` is `Standard` then this property holds the date of the last time the `pricingTier` was set to `Standard`, when available (e.g 2023-03-01T12:42:42.1921106Z).
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "enablement_time")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def enforce(self) -> Optional[str]:
|
|
88
|
+
"""
|
|
89
|
+
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.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "enforce")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter
|
|
95
|
+
def extensions(self) -> Optional[Sequence['outputs.ExtensionResponse']]:
|
|
96
|
+
"""
|
|
97
|
+
Optional. List of extensions offered under a plan.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "extensions")
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
@pulumi.getter(name="freeTrialRemainingTime")
|
|
103
|
+
def free_trial_remaining_time(self) -> str:
|
|
104
|
+
"""
|
|
105
|
+
The duration left for the subscriptions free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S).
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "free_trial_remaining_time")
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter
|
|
111
|
+
def id(self) -> str:
|
|
112
|
+
"""
|
|
113
|
+
Resource Id
|
|
114
|
+
"""
|
|
115
|
+
return pulumi.get(self, "id")
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
@pulumi.getter
|
|
119
|
+
def inherited(self) -> str:
|
|
120
|
+
"""
|
|
121
|
+
"inherited" = "True" indicates that the current scope inherits its pricing configuration from its parent. The ID of the parent scope that provides the inherited configuration is displayed in the "inheritedFrom" field. On the other hand, "inherited" = "False" indicates that the current scope has its own pricing configuration explicitly set, and does not inherit from its parent. This field is read only and available only for resource-level pricing.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "inherited")
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter(name="inheritedFrom")
|
|
127
|
+
def inherited_from(self) -> str:
|
|
128
|
+
"""
|
|
129
|
+
The id of the scope inherited from. "Null" if not inherited. This field is only available for resource-level pricing.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "inherited_from")
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter
|
|
135
|
+
def name(self) -> str:
|
|
136
|
+
"""
|
|
137
|
+
Resource name
|
|
138
|
+
"""
|
|
139
|
+
return pulumi.get(self, "name")
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
@pulumi.getter(name="pricingTier")
|
|
143
|
+
def pricing_tier(self) -> str:
|
|
144
|
+
"""
|
|
145
|
+
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.
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "pricing_tier")
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
@pulumi.getter(name="replacedBy")
|
|
151
|
+
def replaced_by(self) -> Sequence[str]:
|
|
152
|
+
"""
|
|
153
|
+
Optional. List of plans that replace this plan. This property exists only if this plan is deprecated.
|
|
154
|
+
"""
|
|
155
|
+
return pulumi.get(self, "replaced_by")
|
|
156
|
+
|
|
157
|
+
@property
|
|
158
|
+
@pulumi.getter(name="resourcesCoverageStatus")
|
|
159
|
+
def resources_coverage_status(self) -> str:
|
|
160
|
+
"""
|
|
161
|
+
This field is available for subscription-level only, and reflects the coverage status of the resources under the subscription. Please note: The "pricingTier" field reflects the plan status of the subscription. However, since the plan status can also be defined at the resource level, there might be misalignment between the subscription's plan status and the resource status. This field helps indicate the coverage status of the resources.
|
|
162
|
+
"""
|
|
163
|
+
return pulumi.get(self, "resources_coverage_status")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter(name="subPlan")
|
|
167
|
+
def sub_plan(self) -> Optional[str]:
|
|
168
|
+
"""
|
|
169
|
+
The sub-plan selected for a Standard pricing configuration, when more than one sub-plan is available. Each sub-plan enables a set of security features. When not specified, full plan is applied. For VirtualMachines plan, available sub plans are 'P1' & 'P2', where for resource level only 'P1' sub plan is supported.
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "sub_plan")
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter
|
|
175
|
+
def type(self) -> str:
|
|
176
|
+
"""
|
|
177
|
+
Resource type
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "type")
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class AwaitableGetPricingResult(GetPricingResult):
|
|
183
|
+
# pylint: disable=using-constant-test
|
|
184
|
+
def __await__(self):
|
|
185
|
+
if False:
|
|
186
|
+
yield self
|
|
187
|
+
return GetPricingResult(
|
|
188
|
+
deprecated=self.deprecated,
|
|
189
|
+
enablement_time=self.enablement_time,
|
|
190
|
+
enforce=self.enforce,
|
|
191
|
+
extensions=self.extensions,
|
|
192
|
+
free_trial_remaining_time=self.free_trial_remaining_time,
|
|
193
|
+
id=self.id,
|
|
194
|
+
inherited=self.inherited,
|
|
195
|
+
inherited_from=self.inherited_from,
|
|
196
|
+
name=self.name,
|
|
197
|
+
pricing_tier=self.pricing_tier,
|
|
198
|
+
replaced_by=self.replaced_by,
|
|
199
|
+
resources_coverage_status=self.resources_coverage_status,
|
|
200
|
+
sub_plan=self.sub_plan,
|
|
201
|
+
type=self.type)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
def get_pricing(pricing_name: Optional[str] = None,
|
|
205
|
+
scope_id: Optional[str] = None,
|
|
206
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPricingResult:
|
|
207
|
+
"""
|
|
208
|
+
Get the Defender plans pricing configurations of the selected scope (valid scopes are resource id or a subscription id). At the resource level, supported resource types are 'VirtualMachines, VMSS and ARC Machines'.
|
|
209
|
+
Azure REST API version: 2024-01-01.
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
:param str pricing_name: name of the pricing configuration
|
|
213
|
+
:param str scope_id: The scope id of the pricing. Valid scopes are: subscription (format: 'subscriptions/{subscriptionId}'), or a specific resource (format: 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}) - Supported resources are (VirtualMachines)
|
|
214
|
+
"""
|
|
215
|
+
__args__ = dict()
|
|
216
|
+
__args__['pricingName'] = pricing_name
|
|
217
|
+
__args__['scopeId'] = scope_id
|
|
218
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
219
|
+
__ret__ = pulumi.runtime.invoke('azure-native:security:getPricing', __args__, opts=opts, typ=GetPricingResult).value
|
|
220
|
+
|
|
221
|
+
return AwaitableGetPricingResult(
|
|
222
|
+
deprecated=pulumi.get(__ret__, 'deprecated'),
|
|
223
|
+
enablement_time=pulumi.get(__ret__, 'enablement_time'),
|
|
224
|
+
enforce=pulumi.get(__ret__, 'enforce'),
|
|
225
|
+
extensions=pulumi.get(__ret__, 'extensions'),
|
|
226
|
+
free_trial_remaining_time=pulumi.get(__ret__, 'free_trial_remaining_time'),
|
|
227
|
+
id=pulumi.get(__ret__, 'id'),
|
|
228
|
+
inherited=pulumi.get(__ret__, 'inherited'),
|
|
229
|
+
inherited_from=pulumi.get(__ret__, 'inherited_from'),
|
|
230
|
+
name=pulumi.get(__ret__, 'name'),
|
|
231
|
+
pricing_tier=pulumi.get(__ret__, 'pricing_tier'),
|
|
232
|
+
replaced_by=pulumi.get(__ret__, 'replaced_by'),
|
|
233
|
+
resources_coverage_status=pulumi.get(__ret__, 'resources_coverage_status'),
|
|
234
|
+
sub_plan=pulumi.get(__ret__, 'sub_plan'),
|
|
235
|
+
type=pulumi.get(__ret__, 'type'))
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
@_utilities.lift_output_func(get_pricing)
|
|
239
|
+
def get_pricing_output(pricing_name: Optional[pulumi.Input[str]] = None,
|
|
240
|
+
scope_id: Optional[pulumi.Input[str]] = None,
|
|
241
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPricingResult]:
|
|
242
|
+
"""
|
|
243
|
+
Get the Defender plans pricing configurations of the selected scope (valid scopes are resource id or a subscription id). At the resource level, supported resource types are 'VirtualMachines, VMSS and ARC Machines'.
|
|
244
|
+
Azure REST API version: 2024-01-01.
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
:param str pricing_name: name of the pricing configuration
|
|
248
|
+
:param str scope_id: The scope id of the pricing. Valid scopes are: subscription (format: 'subscriptions/{subscriptionId}'), or a specific resource (format: 'subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}) - Supported resources are (VirtualMachines)
|
|
249
|
+
"""
|
|
250
|
+
...
|
|
@@ -96,6 +96,7 @@ __all__ = [
|
|
|
96
96
|
'DefenderForServersGcpOfferingResponseVmScanners',
|
|
97
97
|
'DenylistCustomAlertRuleResponse',
|
|
98
98
|
'DevOpsConfigurationPropertiesResponse',
|
|
99
|
+
'ExtensionResponse',
|
|
99
100
|
'GcpCredentialsDetailsPropertiesResponse',
|
|
100
101
|
'GcpOrganizationalDataMemberResponse',
|
|
101
102
|
'GcpOrganizationalDataOrganizationResponse',
|
|
@@ -123,6 +124,7 @@ __all__ = [
|
|
|
123
124
|
'JitNetworkAccessRequestVirtualMachineResponse',
|
|
124
125
|
'OnPremiseResourceDetailsResponse',
|
|
125
126
|
'OnPremiseSqlResourceDetailsResponse',
|
|
127
|
+
'OperationStatusResponse',
|
|
126
128
|
'PathRecommendationResponse',
|
|
127
129
|
'ProtectionModeResponse',
|
|
128
130
|
'ProxyServerPropertiesResponse',
|
|
@@ -5098,6 +5100,91 @@ class DevOpsConfigurationPropertiesResponse(dict):
|
|
|
5098
5100
|
return pulumi.get(self, "top_level_inventory_list")
|
|
5099
5101
|
|
|
5100
5102
|
|
|
5103
|
+
@pulumi.output_type
|
|
5104
|
+
class ExtensionResponse(dict):
|
|
5105
|
+
"""
|
|
5106
|
+
A plan's extension properties
|
|
5107
|
+
"""
|
|
5108
|
+
@staticmethod
|
|
5109
|
+
def __key_warning(key: str):
|
|
5110
|
+
suggest = None
|
|
5111
|
+
if key == "isEnabled":
|
|
5112
|
+
suggest = "is_enabled"
|
|
5113
|
+
elif key == "operationStatus":
|
|
5114
|
+
suggest = "operation_status"
|
|
5115
|
+
elif key == "additionalExtensionProperties":
|
|
5116
|
+
suggest = "additional_extension_properties"
|
|
5117
|
+
|
|
5118
|
+
if suggest:
|
|
5119
|
+
pulumi.log.warn(f"Key '{key}' not found in ExtensionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
5120
|
+
|
|
5121
|
+
def __getitem__(self, key: str) -> Any:
|
|
5122
|
+
ExtensionResponse.__key_warning(key)
|
|
5123
|
+
return super().__getitem__(key)
|
|
5124
|
+
|
|
5125
|
+
def get(self, key: str, default = None) -> Any:
|
|
5126
|
+
ExtensionResponse.__key_warning(key)
|
|
5127
|
+
return super().get(key, default)
|
|
5128
|
+
|
|
5129
|
+
def __init__(__self__, *,
|
|
5130
|
+
is_enabled: str,
|
|
5131
|
+
name: str,
|
|
5132
|
+
operation_status: 'outputs.OperationStatusResponse',
|
|
5133
|
+
additional_extension_properties: Optional[Any] = None):
|
|
5134
|
+
"""
|
|
5135
|
+
A plan's extension properties
|
|
5136
|
+
:param str is_enabled: Indicates whether the extension is enabled.
|
|
5137
|
+
:param 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.
|
|
5138
|
+
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.
|
|
5139
|
+
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.
|
|
5140
|
+
Available for StorageAccounts and CloudPosture plans.<br><br>**ContainerRegistriesVulnerabilityAssessments** - Provides vulnerability management for images stored in your container registries.
|
|
5141
|
+
Available for CloudPosture and Containers plans.
|
|
5142
|
+
:param 'OperationStatusResponse' operation_status: Optional. A status describing the success/failure of the extension's enablement/disablement operation.
|
|
5143
|
+
:param Any additional_extension_properties: Property values associated with the extension.
|
|
5144
|
+
"""
|
|
5145
|
+
pulumi.set(__self__, "is_enabled", is_enabled)
|
|
5146
|
+
pulumi.set(__self__, "name", name)
|
|
5147
|
+
pulumi.set(__self__, "operation_status", operation_status)
|
|
5148
|
+
if additional_extension_properties is not None:
|
|
5149
|
+
pulumi.set(__self__, "additional_extension_properties", additional_extension_properties)
|
|
5150
|
+
|
|
5151
|
+
@property
|
|
5152
|
+
@pulumi.getter(name="isEnabled")
|
|
5153
|
+
def is_enabled(self) -> str:
|
|
5154
|
+
"""
|
|
5155
|
+
Indicates whether the extension is enabled.
|
|
5156
|
+
"""
|
|
5157
|
+
return pulumi.get(self, "is_enabled")
|
|
5158
|
+
|
|
5159
|
+
@property
|
|
5160
|
+
@pulumi.getter
|
|
5161
|
+
def name(self) -> str:
|
|
5162
|
+
"""
|
|
5163
|
+
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.
|
|
5164
|
+
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.
|
|
5165
|
+
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.
|
|
5166
|
+
Available for StorageAccounts and CloudPosture plans.<br><br>**ContainerRegistriesVulnerabilityAssessments** - Provides vulnerability management for images stored in your container registries.
|
|
5167
|
+
Available for CloudPosture and Containers plans.
|
|
5168
|
+
"""
|
|
5169
|
+
return pulumi.get(self, "name")
|
|
5170
|
+
|
|
5171
|
+
@property
|
|
5172
|
+
@pulumi.getter(name="operationStatus")
|
|
5173
|
+
def operation_status(self) -> 'outputs.OperationStatusResponse':
|
|
5174
|
+
"""
|
|
5175
|
+
Optional. A status describing the success/failure of the extension's enablement/disablement operation.
|
|
5176
|
+
"""
|
|
5177
|
+
return pulumi.get(self, "operation_status")
|
|
5178
|
+
|
|
5179
|
+
@property
|
|
5180
|
+
@pulumi.getter(name="additionalExtensionProperties")
|
|
5181
|
+
def additional_extension_properties(self) -> Optional[Any]:
|
|
5182
|
+
"""
|
|
5183
|
+
Property values associated with the extension.
|
|
5184
|
+
"""
|
|
5185
|
+
return pulumi.get(self, "additional_extension_properties")
|
|
5186
|
+
|
|
5187
|
+
|
|
5101
5188
|
@pulumi.output_type
|
|
5102
5189
|
class GcpCredentialsDetailsPropertiesResponse(dict):
|
|
5103
5190
|
"""
|
|
@@ -7173,6 +7260,41 @@ class OnPremiseSqlResourceDetailsResponse(dict):
|
|
|
7173
7260
|
return pulumi.get(self, "workspace_id")
|
|
7174
7261
|
|
|
7175
7262
|
|
|
7263
|
+
@pulumi.output_type
|
|
7264
|
+
class OperationStatusResponse(dict):
|
|
7265
|
+
"""
|
|
7266
|
+
A status describing the success/failure of the extension's enablement/disablement operation.
|
|
7267
|
+
"""
|
|
7268
|
+
def __init__(__self__, *,
|
|
7269
|
+
code: Optional[str] = None,
|
|
7270
|
+
message: Optional[str] = None):
|
|
7271
|
+
"""
|
|
7272
|
+
A status describing the success/failure of the extension's enablement/disablement operation.
|
|
7273
|
+
:param str code: The operation status code.
|
|
7274
|
+
:param str message: Additional information regarding the success/failure of the operation.
|
|
7275
|
+
"""
|
|
7276
|
+
if code is not None:
|
|
7277
|
+
pulumi.set(__self__, "code", code)
|
|
7278
|
+
if message is not None:
|
|
7279
|
+
pulumi.set(__self__, "message", message)
|
|
7280
|
+
|
|
7281
|
+
@property
|
|
7282
|
+
@pulumi.getter
|
|
7283
|
+
def code(self) -> Optional[str]:
|
|
7284
|
+
"""
|
|
7285
|
+
The operation status code.
|
|
7286
|
+
"""
|
|
7287
|
+
return pulumi.get(self, "code")
|
|
7288
|
+
|
|
7289
|
+
@property
|
|
7290
|
+
@pulumi.getter
|
|
7291
|
+
def message(self) -> Optional[str]:
|
|
7292
|
+
"""
|
|
7293
|
+
Additional information regarding the success/failure of the operation.
|
|
7294
|
+
"""
|
|
7295
|
+
return pulumi.get(self, "message")
|
|
7296
|
+
|
|
7297
|
+
|
|
7176
7298
|
@pulumi.output_type
|
|
7177
7299
|
class PathRecommendationResponse(dict):
|
|
7178
7300
|
"""
|