pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
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
|
+
'GetConfigurationAssignmentsForResourceGroupResult',
|
|
15
|
+
'AwaitableGetConfigurationAssignmentsForResourceGroupResult',
|
|
16
|
+
'get_configuration_assignments_for_resource_group',
|
|
17
|
+
'get_configuration_assignments_for_resource_group_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetConfigurationAssignmentsForResourceGroupResult:
|
|
22
|
+
"""
|
|
23
|
+
Configuration Assignment
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, filter=None, id=None, location=None, maintenance_configuration_id=None, name=None, resource_id=None, system_data=None, type=None):
|
|
26
|
+
if filter and not isinstance(filter, dict):
|
|
27
|
+
raise TypeError("Expected argument 'filter' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "filter", filter)
|
|
29
|
+
if id and not isinstance(id, str):
|
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "id", id)
|
|
32
|
+
if location and not isinstance(location, str):
|
|
33
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
34
|
+
pulumi.set(__self__, "location", location)
|
|
35
|
+
if maintenance_configuration_id and not isinstance(maintenance_configuration_id, str):
|
|
36
|
+
raise TypeError("Expected argument 'maintenance_configuration_id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "maintenance_configuration_id", maintenance_configuration_id)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if resource_id and not isinstance(resource_id, str):
|
|
42
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
|
43
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
|
44
|
+
if system_data and not isinstance(system_data, dict):
|
|
45
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
47
|
+
if type and not isinstance(type, str):
|
|
48
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
49
|
+
pulumi.set(__self__, "type", type)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def filter(self) -> Optional['outputs.ConfigurationAssignmentFilterPropertiesResponse']:
|
|
54
|
+
"""
|
|
55
|
+
Properties of the configuration assignment
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "filter")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def id(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
Fully qualified identifier of the resource
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "id")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def location(self) -> Optional[str]:
|
|
70
|
+
"""
|
|
71
|
+
Location of the resource
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "location")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="maintenanceConfigurationId")
|
|
77
|
+
def maintenance_configuration_id(self) -> Optional[str]:
|
|
78
|
+
"""
|
|
79
|
+
The maintenance configuration Id
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "maintenance_configuration_id")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter
|
|
85
|
+
def name(self) -> str:
|
|
86
|
+
"""
|
|
87
|
+
Name of the resource
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "name")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="resourceId")
|
|
93
|
+
def resource_id(self) -> Optional[str]:
|
|
94
|
+
"""
|
|
95
|
+
The unique resourceId
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "resource_id")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="systemData")
|
|
101
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
102
|
+
"""
|
|
103
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "system_data")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def type(self) -> str:
|
|
110
|
+
"""
|
|
111
|
+
Type of the resource
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "type")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AwaitableGetConfigurationAssignmentsForResourceGroupResult(GetConfigurationAssignmentsForResourceGroupResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetConfigurationAssignmentsForResourceGroupResult(
|
|
122
|
+
filter=self.filter,
|
|
123
|
+
id=self.id,
|
|
124
|
+
location=self.location,
|
|
125
|
+
maintenance_configuration_id=self.maintenance_configuration_id,
|
|
126
|
+
name=self.name,
|
|
127
|
+
resource_id=self.resource_id,
|
|
128
|
+
system_data=self.system_data,
|
|
129
|
+
type=self.type)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def get_configuration_assignments_for_resource_group(configuration_assignment_name: Optional[str] = None,
|
|
133
|
+
resource_group_name: Optional[str] = None,
|
|
134
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationAssignmentsForResourceGroupResult:
|
|
135
|
+
"""
|
|
136
|
+
Get configuration assignment for resource..
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
:param str configuration_assignment_name: Configuration assignment name
|
|
140
|
+
:param str resource_group_name: Resource group name
|
|
141
|
+
"""
|
|
142
|
+
__args__ = dict()
|
|
143
|
+
__args__['configurationAssignmentName'] = configuration_assignment_name
|
|
144
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
145
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
146
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maintenance/v20231001preview:getConfigurationAssignmentsForResourceGroup', __args__, opts=opts, typ=GetConfigurationAssignmentsForResourceGroupResult).value
|
|
147
|
+
|
|
148
|
+
return AwaitableGetConfigurationAssignmentsForResourceGroupResult(
|
|
149
|
+
filter=pulumi.get(__ret__, 'filter'),
|
|
150
|
+
id=pulumi.get(__ret__, 'id'),
|
|
151
|
+
location=pulumi.get(__ret__, 'location'),
|
|
152
|
+
maintenance_configuration_id=pulumi.get(__ret__, 'maintenance_configuration_id'),
|
|
153
|
+
name=pulumi.get(__ret__, 'name'),
|
|
154
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
|
155
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
156
|
+
type=pulumi.get(__ret__, 'type'))
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
@_utilities.lift_output_func(get_configuration_assignments_for_resource_group)
|
|
160
|
+
def get_configuration_assignments_for_resource_group_output(configuration_assignment_name: Optional[pulumi.Input[str]] = None,
|
|
161
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
162
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConfigurationAssignmentsForResourceGroupResult]:
|
|
163
|
+
"""
|
|
164
|
+
Get configuration assignment for resource..
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
:param str configuration_assignment_name: Configuration assignment name
|
|
168
|
+
:param str resource_group_name: Resource group name
|
|
169
|
+
"""
|
|
170
|
+
...
|
pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
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
|
+
'GetConfigurationAssignmentsForSubscriptionResult',
|
|
15
|
+
'AwaitableGetConfigurationAssignmentsForSubscriptionResult',
|
|
16
|
+
'get_configuration_assignments_for_subscription',
|
|
17
|
+
'get_configuration_assignments_for_subscription_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetConfigurationAssignmentsForSubscriptionResult:
|
|
22
|
+
"""
|
|
23
|
+
Configuration Assignment
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, filter=None, id=None, location=None, maintenance_configuration_id=None, name=None, resource_id=None, system_data=None, type=None):
|
|
26
|
+
if filter and not isinstance(filter, dict):
|
|
27
|
+
raise TypeError("Expected argument 'filter' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "filter", filter)
|
|
29
|
+
if id and not isinstance(id, str):
|
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "id", id)
|
|
32
|
+
if location and not isinstance(location, str):
|
|
33
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
34
|
+
pulumi.set(__self__, "location", location)
|
|
35
|
+
if maintenance_configuration_id and not isinstance(maintenance_configuration_id, str):
|
|
36
|
+
raise TypeError("Expected argument 'maintenance_configuration_id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "maintenance_configuration_id", maintenance_configuration_id)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if resource_id and not isinstance(resource_id, str):
|
|
42
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
|
43
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
|
44
|
+
if system_data and not isinstance(system_data, dict):
|
|
45
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
47
|
+
if type and not isinstance(type, str):
|
|
48
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
49
|
+
pulumi.set(__self__, "type", type)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def filter(self) -> Optional['outputs.ConfigurationAssignmentFilterPropertiesResponse']:
|
|
54
|
+
"""
|
|
55
|
+
Properties of the configuration assignment
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "filter")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def id(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
Fully qualified identifier of the resource
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "id")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def location(self) -> Optional[str]:
|
|
70
|
+
"""
|
|
71
|
+
Location of the resource
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "location")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="maintenanceConfigurationId")
|
|
77
|
+
def maintenance_configuration_id(self) -> Optional[str]:
|
|
78
|
+
"""
|
|
79
|
+
The maintenance configuration Id
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "maintenance_configuration_id")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter
|
|
85
|
+
def name(self) -> str:
|
|
86
|
+
"""
|
|
87
|
+
Name of the resource
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "name")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="resourceId")
|
|
93
|
+
def resource_id(self) -> Optional[str]:
|
|
94
|
+
"""
|
|
95
|
+
The unique resourceId
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "resource_id")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="systemData")
|
|
101
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
102
|
+
"""
|
|
103
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "system_data")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def type(self) -> str:
|
|
110
|
+
"""
|
|
111
|
+
Type of the resource
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "type")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AwaitableGetConfigurationAssignmentsForSubscriptionResult(GetConfigurationAssignmentsForSubscriptionResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetConfigurationAssignmentsForSubscriptionResult(
|
|
122
|
+
filter=self.filter,
|
|
123
|
+
id=self.id,
|
|
124
|
+
location=self.location,
|
|
125
|
+
maintenance_configuration_id=self.maintenance_configuration_id,
|
|
126
|
+
name=self.name,
|
|
127
|
+
resource_id=self.resource_id,
|
|
128
|
+
system_data=self.system_data,
|
|
129
|
+
type=self.type)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def get_configuration_assignments_for_subscription(configuration_assignment_name: Optional[str] = None,
|
|
133
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationAssignmentsForSubscriptionResult:
|
|
134
|
+
"""
|
|
135
|
+
Get configuration assignment for resource..
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
:param str configuration_assignment_name: Configuration assignment name
|
|
139
|
+
"""
|
|
140
|
+
__args__ = dict()
|
|
141
|
+
__args__['configurationAssignmentName'] = configuration_assignment_name
|
|
142
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
143
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maintenance/v20231001preview:getConfigurationAssignmentsForSubscription', __args__, opts=opts, typ=GetConfigurationAssignmentsForSubscriptionResult).value
|
|
144
|
+
|
|
145
|
+
return AwaitableGetConfigurationAssignmentsForSubscriptionResult(
|
|
146
|
+
filter=pulumi.get(__ret__, 'filter'),
|
|
147
|
+
id=pulumi.get(__ret__, 'id'),
|
|
148
|
+
location=pulumi.get(__ret__, 'location'),
|
|
149
|
+
maintenance_configuration_id=pulumi.get(__ret__, 'maintenance_configuration_id'),
|
|
150
|
+
name=pulumi.get(__ret__, 'name'),
|
|
151
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
|
152
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
153
|
+
type=pulumi.get(__ret__, 'type'))
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
@_utilities.lift_output_func(get_configuration_assignments_for_subscription)
|
|
157
|
+
def get_configuration_assignments_for_subscription_output(configuration_assignment_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConfigurationAssignmentsForSubscriptionResult]:
|
|
159
|
+
"""
|
|
160
|
+
Get configuration assignment for resource..
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str configuration_assignment_name: Configuration assignment name
|
|
164
|
+
"""
|
|
165
|
+
...
|
|
@@ -0,0 +1,274 @@
|
|
|
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
|
+
'GetMaintenanceConfigurationResult',
|
|
15
|
+
'AwaitableGetMaintenanceConfigurationResult',
|
|
16
|
+
'get_maintenance_configuration',
|
|
17
|
+
'get_maintenance_configuration_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetMaintenanceConfigurationResult:
|
|
22
|
+
"""
|
|
23
|
+
Maintenance configuration record type
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, duration=None, expiration_date_time=None, extension_properties=None, id=None, install_patches=None, location=None, maintenance_scope=None, name=None, namespace=None, recur_every=None, start_date_time=None, system_data=None, tags=None, time_zone=None, type=None, visibility=None):
|
|
26
|
+
if duration and not isinstance(duration, str):
|
|
27
|
+
raise TypeError("Expected argument 'duration' to be a str")
|
|
28
|
+
pulumi.set(__self__, "duration", duration)
|
|
29
|
+
if expiration_date_time and not isinstance(expiration_date_time, str):
|
|
30
|
+
raise TypeError("Expected argument 'expiration_date_time' to be a str")
|
|
31
|
+
pulumi.set(__self__, "expiration_date_time", expiration_date_time)
|
|
32
|
+
if extension_properties and not isinstance(extension_properties, dict):
|
|
33
|
+
raise TypeError("Expected argument 'extension_properties' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "extension_properties", extension_properties)
|
|
35
|
+
if id and not isinstance(id, str):
|
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "id", id)
|
|
38
|
+
if install_patches and not isinstance(install_patches, dict):
|
|
39
|
+
raise TypeError("Expected argument 'install_patches' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "install_patches", install_patches)
|
|
41
|
+
if location and not isinstance(location, str):
|
|
42
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
43
|
+
pulumi.set(__self__, "location", location)
|
|
44
|
+
if maintenance_scope and not isinstance(maintenance_scope, str):
|
|
45
|
+
raise TypeError("Expected argument 'maintenance_scope' to be a str")
|
|
46
|
+
pulumi.set(__self__, "maintenance_scope", maintenance_scope)
|
|
47
|
+
if name and not isinstance(name, str):
|
|
48
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
49
|
+
pulumi.set(__self__, "name", name)
|
|
50
|
+
if namespace and not isinstance(namespace, str):
|
|
51
|
+
raise TypeError("Expected argument 'namespace' to be a str")
|
|
52
|
+
pulumi.set(__self__, "namespace", namespace)
|
|
53
|
+
if recur_every and not isinstance(recur_every, str):
|
|
54
|
+
raise TypeError("Expected argument 'recur_every' to be a str")
|
|
55
|
+
pulumi.set(__self__, "recur_every", recur_every)
|
|
56
|
+
if start_date_time and not isinstance(start_date_time, str):
|
|
57
|
+
raise TypeError("Expected argument 'start_date_time' to be a str")
|
|
58
|
+
pulumi.set(__self__, "start_date_time", start_date_time)
|
|
59
|
+
if system_data and not isinstance(system_data, dict):
|
|
60
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
61
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
62
|
+
if tags and not isinstance(tags, dict):
|
|
63
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
64
|
+
pulumi.set(__self__, "tags", tags)
|
|
65
|
+
if time_zone and not isinstance(time_zone, str):
|
|
66
|
+
raise TypeError("Expected argument 'time_zone' to be a str")
|
|
67
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
|
68
|
+
if type and not isinstance(type, str):
|
|
69
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
70
|
+
pulumi.set(__self__, "type", type)
|
|
71
|
+
if visibility and not isinstance(visibility, str):
|
|
72
|
+
raise TypeError("Expected argument 'visibility' to be a str")
|
|
73
|
+
pulumi.set(__self__, "visibility", visibility)
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def duration(self) -> Optional[str]:
|
|
78
|
+
"""
|
|
79
|
+
Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "duration")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter(name="expirationDateTime")
|
|
85
|
+
def expiration_date_time(self) -> Optional[str]:
|
|
86
|
+
"""
|
|
87
|
+
Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "expiration_date_time")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="extensionProperties")
|
|
93
|
+
def extension_properties(self) -> Optional[Mapping[str, str]]:
|
|
94
|
+
"""
|
|
95
|
+
Gets or sets extensionProperties of the maintenanceConfiguration
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "extension_properties")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter
|
|
101
|
+
def id(self) -> str:
|
|
102
|
+
"""
|
|
103
|
+
Fully qualified identifier of the resource
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "id")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter(name="installPatches")
|
|
109
|
+
def install_patches(self) -> Optional['outputs.InputPatchConfigurationResponse']:
|
|
110
|
+
"""
|
|
111
|
+
The input parameters to be passed to the patch run operation.
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "install_patches")
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter
|
|
117
|
+
def location(self) -> Optional[str]:
|
|
118
|
+
"""
|
|
119
|
+
Gets or sets location of the resource
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "location")
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter(name="maintenanceScope")
|
|
125
|
+
def maintenance_scope(self) -> Optional[str]:
|
|
126
|
+
"""
|
|
127
|
+
Gets or sets maintenanceScope of the configuration
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "maintenance_scope")
|
|
130
|
+
|
|
131
|
+
@property
|
|
132
|
+
@pulumi.getter
|
|
133
|
+
def name(self) -> str:
|
|
134
|
+
"""
|
|
135
|
+
Name of the resource
|
|
136
|
+
"""
|
|
137
|
+
return pulumi.get(self, "name")
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
@pulumi.getter
|
|
141
|
+
def namespace(self) -> Optional[str]:
|
|
142
|
+
"""
|
|
143
|
+
Gets or sets namespace of the resource
|
|
144
|
+
"""
|
|
145
|
+
return pulumi.get(self, "namespace")
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
@pulumi.getter(name="recurEvery")
|
|
149
|
+
def recur_every(self) -> Optional[str]:
|
|
150
|
+
"""
|
|
151
|
+
Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
|
|
152
|
+
"""
|
|
153
|
+
return pulumi.get(self, "recur_every")
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
@pulumi.getter(name="startDateTime")
|
|
157
|
+
def start_date_time(self) -> Optional[str]:
|
|
158
|
+
"""
|
|
159
|
+
Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "start_date_time")
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter(name="systemData")
|
|
165
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
166
|
+
"""
|
|
167
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "system_data")
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
@pulumi.getter
|
|
173
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
174
|
+
"""
|
|
175
|
+
Gets or sets tags of the resource
|
|
176
|
+
"""
|
|
177
|
+
return pulumi.get(self, "tags")
|
|
178
|
+
|
|
179
|
+
@property
|
|
180
|
+
@pulumi.getter(name="timeZone")
|
|
181
|
+
def time_zone(self) -> Optional[str]:
|
|
182
|
+
"""
|
|
183
|
+
Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
|
|
184
|
+
"""
|
|
185
|
+
return pulumi.get(self, "time_zone")
|
|
186
|
+
|
|
187
|
+
@property
|
|
188
|
+
@pulumi.getter
|
|
189
|
+
def type(self) -> str:
|
|
190
|
+
"""
|
|
191
|
+
Type of the resource
|
|
192
|
+
"""
|
|
193
|
+
return pulumi.get(self, "type")
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter
|
|
197
|
+
def visibility(self) -> Optional[str]:
|
|
198
|
+
"""
|
|
199
|
+
Gets or sets the visibility of the configuration. The default value is 'Custom'
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "visibility")
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
class AwaitableGetMaintenanceConfigurationResult(GetMaintenanceConfigurationResult):
|
|
205
|
+
# pylint: disable=using-constant-test
|
|
206
|
+
def __await__(self):
|
|
207
|
+
if False:
|
|
208
|
+
yield self
|
|
209
|
+
return GetMaintenanceConfigurationResult(
|
|
210
|
+
duration=self.duration,
|
|
211
|
+
expiration_date_time=self.expiration_date_time,
|
|
212
|
+
extension_properties=self.extension_properties,
|
|
213
|
+
id=self.id,
|
|
214
|
+
install_patches=self.install_patches,
|
|
215
|
+
location=self.location,
|
|
216
|
+
maintenance_scope=self.maintenance_scope,
|
|
217
|
+
name=self.name,
|
|
218
|
+
namespace=self.namespace,
|
|
219
|
+
recur_every=self.recur_every,
|
|
220
|
+
start_date_time=self.start_date_time,
|
|
221
|
+
system_data=self.system_data,
|
|
222
|
+
tags=self.tags,
|
|
223
|
+
time_zone=self.time_zone,
|
|
224
|
+
type=self.type,
|
|
225
|
+
visibility=self.visibility)
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
def get_maintenance_configuration(resource_group_name: Optional[str] = None,
|
|
229
|
+
resource_name: Optional[str] = None,
|
|
230
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceConfigurationResult:
|
|
231
|
+
"""
|
|
232
|
+
Maintenance configuration record type
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
:param str resource_group_name: Resource Group Name
|
|
236
|
+
:param str resource_name: Maintenance Configuration Name
|
|
237
|
+
"""
|
|
238
|
+
__args__ = dict()
|
|
239
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
240
|
+
__args__['resourceName'] = resource_name
|
|
241
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
242
|
+
__ret__ = pulumi.runtime.invoke('azure-native:maintenance/v20231001preview:getMaintenanceConfiguration', __args__, opts=opts, typ=GetMaintenanceConfigurationResult).value
|
|
243
|
+
|
|
244
|
+
return AwaitableGetMaintenanceConfigurationResult(
|
|
245
|
+
duration=pulumi.get(__ret__, 'duration'),
|
|
246
|
+
expiration_date_time=pulumi.get(__ret__, 'expiration_date_time'),
|
|
247
|
+
extension_properties=pulumi.get(__ret__, 'extension_properties'),
|
|
248
|
+
id=pulumi.get(__ret__, 'id'),
|
|
249
|
+
install_patches=pulumi.get(__ret__, 'install_patches'),
|
|
250
|
+
location=pulumi.get(__ret__, 'location'),
|
|
251
|
+
maintenance_scope=pulumi.get(__ret__, 'maintenance_scope'),
|
|
252
|
+
name=pulumi.get(__ret__, 'name'),
|
|
253
|
+
namespace=pulumi.get(__ret__, 'namespace'),
|
|
254
|
+
recur_every=pulumi.get(__ret__, 'recur_every'),
|
|
255
|
+
start_date_time=pulumi.get(__ret__, 'start_date_time'),
|
|
256
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
257
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
258
|
+
time_zone=pulumi.get(__ret__, 'time_zone'),
|
|
259
|
+
type=pulumi.get(__ret__, 'type'),
|
|
260
|
+
visibility=pulumi.get(__ret__, 'visibility'))
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
@_utilities.lift_output_func(get_maintenance_configuration)
|
|
264
|
+
def get_maintenance_configuration_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
265
|
+
resource_name: Optional[pulumi.Input[str]] = None,
|
|
266
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMaintenanceConfigurationResult]:
|
|
267
|
+
"""
|
|
268
|
+
Maintenance configuration record type
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
:param str resource_group_name: Resource Group Name
|
|
272
|
+
:param str resource_name: Maintenance Configuration Name
|
|
273
|
+
"""
|
|
274
|
+
...
|