pulumi-azure-native 2.21.2__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,408 @@
|
|
|
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 ._enums import *
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'AadProfileResponse',
|
|
15
|
+
'ArcAgentProfileResponse',
|
|
16
|
+
'ConnectedClusterIdentityResponse',
|
|
17
|
+
'CredentialResultResponse',
|
|
18
|
+
'HybridConnectionConfigResponse',
|
|
19
|
+
'SystemDataResponse',
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
@pulumi.output_type
|
|
23
|
+
class AadProfileResponse(dict):
|
|
24
|
+
"""
|
|
25
|
+
AAD Profile specifies attributes for Azure Active Directory integration.
|
|
26
|
+
"""
|
|
27
|
+
@staticmethod
|
|
28
|
+
def __key_warning(key: str):
|
|
29
|
+
suggest = None
|
|
30
|
+
if key == "adminGroupObjectIDs":
|
|
31
|
+
suggest = "admin_group_object_ids"
|
|
32
|
+
elif key == "enableAzureRBAC":
|
|
33
|
+
suggest = "enable_azure_rbac"
|
|
34
|
+
elif key == "tenantID":
|
|
35
|
+
suggest = "tenant_id"
|
|
36
|
+
|
|
37
|
+
if suggest:
|
|
38
|
+
pulumi.log.warn(f"Key '{key}' not found in AadProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
39
|
+
|
|
40
|
+
def __getitem__(self, key: str) -> Any:
|
|
41
|
+
AadProfileResponse.__key_warning(key)
|
|
42
|
+
return super().__getitem__(key)
|
|
43
|
+
|
|
44
|
+
def get(self, key: str, default = None) -> Any:
|
|
45
|
+
AadProfileResponse.__key_warning(key)
|
|
46
|
+
return super().get(key, default)
|
|
47
|
+
|
|
48
|
+
def __init__(__self__, *,
|
|
49
|
+
admin_group_object_ids: Optional[Sequence[str]] = None,
|
|
50
|
+
enable_azure_rbac: Optional[bool] = None,
|
|
51
|
+
tenant_id: Optional[str] = None):
|
|
52
|
+
"""
|
|
53
|
+
AAD Profile specifies attributes for Azure Active Directory integration.
|
|
54
|
+
:param Sequence[str] admin_group_object_ids: The list of AAD group object IDs that will have admin role of the cluster.
|
|
55
|
+
:param bool enable_azure_rbac: Whether to enable Azure RBAC for Kubernetes authorization.
|
|
56
|
+
:param str tenant_id: The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
|
|
57
|
+
"""
|
|
58
|
+
if admin_group_object_ids is not None:
|
|
59
|
+
pulumi.set(__self__, "admin_group_object_ids", admin_group_object_ids)
|
|
60
|
+
if enable_azure_rbac is not None:
|
|
61
|
+
pulumi.set(__self__, "enable_azure_rbac", enable_azure_rbac)
|
|
62
|
+
if tenant_id is not None:
|
|
63
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="adminGroupObjectIDs")
|
|
67
|
+
def admin_group_object_ids(self) -> Optional[Sequence[str]]:
|
|
68
|
+
"""
|
|
69
|
+
The list of AAD group object IDs that will have admin role of the cluster.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "admin_group_object_ids")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="enableAzureRBAC")
|
|
75
|
+
def enable_azure_rbac(self) -> Optional[bool]:
|
|
76
|
+
"""
|
|
77
|
+
Whether to enable Azure RBAC for Kubernetes authorization.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "enable_azure_rbac")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="tenantID")
|
|
83
|
+
def tenant_id(self) -> Optional[str]:
|
|
84
|
+
"""
|
|
85
|
+
The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "tenant_id")
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
@pulumi.output_type
|
|
91
|
+
class ArcAgentProfileResponse(dict):
|
|
92
|
+
"""
|
|
93
|
+
Defines the Arc Agent properties for the clusters.
|
|
94
|
+
"""
|
|
95
|
+
@staticmethod
|
|
96
|
+
def __key_warning(key: str):
|
|
97
|
+
suggest = None
|
|
98
|
+
if key == "agentAutoUpgrade":
|
|
99
|
+
suggest = "agent_auto_upgrade"
|
|
100
|
+
elif key == "desiredAgentVersion":
|
|
101
|
+
suggest = "desired_agent_version"
|
|
102
|
+
|
|
103
|
+
if suggest:
|
|
104
|
+
pulumi.log.warn(f"Key '{key}' not found in ArcAgentProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
105
|
+
|
|
106
|
+
def __getitem__(self, key: str) -> Any:
|
|
107
|
+
ArcAgentProfileResponse.__key_warning(key)
|
|
108
|
+
return super().__getitem__(key)
|
|
109
|
+
|
|
110
|
+
def get(self, key: str, default = None) -> Any:
|
|
111
|
+
ArcAgentProfileResponse.__key_warning(key)
|
|
112
|
+
return super().get(key, default)
|
|
113
|
+
|
|
114
|
+
def __init__(__self__, *,
|
|
115
|
+
agent_auto_upgrade: Optional[str] = None,
|
|
116
|
+
desired_agent_version: Optional[str] = None):
|
|
117
|
+
"""
|
|
118
|
+
Defines the Arc Agent properties for the clusters.
|
|
119
|
+
:param str agent_auto_upgrade: Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
|
|
120
|
+
:param str desired_agent_version: Version of the Arc agents to be installed on the cluster resource
|
|
121
|
+
"""
|
|
122
|
+
if agent_auto_upgrade is None:
|
|
123
|
+
agent_auto_upgrade = 'Enabled'
|
|
124
|
+
if agent_auto_upgrade is not None:
|
|
125
|
+
pulumi.set(__self__, "agent_auto_upgrade", agent_auto_upgrade)
|
|
126
|
+
if desired_agent_version is not None:
|
|
127
|
+
pulumi.set(__self__, "desired_agent_version", desired_agent_version)
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="agentAutoUpgrade")
|
|
131
|
+
def agent_auto_upgrade(self) -> Optional[str]:
|
|
132
|
+
"""
|
|
133
|
+
Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "agent_auto_upgrade")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="desiredAgentVersion")
|
|
139
|
+
def desired_agent_version(self) -> Optional[str]:
|
|
140
|
+
"""
|
|
141
|
+
Version of the Arc agents to be installed on the cluster resource
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "desired_agent_version")
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
@pulumi.output_type
|
|
147
|
+
class ConnectedClusterIdentityResponse(dict):
|
|
148
|
+
"""
|
|
149
|
+
Identity for the connected cluster.
|
|
150
|
+
"""
|
|
151
|
+
@staticmethod
|
|
152
|
+
def __key_warning(key: str):
|
|
153
|
+
suggest = None
|
|
154
|
+
if key == "principalId":
|
|
155
|
+
suggest = "principal_id"
|
|
156
|
+
elif key == "tenantId":
|
|
157
|
+
suggest = "tenant_id"
|
|
158
|
+
|
|
159
|
+
if suggest:
|
|
160
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectedClusterIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
161
|
+
|
|
162
|
+
def __getitem__(self, key: str) -> Any:
|
|
163
|
+
ConnectedClusterIdentityResponse.__key_warning(key)
|
|
164
|
+
return super().__getitem__(key)
|
|
165
|
+
|
|
166
|
+
def get(self, key: str, default = None) -> Any:
|
|
167
|
+
ConnectedClusterIdentityResponse.__key_warning(key)
|
|
168
|
+
return super().get(key, default)
|
|
169
|
+
|
|
170
|
+
def __init__(__self__, *,
|
|
171
|
+
principal_id: str,
|
|
172
|
+
tenant_id: str,
|
|
173
|
+
type: Optional[str] = None):
|
|
174
|
+
"""
|
|
175
|
+
Identity for the connected cluster.
|
|
176
|
+
:param str principal_id: The principal id of connected cluster identity. This property will only be provided for a system assigned identity.
|
|
177
|
+
:param str tenant_id: The tenant id associated with the connected cluster. This property will only be provided for a system assigned identity.
|
|
178
|
+
:param str type: The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
|
|
179
|
+
"""
|
|
180
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
181
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
182
|
+
if type is None:
|
|
183
|
+
type = 'SystemAssigned'
|
|
184
|
+
pulumi.set(__self__, "type", type)
|
|
185
|
+
|
|
186
|
+
@property
|
|
187
|
+
@pulumi.getter(name="principalId")
|
|
188
|
+
def principal_id(self) -> str:
|
|
189
|
+
"""
|
|
190
|
+
The principal id of connected cluster identity. This property will only be provided for a system assigned identity.
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "principal_id")
|
|
193
|
+
|
|
194
|
+
@property
|
|
195
|
+
@pulumi.getter(name="tenantId")
|
|
196
|
+
def tenant_id(self) -> str:
|
|
197
|
+
"""
|
|
198
|
+
The tenant id associated with the connected cluster. This property will only be provided for a system assigned identity.
|
|
199
|
+
"""
|
|
200
|
+
return pulumi.get(self, "tenant_id")
|
|
201
|
+
|
|
202
|
+
@property
|
|
203
|
+
@pulumi.getter
|
|
204
|
+
def type(self) -> str:
|
|
205
|
+
"""
|
|
206
|
+
The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "type")
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
@pulumi.output_type
|
|
212
|
+
class CredentialResultResponse(dict):
|
|
213
|
+
"""
|
|
214
|
+
The credential result response.
|
|
215
|
+
"""
|
|
216
|
+
def __init__(__self__, *,
|
|
217
|
+
name: str,
|
|
218
|
+
value: str):
|
|
219
|
+
"""
|
|
220
|
+
The credential result response.
|
|
221
|
+
:param str name: The name of the credential.
|
|
222
|
+
:param str value: Base64-encoded Kubernetes configuration file.
|
|
223
|
+
"""
|
|
224
|
+
pulumi.set(__self__, "name", name)
|
|
225
|
+
pulumi.set(__self__, "value", value)
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter
|
|
229
|
+
def name(self) -> str:
|
|
230
|
+
"""
|
|
231
|
+
The name of the credential.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "name")
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
@pulumi.getter
|
|
237
|
+
def value(self) -> str:
|
|
238
|
+
"""
|
|
239
|
+
Base64-encoded Kubernetes configuration file.
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "value")
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
@pulumi.output_type
|
|
245
|
+
class HybridConnectionConfigResponse(dict):
|
|
246
|
+
"""
|
|
247
|
+
Contains the REP (rendezvous endpoint) and “Sender” access token.
|
|
248
|
+
"""
|
|
249
|
+
def __init__(__self__, *,
|
|
250
|
+
expiration_time: float,
|
|
251
|
+
hybrid_connection_name: str,
|
|
252
|
+
relay: str,
|
|
253
|
+
token: str):
|
|
254
|
+
"""
|
|
255
|
+
Contains the REP (rendezvous endpoint) and “Sender” access token.
|
|
256
|
+
:param float expiration_time: Timestamp when this token will be expired.
|
|
257
|
+
:param str hybrid_connection_name: Name of the connection
|
|
258
|
+
:param str relay: Name of the relay.
|
|
259
|
+
:param str token: Sender access token
|
|
260
|
+
"""
|
|
261
|
+
pulumi.set(__self__, "expiration_time", expiration_time)
|
|
262
|
+
pulumi.set(__self__, "hybrid_connection_name", hybrid_connection_name)
|
|
263
|
+
pulumi.set(__self__, "relay", relay)
|
|
264
|
+
pulumi.set(__self__, "token", token)
|
|
265
|
+
|
|
266
|
+
@property
|
|
267
|
+
@pulumi.getter(name="expirationTime")
|
|
268
|
+
def expiration_time(self) -> float:
|
|
269
|
+
"""
|
|
270
|
+
Timestamp when this token will be expired.
|
|
271
|
+
"""
|
|
272
|
+
return pulumi.get(self, "expiration_time")
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
@pulumi.getter(name="hybridConnectionName")
|
|
276
|
+
def hybrid_connection_name(self) -> str:
|
|
277
|
+
"""
|
|
278
|
+
Name of the connection
|
|
279
|
+
"""
|
|
280
|
+
return pulumi.get(self, "hybrid_connection_name")
|
|
281
|
+
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter
|
|
284
|
+
def relay(self) -> str:
|
|
285
|
+
"""
|
|
286
|
+
Name of the relay.
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "relay")
|
|
289
|
+
|
|
290
|
+
@property
|
|
291
|
+
@pulumi.getter
|
|
292
|
+
def token(self) -> str:
|
|
293
|
+
"""
|
|
294
|
+
Sender access token
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "token")
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
@pulumi.output_type
|
|
300
|
+
class SystemDataResponse(dict):
|
|
301
|
+
"""
|
|
302
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
303
|
+
"""
|
|
304
|
+
@staticmethod
|
|
305
|
+
def __key_warning(key: str):
|
|
306
|
+
suggest = None
|
|
307
|
+
if key == "createdAt":
|
|
308
|
+
suggest = "created_at"
|
|
309
|
+
elif key == "createdBy":
|
|
310
|
+
suggest = "created_by"
|
|
311
|
+
elif key == "createdByType":
|
|
312
|
+
suggest = "created_by_type"
|
|
313
|
+
elif key == "lastModifiedAt":
|
|
314
|
+
suggest = "last_modified_at"
|
|
315
|
+
elif key == "lastModifiedBy":
|
|
316
|
+
suggest = "last_modified_by"
|
|
317
|
+
elif key == "lastModifiedByType":
|
|
318
|
+
suggest = "last_modified_by_type"
|
|
319
|
+
|
|
320
|
+
if suggest:
|
|
321
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
322
|
+
|
|
323
|
+
def __getitem__(self, key: str) -> Any:
|
|
324
|
+
SystemDataResponse.__key_warning(key)
|
|
325
|
+
return super().__getitem__(key)
|
|
326
|
+
|
|
327
|
+
def get(self, key: str, default = None) -> Any:
|
|
328
|
+
SystemDataResponse.__key_warning(key)
|
|
329
|
+
return super().get(key, default)
|
|
330
|
+
|
|
331
|
+
def __init__(__self__, *,
|
|
332
|
+
created_at: Optional[str] = None,
|
|
333
|
+
created_by: Optional[str] = None,
|
|
334
|
+
created_by_type: Optional[str] = None,
|
|
335
|
+
last_modified_at: Optional[str] = None,
|
|
336
|
+
last_modified_by: Optional[str] = None,
|
|
337
|
+
last_modified_by_type: Optional[str] = None):
|
|
338
|
+
"""
|
|
339
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
340
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
341
|
+
:param str created_by: The identity that created the resource.
|
|
342
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
343
|
+
:param str last_modified_at: The timestamp of resource modification (UTC).
|
|
344
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
345
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
346
|
+
"""
|
|
347
|
+
if created_at is not None:
|
|
348
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
349
|
+
if created_by is not None:
|
|
350
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
351
|
+
if created_by_type is not None:
|
|
352
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
353
|
+
if last_modified_at is not None:
|
|
354
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
355
|
+
if last_modified_by is not None:
|
|
356
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
357
|
+
if last_modified_by_type is not None:
|
|
358
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
359
|
+
|
|
360
|
+
@property
|
|
361
|
+
@pulumi.getter(name="createdAt")
|
|
362
|
+
def created_at(self) -> Optional[str]:
|
|
363
|
+
"""
|
|
364
|
+
The timestamp of resource creation (UTC).
|
|
365
|
+
"""
|
|
366
|
+
return pulumi.get(self, "created_at")
|
|
367
|
+
|
|
368
|
+
@property
|
|
369
|
+
@pulumi.getter(name="createdBy")
|
|
370
|
+
def created_by(self) -> Optional[str]:
|
|
371
|
+
"""
|
|
372
|
+
The identity that created the resource.
|
|
373
|
+
"""
|
|
374
|
+
return pulumi.get(self, "created_by")
|
|
375
|
+
|
|
376
|
+
@property
|
|
377
|
+
@pulumi.getter(name="createdByType")
|
|
378
|
+
def created_by_type(self) -> Optional[str]:
|
|
379
|
+
"""
|
|
380
|
+
The type of identity that created the resource.
|
|
381
|
+
"""
|
|
382
|
+
return pulumi.get(self, "created_by_type")
|
|
383
|
+
|
|
384
|
+
@property
|
|
385
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
386
|
+
def last_modified_at(self) -> Optional[str]:
|
|
387
|
+
"""
|
|
388
|
+
The timestamp of resource modification (UTC).
|
|
389
|
+
"""
|
|
390
|
+
return pulumi.get(self, "last_modified_at")
|
|
391
|
+
|
|
392
|
+
@property
|
|
393
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
394
|
+
def last_modified_by(self) -> Optional[str]:
|
|
395
|
+
"""
|
|
396
|
+
The identity that last modified the resource.
|
|
397
|
+
"""
|
|
398
|
+
return pulumi.get(self, "last_modified_by")
|
|
399
|
+
|
|
400
|
+
@property
|
|
401
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
402
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
403
|
+
"""
|
|
404
|
+
The type of identity that last modified the resource.
|
|
405
|
+
"""
|
|
406
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
407
|
+
|
|
408
|
+
|
|
@@ -27,8 +27,11 @@ if typing.TYPE_CHECKING:
|
|
|
27
27
|
v20230401 = __v20230401
|
|
28
28
|
import pulumi_azure_native.maintenance.v20230901preview as __v20230901preview
|
|
29
29
|
v20230901preview = __v20230901preview
|
|
30
|
+
import pulumi_azure_native.maintenance.v20231001preview as __v20231001preview
|
|
31
|
+
v20231001preview = __v20231001preview
|
|
30
32
|
else:
|
|
31
33
|
v20221101preview = _utilities.lazy_import('pulumi_azure_native.maintenance.v20221101preview')
|
|
32
34
|
v20230401 = _utilities.lazy_import('pulumi_azure_native.maintenance.v20230401')
|
|
33
35
|
v20230901preview = _utilities.lazy_import('pulumi_azure_native.maintenance.v20230901preview')
|
|
36
|
+
v20231001preview = _utilities.lazy_import('pulumi_azure_native.maintenance.v20231001preview')
|
|
34
37
|
|
|
@@ -162,7 +162,7 @@ class ConfigurationAssignment(pulumi.CustomResource):
|
|
|
162
162
|
Configuration Assignment
|
|
163
163
|
Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2021-04-01-preview.
|
|
164
164
|
|
|
165
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
165
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
166
166
|
|
|
167
167
|
:param str resource_name: The name of the resource.
|
|
168
168
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -185,7 +185,7 @@ class ConfigurationAssignment(pulumi.CustomResource):
|
|
|
185
185
|
Configuration Assignment
|
|
186
186
|
Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2021-04-01-preview.
|
|
187
187
|
|
|
188
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
188
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
189
189
|
|
|
190
190
|
:param str resource_name: The name of the resource.
|
|
191
191
|
:param ConfigurationAssignmentArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -238,7 +238,7 @@ class ConfigurationAssignment(pulumi.CustomResource):
|
|
|
238
238
|
__props__.__dict__["name"] = None
|
|
239
239
|
__props__.__dict__["system_data"] = None
|
|
240
240
|
__props__.__dict__["type"] = None
|
|
241
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20210401preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20210901preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20220701preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20221101preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignment")])
|
|
241
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20210401preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20210901preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20220701preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20221101preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignment"), pulumi.Alias(type_="azure-native:maintenance/v20231001preview:ConfigurationAssignment")])
|
|
242
242
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
243
243
|
super(ConfigurationAssignment, __self__).__init__(
|
|
244
244
|
'azure-native:maintenance:ConfigurationAssignment',
|
|
@@ -194,7 +194,7 @@ class ConfigurationAssignmentParent(pulumi.CustomResource):
|
|
|
194
194
|
Configuration Assignment
|
|
195
195
|
Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2021-04-01-preview.
|
|
196
196
|
|
|
197
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
197
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
198
198
|
|
|
199
199
|
:param str resource_name: The name of the resource.
|
|
200
200
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -219,7 +219,7 @@ class ConfigurationAssignmentParent(pulumi.CustomResource):
|
|
|
219
219
|
Configuration Assignment
|
|
220
220
|
Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2021-04-01-preview.
|
|
221
221
|
|
|
222
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
222
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
223
223
|
|
|
224
224
|
:param str resource_name: The name of the resource.
|
|
225
225
|
:param ConfigurationAssignmentParentArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -280,7 +280,7 @@ class ConfigurationAssignmentParent(pulumi.CustomResource):
|
|
|
280
280
|
__props__.__dict__["name"] = None
|
|
281
281
|
__props__.__dict__["system_data"] = None
|
|
282
282
|
__props__.__dict__["type"] = None
|
|
283
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20210401preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20210901preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20220701preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20221101preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignmentParent")])
|
|
283
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20210401preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20210901preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20220701preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20221101preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignmentParent"), pulumi.Alias(type_="azure-native:maintenance/v20231001preview:ConfigurationAssignmentParent")])
|
|
284
284
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
285
285
|
super(ConfigurationAssignmentParent, __self__).__init__(
|
|
286
286
|
'azure-native:maintenance:ConfigurationAssignmentParent',
|
|
@@ -133,7 +133,7 @@ class ConfigurationAssignmentsForResourceGroup(pulumi.CustomResource):
|
|
|
133
133
|
Configuration Assignment
|
|
134
134
|
Azure REST API version: 2023-04-01.
|
|
135
135
|
|
|
136
|
-
Other available API versions: 2023-09-01-preview.
|
|
136
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
137
137
|
|
|
138
138
|
:param str resource_name: The name of the resource.
|
|
139
139
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -154,7 +154,7 @@ class ConfigurationAssignmentsForResourceGroup(pulumi.CustomResource):
|
|
|
154
154
|
Configuration Assignment
|
|
155
155
|
Azure REST API version: 2023-04-01.
|
|
156
156
|
|
|
157
|
-
Other available API versions: 2023-09-01-preview.
|
|
157
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
158
158
|
|
|
159
159
|
:param str resource_name: The name of the resource.
|
|
160
160
|
:param ConfigurationAssignmentsForResourceGroupArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -197,7 +197,7 @@ class ConfigurationAssignmentsForResourceGroup(pulumi.CustomResource):
|
|
|
197
197
|
__props__.__dict__["name"] = None
|
|
198
198
|
__props__.__dict__["system_data"] = None
|
|
199
199
|
__props__.__dict__["type"] = None
|
|
200
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignmentsForResourceGroup"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignmentsForResourceGroup")])
|
|
200
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignmentsForResourceGroup"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignmentsForResourceGroup"), pulumi.Alias(type_="azure-native:maintenance/v20231001preview:ConfigurationAssignmentsForResourceGroup")])
|
|
201
201
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
202
202
|
super(ConfigurationAssignmentsForResourceGroup, __self__).__init__(
|
|
203
203
|
'azure-native:maintenance:ConfigurationAssignmentsForResourceGroup',
|
|
@@ -117,7 +117,7 @@ class ConfigurationAssignmentsForSubscription(pulumi.CustomResource):
|
|
|
117
117
|
Configuration Assignment
|
|
118
118
|
Azure REST API version: 2023-04-01.
|
|
119
119
|
|
|
120
|
-
Other available API versions: 2023-09-01-preview.
|
|
120
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
121
121
|
|
|
122
122
|
:param str resource_name: The name of the resource.
|
|
123
123
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -137,7 +137,7 @@ class ConfigurationAssignmentsForSubscription(pulumi.CustomResource):
|
|
|
137
137
|
Configuration Assignment
|
|
138
138
|
Azure REST API version: 2023-04-01.
|
|
139
139
|
|
|
140
|
-
Other available API versions: 2023-09-01-preview.
|
|
140
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
141
141
|
|
|
142
142
|
:param str resource_name: The name of the resource.
|
|
143
143
|
:param ConfigurationAssignmentsForSubscriptionArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -176,7 +176,7 @@ class ConfigurationAssignmentsForSubscription(pulumi.CustomResource):
|
|
|
176
176
|
__props__.__dict__["name"] = None
|
|
177
177
|
__props__.__dict__["system_data"] = None
|
|
178
178
|
__props__.__dict__["type"] = None
|
|
179
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignmentsForSubscription"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignmentsForSubscription")])
|
|
179
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20230401:ConfigurationAssignmentsForSubscription"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:ConfigurationAssignmentsForSubscription"), pulumi.Alias(type_="azure-native:maintenance/v20231001preview:ConfigurationAssignmentsForSubscription")])
|
|
180
180
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
181
181
|
super(ConfigurationAssignmentsForSubscription, __self__).__init__(
|
|
182
182
|
'azure-native:maintenance:ConfigurationAssignmentsForSubscription',
|
|
@@ -127,7 +127,7 @@ def get_configuration_assignment(configuration_assignment_name: Optional[str] =
|
|
|
127
127
|
Get configuration for resource.
|
|
128
128
|
Azure REST API version: 2022-11-01-preview.
|
|
129
129
|
|
|
130
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
130
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
131
131
|
|
|
132
132
|
|
|
133
133
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -166,7 +166,7 @@ def get_configuration_assignment_output(configuration_assignment_name: Optional[
|
|
|
166
166
|
Get configuration for resource.
|
|
167
167
|
Azure REST API version: 2022-11-01-preview.
|
|
168
168
|
|
|
169
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
169
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
170
170
|
|
|
171
171
|
|
|
172
172
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -129,7 +129,7 @@ def get_configuration_assignment_parent(configuration_assignment_name: Optional[
|
|
|
129
129
|
Get configuration for resource.
|
|
130
130
|
Azure REST API version: 2022-11-01-preview.
|
|
131
131
|
|
|
132
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
132
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
133
133
|
|
|
134
134
|
|
|
135
135
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -174,7 +174,7 @@ def get_configuration_assignment_parent_output(configuration_assignment_name: Op
|
|
|
174
174
|
Get configuration for resource.
|
|
175
175
|
Azure REST API version: 2022-11-01-preview.
|
|
176
176
|
|
|
177
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
177
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
178
178
|
|
|
179
179
|
|
|
180
180
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -136,7 +136,7 @@ def get_configuration_assignments_for_resource_group(configuration_assignment_na
|
|
|
136
136
|
Get configuration assignment for resource..
|
|
137
137
|
Azure REST API version: 2023-04-01.
|
|
138
138
|
|
|
139
|
-
Other available API versions: 2023-09-01-preview.
|
|
139
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
140
140
|
|
|
141
141
|
|
|
142
142
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -167,7 +167,7 @@ def get_configuration_assignments_for_resource_group_output(configuration_assign
|
|
|
167
167
|
Get configuration assignment for resource..
|
|
168
168
|
Azure REST API version: 2023-04-01.
|
|
169
169
|
|
|
170
|
-
Other available API versions: 2023-09-01-preview.
|
|
170
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -135,7 +135,7 @@ def get_configuration_assignments_for_subscription(configuration_assignment_name
|
|
|
135
135
|
Get configuration assignment for resource..
|
|
136
136
|
Azure REST API version: 2023-04-01.
|
|
137
137
|
|
|
138
|
-
Other available API versions: 2023-09-01-preview.
|
|
138
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
139
139
|
|
|
140
140
|
|
|
141
141
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -163,7 +163,7 @@ def get_configuration_assignments_for_subscription_output(configuration_assignme
|
|
|
163
163
|
Get configuration assignment for resource..
|
|
164
164
|
Azure REST API version: 2023-04-01.
|
|
165
165
|
|
|
166
|
-
Other available API versions: 2023-09-01-preview.
|
|
166
|
+
Other available API versions: 2023-09-01-preview, 2023-10-01-preview.
|
|
167
167
|
|
|
168
168
|
|
|
169
169
|
:param str configuration_assignment_name: Configuration assignment name
|
|
@@ -244,7 +244,7 @@ def get_maintenance_configuration(resource_group_name: Optional[str] = None,
|
|
|
244
244
|
Maintenance configuration record type
|
|
245
245
|
Azure REST API version: 2022-11-01-preview.
|
|
246
246
|
|
|
247
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
247
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
248
248
|
|
|
249
249
|
|
|
250
250
|
:param str resource_group_name: Resource Group Name
|
|
@@ -284,7 +284,7 @@ def get_maintenance_configuration_output(resource_group_name: Optional[pulumi.In
|
|
|
284
284
|
Maintenance configuration record type
|
|
285
285
|
Azure REST API version: 2022-11-01-preview.
|
|
286
286
|
|
|
287
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
287
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
288
288
|
|
|
289
289
|
|
|
290
290
|
:param str resource_group_name: Resource Group Name
|
|
@@ -286,7 +286,7 @@ class MaintenanceConfiguration(pulumi.CustomResource):
|
|
|
286
286
|
Maintenance configuration record type
|
|
287
287
|
Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2020-04-01.
|
|
288
288
|
|
|
289
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
289
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
290
290
|
|
|
291
291
|
:param str resource_name: The name of the resource.
|
|
292
292
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -316,7 +316,7 @@ class MaintenanceConfiguration(pulumi.CustomResource):
|
|
|
316
316
|
Maintenance configuration record type
|
|
317
317
|
Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2020-04-01.
|
|
318
318
|
|
|
319
|
-
Other available API versions: 2023-04-01, 2023-09-01-preview.
|
|
319
|
+
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
|
|
320
320
|
|
|
321
321
|
:param str resource_name: The name of the resource.
|
|
322
322
|
:param MaintenanceConfigurationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -377,7 +377,7 @@ class MaintenanceConfiguration(pulumi.CustomResource):
|
|
|
377
377
|
__props__.__dict__["name"] = None
|
|
378
378
|
__props__.__dict__["system_data"] = None
|
|
379
379
|
__props__.__dict__["type"] = None
|
|
380
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20180601preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20200401:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20200701preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20210401preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20210501:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20210901preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20220701preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20221101preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20230401:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:MaintenanceConfiguration")])
|
|
380
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:maintenance/v20180601preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20200401:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20200701preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20210401preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20210501:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20210901preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20220701preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20221101preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20230401:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20230901preview:MaintenanceConfiguration"), pulumi.Alias(type_="azure-native:maintenance/v20231001preview:MaintenanceConfiguration")])
|
|
381
381
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
382
382
|
super(MaintenanceConfiguration, __self__).__init__(
|
|
383
383
|
'azure-native:maintenance:MaintenanceConfiguration',
|