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
|
@@ -1,134 +0,0 @@
|
|
|
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
|
-
'GetBackupPolicyResult',
|
|
15
|
-
'AwaitableGetBackupPolicyResult',
|
|
16
|
-
'get_backup_policy',
|
|
17
|
-
'get_backup_policy_output',
|
|
18
|
-
]
|
|
19
|
-
|
|
20
|
-
@pulumi.output_type
|
|
21
|
-
class GetBackupPolicyResult:
|
|
22
|
-
"""
|
|
23
|
-
BaseBackupPolicy resource
|
|
24
|
-
"""
|
|
25
|
-
def __init__(__self__, id=None, name=None, properties=None, system_data=None, type=None):
|
|
26
|
-
if id and not isinstance(id, str):
|
|
27
|
-
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
-
pulumi.set(__self__, "id", id)
|
|
29
|
-
if name and not isinstance(name, str):
|
|
30
|
-
raise TypeError("Expected argument 'name' to be a str")
|
|
31
|
-
pulumi.set(__self__, "name", name)
|
|
32
|
-
if properties and not isinstance(properties, dict):
|
|
33
|
-
raise TypeError("Expected argument 'properties' to be a dict")
|
|
34
|
-
pulumi.set(__self__, "properties", properties)
|
|
35
|
-
if system_data and not isinstance(system_data, dict):
|
|
36
|
-
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
37
|
-
pulumi.set(__self__, "system_data", system_data)
|
|
38
|
-
if type and not isinstance(type, str):
|
|
39
|
-
raise TypeError("Expected argument 'type' to be a str")
|
|
40
|
-
pulumi.set(__self__, "type", type)
|
|
41
|
-
|
|
42
|
-
@property
|
|
43
|
-
@pulumi.getter
|
|
44
|
-
def id(self) -> str:
|
|
45
|
-
"""
|
|
46
|
-
Resource Id represents the complete path to the resource.
|
|
47
|
-
"""
|
|
48
|
-
return pulumi.get(self, "id")
|
|
49
|
-
|
|
50
|
-
@property
|
|
51
|
-
@pulumi.getter
|
|
52
|
-
def name(self) -> str:
|
|
53
|
-
"""
|
|
54
|
-
Resource name associated with the resource.
|
|
55
|
-
"""
|
|
56
|
-
return pulumi.get(self, "name")
|
|
57
|
-
|
|
58
|
-
@property
|
|
59
|
-
@pulumi.getter
|
|
60
|
-
def properties(self) -> 'outputs.BackupPolicyResponse':
|
|
61
|
-
"""
|
|
62
|
-
BaseBackupPolicyResource properties
|
|
63
|
-
"""
|
|
64
|
-
return pulumi.get(self, "properties")
|
|
65
|
-
|
|
66
|
-
@property
|
|
67
|
-
@pulumi.getter(name="systemData")
|
|
68
|
-
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
69
|
-
"""
|
|
70
|
-
Metadata pertaining to creation and last modification of the resource.
|
|
71
|
-
"""
|
|
72
|
-
return pulumi.get(self, "system_data")
|
|
73
|
-
|
|
74
|
-
@property
|
|
75
|
-
@pulumi.getter
|
|
76
|
-
def type(self) -> str:
|
|
77
|
-
"""
|
|
78
|
-
Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
|
|
79
|
-
"""
|
|
80
|
-
return pulumi.get(self, "type")
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
class AwaitableGetBackupPolicyResult(GetBackupPolicyResult):
|
|
84
|
-
# pylint: disable=using-constant-test
|
|
85
|
-
def __await__(self):
|
|
86
|
-
if False:
|
|
87
|
-
yield self
|
|
88
|
-
return GetBackupPolicyResult(
|
|
89
|
-
id=self.id,
|
|
90
|
-
name=self.name,
|
|
91
|
-
properties=self.properties,
|
|
92
|
-
system_data=self.system_data,
|
|
93
|
-
type=self.type)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
def get_backup_policy(backup_policy_name: Optional[str] = None,
|
|
97
|
-
resource_group_name: Optional[str] = None,
|
|
98
|
-
vault_name: Optional[str] = None,
|
|
99
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupPolicyResult:
|
|
100
|
-
"""
|
|
101
|
-
Gets a backup policy belonging to a backup vault
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
105
|
-
:param str vault_name: The name of the backup vault.
|
|
106
|
-
"""
|
|
107
|
-
__args__ = dict()
|
|
108
|
-
__args__['backupPolicyName'] = backup_policy_name
|
|
109
|
-
__args__['resourceGroupName'] = resource_group_name
|
|
110
|
-
__args__['vaultName'] = vault_name
|
|
111
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
112
|
-
__ret__ = pulumi.runtime.invoke('azure-native:dataprotection/v20230801:getBackupPolicy', __args__, opts=opts, typ=GetBackupPolicyResult).value
|
|
113
|
-
|
|
114
|
-
return AwaitableGetBackupPolicyResult(
|
|
115
|
-
id=pulumi.get(__ret__, 'id'),
|
|
116
|
-
name=pulumi.get(__ret__, 'name'),
|
|
117
|
-
properties=pulumi.get(__ret__, 'properties'),
|
|
118
|
-
system_data=pulumi.get(__ret__, 'system_data'),
|
|
119
|
-
type=pulumi.get(__ret__, 'type'))
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
@_utilities.lift_output_func(get_backup_policy)
|
|
123
|
-
def get_backup_policy_output(backup_policy_name: Optional[pulumi.Input[str]] = None,
|
|
124
|
-
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
125
|
-
vault_name: Optional[pulumi.Input[str]] = None,
|
|
126
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBackupPolicyResult]:
|
|
127
|
-
"""
|
|
128
|
-
Gets a backup policy belonging to a backup vault
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
132
|
-
:param str vault_name: The name of the backup vault.
|
|
133
|
-
"""
|
|
134
|
-
...
|
|
@@ -1,183 +0,0 @@
|
|
|
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
|
-
'GetBackupVaultResult',
|
|
15
|
-
'AwaitableGetBackupVaultResult',
|
|
16
|
-
'get_backup_vault',
|
|
17
|
-
'get_backup_vault_output',
|
|
18
|
-
]
|
|
19
|
-
|
|
20
|
-
@pulumi.output_type
|
|
21
|
-
class GetBackupVaultResult:
|
|
22
|
-
"""
|
|
23
|
-
Backup Vault Resource
|
|
24
|
-
"""
|
|
25
|
-
def __init__(__self__, e_tag=None, id=None, identity=None, location=None, name=None, properties=None, system_data=None, tags=None, type=None):
|
|
26
|
-
if e_tag and not isinstance(e_tag, str):
|
|
27
|
-
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
28
|
-
pulumi.set(__self__, "e_tag", e_tag)
|
|
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 identity and not isinstance(identity, dict):
|
|
33
|
-
raise TypeError("Expected argument 'identity' to be a dict")
|
|
34
|
-
pulumi.set(__self__, "identity", identity)
|
|
35
|
-
if location and not isinstance(location, str):
|
|
36
|
-
raise TypeError("Expected argument 'location' to be a str")
|
|
37
|
-
pulumi.set(__self__, "location", location)
|
|
38
|
-
if name and not isinstance(name, str):
|
|
39
|
-
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
-
pulumi.set(__self__, "name", name)
|
|
41
|
-
if properties and not isinstance(properties, dict):
|
|
42
|
-
raise TypeError("Expected argument 'properties' to be a dict")
|
|
43
|
-
pulumi.set(__self__, "properties", properties)
|
|
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 tags and not isinstance(tags, dict):
|
|
48
|
-
raise TypeError("Expected argument 'tags' to be a dict")
|
|
49
|
-
pulumi.set(__self__, "tags", tags)
|
|
50
|
-
if type and not isinstance(type, str):
|
|
51
|
-
raise TypeError("Expected argument 'type' to be a str")
|
|
52
|
-
pulumi.set(__self__, "type", type)
|
|
53
|
-
|
|
54
|
-
@property
|
|
55
|
-
@pulumi.getter(name="eTag")
|
|
56
|
-
def e_tag(self) -> Optional[str]:
|
|
57
|
-
"""
|
|
58
|
-
Optional ETag.
|
|
59
|
-
"""
|
|
60
|
-
return pulumi.get(self, "e_tag")
|
|
61
|
-
|
|
62
|
-
@property
|
|
63
|
-
@pulumi.getter
|
|
64
|
-
def id(self) -> str:
|
|
65
|
-
"""
|
|
66
|
-
Resource Id represents the complete path to the resource.
|
|
67
|
-
"""
|
|
68
|
-
return pulumi.get(self, "id")
|
|
69
|
-
|
|
70
|
-
@property
|
|
71
|
-
@pulumi.getter
|
|
72
|
-
def identity(self) -> Optional['outputs.DppIdentityDetailsResponse']:
|
|
73
|
-
"""
|
|
74
|
-
Input Managed Identity Details
|
|
75
|
-
"""
|
|
76
|
-
return pulumi.get(self, "identity")
|
|
77
|
-
|
|
78
|
-
@property
|
|
79
|
-
@pulumi.getter
|
|
80
|
-
def location(self) -> str:
|
|
81
|
-
"""
|
|
82
|
-
Resource location.
|
|
83
|
-
"""
|
|
84
|
-
return pulumi.get(self, "location")
|
|
85
|
-
|
|
86
|
-
@property
|
|
87
|
-
@pulumi.getter
|
|
88
|
-
def name(self) -> str:
|
|
89
|
-
"""
|
|
90
|
-
Resource name associated with the resource.
|
|
91
|
-
"""
|
|
92
|
-
return pulumi.get(self, "name")
|
|
93
|
-
|
|
94
|
-
@property
|
|
95
|
-
@pulumi.getter
|
|
96
|
-
def properties(self) -> 'outputs.BackupVaultResponse':
|
|
97
|
-
"""
|
|
98
|
-
BackupVaultResource properties
|
|
99
|
-
"""
|
|
100
|
-
return pulumi.get(self, "properties")
|
|
101
|
-
|
|
102
|
-
@property
|
|
103
|
-
@pulumi.getter(name="systemData")
|
|
104
|
-
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
105
|
-
"""
|
|
106
|
-
Metadata pertaining to creation and last modification of the resource.
|
|
107
|
-
"""
|
|
108
|
-
return pulumi.get(self, "system_data")
|
|
109
|
-
|
|
110
|
-
@property
|
|
111
|
-
@pulumi.getter
|
|
112
|
-
def tags(self) -> Optional[Mapping[str, str]]:
|
|
113
|
-
"""
|
|
114
|
-
Resource tags.
|
|
115
|
-
"""
|
|
116
|
-
return pulumi.get(self, "tags")
|
|
117
|
-
|
|
118
|
-
@property
|
|
119
|
-
@pulumi.getter
|
|
120
|
-
def type(self) -> str:
|
|
121
|
-
"""
|
|
122
|
-
Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
|
|
123
|
-
"""
|
|
124
|
-
return pulumi.get(self, "type")
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
class AwaitableGetBackupVaultResult(GetBackupVaultResult):
|
|
128
|
-
# pylint: disable=using-constant-test
|
|
129
|
-
def __await__(self):
|
|
130
|
-
if False:
|
|
131
|
-
yield self
|
|
132
|
-
return GetBackupVaultResult(
|
|
133
|
-
e_tag=self.e_tag,
|
|
134
|
-
id=self.id,
|
|
135
|
-
identity=self.identity,
|
|
136
|
-
location=self.location,
|
|
137
|
-
name=self.name,
|
|
138
|
-
properties=self.properties,
|
|
139
|
-
system_data=self.system_data,
|
|
140
|
-
tags=self.tags,
|
|
141
|
-
type=self.type)
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
def get_backup_vault(resource_group_name: Optional[str] = None,
|
|
145
|
-
vault_name: Optional[str] = None,
|
|
146
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupVaultResult:
|
|
147
|
-
"""
|
|
148
|
-
Returns a resource belonging to a resource group.
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
152
|
-
:param str vault_name: The name of the backup vault.
|
|
153
|
-
"""
|
|
154
|
-
__args__ = dict()
|
|
155
|
-
__args__['resourceGroupName'] = resource_group_name
|
|
156
|
-
__args__['vaultName'] = vault_name
|
|
157
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
158
|
-
__ret__ = pulumi.runtime.invoke('azure-native:dataprotection/v20230801:getBackupVault', __args__, opts=opts, typ=GetBackupVaultResult).value
|
|
159
|
-
|
|
160
|
-
return AwaitableGetBackupVaultResult(
|
|
161
|
-
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
162
|
-
id=pulumi.get(__ret__, 'id'),
|
|
163
|
-
identity=pulumi.get(__ret__, 'identity'),
|
|
164
|
-
location=pulumi.get(__ret__, 'location'),
|
|
165
|
-
name=pulumi.get(__ret__, 'name'),
|
|
166
|
-
properties=pulumi.get(__ret__, 'properties'),
|
|
167
|
-
system_data=pulumi.get(__ret__, 'system_data'),
|
|
168
|
-
tags=pulumi.get(__ret__, 'tags'),
|
|
169
|
-
type=pulumi.get(__ret__, 'type'))
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
@_utilities.lift_output_func(get_backup_vault)
|
|
173
|
-
def get_backup_vault_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
174
|
-
vault_name: Optional[pulumi.Input[str]] = None,
|
|
175
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBackupVaultResult]:
|
|
176
|
-
"""
|
|
177
|
-
Returns a resource belonging to a resource group.
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
181
|
-
:param str vault_name: The name of the backup vault.
|
|
182
|
-
"""
|
|
183
|
-
...
|
|
@@ -1,136 +0,0 @@
|
|
|
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
|
-
'GetDppResourceGuardProxyResult',
|
|
15
|
-
'AwaitableGetDppResourceGuardProxyResult',
|
|
16
|
-
'get_dpp_resource_guard_proxy',
|
|
17
|
-
'get_dpp_resource_guard_proxy_output',
|
|
18
|
-
]
|
|
19
|
-
|
|
20
|
-
@pulumi.output_type
|
|
21
|
-
class GetDppResourceGuardProxyResult:
|
|
22
|
-
"""
|
|
23
|
-
ResourceGuardProxyBaseResource object, used for response and request bodies for ResourceGuardProxy APIs
|
|
24
|
-
"""
|
|
25
|
-
def __init__(__self__, id=None, name=None, properties=None, system_data=None, type=None):
|
|
26
|
-
if id and not isinstance(id, str):
|
|
27
|
-
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
-
pulumi.set(__self__, "id", id)
|
|
29
|
-
if name and not isinstance(name, str):
|
|
30
|
-
raise TypeError("Expected argument 'name' to be a str")
|
|
31
|
-
pulumi.set(__self__, "name", name)
|
|
32
|
-
if properties and not isinstance(properties, dict):
|
|
33
|
-
raise TypeError("Expected argument 'properties' to be a dict")
|
|
34
|
-
pulumi.set(__self__, "properties", properties)
|
|
35
|
-
if system_data and not isinstance(system_data, dict):
|
|
36
|
-
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
37
|
-
pulumi.set(__self__, "system_data", system_data)
|
|
38
|
-
if type and not isinstance(type, str):
|
|
39
|
-
raise TypeError("Expected argument 'type' to be a str")
|
|
40
|
-
pulumi.set(__self__, "type", type)
|
|
41
|
-
|
|
42
|
-
@property
|
|
43
|
-
@pulumi.getter
|
|
44
|
-
def id(self) -> str:
|
|
45
|
-
"""
|
|
46
|
-
Resource Id represents the complete path to the resource.
|
|
47
|
-
"""
|
|
48
|
-
return pulumi.get(self, "id")
|
|
49
|
-
|
|
50
|
-
@property
|
|
51
|
-
@pulumi.getter
|
|
52
|
-
def name(self) -> str:
|
|
53
|
-
"""
|
|
54
|
-
Resource name associated with the resource.
|
|
55
|
-
"""
|
|
56
|
-
return pulumi.get(self, "name")
|
|
57
|
-
|
|
58
|
-
@property
|
|
59
|
-
@pulumi.getter
|
|
60
|
-
def properties(self) -> 'outputs.ResourceGuardProxyBaseResponse':
|
|
61
|
-
"""
|
|
62
|
-
ResourceGuardProxyBaseResource properties
|
|
63
|
-
"""
|
|
64
|
-
return pulumi.get(self, "properties")
|
|
65
|
-
|
|
66
|
-
@property
|
|
67
|
-
@pulumi.getter(name="systemData")
|
|
68
|
-
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
69
|
-
"""
|
|
70
|
-
Metadata pertaining to creation and last modification of the resource.
|
|
71
|
-
"""
|
|
72
|
-
return pulumi.get(self, "system_data")
|
|
73
|
-
|
|
74
|
-
@property
|
|
75
|
-
@pulumi.getter
|
|
76
|
-
def type(self) -> str:
|
|
77
|
-
"""
|
|
78
|
-
Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
|
|
79
|
-
"""
|
|
80
|
-
return pulumi.get(self, "type")
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
class AwaitableGetDppResourceGuardProxyResult(GetDppResourceGuardProxyResult):
|
|
84
|
-
# pylint: disable=using-constant-test
|
|
85
|
-
def __await__(self):
|
|
86
|
-
if False:
|
|
87
|
-
yield self
|
|
88
|
-
return GetDppResourceGuardProxyResult(
|
|
89
|
-
id=self.id,
|
|
90
|
-
name=self.name,
|
|
91
|
-
properties=self.properties,
|
|
92
|
-
system_data=self.system_data,
|
|
93
|
-
type=self.type)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
def get_dpp_resource_guard_proxy(resource_group_name: Optional[str] = None,
|
|
97
|
-
resource_guard_proxy_name: Optional[str] = None,
|
|
98
|
-
vault_name: Optional[str] = None,
|
|
99
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDppResourceGuardProxyResult:
|
|
100
|
-
"""
|
|
101
|
-
ResourceGuardProxyBaseResource object, used for response and request bodies for ResourceGuardProxy APIs
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
105
|
-
:param str resource_guard_proxy_name: name of the resource guard proxy
|
|
106
|
-
:param str vault_name: The name of the backup vault.
|
|
107
|
-
"""
|
|
108
|
-
__args__ = dict()
|
|
109
|
-
__args__['resourceGroupName'] = resource_group_name
|
|
110
|
-
__args__['resourceGuardProxyName'] = resource_guard_proxy_name
|
|
111
|
-
__args__['vaultName'] = vault_name
|
|
112
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
113
|
-
__ret__ = pulumi.runtime.invoke('azure-native:dataprotection/v20230801:getDppResourceGuardProxy', __args__, opts=opts, typ=GetDppResourceGuardProxyResult).value
|
|
114
|
-
|
|
115
|
-
return AwaitableGetDppResourceGuardProxyResult(
|
|
116
|
-
id=pulumi.get(__ret__, 'id'),
|
|
117
|
-
name=pulumi.get(__ret__, 'name'),
|
|
118
|
-
properties=pulumi.get(__ret__, 'properties'),
|
|
119
|
-
system_data=pulumi.get(__ret__, 'system_data'),
|
|
120
|
-
type=pulumi.get(__ret__, 'type'))
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
@_utilities.lift_output_func(get_dpp_resource_guard_proxy)
|
|
124
|
-
def get_dpp_resource_guard_proxy_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
125
|
-
resource_guard_proxy_name: Optional[pulumi.Input[str]] = None,
|
|
126
|
-
vault_name: Optional[pulumi.Input[str]] = None,
|
|
127
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDppResourceGuardProxyResult]:
|
|
128
|
-
"""
|
|
129
|
-
ResourceGuardProxyBaseResource object, used for response and request bodies for ResourceGuardProxy APIs
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
133
|
-
:param str resource_guard_proxy_name: name of the resource guard proxy
|
|
134
|
-
:param str vault_name: The name of the backup vault.
|
|
135
|
-
"""
|
|
136
|
-
...
|
|
@@ -1,165 +0,0 @@
|
|
|
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
|
-
'GetResourceGuardResult',
|
|
15
|
-
'AwaitableGetResourceGuardResult',
|
|
16
|
-
'get_resource_guard',
|
|
17
|
-
'get_resource_guard_output',
|
|
18
|
-
]
|
|
19
|
-
|
|
20
|
-
@pulumi.output_type
|
|
21
|
-
class GetResourceGuardResult:
|
|
22
|
-
def __init__(__self__, e_tag=None, id=None, location=None, name=None, properties=None, system_data=None, tags=None, type=None):
|
|
23
|
-
if e_tag and not isinstance(e_tag, str):
|
|
24
|
-
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
25
|
-
pulumi.set(__self__, "e_tag", e_tag)
|
|
26
|
-
if id and not isinstance(id, str):
|
|
27
|
-
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
-
pulumi.set(__self__, "id", id)
|
|
29
|
-
if location and not isinstance(location, str):
|
|
30
|
-
raise TypeError("Expected argument 'location' to be a str")
|
|
31
|
-
pulumi.set(__self__, "location", location)
|
|
32
|
-
if name and not isinstance(name, str):
|
|
33
|
-
raise TypeError("Expected argument 'name' to be a str")
|
|
34
|
-
pulumi.set(__self__, "name", name)
|
|
35
|
-
if properties and not isinstance(properties, dict):
|
|
36
|
-
raise TypeError("Expected argument 'properties' to be a dict")
|
|
37
|
-
pulumi.set(__self__, "properties", properties)
|
|
38
|
-
if system_data and not isinstance(system_data, dict):
|
|
39
|
-
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
40
|
-
pulumi.set(__self__, "system_data", system_data)
|
|
41
|
-
if tags and not isinstance(tags, dict):
|
|
42
|
-
raise TypeError("Expected argument 'tags' to be a dict")
|
|
43
|
-
pulumi.set(__self__, "tags", tags)
|
|
44
|
-
if type and not isinstance(type, str):
|
|
45
|
-
raise TypeError("Expected argument 'type' to be a str")
|
|
46
|
-
pulumi.set(__self__, "type", type)
|
|
47
|
-
|
|
48
|
-
@property
|
|
49
|
-
@pulumi.getter(name="eTag")
|
|
50
|
-
def e_tag(self) -> Optional[str]:
|
|
51
|
-
"""
|
|
52
|
-
Optional ETag.
|
|
53
|
-
"""
|
|
54
|
-
return pulumi.get(self, "e_tag")
|
|
55
|
-
|
|
56
|
-
@property
|
|
57
|
-
@pulumi.getter
|
|
58
|
-
def id(self) -> str:
|
|
59
|
-
"""
|
|
60
|
-
Resource Id represents the complete path to the resource.
|
|
61
|
-
"""
|
|
62
|
-
return pulumi.get(self, "id")
|
|
63
|
-
|
|
64
|
-
@property
|
|
65
|
-
@pulumi.getter
|
|
66
|
-
def location(self) -> Optional[str]:
|
|
67
|
-
"""
|
|
68
|
-
Resource location.
|
|
69
|
-
"""
|
|
70
|
-
return pulumi.get(self, "location")
|
|
71
|
-
|
|
72
|
-
@property
|
|
73
|
-
@pulumi.getter
|
|
74
|
-
def name(self) -> str:
|
|
75
|
-
"""
|
|
76
|
-
Resource name associated with the resource.
|
|
77
|
-
"""
|
|
78
|
-
return pulumi.get(self, "name")
|
|
79
|
-
|
|
80
|
-
@property
|
|
81
|
-
@pulumi.getter
|
|
82
|
-
def properties(self) -> 'outputs.ResourceGuardResponse':
|
|
83
|
-
"""
|
|
84
|
-
ResourceGuardResource properties
|
|
85
|
-
"""
|
|
86
|
-
return pulumi.get(self, "properties")
|
|
87
|
-
|
|
88
|
-
@property
|
|
89
|
-
@pulumi.getter(name="systemData")
|
|
90
|
-
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
91
|
-
"""
|
|
92
|
-
Metadata pertaining to creation and last modification of the resource.
|
|
93
|
-
"""
|
|
94
|
-
return pulumi.get(self, "system_data")
|
|
95
|
-
|
|
96
|
-
@property
|
|
97
|
-
@pulumi.getter
|
|
98
|
-
def tags(self) -> Optional[Mapping[str, str]]:
|
|
99
|
-
"""
|
|
100
|
-
Resource tags.
|
|
101
|
-
"""
|
|
102
|
-
return pulumi.get(self, "tags")
|
|
103
|
-
|
|
104
|
-
@property
|
|
105
|
-
@pulumi.getter
|
|
106
|
-
def type(self) -> str:
|
|
107
|
-
"""
|
|
108
|
-
Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
|
|
109
|
-
"""
|
|
110
|
-
return pulumi.get(self, "type")
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
class AwaitableGetResourceGuardResult(GetResourceGuardResult):
|
|
114
|
-
# pylint: disable=using-constant-test
|
|
115
|
-
def __await__(self):
|
|
116
|
-
if False:
|
|
117
|
-
yield self
|
|
118
|
-
return GetResourceGuardResult(
|
|
119
|
-
e_tag=self.e_tag,
|
|
120
|
-
id=self.id,
|
|
121
|
-
location=self.location,
|
|
122
|
-
name=self.name,
|
|
123
|
-
properties=self.properties,
|
|
124
|
-
system_data=self.system_data,
|
|
125
|
-
tags=self.tags,
|
|
126
|
-
type=self.type)
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
def get_resource_guard(resource_group_name: Optional[str] = None,
|
|
130
|
-
resource_guards_name: Optional[str] = None,
|
|
131
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResourceGuardResult:
|
|
132
|
-
"""
|
|
133
|
-
Use this data source to access information about an existing resource.
|
|
134
|
-
|
|
135
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
136
|
-
:param str resource_guards_name: The name of ResourceGuard
|
|
137
|
-
"""
|
|
138
|
-
__args__ = dict()
|
|
139
|
-
__args__['resourceGroupName'] = resource_group_name
|
|
140
|
-
__args__['resourceGuardsName'] = resource_guards_name
|
|
141
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
142
|
-
__ret__ = pulumi.runtime.invoke('azure-native:dataprotection/v20230801:getResourceGuard', __args__, opts=opts, typ=GetResourceGuardResult).value
|
|
143
|
-
|
|
144
|
-
return AwaitableGetResourceGuardResult(
|
|
145
|
-
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
146
|
-
id=pulumi.get(__ret__, 'id'),
|
|
147
|
-
location=pulumi.get(__ret__, 'location'),
|
|
148
|
-
name=pulumi.get(__ret__, 'name'),
|
|
149
|
-
properties=pulumi.get(__ret__, 'properties'),
|
|
150
|
-
system_data=pulumi.get(__ret__, 'system_data'),
|
|
151
|
-
tags=pulumi.get(__ret__, 'tags'),
|
|
152
|
-
type=pulumi.get(__ret__, 'type'))
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
@_utilities.lift_output_func(get_resource_guard)
|
|
156
|
-
def get_resource_guard_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
157
|
-
resource_guards_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetResourceGuardResult]:
|
|
159
|
-
"""
|
|
160
|
-
Use this data source to access information about an existing resource.
|
|
161
|
-
|
|
162
|
-
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
163
|
-
:param str resource_guards_name: The name of ResourceGuard
|
|
164
|
-
"""
|
|
165
|
-
...
|