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,300 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetConfigurationStoreResult',
|
|
15
|
+
'AwaitableGetConfigurationStoreResult',
|
|
16
|
+
'get_configuration_store',
|
|
17
|
+
'get_configuration_store_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetConfigurationStoreResult:
|
|
22
|
+
"""
|
|
23
|
+
The configuration store along with all resource properties. The Configuration Store will have all information to begin utilizing it.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, creation_date=None, data_plane_proxy=None, disable_local_auth=None, enable_purge_protection=None, encryption=None, endpoint=None, id=None, identity=None, location=None, name=None, private_endpoint_connections=None, provisioning_state=None, public_network_access=None, sku=None, soft_delete_retention_in_days=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if creation_date and not isinstance(creation_date, str):
|
|
27
|
+
raise TypeError("Expected argument 'creation_date' to be a str")
|
|
28
|
+
pulumi.set(__self__, "creation_date", creation_date)
|
|
29
|
+
if data_plane_proxy and not isinstance(data_plane_proxy, dict):
|
|
30
|
+
raise TypeError("Expected argument 'data_plane_proxy' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "data_plane_proxy", data_plane_proxy)
|
|
32
|
+
if disable_local_auth and not isinstance(disable_local_auth, bool):
|
|
33
|
+
raise TypeError("Expected argument 'disable_local_auth' to be a bool")
|
|
34
|
+
pulumi.set(__self__, "disable_local_auth", disable_local_auth)
|
|
35
|
+
if enable_purge_protection and not isinstance(enable_purge_protection, bool):
|
|
36
|
+
raise TypeError("Expected argument 'enable_purge_protection' to be a bool")
|
|
37
|
+
pulumi.set(__self__, "enable_purge_protection", enable_purge_protection)
|
|
38
|
+
if encryption and not isinstance(encryption, dict):
|
|
39
|
+
raise TypeError("Expected argument 'encryption' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "encryption", encryption)
|
|
41
|
+
if endpoint and not isinstance(endpoint, str):
|
|
42
|
+
raise TypeError("Expected argument 'endpoint' to be a str")
|
|
43
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
44
|
+
if id and not isinstance(id, str):
|
|
45
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
46
|
+
pulumi.set(__self__, "id", id)
|
|
47
|
+
if identity and not isinstance(identity, dict):
|
|
48
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "identity", identity)
|
|
50
|
+
if location and not isinstance(location, str):
|
|
51
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
52
|
+
pulumi.set(__self__, "location", location)
|
|
53
|
+
if name and not isinstance(name, str):
|
|
54
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
55
|
+
pulumi.set(__self__, "name", name)
|
|
56
|
+
if private_endpoint_connections and not isinstance(private_endpoint_connections, list):
|
|
57
|
+
raise TypeError("Expected argument 'private_endpoint_connections' to be a list")
|
|
58
|
+
pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
|
|
59
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
60
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
61
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
62
|
+
if public_network_access and not isinstance(public_network_access, str):
|
|
63
|
+
raise TypeError("Expected argument 'public_network_access' to be a str")
|
|
64
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
65
|
+
if sku and not isinstance(sku, dict):
|
|
66
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
67
|
+
pulumi.set(__self__, "sku", sku)
|
|
68
|
+
if soft_delete_retention_in_days and not isinstance(soft_delete_retention_in_days, int):
|
|
69
|
+
raise TypeError("Expected argument 'soft_delete_retention_in_days' to be a int")
|
|
70
|
+
pulumi.set(__self__, "soft_delete_retention_in_days", soft_delete_retention_in_days)
|
|
71
|
+
if system_data and not isinstance(system_data, dict):
|
|
72
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
73
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
74
|
+
if tags and not isinstance(tags, dict):
|
|
75
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
76
|
+
pulumi.set(__self__, "tags", tags)
|
|
77
|
+
if type and not isinstance(type, str):
|
|
78
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
79
|
+
pulumi.set(__self__, "type", type)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="creationDate")
|
|
83
|
+
def creation_date(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
The creation date of configuration store.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "creation_date")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter(name="dataPlaneProxy")
|
|
91
|
+
def data_plane_proxy(self) -> Optional['outputs.DataPlaneProxyPropertiesResponse']:
|
|
92
|
+
"""
|
|
93
|
+
Property specifying the configuration of data plane proxy for Azure Resource Manager (ARM).
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "data_plane_proxy")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="disableLocalAuth")
|
|
99
|
+
def disable_local_auth(self) -> Optional[bool]:
|
|
100
|
+
"""
|
|
101
|
+
Disables all authentication methods other than AAD authentication.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "disable_local_auth")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="enablePurgeProtection")
|
|
107
|
+
def enable_purge_protection(self) -> Optional[bool]:
|
|
108
|
+
"""
|
|
109
|
+
Property specifying whether protection against purge is enabled for this configuration store.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "enable_purge_protection")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def encryption(self) -> Optional['outputs.EncryptionPropertiesResponse']:
|
|
116
|
+
"""
|
|
117
|
+
The encryption settings of the configuration store.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "encryption")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def endpoint(self) -> str:
|
|
124
|
+
"""
|
|
125
|
+
The DNS endpoint where the configuration store API will be available.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "endpoint")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def id(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "id")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter
|
|
139
|
+
def identity(self) -> Optional['outputs.ResourceIdentityResponse']:
|
|
140
|
+
"""
|
|
141
|
+
The managed identity information, if configured.
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "identity")
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter
|
|
147
|
+
def location(self) -> str:
|
|
148
|
+
"""
|
|
149
|
+
The geo-location where the resource lives
|
|
150
|
+
"""
|
|
151
|
+
return pulumi.get(self, "location")
|
|
152
|
+
|
|
153
|
+
@property
|
|
154
|
+
@pulumi.getter
|
|
155
|
+
def name(self) -> str:
|
|
156
|
+
"""
|
|
157
|
+
The name of the resource
|
|
158
|
+
"""
|
|
159
|
+
return pulumi.get(self, "name")
|
|
160
|
+
|
|
161
|
+
@property
|
|
162
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
163
|
+
def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionReferenceResponse']:
|
|
164
|
+
"""
|
|
165
|
+
The list of private endpoint connections that are set up for this resource.
|
|
166
|
+
"""
|
|
167
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="provisioningState")
|
|
171
|
+
def provisioning_state(self) -> str:
|
|
172
|
+
"""
|
|
173
|
+
The provisioning state of the configuration store.
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "provisioning_state")
|
|
176
|
+
|
|
177
|
+
@property
|
|
178
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
179
|
+
def public_network_access(self) -> Optional[str]:
|
|
180
|
+
"""
|
|
181
|
+
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
|
|
182
|
+
"""
|
|
183
|
+
return pulumi.get(self, "public_network_access")
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
@pulumi.getter
|
|
187
|
+
def sku(self) -> 'outputs.SkuResponse':
|
|
188
|
+
"""
|
|
189
|
+
The sku of the configuration store.
|
|
190
|
+
"""
|
|
191
|
+
return pulumi.get(self, "sku")
|
|
192
|
+
|
|
193
|
+
@property
|
|
194
|
+
@pulumi.getter(name="softDeleteRetentionInDays")
|
|
195
|
+
def soft_delete_retention_in_days(self) -> Optional[int]:
|
|
196
|
+
"""
|
|
197
|
+
The amount of time in days that the configuration store will be retained when it is soft deleted.
|
|
198
|
+
"""
|
|
199
|
+
return pulumi.get(self, "soft_delete_retention_in_days")
|
|
200
|
+
|
|
201
|
+
@property
|
|
202
|
+
@pulumi.getter(name="systemData")
|
|
203
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
204
|
+
"""
|
|
205
|
+
Resource system metadata.
|
|
206
|
+
"""
|
|
207
|
+
return pulumi.get(self, "system_data")
|
|
208
|
+
|
|
209
|
+
@property
|
|
210
|
+
@pulumi.getter
|
|
211
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
212
|
+
"""
|
|
213
|
+
Resource tags.
|
|
214
|
+
"""
|
|
215
|
+
return pulumi.get(self, "tags")
|
|
216
|
+
|
|
217
|
+
@property
|
|
218
|
+
@pulumi.getter
|
|
219
|
+
def type(self) -> str:
|
|
220
|
+
"""
|
|
221
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
222
|
+
"""
|
|
223
|
+
return pulumi.get(self, "type")
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
class AwaitableGetConfigurationStoreResult(GetConfigurationStoreResult):
|
|
227
|
+
# pylint: disable=using-constant-test
|
|
228
|
+
def __await__(self):
|
|
229
|
+
if False:
|
|
230
|
+
yield self
|
|
231
|
+
return GetConfigurationStoreResult(
|
|
232
|
+
creation_date=self.creation_date,
|
|
233
|
+
data_plane_proxy=self.data_plane_proxy,
|
|
234
|
+
disable_local_auth=self.disable_local_auth,
|
|
235
|
+
enable_purge_protection=self.enable_purge_protection,
|
|
236
|
+
encryption=self.encryption,
|
|
237
|
+
endpoint=self.endpoint,
|
|
238
|
+
id=self.id,
|
|
239
|
+
identity=self.identity,
|
|
240
|
+
location=self.location,
|
|
241
|
+
name=self.name,
|
|
242
|
+
private_endpoint_connections=self.private_endpoint_connections,
|
|
243
|
+
provisioning_state=self.provisioning_state,
|
|
244
|
+
public_network_access=self.public_network_access,
|
|
245
|
+
sku=self.sku,
|
|
246
|
+
soft_delete_retention_in_days=self.soft_delete_retention_in_days,
|
|
247
|
+
system_data=self.system_data,
|
|
248
|
+
tags=self.tags,
|
|
249
|
+
type=self.type)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
def get_configuration_store(config_store_name: Optional[str] = None,
|
|
253
|
+
resource_group_name: Optional[str] = None,
|
|
254
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetConfigurationStoreResult:
|
|
255
|
+
"""
|
|
256
|
+
Gets the properties of the specified configuration store.
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
:param str config_store_name: The name of the configuration store.
|
|
260
|
+
:param str resource_group_name: The name of the resource group to which the container registry belongs.
|
|
261
|
+
"""
|
|
262
|
+
__args__ = dict()
|
|
263
|
+
__args__['configStoreName'] = config_store_name
|
|
264
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
265
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
266
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appconfiguration/v20230801preview:getConfigurationStore', __args__, opts=opts, typ=GetConfigurationStoreResult).value
|
|
267
|
+
|
|
268
|
+
return AwaitableGetConfigurationStoreResult(
|
|
269
|
+
creation_date=pulumi.get(__ret__, 'creation_date'),
|
|
270
|
+
data_plane_proxy=pulumi.get(__ret__, 'data_plane_proxy'),
|
|
271
|
+
disable_local_auth=pulumi.get(__ret__, 'disable_local_auth'),
|
|
272
|
+
enable_purge_protection=pulumi.get(__ret__, 'enable_purge_protection'),
|
|
273
|
+
encryption=pulumi.get(__ret__, 'encryption'),
|
|
274
|
+
endpoint=pulumi.get(__ret__, 'endpoint'),
|
|
275
|
+
id=pulumi.get(__ret__, 'id'),
|
|
276
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
277
|
+
location=pulumi.get(__ret__, 'location'),
|
|
278
|
+
name=pulumi.get(__ret__, 'name'),
|
|
279
|
+
private_endpoint_connections=pulumi.get(__ret__, 'private_endpoint_connections'),
|
|
280
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
281
|
+
public_network_access=pulumi.get(__ret__, 'public_network_access'),
|
|
282
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
283
|
+
soft_delete_retention_in_days=pulumi.get(__ret__, 'soft_delete_retention_in_days'),
|
|
284
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
285
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
286
|
+
type=pulumi.get(__ret__, 'type'))
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
@_utilities.lift_output_func(get_configuration_store)
|
|
290
|
+
def get_configuration_store_output(config_store_name: Optional[pulumi.Input[str]] = None,
|
|
291
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
292
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetConfigurationStoreResult]:
|
|
293
|
+
"""
|
|
294
|
+
Gets the properties of the specified configuration store.
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
:param str config_store_name: The name of the configuration store.
|
|
298
|
+
:param str resource_group_name: The name of the resource group to which the container registry belongs.
|
|
299
|
+
"""
|
|
300
|
+
...
|
|
@@ -0,0 +1,217 @@
|
|
|
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
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'GetKeyValueResult',
|
|
14
|
+
'AwaitableGetKeyValueResult',
|
|
15
|
+
'get_key_value',
|
|
16
|
+
'get_key_value_output',
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
@pulumi.output_type
|
|
20
|
+
class GetKeyValueResult:
|
|
21
|
+
"""
|
|
22
|
+
The key-value resource along with all resource properties.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(__self__, content_type=None, e_tag=None, id=None, key=None, label=None, last_modified=None, locked=None, name=None, tags=None, type=None, value=None):
|
|
25
|
+
if content_type and not isinstance(content_type, str):
|
|
26
|
+
raise TypeError("Expected argument 'content_type' to be a str")
|
|
27
|
+
pulumi.set(__self__, "content_type", content_type)
|
|
28
|
+
if e_tag and not isinstance(e_tag, str):
|
|
29
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
30
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if key and not isinstance(key, str):
|
|
35
|
+
raise TypeError("Expected argument 'key' to be a str")
|
|
36
|
+
pulumi.set(__self__, "key", key)
|
|
37
|
+
if label and not isinstance(label, str):
|
|
38
|
+
raise TypeError("Expected argument 'label' to be a str")
|
|
39
|
+
pulumi.set(__self__, "label", label)
|
|
40
|
+
if last_modified and not isinstance(last_modified, str):
|
|
41
|
+
raise TypeError("Expected argument 'last_modified' to be a str")
|
|
42
|
+
pulumi.set(__self__, "last_modified", last_modified)
|
|
43
|
+
if locked and not isinstance(locked, bool):
|
|
44
|
+
raise TypeError("Expected argument 'locked' to be a bool")
|
|
45
|
+
pulumi.set(__self__, "locked", locked)
|
|
46
|
+
if name and not isinstance(name, str):
|
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "name", name)
|
|
49
|
+
if tags and not isinstance(tags, dict):
|
|
50
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "tags", tags)
|
|
52
|
+
if type and not isinstance(type, str):
|
|
53
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
54
|
+
pulumi.set(__self__, "type", type)
|
|
55
|
+
if value and not isinstance(value, str):
|
|
56
|
+
raise TypeError("Expected argument 'value' to be a str")
|
|
57
|
+
pulumi.set(__self__, "value", value)
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="contentType")
|
|
61
|
+
def content_type(self) -> Optional[str]:
|
|
62
|
+
"""
|
|
63
|
+
The content type of the key-value's value.
|
|
64
|
+
Providing a proper content-type can enable transformations of values when they are retrieved by applications.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "content_type")
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="eTag")
|
|
70
|
+
def e_tag(self) -> str:
|
|
71
|
+
"""
|
|
72
|
+
An ETag indicating the state of a key-value within a configuration store.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "e_tag")
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def id(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
The resource ID.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "id")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def key(self) -> str:
|
|
87
|
+
"""
|
|
88
|
+
The primary identifier of a key-value.
|
|
89
|
+
The key is used in unison with the label to uniquely identify a key-value.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "key")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter
|
|
95
|
+
def label(self) -> str:
|
|
96
|
+
"""
|
|
97
|
+
A value used to group key-values.
|
|
98
|
+
The label is used in unison with the key to uniquely identify a key-value.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "label")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="lastModified")
|
|
104
|
+
def last_modified(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
The last time a modifying operation was performed on the given key-value.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "last_modified")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def locked(self) -> bool:
|
|
113
|
+
"""
|
|
114
|
+
A value indicating whether the key-value is locked.
|
|
115
|
+
A locked key-value may not be modified until it is unlocked.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "locked")
|
|
118
|
+
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter
|
|
121
|
+
def name(self) -> str:
|
|
122
|
+
"""
|
|
123
|
+
The name of the resource.
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "name")
|
|
126
|
+
|
|
127
|
+
@property
|
|
128
|
+
@pulumi.getter
|
|
129
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
130
|
+
"""
|
|
131
|
+
A dictionary of tags that can help identify what a key-value may be applicable for.
|
|
132
|
+
"""
|
|
133
|
+
return pulumi.get(self, "tags")
|
|
134
|
+
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter
|
|
137
|
+
def type(self) -> str:
|
|
138
|
+
"""
|
|
139
|
+
The type of the resource.
|
|
140
|
+
"""
|
|
141
|
+
return pulumi.get(self, "type")
|
|
142
|
+
|
|
143
|
+
@property
|
|
144
|
+
@pulumi.getter
|
|
145
|
+
def value(self) -> Optional[str]:
|
|
146
|
+
"""
|
|
147
|
+
The value of the key-value.
|
|
148
|
+
"""
|
|
149
|
+
return pulumi.get(self, "value")
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
class AwaitableGetKeyValueResult(GetKeyValueResult):
|
|
153
|
+
# pylint: disable=using-constant-test
|
|
154
|
+
def __await__(self):
|
|
155
|
+
if False:
|
|
156
|
+
yield self
|
|
157
|
+
return GetKeyValueResult(
|
|
158
|
+
content_type=self.content_type,
|
|
159
|
+
e_tag=self.e_tag,
|
|
160
|
+
id=self.id,
|
|
161
|
+
key=self.key,
|
|
162
|
+
label=self.label,
|
|
163
|
+
last_modified=self.last_modified,
|
|
164
|
+
locked=self.locked,
|
|
165
|
+
name=self.name,
|
|
166
|
+
tags=self.tags,
|
|
167
|
+
type=self.type,
|
|
168
|
+
value=self.value)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
def get_key_value(config_store_name: Optional[str] = None,
|
|
172
|
+
key_value_name: Optional[str] = None,
|
|
173
|
+
resource_group_name: Optional[str] = None,
|
|
174
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKeyValueResult:
|
|
175
|
+
"""
|
|
176
|
+
Gets the properties of the specified key-value. NOTE: This operation is intended for use in ARM Template deployments. For all other scenarios involving App Configuration key-values the data plane API should be used instead.
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
:param str config_store_name: The name of the configuration store.
|
|
180
|
+
:param str key_value_name: Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
|
|
181
|
+
:param str resource_group_name: The name of the resource group to which the container registry belongs.
|
|
182
|
+
"""
|
|
183
|
+
__args__ = dict()
|
|
184
|
+
__args__['configStoreName'] = config_store_name
|
|
185
|
+
__args__['keyValueName'] = key_value_name
|
|
186
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
187
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
188
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appconfiguration/v20230801preview:getKeyValue', __args__, opts=opts, typ=GetKeyValueResult).value
|
|
189
|
+
|
|
190
|
+
return AwaitableGetKeyValueResult(
|
|
191
|
+
content_type=pulumi.get(__ret__, 'content_type'),
|
|
192
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
193
|
+
id=pulumi.get(__ret__, 'id'),
|
|
194
|
+
key=pulumi.get(__ret__, 'key'),
|
|
195
|
+
label=pulumi.get(__ret__, 'label'),
|
|
196
|
+
last_modified=pulumi.get(__ret__, 'last_modified'),
|
|
197
|
+
locked=pulumi.get(__ret__, 'locked'),
|
|
198
|
+
name=pulumi.get(__ret__, 'name'),
|
|
199
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
200
|
+
type=pulumi.get(__ret__, 'type'),
|
|
201
|
+
value=pulumi.get(__ret__, 'value'))
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
@_utilities.lift_output_func(get_key_value)
|
|
205
|
+
def get_key_value_output(config_store_name: Optional[pulumi.Input[str]] = None,
|
|
206
|
+
key_value_name: Optional[pulumi.Input[str]] = None,
|
|
207
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
208
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKeyValueResult]:
|
|
209
|
+
"""
|
|
210
|
+
Gets the properties of the specified key-value. NOTE: This operation is intended for use in ARM Template deployments. For all other scenarios involving App Configuration key-values the data plane API should be used instead.
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
:param str config_store_name: The name of the configuration store.
|
|
214
|
+
:param str key_value_name: Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
|
|
215
|
+
:param str resource_group_name: The name of the resource group to which the container registry belongs.
|
|
216
|
+
"""
|
|
217
|
+
...
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetPrivateEndpointConnectionResult',
|
|
15
|
+
'AwaitableGetPrivateEndpointConnectionResult',
|
|
16
|
+
'get_private_endpoint_connection',
|
|
17
|
+
'get_private_endpoint_connection_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetPrivateEndpointConnectionResult:
|
|
22
|
+
"""
|
|
23
|
+
A private endpoint connection
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, name=None, private_endpoint=None, private_link_service_connection_state=None, provisioning_state=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if name and not isinstance(name, str):
|
|
30
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
31
|
+
pulumi.set(__self__, "name", name)
|
|
32
|
+
if private_endpoint and not isinstance(private_endpoint, dict):
|
|
33
|
+
raise TypeError("Expected argument 'private_endpoint' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
35
|
+
if private_link_service_connection_state and not isinstance(private_link_service_connection_state, dict):
|
|
36
|
+
raise TypeError("Expected argument 'private_link_service_connection_state' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
38
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
39
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
40
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
41
|
+
if type and not isinstance(type, str):
|
|
42
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
43
|
+
pulumi.set(__self__, "type", type)
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
@pulumi.getter
|
|
47
|
+
def id(self) -> str:
|
|
48
|
+
"""
|
|
49
|
+
The resource ID.
|
|
50
|
+
"""
|
|
51
|
+
return pulumi.get(self, "id")
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter
|
|
55
|
+
def name(self) -> str:
|
|
56
|
+
"""
|
|
57
|
+
The name of the resource.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "name")
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter(name="privateEndpoint")
|
|
63
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
64
|
+
"""
|
|
65
|
+
The resource of private endpoint.
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "private_endpoint")
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
71
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
72
|
+
"""
|
|
73
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="provisioningState")
|
|
79
|
+
def provisioning_state(self) -> str:
|
|
80
|
+
"""
|
|
81
|
+
The provisioning status of the private endpoint connection.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "provisioning_state")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def type(self) -> str:
|
|
88
|
+
"""
|
|
89
|
+
The type of the resource.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "type")
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class AwaitableGetPrivateEndpointConnectionResult(GetPrivateEndpointConnectionResult):
|
|
95
|
+
# pylint: disable=using-constant-test
|
|
96
|
+
def __await__(self):
|
|
97
|
+
if False:
|
|
98
|
+
yield self
|
|
99
|
+
return GetPrivateEndpointConnectionResult(
|
|
100
|
+
id=self.id,
|
|
101
|
+
name=self.name,
|
|
102
|
+
private_endpoint=self.private_endpoint,
|
|
103
|
+
private_link_service_connection_state=self.private_link_service_connection_state,
|
|
104
|
+
provisioning_state=self.provisioning_state,
|
|
105
|
+
type=self.type)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
def get_private_endpoint_connection(config_store_name: Optional[str] = None,
|
|
109
|
+
private_endpoint_connection_name: Optional[str] = None,
|
|
110
|
+
resource_group_name: Optional[str] = None,
|
|
111
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointConnectionResult:
|
|
112
|
+
"""
|
|
113
|
+
Gets the specified private endpoint connection associated with the configuration store.
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
:param str config_store_name: The name of the configuration store.
|
|
117
|
+
:param str private_endpoint_connection_name: Private endpoint connection name
|
|
118
|
+
:param str resource_group_name: The name of the resource group to which the container registry belongs.
|
|
119
|
+
"""
|
|
120
|
+
__args__ = dict()
|
|
121
|
+
__args__['configStoreName'] = config_store_name
|
|
122
|
+
__args__['privateEndpointConnectionName'] = private_endpoint_connection_name
|
|
123
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
124
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
125
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appconfiguration/v20230801preview:getPrivateEndpointConnection', __args__, opts=opts, typ=GetPrivateEndpointConnectionResult).value
|
|
126
|
+
|
|
127
|
+
return AwaitableGetPrivateEndpointConnectionResult(
|
|
128
|
+
id=pulumi.get(__ret__, 'id'),
|
|
129
|
+
name=pulumi.get(__ret__, 'name'),
|
|
130
|
+
private_endpoint=pulumi.get(__ret__, 'private_endpoint'),
|
|
131
|
+
private_link_service_connection_state=pulumi.get(__ret__, 'private_link_service_connection_state'),
|
|
132
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
133
|
+
type=pulumi.get(__ret__, 'type'))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
@_utilities.lift_output_func(get_private_endpoint_connection)
|
|
137
|
+
def get_private_endpoint_connection_output(config_store_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
139
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
140
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateEndpointConnectionResult]:
|
|
141
|
+
"""
|
|
142
|
+
Gets the specified private endpoint connection associated with the configuration store.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
:param str config_store_name: The name of the configuration store.
|
|
146
|
+
:param str private_endpoint_connection_name: Private endpoint connection name
|
|
147
|
+
:param str resource_group_name: The name of the resource group to which the container registry belongs.
|
|
148
|
+
"""
|
|
149
|
+
...
|