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,343 @@
|
|
|
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
|
+
from ._inputs import *
|
|
14
|
+
|
|
15
|
+
__all__ = ['PricingArgs', 'Pricing']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class PricingArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
pricing_tier: pulumi.Input[Union[str, 'PricingTier']],
|
|
21
|
+
scope_id: pulumi.Input[str],
|
|
22
|
+
enforce: Optional[pulumi.Input[Union[str, 'Enforce']]] = None,
|
|
23
|
+
extensions: Optional[pulumi.Input[Sequence[pulumi.Input['ExtensionArgs']]]] = None,
|
|
24
|
+
pricing_name: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
sub_plan: Optional[pulumi.Input[str]] = None):
|
|
26
|
+
"""
|
|
27
|
+
The set of arguments for constructing a Pricing resource.
|
|
28
|
+
:param pulumi.Input[Union[str, 'PricingTier']] pricing_tier: 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.
|
|
29
|
+
:param pulumi.Input[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)
|
|
30
|
+
:param pulumi.Input[Union[str, 'Enforce']] enforce: 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.
|
|
31
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExtensionArgs']]] extensions: Optional. List of extensions offered under a plan.
|
|
32
|
+
:param pulumi.Input[str] pricing_name: name of the pricing configuration
|
|
33
|
+
:param pulumi.Input[str] sub_plan: 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.
|
|
34
|
+
"""
|
|
35
|
+
pulumi.set(__self__, "pricing_tier", pricing_tier)
|
|
36
|
+
pulumi.set(__self__, "scope_id", scope_id)
|
|
37
|
+
if enforce is not None:
|
|
38
|
+
pulumi.set(__self__, "enforce", enforce)
|
|
39
|
+
if extensions is not None:
|
|
40
|
+
pulumi.set(__self__, "extensions", extensions)
|
|
41
|
+
if pricing_name is not None:
|
|
42
|
+
pulumi.set(__self__, "pricing_name", pricing_name)
|
|
43
|
+
if sub_plan is not None:
|
|
44
|
+
pulumi.set(__self__, "sub_plan", sub_plan)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="pricingTier")
|
|
48
|
+
def pricing_tier(self) -> pulumi.Input[Union[str, 'PricingTier']]:
|
|
49
|
+
"""
|
|
50
|
+
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.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "pricing_tier")
|
|
53
|
+
|
|
54
|
+
@pricing_tier.setter
|
|
55
|
+
def pricing_tier(self, value: pulumi.Input[Union[str, 'PricingTier']]):
|
|
56
|
+
pulumi.set(self, "pricing_tier", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="scopeId")
|
|
60
|
+
def scope_id(self) -> pulumi.Input[str]:
|
|
61
|
+
"""
|
|
62
|
+
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)
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "scope_id")
|
|
65
|
+
|
|
66
|
+
@scope_id.setter
|
|
67
|
+
def scope_id(self, value: pulumi.Input[str]):
|
|
68
|
+
pulumi.set(self, "scope_id", value)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def enforce(self) -> Optional[pulumi.Input[Union[str, 'Enforce']]]:
|
|
73
|
+
"""
|
|
74
|
+
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.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "enforce")
|
|
77
|
+
|
|
78
|
+
@enforce.setter
|
|
79
|
+
def enforce(self, value: Optional[pulumi.Input[Union[str, 'Enforce']]]):
|
|
80
|
+
pulumi.set(self, "enforce", value)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter
|
|
84
|
+
def extensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExtensionArgs']]]]:
|
|
85
|
+
"""
|
|
86
|
+
Optional. List of extensions offered under a plan.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "extensions")
|
|
89
|
+
|
|
90
|
+
@extensions.setter
|
|
91
|
+
def extensions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExtensionArgs']]]]):
|
|
92
|
+
pulumi.set(self, "extensions", value)
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="pricingName")
|
|
96
|
+
def pricing_name(self) -> Optional[pulumi.Input[str]]:
|
|
97
|
+
"""
|
|
98
|
+
name of the pricing configuration
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "pricing_name")
|
|
101
|
+
|
|
102
|
+
@pricing_name.setter
|
|
103
|
+
def pricing_name(self, value: Optional[pulumi.Input[str]]):
|
|
104
|
+
pulumi.set(self, "pricing_name", value)
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="subPlan")
|
|
108
|
+
def sub_plan(self) -> Optional[pulumi.Input[str]]:
|
|
109
|
+
"""
|
|
110
|
+
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.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "sub_plan")
|
|
113
|
+
|
|
114
|
+
@sub_plan.setter
|
|
115
|
+
def sub_plan(self, value: Optional[pulumi.Input[str]]):
|
|
116
|
+
pulumi.set(self, "sub_plan", value)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
class Pricing(pulumi.CustomResource):
|
|
120
|
+
@overload
|
|
121
|
+
def __init__(__self__,
|
|
122
|
+
resource_name: str,
|
|
123
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
124
|
+
enforce: Optional[pulumi.Input[Union[str, 'Enforce']]] = None,
|
|
125
|
+
extensions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExtensionArgs']]]]] = None,
|
|
126
|
+
pricing_name: Optional[pulumi.Input[str]] = None,
|
|
127
|
+
pricing_tier: Optional[pulumi.Input[Union[str, 'PricingTier']]] = None,
|
|
128
|
+
scope_id: Optional[pulumi.Input[str]] = None,
|
|
129
|
+
sub_plan: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
__props__=None):
|
|
131
|
+
"""
|
|
132
|
+
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.
|
|
133
|
+
|
|
134
|
+
:param str resource_name: The name of the resource.
|
|
135
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
136
|
+
:param pulumi.Input[Union[str, 'Enforce']] enforce: 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.
|
|
137
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExtensionArgs']]]] extensions: Optional. List of extensions offered under a plan.
|
|
138
|
+
:param pulumi.Input[str] pricing_name: name of the pricing configuration
|
|
139
|
+
:param pulumi.Input[Union[str, 'PricingTier']] pricing_tier: 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.
|
|
140
|
+
:param pulumi.Input[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)
|
|
141
|
+
:param pulumi.Input[str] sub_plan: 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.
|
|
142
|
+
"""
|
|
143
|
+
...
|
|
144
|
+
@overload
|
|
145
|
+
def __init__(__self__,
|
|
146
|
+
resource_name: str,
|
|
147
|
+
args: PricingArgs,
|
|
148
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
149
|
+
"""
|
|
150
|
+
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.
|
|
151
|
+
|
|
152
|
+
:param str resource_name: The name of the resource.
|
|
153
|
+
:param PricingArgs args: The arguments to use to populate this resource's properties.
|
|
154
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
155
|
+
"""
|
|
156
|
+
...
|
|
157
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
158
|
+
resource_args, opts = _utilities.get_resource_args_opts(PricingArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
159
|
+
if resource_args is not None:
|
|
160
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
161
|
+
else:
|
|
162
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
163
|
+
|
|
164
|
+
def _internal_init(__self__,
|
|
165
|
+
resource_name: str,
|
|
166
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
167
|
+
enforce: Optional[pulumi.Input[Union[str, 'Enforce']]] = None,
|
|
168
|
+
extensions: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ExtensionArgs']]]]] = None,
|
|
169
|
+
pricing_name: Optional[pulumi.Input[str]] = None,
|
|
170
|
+
pricing_tier: Optional[pulumi.Input[Union[str, 'PricingTier']]] = None,
|
|
171
|
+
scope_id: Optional[pulumi.Input[str]] = None,
|
|
172
|
+
sub_plan: Optional[pulumi.Input[str]] = None,
|
|
173
|
+
__props__=None):
|
|
174
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
175
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
176
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
177
|
+
if opts.id is None:
|
|
178
|
+
if __props__ is not None:
|
|
179
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
180
|
+
__props__ = PricingArgs.__new__(PricingArgs)
|
|
181
|
+
|
|
182
|
+
__props__.__dict__["enforce"] = enforce
|
|
183
|
+
__props__.__dict__["extensions"] = extensions
|
|
184
|
+
__props__.__dict__["pricing_name"] = pricing_name
|
|
185
|
+
if pricing_tier is None and not opts.urn:
|
|
186
|
+
raise TypeError("Missing required property 'pricing_tier'")
|
|
187
|
+
__props__.__dict__["pricing_tier"] = pricing_tier
|
|
188
|
+
if scope_id is None and not opts.urn:
|
|
189
|
+
raise TypeError("Missing required property 'scope_id'")
|
|
190
|
+
__props__.__dict__["scope_id"] = scope_id
|
|
191
|
+
__props__.__dict__["sub_plan"] = sub_plan
|
|
192
|
+
__props__.__dict__["deprecated"] = None
|
|
193
|
+
__props__.__dict__["enablement_time"] = None
|
|
194
|
+
__props__.__dict__["free_trial_remaining_time"] = None
|
|
195
|
+
__props__.__dict__["inherited"] = None
|
|
196
|
+
__props__.__dict__["inherited_from"] = None
|
|
197
|
+
__props__.__dict__["name"] = None
|
|
198
|
+
__props__.__dict__["replaced_by"] = None
|
|
199
|
+
__props__.__dict__["resources_coverage_status"] = None
|
|
200
|
+
__props__.__dict__["type"] = None
|
|
201
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:security:Pricing")])
|
|
202
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
203
|
+
super(Pricing, __self__).__init__(
|
|
204
|
+
'azure-native:security/v20240101:Pricing',
|
|
205
|
+
resource_name,
|
|
206
|
+
__props__,
|
|
207
|
+
opts)
|
|
208
|
+
|
|
209
|
+
@staticmethod
|
|
210
|
+
def get(resource_name: str,
|
|
211
|
+
id: pulumi.Input[str],
|
|
212
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Pricing':
|
|
213
|
+
"""
|
|
214
|
+
Get an existing Pricing resource's state with the given name, id, and optional extra
|
|
215
|
+
properties used to qualify the lookup.
|
|
216
|
+
|
|
217
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
218
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
219
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
220
|
+
"""
|
|
221
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
222
|
+
|
|
223
|
+
__props__ = PricingArgs.__new__(PricingArgs)
|
|
224
|
+
|
|
225
|
+
__props__.__dict__["deprecated"] = None
|
|
226
|
+
__props__.__dict__["enablement_time"] = None
|
|
227
|
+
__props__.__dict__["enforce"] = None
|
|
228
|
+
__props__.__dict__["extensions"] = None
|
|
229
|
+
__props__.__dict__["free_trial_remaining_time"] = None
|
|
230
|
+
__props__.__dict__["inherited"] = None
|
|
231
|
+
__props__.__dict__["inherited_from"] = None
|
|
232
|
+
__props__.__dict__["name"] = None
|
|
233
|
+
__props__.__dict__["pricing_tier"] = None
|
|
234
|
+
__props__.__dict__["replaced_by"] = None
|
|
235
|
+
__props__.__dict__["resources_coverage_status"] = None
|
|
236
|
+
__props__.__dict__["sub_plan"] = None
|
|
237
|
+
__props__.__dict__["type"] = None
|
|
238
|
+
return Pricing(resource_name, opts=opts, __props__=__props__)
|
|
239
|
+
|
|
240
|
+
@property
|
|
241
|
+
@pulumi.getter
|
|
242
|
+
def deprecated(self) -> pulumi.Output[bool]:
|
|
243
|
+
"""
|
|
244
|
+
Optional. True if the plan is deprecated. If there are replacing plans they will appear in `replacedBy` property
|
|
245
|
+
"""
|
|
246
|
+
return pulumi.get(self, "deprecated")
|
|
247
|
+
|
|
248
|
+
@property
|
|
249
|
+
@pulumi.getter(name="enablementTime")
|
|
250
|
+
def enablement_time(self) -> pulumi.Output[str]:
|
|
251
|
+
"""
|
|
252
|
+
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).
|
|
253
|
+
"""
|
|
254
|
+
return pulumi.get(self, "enablement_time")
|
|
255
|
+
|
|
256
|
+
@property
|
|
257
|
+
@pulumi.getter
|
|
258
|
+
def enforce(self) -> pulumi.Output[Optional[str]]:
|
|
259
|
+
"""
|
|
260
|
+
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.
|
|
261
|
+
"""
|
|
262
|
+
return pulumi.get(self, "enforce")
|
|
263
|
+
|
|
264
|
+
@property
|
|
265
|
+
@pulumi.getter
|
|
266
|
+
def extensions(self) -> pulumi.Output[Optional[Sequence['outputs.ExtensionResponse']]]:
|
|
267
|
+
"""
|
|
268
|
+
Optional. List of extensions offered under a plan.
|
|
269
|
+
"""
|
|
270
|
+
return pulumi.get(self, "extensions")
|
|
271
|
+
|
|
272
|
+
@property
|
|
273
|
+
@pulumi.getter(name="freeTrialRemainingTime")
|
|
274
|
+
def free_trial_remaining_time(self) -> pulumi.Output[str]:
|
|
275
|
+
"""
|
|
276
|
+
The duration left for the subscriptions free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S).
|
|
277
|
+
"""
|
|
278
|
+
return pulumi.get(self, "free_trial_remaining_time")
|
|
279
|
+
|
|
280
|
+
@property
|
|
281
|
+
@pulumi.getter
|
|
282
|
+
def inherited(self) -> pulumi.Output[str]:
|
|
283
|
+
"""
|
|
284
|
+
"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.
|
|
285
|
+
"""
|
|
286
|
+
return pulumi.get(self, "inherited")
|
|
287
|
+
|
|
288
|
+
@property
|
|
289
|
+
@pulumi.getter(name="inheritedFrom")
|
|
290
|
+
def inherited_from(self) -> pulumi.Output[str]:
|
|
291
|
+
"""
|
|
292
|
+
The id of the scope inherited from. "Null" if not inherited. This field is only available for resource-level pricing.
|
|
293
|
+
"""
|
|
294
|
+
return pulumi.get(self, "inherited_from")
|
|
295
|
+
|
|
296
|
+
@property
|
|
297
|
+
@pulumi.getter
|
|
298
|
+
def name(self) -> pulumi.Output[str]:
|
|
299
|
+
"""
|
|
300
|
+
Resource name
|
|
301
|
+
"""
|
|
302
|
+
return pulumi.get(self, "name")
|
|
303
|
+
|
|
304
|
+
@property
|
|
305
|
+
@pulumi.getter(name="pricingTier")
|
|
306
|
+
def pricing_tier(self) -> pulumi.Output[str]:
|
|
307
|
+
"""
|
|
308
|
+
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.
|
|
309
|
+
"""
|
|
310
|
+
return pulumi.get(self, "pricing_tier")
|
|
311
|
+
|
|
312
|
+
@property
|
|
313
|
+
@pulumi.getter(name="replacedBy")
|
|
314
|
+
def replaced_by(self) -> pulumi.Output[Sequence[str]]:
|
|
315
|
+
"""
|
|
316
|
+
Optional. List of plans that replace this plan. This property exists only if this plan is deprecated.
|
|
317
|
+
"""
|
|
318
|
+
return pulumi.get(self, "replaced_by")
|
|
319
|
+
|
|
320
|
+
@property
|
|
321
|
+
@pulumi.getter(name="resourcesCoverageStatus")
|
|
322
|
+
def resources_coverage_status(self) -> pulumi.Output[str]:
|
|
323
|
+
"""
|
|
324
|
+
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.
|
|
325
|
+
"""
|
|
326
|
+
return pulumi.get(self, "resources_coverage_status")
|
|
327
|
+
|
|
328
|
+
@property
|
|
329
|
+
@pulumi.getter(name="subPlan")
|
|
330
|
+
def sub_plan(self) -> pulumi.Output[Optional[str]]:
|
|
331
|
+
"""
|
|
332
|
+
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.
|
|
333
|
+
"""
|
|
334
|
+
return pulumi.get(self, "sub_plan")
|
|
335
|
+
|
|
336
|
+
@property
|
|
337
|
+
@pulumi.getter
|
|
338
|
+
def type(self) -> pulumi.Output[str]:
|
|
339
|
+
"""
|
|
340
|
+
Resource type
|
|
341
|
+
"""
|
|
342
|
+
return pulumi.get(self, "type")
|
|
343
|
+
|
|
@@ -21,10 +21,16 @@ class GetLongTermRetentionPolicyResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A long term retention policy.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, id=None, monthly_retention=None, name=None, type=None, week_of_year=None, weekly_retention=None, yearly_retention=None):
|
|
24
|
+
def __init__(__self__, backup_storage_access_tier=None, id=None, make_backups_immutable=None, monthly_retention=None, name=None, type=None, week_of_year=None, weekly_retention=None, yearly_retention=None):
|
|
25
|
+
if backup_storage_access_tier and not isinstance(backup_storage_access_tier, str):
|
|
26
|
+
raise TypeError("Expected argument 'backup_storage_access_tier' to be a str")
|
|
27
|
+
pulumi.set(__self__, "backup_storage_access_tier", backup_storage_access_tier)
|
|
25
28
|
if id and not isinstance(id, str):
|
|
26
29
|
raise TypeError("Expected argument 'id' to be a str")
|
|
27
30
|
pulumi.set(__self__, "id", id)
|
|
31
|
+
if make_backups_immutable and not isinstance(make_backups_immutable, bool):
|
|
32
|
+
raise TypeError("Expected argument 'make_backups_immutable' to be a bool")
|
|
33
|
+
pulumi.set(__self__, "make_backups_immutable", make_backups_immutable)
|
|
28
34
|
if monthly_retention and not isinstance(monthly_retention, str):
|
|
29
35
|
raise TypeError("Expected argument 'monthly_retention' to be a str")
|
|
30
36
|
pulumi.set(__self__, "monthly_retention", monthly_retention)
|
|
@@ -44,6 +50,14 @@ class GetLongTermRetentionPolicyResult:
|
|
|
44
50
|
raise TypeError("Expected argument 'yearly_retention' to be a str")
|
|
45
51
|
pulumi.set(__self__, "yearly_retention", yearly_retention)
|
|
46
52
|
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter(name="backupStorageAccessTier")
|
|
55
|
+
def backup_storage_access_tier(self) -> Optional[str]:
|
|
56
|
+
"""
|
|
57
|
+
The BackupStorageAccessTier for the LTR backups
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "backup_storage_access_tier")
|
|
60
|
+
|
|
47
61
|
@property
|
|
48
62
|
@pulumi.getter
|
|
49
63
|
def id(self) -> str:
|
|
@@ -52,6 +66,14 @@ class GetLongTermRetentionPolicyResult:
|
|
|
52
66
|
"""
|
|
53
67
|
return pulumi.get(self, "id")
|
|
54
68
|
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter(name="makeBackupsImmutable")
|
|
71
|
+
def make_backups_immutable(self) -> Optional[bool]:
|
|
72
|
+
"""
|
|
73
|
+
The setting whether to make LTR backups immutable
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "make_backups_immutable")
|
|
76
|
+
|
|
55
77
|
@property
|
|
56
78
|
@pulumi.getter(name="monthlyRetention")
|
|
57
79
|
def monthly_retention(self) -> Optional[str]:
|
|
@@ -107,7 +129,9 @@ class AwaitableGetLongTermRetentionPolicyResult(GetLongTermRetentionPolicyResult
|
|
|
107
129
|
if False:
|
|
108
130
|
yield self
|
|
109
131
|
return GetLongTermRetentionPolicyResult(
|
|
132
|
+
backup_storage_access_tier=self.backup_storage_access_tier,
|
|
110
133
|
id=self.id,
|
|
134
|
+
make_backups_immutable=self.make_backups_immutable,
|
|
111
135
|
monthly_retention=self.monthly_retention,
|
|
112
136
|
name=self.name,
|
|
113
137
|
type=self.type,
|
|
@@ -139,7 +163,9 @@ def get_long_term_retention_policy(database_name: Optional[str] = None,
|
|
|
139
163
|
__ret__ = pulumi.runtime.invoke('azure-native:sql/v20230501preview:getLongTermRetentionPolicy', __args__, opts=opts, typ=GetLongTermRetentionPolicyResult).value
|
|
140
164
|
|
|
141
165
|
return AwaitableGetLongTermRetentionPolicyResult(
|
|
166
|
+
backup_storage_access_tier=pulumi.get(__ret__, 'backup_storage_access_tier'),
|
|
142
167
|
id=pulumi.get(__ret__, 'id'),
|
|
168
|
+
make_backups_immutable=pulumi.get(__ret__, 'make_backups_immutable'),
|
|
143
169
|
monthly_retention=pulumi.get(__ret__, 'monthly_retention'),
|
|
144
170
|
name=pulumi.get(__ret__, 'name'),
|
|
145
171
|
type=pulumi.get(__ret__, 'type'),
|
|
@@ -8,6 +8,7 @@ import pulumi
|
|
|
8
8
|
import pulumi.runtime
|
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from ... import _utilities
|
|
11
|
+
from ._enums import *
|
|
11
12
|
|
|
12
13
|
__all__ = ['LongTermRetentionPolicyArgs', 'LongTermRetentionPolicy']
|
|
13
14
|
|
|
@@ -17,6 +18,8 @@ class LongTermRetentionPolicyArgs:
|
|
|
17
18
|
database_name: pulumi.Input[str],
|
|
18
19
|
resource_group_name: pulumi.Input[str],
|
|
19
20
|
server_name: pulumi.Input[str],
|
|
21
|
+
backup_storage_access_tier: Optional[pulumi.Input[Union[str, 'BackupStorageAccessTier']]] = None,
|
|
22
|
+
make_backups_immutable: Optional[pulumi.Input[bool]] = None,
|
|
20
23
|
monthly_retention: Optional[pulumi.Input[str]] = None,
|
|
21
24
|
policy_name: Optional[pulumi.Input[str]] = None,
|
|
22
25
|
week_of_year: Optional[pulumi.Input[int]] = None,
|
|
@@ -27,6 +30,8 @@ class LongTermRetentionPolicyArgs:
|
|
|
27
30
|
:param pulumi.Input[str] database_name: The name of the database.
|
|
28
31
|
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
|
|
29
32
|
:param pulumi.Input[str] server_name: The name of the server.
|
|
33
|
+
:param pulumi.Input[Union[str, 'BackupStorageAccessTier']] backup_storage_access_tier: The BackupStorageAccessTier for the LTR backups
|
|
34
|
+
:param pulumi.Input[bool] make_backups_immutable: The setting whether to make LTR backups immutable
|
|
30
35
|
:param pulumi.Input[str] monthly_retention: The monthly retention policy for an LTR backup in an ISO 8601 format.
|
|
31
36
|
:param pulumi.Input[str] policy_name: The policy name. Should always be Default.
|
|
32
37
|
:param pulumi.Input[int] week_of_year: The week of year to take the yearly backup in an ISO 8601 format.
|
|
@@ -36,6 +41,10 @@ class LongTermRetentionPolicyArgs:
|
|
|
36
41
|
pulumi.set(__self__, "database_name", database_name)
|
|
37
42
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
38
43
|
pulumi.set(__self__, "server_name", server_name)
|
|
44
|
+
if backup_storage_access_tier is not None:
|
|
45
|
+
pulumi.set(__self__, "backup_storage_access_tier", backup_storage_access_tier)
|
|
46
|
+
if make_backups_immutable is not None:
|
|
47
|
+
pulumi.set(__self__, "make_backups_immutable", make_backups_immutable)
|
|
39
48
|
if monthly_retention is not None:
|
|
40
49
|
pulumi.set(__self__, "monthly_retention", monthly_retention)
|
|
41
50
|
if policy_name is not None:
|
|
@@ -83,6 +92,30 @@ class LongTermRetentionPolicyArgs:
|
|
|
83
92
|
def server_name(self, value: pulumi.Input[str]):
|
|
84
93
|
pulumi.set(self, "server_name", value)
|
|
85
94
|
|
|
95
|
+
@property
|
|
96
|
+
@pulumi.getter(name="backupStorageAccessTier")
|
|
97
|
+
def backup_storage_access_tier(self) -> Optional[pulumi.Input[Union[str, 'BackupStorageAccessTier']]]:
|
|
98
|
+
"""
|
|
99
|
+
The BackupStorageAccessTier for the LTR backups
|
|
100
|
+
"""
|
|
101
|
+
return pulumi.get(self, "backup_storage_access_tier")
|
|
102
|
+
|
|
103
|
+
@backup_storage_access_tier.setter
|
|
104
|
+
def backup_storage_access_tier(self, value: Optional[pulumi.Input[Union[str, 'BackupStorageAccessTier']]]):
|
|
105
|
+
pulumi.set(self, "backup_storage_access_tier", value)
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter(name="makeBackupsImmutable")
|
|
109
|
+
def make_backups_immutable(self) -> Optional[pulumi.Input[bool]]:
|
|
110
|
+
"""
|
|
111
|
+
The setting whether to make LTR backups immutable
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "make_backups_immutable")
|
|
114
|
+
|
|
115
|
+
@make_backups_immutable.setter
|
|
116
|
+
def make_backups_immutable(self, value: Optional[pulumi.Input[bool]]):
|
|
117
|
+
pulumi.set(self, "make_backups_immutable", value)
|
|
118
|
+
|
|
86
119
|
@property
|
|
87
120
|
@pulumi.getter(name="monthlyRetention")
|
|
88
121
|
def monthly_retention(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -149,7 +182,9 @@ class LongTermRetentionPolicy(pulumi.CustomResource):
|
|
|
149
182
|
def __init__(__self__,
|
|
150
183
|
resource_name: str,
|
|
151
184
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
185
|
+
backup_storage_access_tier: Optional[pulumi.Input[Union[str, 'BackupStorageAccessTier']]] = None,
|
|
152
186
|
database_name: Optional[pulumi.Input[str]] = None,
|
|
187
|
+
make_backups_immutable: Optional[pulumi.Input[bool]] = None,
|
|
153
188
|
monthly_retention: Optional[pulumi.Input[str]] = None,
|
|
154
189
|
policy_name: Optional[pulumi.Input[str]] = None,
|
|
155
190
|
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -163,7 +198,9 @@ class LongTermRetentionPolicy(pulumi.CustomResource):
|
|
|
163
198
|
|
|
164
199
|
:param str resource_name: The name of the resource.
|
|
165
200
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
201
|
+
:param pulumi.Input[Union[str, 'BackupStorageAccessTier']] backup_storage_access_tier: The BackupStorageAccessTier for the LTR backups
|
|
166
202
|
:param pulumi.Input[str] database_name: The name of the database.
|
|
203
|
+
:param pulumi.Input[bool] make_backups_immutable: The setting whether to make LTR backups immutable
|
|
167
204
|
:param pulumi.Input[str] monthly_retention: The monthly retention policy for an LTR backup in an ISO 8601 format.
|
|
168
205
|
:param pulumi.Input[str] policy_name: The policy name. Should always be Default.
|
|
169
206
|
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
|
|
@@ -196,7 +233,9 @@ class LongTermRetentionPolicy(pulumi.CustomResource):
|
|
|
196
233
|
def _internal_init(__self__,
|
|
197
234
|
resource_name: str,
|
|
198
235
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
236
|
+
backup_storage_access_tier: Optional[pulumi.Input[Union[str, 'BackupStorageAccessTier']]] = None,
|
|
199
237
|
database_name: Optional[pulumi.Input[str]] = None,
|
|
238
|
+
make_backups_immutable: Optional[pulumi.Input[bool]] = None,
|
|
200
239
|
monthly_retention: Optional[pulumi.Input[str]] = None,
|
|
201
240
|
policy_name: Optional[pulumi.Input[str]] = None,
|
|
202
241
|
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -213,9 +252,11 @@ class LongTermRetentionPolicy(pulumi.CustomResource):
|
|
|
213
252
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
214
253
|
__props__ = LongTermRetentionPolicyArgs.__new__(LongTermRetentionPolicyArgs)
|
|
215
254
|
|
|
255
|
+
__props__.__dict__["backup_storage_access_tier"] = backup_storage_access_tier
|
|
216
256
|
if database_name is None and not opts.urn:
|
|
217
257
|
raise TypeError("Missing required property 'database_name'")
|
|
218
258
|
__props__.__dict__["database_name"] = database_name
|
|
259
|
+
__props__.__dict__["make_backups_immutable"] = make_backups_immutable
|
|
219
260
|
__props__.__dict__["monthly_retention"] = monthly_retention
|
|
220
261
|
__props__.__dict__["policy_name"] = policy_name
|
|
221
262
|
if resource_group_name is None and not opts.urn:
|
|
@@ -253,6 +294,8 @@ class LongTermRetentionPolicy(pulumi.CustomResource):
|
|
|
253
294
|
|
|
254
295
|
__props__ = LongTermRetentionPolicyArgs.__new__(LongTermRetentionPolicyArgs)
|
|
255
296
|
|
|
297
|
+
__props__.__dict__["backup_storage_access_tier"] = None
|
|
298
|
+
__props__.__dict__["make_backups_immutable"] = None
|
|
256
299
|
__props__.__dict__["monthly_retention"] = None
|
|
257
300
|
__props__.__dict__["name"] = None
|
|
258
301
|
__props__.__dict__["type"] = None
|
|
@@ -261,6 +304,22 @@ class LongTermRetentionPolicy(pulumi.CustomResource):
|
|
|
261
304
|
__props__.__dict__["yearly_retention"] = None
|
|
262
305
|
return LongTermRetentionPolicy(resource_name, opts=opts, __props__=__props__)
|
|
263
306
|
|
|
307
|
+
@property
|
|
308
|
+
@pulumi.getter(name="backupStorageAccessTier")
|
|
309
|
+
def backup_storage_access_tier(self) -> pulumi.Output[Optional[str]]:
|
|
310
|
+
"""
|
|
311
|
+
The BackupStorageAccessTier for the LTR backups
|
|
312
|
+
"""
|
|
313
|
+
return pulumi.get(self, "backup_storage_access_tier")
|
|
314
|
+
|
|
315
|
+
@property
|
|
316
|
+
@pulumi.getter(name="makeBackupsImmutable")
|
|
317
|
+
def make_backups_immutable(self) -> pulumi.Output[Optional[bool]]:
|
|
318
|
+
"""
|
|
319
|
+
The setting whether to make LTR backups immutable
|
|
320
|
+
"""
|
|
321
|
+
return pulumi.get(self, "make_backups_immutable")
|
|
322
|
+
|
|
264
323
|
@property
|
|
265
324
|
@pulumi.getter(name="monthlyRetention")
|
|
266
325
|
def monthly_retention(self) -> pulumi.Output[Optional[str]]:
|
|
@@ -22,6 +22,7 @@ class BigDataPoolArgs:
|
|
|
22
22
|
auto_pause: Optional[pulumi.Input['AutoPausePropertiesArgs']] = None,
|
|
23
23
|
auto_scale: Optional[pulumi.Input['AutoScalePropertiesArgs']] = None,
|
|
24
24
|
big_data_pool_name: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
cache_size: Optional[pulumi.Input[int]] = None,
|
|
25
26
|
custom_libraries: Optional[pulumi.Input[Sequence[pulumi.Input['LibraryInfoArgs']]]] = None,
|
|
26
27
|
default_spark_log_folder: Optional[pulumi.Input[str]] = None,
|
|
27
28
|
dynamic_executor_allocation: Optional[pulumi.Input['DynamicExecutorAllocationArgs']] = None,
|
|
@@ -46,6 +47,7 @@ class BigDataPoolArgs:
|
|
|
46
47
|
:param pulumi.Input['AutoPausePropertiesArgs'] auto_pause: Auto-pausing properties
|
|
47
48
|
:param pulumi.Input['AutoScalePropertiesArgs'] auto_scale: Auto-scaling properties
|
|
48
49
|
:param pulumi.Input[str] big_data_pool_name: Big Data pool name
|
|
50
|
+
:param pulumi.Input[int] cache_size: The cache size
|
|
49
51
|
:param pulumi.Input[Sequence[pulumi.Input['LibraryInfoArgs']]] custom_libraries: List of custom libraries/packages associated with the spark pool.
|
|
50
52
|
:param pulumi.Input[str] default_spark_log_folder: The default folder where Spark logs will be written.
|
|
51
53
|
:param pulumi.Input['DynamicExecutorAllocationArgs'] dynamic_executor_allocation: Dynamic Executor Allocation
|
|
@@ -72,6 +74,8 @@ class BigDataPoolArgs:
|
|
|
72
74
|
pulumi.set(__self__, "auto_scale", auto_scale)
|
|
73
75
|
if big_data_pool_name is not None:
|
|
74
76
|
pulumi.set(__self__, "big_data_pool_name", big_data_pool_name)
|
|
77
|
+
if cache_size is not None:
|
|
78
|
+
pulumi.set(__self__, "cache_size", cache_size)
|
|
75
79
|
if custom_libraries is not None:
|
|
76
80
|
pulumi.set(__self__, "custom_libraries", custom_libraries)
|
|
77
81
|
if default_spark_log_folder is not None:
|
|
@@ -167,6 +171,18 @@ class BigDataPoolArgs:
|
|
|
167
171
|
def big_data_pool_name(self, value: Optional[pulumi.Input[str]]):
|
|
168
172
|
pulumi.set(self, "big_data_pool_name", value)
|
|
169
173
|
|
|
174
|
+
@property
|
|
175
|
+
@pulumi.getter(name="cacheSize")
|
|
176
|
+
def cache_size(self) -> Optional[pulumi.Input[int]]:
|
|
177
|
+
"""
|
|
178
|
+
The cache size
|
|
179
|
+
"""
|
|
180
|
+
return pulumi.get(self, "cache_size")
|
|
181
|
+
|
|
182
|
+
@cache_size.setter
|
|
183
|
+
def cache_size(self, value: Optional[pulumi.Input[int]]):
|
|
184
|
+
pulumi.set(self, "cache_size", value)
|
|
185
|
+
|
|
170
186
|
@property
|
|
171
187
|
@pulumi.getter(name="customLibraries")
|
|
172
188
|
def custom_libraries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LibraryInfoArgs']]]]:
|
|
@@ -380,6 +396,7 @@ class BigDataPool(pulumi.CustomResource):
|
|
|
380
396
|
auto_pause: Optional[pulumi.Input[pulumi.InputType['AutoPausePropertiesArgs']]] = None,
|
|
381
397
|
auto_scale: Optional[pulumi.Input[pulumi.InputType['AutoScalePropertiesArgs']]] = None,
|
|
382
398
|
big_data_pool_name: Optional[pulumi.Input[str]] = None,
|
|
399
|
+
cache_size: Optional[pulumi.Input[int]] = None,
|
|
383
400
|
custom_libraries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LibraryInfoArgs']]]]] = None,
|
|
384
401
|
default_spark_log_folder: Optional[pulumi.Input[str]] = None,
|
|
385
402
|
dynamic_executor_allocation: Optional[pulumi.Input[pulumi.InputType['DynamicExecutorAllocationArgs']]] = None,
|
|
@@ -411,6 +428,7 @@ class BigDataPool(pulumi.CustomResource):
|
|
|
411
428
|
:param pulumi.Input[pulumi.InputType['AutoPausePropertiesArgs']] auto_pause: Auto-pausing properties
|
|
412
429
|
:param pulumi.Input[pulumi.InputType['AutoScalePropertiesArgs']] auto_scale: Auto-scaling properties
|
|
413
430
|
:param pulumi.Input[str] big_data_pool_name: Big Data pool name
|
|
431
|
+
:param pulumi.Input[int] cache_size: The cache size
|
|
414
432
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LibraryInfoArgs']]]] custom_libraries: List of custom libraries/packages associated with the spark pool.
|
|
415
433
|
:param pulumi.Input[str] default_spark_log_folder: The default folder where Spark logs will be written.
|
|
416
434
|
:param pulumi.Input[pulumi.InputType['DynamicExecutorAllocationArgs']] dynamic_executor_allocation: Dynamic Executor Allocation
|
|
@@ -461,6 +479,7 @@ class BigDataPool(pulumi.CustomResource):
|
|
|
461
479
|
auto_pause: Optional[pulumi.Input[pulumi.InputType['AutoPausePropertiesArgs']]] = None,
|
|
462
480
|
auto_scale: Optional[pulumi.Input[pulumi.InputType['AutoScalePropertiesArgs']]] = None,
|
|
463
481
|
big_data_pool_name: Optional[pulumi.Input[str]] = None,
|
|
482
|
+
cache_size: Optional[pulumi.Input[int]] = None,
|
|
464
483
|
custom_libraries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['LibraryInfoArgs']]]]] = None,
|
|
465
484
|
default_spark_log_folder: Optional[pulumi.Input[str]] = None,
|
|
466
485
|
dynamic_executor_allocation: Optional[pulumi.Input[pulumi.InputType['DynamicExecutorAllocationArgs']]] = None,
|
|
@@ -492,6 +511,7 @@ class BigDataPool(pulumi.CustomResource):
|
|
|
492
511
|
__props__.__dict__["auto_pause"] = auto_pause
|
|
493
512
|
__props__.__dict__["auto_scale"] = auto_scale
|
|
494
513
|
__props__.__dict__["big_data_pool_name"] = big_data_pool_name
|
|
514
|
+
__props__.__dict__["cache_size"] = cache_size
|
|
495
515
|
__props__.__dict__["custom_libraries"] = custom_libraries
|
|
496
516
|
__props__.__dict__["default_spark_log_folder"] = default_spark_log_folder
|
|
497
517
|
__props__.__dict__["dynamic_executor_allocation"] = dynamic_executor_allocation
|
|
@@ -515,7 +535,6 @@ class BigDataPool(pulumi.CustomResource):
|
|
|
515
535
|
if workspace_name is None and not opts.urn:
|
|
516
536
|
raise TypeError("Missing required property 'workspace_name'")
|
|
517
537
|
__props__.__dict__["workspace_name"] = workspace_name
|
|
518
|
-
__props__.__dict__["cache_size"] = None
|
|
519
538
|
__props__.__dict__["creation_date"] = None
|
|
520
539
|
__props__.__dict__["last_succeeded_timestamp"] = None
|
|
521
540
|
__props__.__dict__["name"] = None
|
|
@@ -587,7 +606,7 @@ class BigDataPool(pulumi.CustomResource):
|
|
|
587
606
|
|
|
588
607
|
@property
|
|
589
608
|
@pulumi.getter(name="cacheSize")
|
|
590
|
-
def cache_size(self) -> pulumi.Output[int]:
|
|
609
|
+
def cache_size(self) -> pulumi.Output[Optional[int]]:
|
|
591
610
|
"""
|
|
592
611
|
The cache size
|
|
593
612
|
"""
|