pulumi-azure-native 2.21.2a1702068757__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2a1702068757.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,699 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
'ApiKeyResponse',
|
|
16
|
+
'DataPlaneProxyPropertiesResponse',
|
|
17
|
+
'EncryptionPropertiesResponse',
|
|
18
|
+
'KeyVaultPropertiesResponse',
|
|
19
|
+
'PrivateEndpointConnectionReferenceResponse',
|
|
20
|
+
'PrivateEndpointResponse',
|
|
21
|
+
'PrivateLinkServiceConnectionStateResponse',
|
|
22
|
+
'ResourceIdentityResponse',
|
|
23
|
+
'SkuResponse',
|
|
24
|
+
'SystemDataResponse',
|
|
25
|
+
'UserIdentityResponse',
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
@pulumi.output_type
|
|
29
|
+
class ApiKeyResponse(dict):
|
|
30
|
+
"""
|
|
31
|
+
An API key used for authenticating with a configuration store endpoint.
|
|
32
|
+
"""
|
|
33
|
+
def __init__(__self__, *,
|
|
34
|
+
connection_string: str,
|
|
35
|
+
id: str,
|
|
36
|
+
last_modified: str,
|
|
37
|
+
name: str,
|
|
38
|
+
read_only: bool,
|
|
39
|
+
value: str):
|
|
40
|
+
"""
|
|
41
|
+
An API key used for authenticating with a configuration store endpoint.
|
|
42
|
+
:param str connection_string: A connection string that can be used by supporting clients for authentication.
|
|
43
|
+
:param str id: The key ID.
|
|
44
|
+
:param str last_modified: The last time any of the key's properties were modified.
|
|
45
|
+
:param str name: A name for the key describing its usage.
|
|
46
|
+
:param bool read_only: Whether this key can only be used for read operations.
|
|
47
|
+
:param str value: The value of the key that is used for authentication purposes.
|
|
48
|
+
"""
|
|
49
|
+
pulumi.set(__self__, "connection_string", connection_string)
|
|
50
|
+
pulumi.set(__self__, "id", id)
|
|
51
|
+
pulumi.set(__self__, "last_modified", last_modified)
|
|
52
|
+
pulumi.set(__self__, "name", name)
|
|
53
|
+
pulumi.set(__self__, "read_only", read_only)
|
|
54
|
+
pulumi.set(__self__, "value", value)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="connectionString")
|
|
58
|
+
def connection_string(self) -> str:
|
|
59
|
+
"""
|
|
60
|
+
A connection string that can be used by supporting clients for authentication.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "connection_string")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def id(self) -> str:
|
|
67
|
+
"""
|
|
68
|
+
The key ID.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "id")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="lastModified")
|
|
74
|
+
def last_modified(self) -> str:
|
|
75
|
+
"""
|
|
76
|
+
The last time any of the key's properties were modified.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "last_modified")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def name(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
A name for the key describing its usage.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "name")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter(name="readOnly")
|
|
90
|
+
def read_only(self) -> bool:
|
|
91
|
+
"""
|
|
92
|
+
Whether this key can only be used for read operations.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "read_only")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter
|
|
98
|
+
def value(self) -> str:
|
|
99
|
+
"""
|
|
100
|
+
The value of the key that is used for authentication purposes.
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "value")
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
@pulumi.output_type
|
|
106
|
+
class DataPlaneProxyPropertiesResponse(dict):
|
|
107
|
+
"""
|
|
108
|
+
The data plane proxy settings for a configuration store.
|
|
109
|
+
"""
|
|
110
|
+
@staticmethod
|
|
111
|
+
def __key_warning(key: str):
|
|
112
|
+
suggest = None
|
|
113
|
+
if key == "authenticationMode":
|
|
114
|
+
suggest = "authentication_mode"
|
|
115
|
+
elif key == "privateLinkDelegation":
|
|
116
|
+
suggest = "private_link_delegation"
|
|
117
|
+
|
|
118
|
+
if suggest:
|
|
119
|
+
pulumi.log.warn(f"Key '{key}' not found in DataPlaneProxyPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
120
|
+
|
|
121
|
+
def __getitem__(self, key: str) -> Any:
|
|
122
|
+
DataPlaneProxyPropertiesResponse.__key_warning(key)
|
|
123
|
+
return super().__getitem__(key)
|
|
124
|
+
|
|
125
|
+
def get(self, key: str, default = None) -> Any:
|
|
126
|
+
DataPlaneProxyPropertiesResponse.__key_warning(key)
|
|
127
|
+
return super().get(key, default)
|
|
128
|
+
|
|
129
|
+
def __init__(__self__, *,
|
|
130
|
+
authentication_mode: Optional[str] = None,
|
|
131
|
+
private_link_delegation: Optional[str] = None):
|
|
132
|
+
"""
|
|
133
|
+
The data plane proxy settings for a configuration store.
|
|
134
|
+
:param str authentication_mode: The data plane proxy authentication mode. This property manages the authentication mode of request to the data plane resources.
|
|
135
|
+
:param str private_link_delegation: The data plane proxy private link delegation. This property manages if a request from delegated ARM private link is allowed when the data plane resource requires private link.
|
|
136
|
+
"""
|
|
137
|
+
if authentication_mode is not None:
|
|
138
|
+
pulumi.set(__self__, "authentication_mode", authentication_mode)
|
|
139
|
+
if private_link_delegation is not None:
|
|
140
|
+
pulumi.set(__self__, "private_link_delegation", private_link_delegation)
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
@pulumi.getter(name="authenticationMode")
|
|
144
|
+
def authentication_mode(self) -> Optional[str]:
|
|
145
|
+
"""
|
|
146
|
+
The data plane proxy authentication mode. This property manages the authentication mode of request to the data plane resources.
|
|
147
|
+
"""
|
|
148
|
+
return pulumi.get(self, "authentication_mode")
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
@pulumi.getter(name="privateLinkDelegation")
|
|
152
|
+
def private_link_delegation(self) -> Optional[str]:
|
|
153
|
+
"""
|
|
154
|
+
The data plane proxy private link delegation. This property manages if a request from delegated ARM private link is allowed when the data plane resource requires private link.
|
|
155
|
+
"""
|
|
156
|
+
return pulumi.get(self, "private_link_delegation")
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
@pulumi.output_type
|
|
160
|
+
class EncryptionPropertiesResponse(dict):
|
|
161
|
+
"""
|
|
162
|
+
The encryption settings for a configuration store.
|
|
163
|
+
"""
|
|
164
|
+
@staticmethod
|
|
165
|
+
def __key_warning(key: str):
|
|
166
|
+
suggest = None
|
|
167
|
+
if key == "keyVaultProperties":
|
|
168
|
+
suggest = "key_vault_properties"
|
|
169
|
+
|
|
170
|
+
if suggest:
|
|
171
|
+
pulumi.log.warn(f"Key '{key}' not found in EncryptionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
172
|
+
|
|
173
|
+
def __getitem__(self, key: str) -> Any:
|
|
174
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
175
|
+
return super().__getitem__(key)
|
|
176
|
+
|
|
177
|
+
def get(self, key: str, default = None) -> Any:
|
|
178
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
179
|
+
return super().get(key, default)
|
|
180
|
+
|
|
181
|
+
def __init__(__self__, *,
|
|
182
|
+
key_vault_properties: Optional['outputs.KeyVaultPropertiesResponse'] = None):
|
|
183
|
+
"""
|
|
184
|
+
The encryption settings for a configuration store.
|
|
185
|
+
:param 'KeyVaultPropertiesResponse' key_vault_properties: Key vault properties.
|
|
186
|
+
"""
|
|
187
|
+
if key_vault_properties is not None:
|
|
188
|
+
pulumi.set(__self__, "key_vault_properties", key_vault_properties)
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter(name="keyVaultProperties")
|
|
192
|
+
def key_vault_properties(self) -> Optional['outputs.KeyVaultPropertiesResponse']:
|
|
193
|
+
"""
|
|
194
|
+
Key vault properties.
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "key_vault_properties")
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
@pulumi.output_type
|
|
200
|
+
class KeyVaultPropertiesResponse(dict):
|
|
201
|
+
"""
|
|
202
|
+
Settings concerning key vault encryption for a configuration store.
|
|
203
|
+
"""
|
|
204
|
+
@staticmethod
|
|
205
|
+
def __key_warning(key: str):
|
|
206
|
+
suggest = None
|
|
207
|
+
if key == "identityClientId":
|
|
208
|
+
suggest = "identity_client_id"
|
|
209
|
+
elif key == "keyIdentifier":
|
|
210
|
+
suggest = "key_identifier"
|
|
211
|
+
|
|
212
|
+
if suggest:
|
|
213
|
+
pulumi.log.warn(f"Key '{key}' not found in KeyVaultPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
214
|
+
|
|
215
|
+
def __getitem__(self, key: str) -> Any:
|
|
216
|
+
KeyVaultPropertiesResponse.__key_warning(key)
|
|
217
|
+
return super().__getitem__(key)
|
|
218
|
+
|
|
219
|
+
def get(self, key: str, default = None) -> Any:
|
|
220
|
+
KeyVaultPropertiesResponse.__key_warning(key)
|
|
221
|
+
return super().get(key, default)
|
|
222
|
+
|
|
223
|
+
def __init__(__self__, *,
|
|
224
|
+
identity_client_id: Optional[str] = None,
|
|
225
|
+
key_identifier: Optional[str] = None):
|
|
226
|
+
"""
|
|
227
|
+
Settings concerning key vault encryption for a configuration store.
|
|
228
|
+
:param str identity_client_id: The client id of the identity which will be used to access key vault.
|
|
229
|
+
:param str key_identifier: The URI of the key vault key used to encrypt data.
|
|
230
|
+
"""
|
|
231
|
+
if identity_client_id is not None:
|
|
232
|
+
pulumi.set(__self__, "identity_client_id", identity_client_id)
|
|
233
|
+
if key_identifier is not None:
|
|
234
|
+
pulumi.set(__self__, "key_identifier", key_identifier)
|
|
235
|
+
|
|
236
|
+
@property
|
|
237
|
+
@pulumi.getter(name="identityClientId")
|
|
238
|
+
def identity_client_id(self) -> Optional[str]:
|
|
239
|
+
"""
|
|
240
|
+
The client id of the identity which will be used to access key vault.
|
|
241
|
+
"""
|
|
242
|
+
return pulumi.get(self, "identity_client_id")
|
|
243
|
+
|
|
244
|
+
@property
|
|
245
|
+
@pulumi.getter(name="keyIdentifier")
|
|
246
|
+
def key_identifier(self) -> Optional[str]:
|
|
247
|
+
"""
|
|
248
|
+
The URI of the key vault key used to encrypt data.
|
|
249
|
+
"""
|
|
250
|
+
return pulumi.get(self, "key_identifier")
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
@pulumi.output_type
|
|
254
|
+
class PrivateEndpointConnectionReferenceResponse(dict):
|
|
255
|
+
"""
|
|
256
|
+
A reference to a related private endpoint connection.
|
|
257
|
+
"""
|
|
258
|
+
@staticmethod
|
|
259
|
+
def __key_warning(key: str):
|
|
260
|
+
suggest = None
|
|
261
|
+
if key == "privateLinkServiceConnectionState":
|
|
262
|
+
suggest = "private_link_service_connection_state"
|
|
263
|
+
elif key == "provisioningState":
|
|
264
|
+
suggest = "provisioning_state"
|
|
265
|
+
elif key == "privateEndpoint":
|
|
266
|
+
suggest = "private_endpoint"
|
|
267
|
+
|
|
268
|
+
if suggest:
|
|
269
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionReferenceResponse. Access the value via the '{suggest}' property getter instead.")
|
|
270
|
+
|
|
271
|
+
def __getitem__(self, key: str) -> Any:
|
|
272
|
+
PrivateEndpointConnectionReferenceResponse.__key_warning(key)
|
|
273
|
+
return super().__getitem__(key)
|
|
274
|
+
|
|
275
|
+
def get(self, key: str, default = None) -> Any:
|
|
276
|
+
PrivateEndpointConnectionReferenceResponse.__key_warning(key)
|
|
277
|
+
return super().get(key, default)
|
|
278
|
+
|
|
279
|
+
def __init__(__self__, *,
|
|
280
|
+
id: str,
|
|
281
|
+
name: str,
|
|
282
|
+
private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
|
|
283
|
+
provisioning_state: str,
|
|
284
|
+
type: str,
|
|
285
|
+
private_endpoint: Optional['outputs.PrivateEndpointResponse'] = None):
|
|
286
|
+
"""
|
|
287
|
+
A reference to a related private endpoint connection.
|
|
288
|
+
:param str id: The resource ID.
|
|
289
|
+
:param str name: The name of the resource.
|
|
290
|
+
:param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
291
|
+
:param str provisioning_state: The provisioning status of the private endpoint connection.
|
|
292
|
+
:param str type: The type of the resource.
|
|
293
|
+
:param 'PrivateEndpointResponse' private_endpoint: The resource of private endpoint.
|
|
294
|
+
"""
|
|
295
|
+
pulumi.set(__self__, "id", id)
|
|
296
|
+
pulumi.set(__self__, "name", name)
|
|
297
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
298
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
299
|
+
pulumi.set(__self__, "type", type)
|
|
300
|
+
if private_endpoint is not None:
|
|
301
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
302
|
+
|
|
303
|
+
@property
|
|
304
|
+
@pulumi.getter
|
|
305
|
+
def id(self) -> str:
|
|
306
|
+
"""
|
|
307
|
+
The resource ID.
|
|
308
|
+
"""
|
|
309
|
+
return pulumi.get(self, "id")
|
|
310
|
+
|
|
311
|
+
@property
|
|
312
|
+
@pulumi.getter
|
|
313
|
+
def name(self) -> str:
|
|
314
|
+
"""
|
|
315
|
+
The name of the resource.
|
|
316
|
+
"""
|
|
317
|
+
return pulumi.get(self, "name")
|
|
318
|
+
|
|
319
|
+
@property
|
|
320
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
321
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
322
|
+
"""
|
|
323
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
324
|
+
"""
|
|
325
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
326
|
+
|
|
327
|
+
@property
|
|
328
|
+
@pulumi.getter(name="provisioningState")
|
|
329
|
+
def provisioning_state(self) -> str:
|
|
330
|
+
"""
|
|
331
|
+
The provisioning status of the private endpoint connection.
|
|
332
|
+
"""
|
|
333
|
+
return pulumi.get(self, "provisioning_state")
|
|
334
|
+
|
|
335
|
+
@property
|
|
336
|
+
@pulumi.getter
|
|
337
|
+
def type(self) -> str:
|
|
338
|
+
"""
|
|
339
|
+
The type of the resource.
|
|
340
|
+
"""
|
|
341
|
+
return pulumi.get(self, "type")
|
|
342
|
+
|
|
343
|
+
@property
|
|
344
|
+
@pulumi.getter(name="privateEndpoint")
|
|
345
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
346
|
+
"""
|
|
347
|
+
The resource of private endpoint.
|
|
348
|
+
"""
|
|
349
|
+
return pulumi.get(self, "private_endpoint")
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
@pulumi.output_type
|
|
353
|
+
class PrivateEndpointResponse(dict):
|
|
354
|
+
"""
|
|
355
|
+
Private endpoint which a connection belongs to.
|
|
356
|
+
"""
|
|
357
|
+
def __init__(__self__, *,
|
|
358
|
+
id: Optional[str] = None):
|
|
359
|
+
"""
|
|
360
|
+
Private endpoint which a connection belongs to.
|
|
361
|
+
:param str id: The resource Id for private endpoint
|
|
362
|
+
"""
|
|
363
|
+
if id is not None:
|
|
364
|
+
pulumi.set(__self__, "id", id)
|
|
365
|
+
|
|
366
|
+
@property
|
|
367
|
+
@pulumi.getter
|
|
368
|
+
def id(self) -> Optional[str]:
|
|
369
|
+
"""
|
|
370
|
+
The resource Id for private endpoint
|
|
371
|
+
"""
|
|
372
|
+
return pulumi.get(self, "id")
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
@pulumi.output_type
|
|
376
|
+
class PrivateLinkServiceConnectionStateResponse(dict):
|
|
377
|
+
"""
|
|
378
|
+
The state of a private link service connection.
|
|
379
|
+
"""
|
|
380
|
+
@staticmethod
|
|
381
|
+
def __key_warning(key: str):
|
|
382
|
+
suggest = None
|
|
383
|
+
if key == "actionsRequired":
|
|
384
|
+
suggest = "actions_required"
|
|
385
|
+
|
|
386
|
+
if suggest:
|
|
387
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
388
|
+
|
|
389
|
+
def __getitem__(self, key: str) -> Any:
|
|
390
|
+
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
|
|
391
|
+
return super().__getitem__(key)
|
|
392
|
+
|
|
393
|
+
def get(self, key: str, default = None) -> Any:
|
|
394
|
+
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
|
|
395
|
+
return super().get(key, default)
|
|
396
|
+
|
|
397
|
+
def __init__(__self__, *,
|
|
398
|
+
actions_required: str,
|
|
399
|
+
description: Optional[str] = None,
|
|
400
|
+
status: Optional[str] = None):
|
|
401
|
+
"""
|
|
402
|
+
The state of a private link service connection.
|
|
403
|
+
:param str actions_required: Any action that is required beyond basic workflow (approve/ reject/ disconnect)
|
|
404
|
+
:param str description: The private link service connection description.
|
|
405
|
+
:param str status: The private link service connection status.
|
|
406
|
+
"""
|
|
407
|
+
pulumi.set(__self__, "actions_required", actions_required)
|
|
408
|
+
if description is not None:
|
|
409
|
+
pulumi.set(__self__, "description", description)
|
|
410
|
+
if status is not None:
|
|
411
|
+
pulumi.set(__self__, "status", status)
|
|
412
|
+
|
|
413
|
+
@property
|
|
414
|
+
@pulumi.getter(name="actionsRequired")
|
|
415
|
+
def actions_required(self) -> str:
|
|
416
|
+
"""
|
|
417
|
+
Any action that is required beyond basic workflow (approve/ reject/ disconnect)
|
|
418
|
+
"""
|
|
419
|
+
return pulumi.get(self, "actions_required")
|
|
420
|
+
|
|
421
|
+
@property
|
|
422
|
+
@pulumi.getter
|
|
423
|
+
def description(self) -> Optional[str]:
|
|
424
|
+
"""
|
|
425
|
+
The private link service connection description.
|
|
426
|
+
"""
|
|
427
|
+
return pulumi.get(self, "description")
|
|
428
|
+
|
|
429
|
+
@property
|
|
430
|
+
@pulumi.getter
|
|
431
|
+
def status(self) -> Optional[str]:
|
|
432
|
+
"""
|
|
433
|
+
The private link service connection status.
|
|
434
|
+
"""
|
|
435
|
+
return pulumi.get(self, "status")
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
@pulumi.output_type
|
|
439
|
+
class ResourceIdentityResponse(dict):
|
|
440
|
+
"""
|
|
441
|
+
An identity that can be associated with a resource.
|
|
442
|
+
"""
|
|
443
|
+
@staticmethod
|
|
444
|
+
def __key_warning(key: str):
|
|
445
|
+
suggest = None
|
|
446
|
+
if key == "principalId":
|
|
447
|
+
suggest = "principal_id"
|
|
448
|
+
elif key == "tenantId":
|
|
449
|
+
suggest = "tenant_id"
|
|
450
|
+
elif key == "userAssignedIdentities":
|
|
451
|
+
suggest = "user_assigned_identities"
|
|
452
|
+
|
|
453
|
+
if suggest:
|
|
454
|
+
pulumi.log.warn(f"Key '{key}' not found in ResourceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
455
|
+
|
|
456
|
+
def __getitem__(self, key: str) -> Any:
|
|
457
|
+
ResourceIdentityResponse.__key_warning(key)
|
|
458
|
+
return super().__getitem__(key)
|
|
459
|
+
|
|
460
|
+
def get(self, key: str, default = None) -> Any:
|
|
461
|
+
ResourceIdentityResponse.__key_warning(key)
|
|
462
|
+
return super().get(key, default)
|
|
463
|
+
|
|
464
|
+
def __init__(__self__, *,
|
|
465
|
+
principal_id: str,
|
|
466
|
+
tenant_id: str,
|
|
467
|
+
type: Optional[str] = None,
|
|
468
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserIdentityResponse']] = None):
|
|
469
|
+
"""
|
|
470
|
+
An identity that can be associated with a resource.
|
|
471
|
+
:param str principal_id: The principal id of the identity. This property will only be provided for a system-assigned identity.
|
|
472
|
+
:param str tenant_id: The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
|
|
473
|
+
:param str type: The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
|
|
474
|
+
:param Mapping[str, 'UserIdentityResponse'] user_assigned_identities: The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
475
|
+
"""
|
|
476
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
477
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
478
|
+
if type is not None:
|
|
479
|
+
pulumi.set(__self__, "type", type)
|
|
480
|
+
if user_assigned_identities is not None:
|
|
481
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
482
|
+
|
|
483
|
+
@property
|
|
484
|
+
@pulumi.getter(name="principalId")
|
|
485
|
+
def principal_id(self) -> str:
|
|
486
|
+
"""
|
|
487
|
+
The principal id of the identity. This property will only be provided for a system-assigned identity.
|
|
488
|
+
"""
|
|
489
|
+
return pulumi.get(self, "principal_id")
|
|
490
|
+
|
|
491
|
+
@property
|
|
492
|
+
@pulumi.getter(name="tenantId")
|
|
493
|
+
def tenant_id(self) -> str:
|
|
494
|
+
"""
|
|
495
|
+
The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
|
|
496
|
+
"""
|
|
497
|
+
return pulumi.get(self, "tenant_id")
|
|
498
|
+
|
|
499
|
+
@property
|
|
500
|
+
@pulumi.getter
|
|
501
|
+
def type(self) -> Optional[str]:
|
|
502
|
+
"""
|
|
503
|
+
The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
|
|
504
|
+
"""
|
|
505
|
+
return pulumi.get(self, "type")
|
|
506
|
+
|
|
507
|
+
@property
|
|
508
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
509
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserIdentityResponse']]:
|
|
510
|
+
"""
|
|
511
|
+
The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
512
|
+
"""
|
|
513
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
@pulumi.output_type
|
|
517
|
+
class SkuResponse(dict):
|
|
518
|
+
"""
|
|
519
|
+
Describes a configuration store SKU.
|
|
520
|
+
"""
|
|
521
|
+
def __init__(__self__, *,
|
|
522
|
+
name: str):
|
|
523
|
+
"""
|
|
524
|
+
Describes a configuration store SKU.
|
|
525
|
+
:param str name: The SKU name of the configuration store.
|
|
526
|
+
"""
|
|
527
|
+
pulumi.set(__self__, "name", name)
|
|
528
|
+
|
|
529
|
+
@property
|
|
530
|
+
@pulumi.getter
|
|
531
|
+
def name(self) -> str:
|
|
532
|
+
"""
|
|
533
|
+
The SKU name of the configuration store.
|
|
534
|
+
"""
|
|
535
|
+
return pulumi.get(self, "name")
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
@pulumi.output_type
|
|
539
|
+
class SystemDataResponse(dict):
|
|
540
|
+
"""
|
|
541
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
542
|
+
"""
|
|
543
|
+
@staticmethod
|
|
544
|
+
def __key_warning(key: str):
|
|
545
|
+
suggest = None
|
|
546
|
+
if key == "createdAt":
|
|
547
|
+
suggest = "created_at"
|
|
548
|
+
elif key == "createdBy":
|
|
549
|
+
suggest = "created_by"
|
|
550
|
+
elif key == "createdByType":
|
|
551
|
+
suggest = "created_by_type"
|
|
552
|
+
elif key == "lastModifiedAt":
|
|
553
|
+
suggest = "last_modified_at"
|
|
554
|
+
elif key == "lastModifiedBy":
|
|
555
|
+
suggest = "last_modified_by"
|
|
556
|
+
elif key == "lastModifiedByType":
|
|
557
|
+
suggest = "last_modified_by_type"
|
|
558
|
+
|
|
559
|
+
if suggest:
|
|
560
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
561
|
+
|
|
562
|
+
def __getitem__(self, key: str) -> Any:
|
|
563
|
+
SystemDataResponse.__key_warning(key)
|
|
564
|
+
return super().__getitem__(key)
|
|
565
|
+
|
|
566
|
+
def get(self, key: str, default = None) -> Any:
|
|
567
|
+
SystemDataResponse.__key_warning(key)
|
|
568
|
+
return super().get(key, default)
|
|
569
|
+
|
|
570
|
+
def __init__(__self__, *,
|
|
571
|
+
created_at: Optional[str] = None,
|
|
572
|
+
created_by: Optional[str] = None,
|
|
573
|
+
created_by_type: Optional[str] = None,
|
|
574
|
+
last_modified_at: Optional[str] = None,
|
|
575
|
+
last_modified_by: Optional[str] = None,
|
|
576
|
+
last_modified_by_type: Optional[str] = None):
|
|
577
|
+
"""
|
|
578
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
579
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
580
|
+
:param str created_by: The identity that created the resource.
|
|
581
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
582
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
583
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
584
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
585
|
+
"""
|
|
586
|
+
if created_at is not None:
|
|
587
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
588
|
+
if created_by is not None:
|
|
589
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
590
|
+
if created_by_type is not None:
|
|
591
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
592
|
+
if last_modified_at is not None:
|
|
593
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
594
|
+
if last_modified_by is not None:
|
|
595
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
596
|
+
if last_modified_by_type is not None:
|
|
597
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
598
|
+
|
|
599
|
+
@property
|
|
600
|
+
@pulumi.getter(name="createdAt")
|
|
601
|
+
def created_at(self) -> Optional[str]:
|
|
602
|
+
"""
|
|
603
|
+
The timestamp of resource creation (UTC).
|
|
604
|
+
"""
|
|
605
|
+
return pulumi.get(self, "created_at")
|
|
606
|
+
|
|
607
|
+
@property
|
|
608
|
+
@pulumi.getter(name="createdBy")
|
|
609
|
+
def created_by(self) -> Optional[str]:
|
|
610
|
+
"""
|
|
611
|
+
The identity that created the resource.
|
|
612
|
+
"""
|
|
613
|
+
return pulumi.get(self, "created_by")
|
|
614
|
+
|
|
615
|
+
@property
|
|
616
|
+
@pulumi.getter(name="createdByType")
|
|
617
|
+
def created_by_type(self) -> Optional[str]:
|
|
618
|
+
"""
|
|
619
|
+
The type of identity that created the resource.
|
|
620
|
+
"""
|
|
621
|
+
return pulumi.get(self, "created_by_type")
|
|
622
|
+
|
|
623
|
+
@property
|
|
624
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
625
|
+
def last_modified_at(self) -> Optional[str]:
|
|
626
|
+
"""
|
|
627
|
+
The timestamp of resource last modification (UTC)
|
|
628
|
+
"""
|
|
629
|
+
return pulumi.get(self, "last_modified_at")
|
|
630
|
+
|
|
631
|
+
@property
|
|
632
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
633
|
+
def last_modified_by(self) -> Optional[str]:
|
|
634
|
+
"""
|
|
635
|
+
The identity that last modified the resource.
|
|
636
|
+
"""
|
|
637
|
+
return pulumi.get(self, "last_modified_by")
|
|
638
|
+
|
|
639
|
+
@property
|
|
640
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
641
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
642
|
+
"""
|
|
643
|
+
The type of identity that last modified the resource.
|
|
644
|
+
"""
|
|
645
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
@pulumi.output_type
|
|
649
|
+
class UserIdentityResponse(dict):
|
|
650
|
+
"""
|
|
651
|
+
A resource identity that is managed by the user of the service.
|
|
652
|
+
"""
|
|
653
|
+
@staticmethod
|
|
654
|
+
def __key_warning(key: str):
|
|
655
|
+
suggest = None
|
|
656
|
+
if key == "clientId":
|
|
657
|
+
suggest = "client_id"
|
|
658
|
+
elif key == "principalId":
|
|
659
|
+
suggest = "principal_id"
|
|
660
|
+
|
|
661
|
+
if suggest:
|
|
662
|
+
pulumi.log.warn(f"Key '{key}' not found in UserIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
663
|
+
|
|
664
|
+
def __getitem__(self, key: str) -> Any:
|
|
665
|
+
UserIdentityResponse.__key_warning(key)
|
|
666
|
+
return super().__getitem__(key)
|
|
667
|
+
|
|
668
|
+
def get(self, key: str, default = None) -> Any:
|
|
669
|
+
UserIdentityResponse.__key_warning(key)
|
|
670
|
+
return super().get(key, default)
|
|
671
|
+
|
|
672
|
+
def __init__(__self__, *,
|
|
673
|
+
client_id: str,
|
|
674
|
+
principal_id: str):
|
|
675
|
+
"""
|
|
676
|
+
A resource identity that is managed by the user of the service.
|
|
677
|
+
:param str client_id: The client ID of the user-assigned identity.
|
|
678
|
+
:param str principal_id: The principal ID of the user-assigned identity.
|
|
679
|
+
"""
|
|
680
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
681
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
682
|
+
|
|
683
|
+
@property
|
|
684
|
+
@pulumi.getter(name="clientId")
|
|
685
|
+
def client_id(self) -> str:
|
|
686
|
+
"""
|
|
687
|
+
The client ID of the user-assigned identity.
|
|
688
|
+
"""
|
|
689
|
+
return pulumi.get(self, "client_id")
|
|
690
|
+
|
|
691
|
+
@property
|
|
692
|
+
@pulumi.getter(name="principalId")
|
|
693
|
+
def principal_id(self) -> str:
|
|
694
|
+
"""
|
|
695
|
+
The principal ID of the user-assigned identity.
|
|
696
|
+
"""
|
|
697
|
+
return pulumi.get(self, "principal_id")
|
|
698
|
+
|
|
699
|
+
|