pulumi-azure-native 2.21.2__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
pulumi_azure_native/__init__.py
CHANGED
|
@@ -1557,6 +1557,17 @@ _utilities.register(
|
|
|
1557
1557
|
"azure-native:appconfiguration/v20230301:Replica": "Replica"
|
|
1558
1558
|
}
|
|
1559
1559
|
},
|
|
1560
|
+
{
|
|
1561
|
+
"pkg": "azure-native",
|
|
1562
|
+
"mod": "appconfiguration/v20230801preview",
|
|
1563
|
+
"fqn": "pulumi_azure_native.appconfiguration.v20230801preview",
|
|
1564
|
+
"classes": {
|
|
1565
|
+
"azure-native:appconfiguration/v20230801preview:ConfigurationStore": "ConfigurationStore",
|
|
1566
|
+
"azure-native:appconfiguration/v20230801preview:KeyValue": "KeyValue",
|
|
1567
|
+
"azure-native:appconfiguration/v20230801preview:PrivateEndpointConnection": "PrivateEndpointConnection",
|
|
1568
|
+
"azure-native:appconfiguration/v20230801preview:Replica": "Replica"
|
|
1569
|
+
}
|
|
1570
|
+
},
|
|
1560
1571
|
{
|
|
1561
1572
|
"pkg": "azure-native",
|
|
1562
1573
|
"mod": "appplatform",
|
|
@@ -2435,6 +2446,7 @@ _utilities.register(
|
|
|
2435
2446
|
"azure-native:azurestackhci:MachineExtension": "MachineExtension",
|
|
2436
2447
|
"azure-native:azurestackhci:MarketplaceGalleryImage": "MarketplaceGalleryImage",
|
|
2437
2448
|
"azure-native:azurestackhci:NetworkInterface": "NetworkInterface",
|
|
2449
|
+
"azure-native:azurestackhci:SecuritySetting": "SecuritySetting",
|
|
2438
2450
|
"azure-native:azurestackhci:StorageContainer": "StorageContainer",
|
|
2439
2451
|
"azure-native:azurestackhci:Update": "Update",
|
|
2440
2452
|
"azure-native:azurestackhci:UpdateRun": "UpdateRun",
|
|
@@ -2583,6 +2595,22 @@ _utilities.register(
|
|
|
2583
2595
|
"azure-native:azurestackhci/v20230901preview:VirtualMachineInstance": "VirtualMachineInstance"
|
|
2584
2596
|
}
|
|
2585
2597
|
},
|
|
2598
|
+
{
|
|
2599
|
+
"pkg": "azure-native",
|
|
2600
|
+
"mod": "azurestackhci/v20231101preview",
|
|
2601
|
+
"fqn": "pulumi_azure_native.azurestackhci.v20231101preview",
|
|
2602
|
+
"classes": {
|
|
2603
|
+
"azure-native:azurestackhci/v20231101preview:ArcSetting": "ArcSetting",
|
|
2604
|
+
"azure-native:azurestackhci/v20231101preview:Cluster": "Cluster",
|
|
2605
|
+
"azure-native:azurestackhci/v20231101preview:DeploymentSetting": "DeploymentSetting",
|
|
2606
|
+
"azure-native:azurestackhci/v20231101preview:EdgeDevice": "EdgeDevice",
|
|
2607
|
+
"azure-native:azurestackhci/v20231101preview:Extension": "Extension",
|
|
2608
|
+
"azure-native:azurestackhci/v20231101preview:SecuritySetting": "SecuritySetting",
|
|
2609
|
+
"azure-native:azurestackhci/v20231101preview:Update": "Update",
|
|
2610
|
+
"azure-native:azurestackhci/v20231101preview:UpdateRun": "UpdateRun",
|
|
2611
|
+
"azure-native:azurestackhci/v20231101preview:UpdateSummary": "UpdateSummary"
|
|
2612
|
+
}
|
|
2613
|
+
},
|
|
2586
2614
|
{
|
|
2587
2615
|
"pkg": "azure-native",
|
|
2588
2616
|
"mod": "baremetalinfrastructure",
|
|
@@ -3386,6 +3414,31 @@ _utilities.register(
|
|
|
3386
3414
|
"azure-native:compute/v20230701:VirtualMachineScaleSetVMRunCommand": "VirtualMachineScaleSetVMRunCommand"
|
|
3387
3415
|
}
|
|
3388
3416
|
},
|
|
3417
|
+
{
|
|
3418
|
+
"pkg": "azure-native",
|
|
3419
|
+
"mod": "compute/v20230901",
|
|
3420
|
+
"fqn": "pulumi_azure_native.compute.v20230901",
|
|
3421
|
+
"classes": {
|
|
3422
|
+
"azure-native:compute/v20230901:AvailabilitySet": "AvailabilitySet",
|
|
3423
|
+
"azure-native:compute/v20230901:CapacityReservation": "CapacityReservation",
|
|
3424
|
+
"azure-native:compute/v20230901:CapacityReservationGroup": "CapacityReservationGroup",
|
|
3425
|
+
"azure-native:compute/v20230901:DedicatedHost": "DedicatedHost",
|
|
3426
|
+
"azure-native:compute/v20230901:DedicatedHostGroup": "DedicatedHostGroup",
|
|
3427
|
+
"azure-native:compute/v20230901:Image": "Image",
|
|
3428
|
+
"azure-native:compute/v20230901:ProximityPlacementGroup": "ProximityPlacementGroup",
|
|
3429
|
+
"azure-native:compute/v20230901:RestorePoint": "RestorePoint",
|
|
3430
|
+
"azure-native:compute/v20230901:RestorePointCollection": "RestorePointCollection",
|
|
3431
|
+
"azure-native:compute/v20230901:SshPublicKey": "SshPublicKey",
|
|
3432
|
+
"azure-native:compute/v20230901:VirtualMachine": "VirtualMachine",
|
|
3433
|
+
"azure-native:compute/v20230901:VirtualMachineExtension": "VirtualMachineExtension",
|
|
3434
|
+
"azure-native:compute/v20230901:VirtualMachineRunCommandByVirtualMachine": "VirtualMachineRunCommandByVirtualMachine",
|
|
3435
|
+
"azure-native:compute/v20230901:VirtualMachineScaleSet": "VirtualMachineScaleSet",
|
|
3436
|
+
"azure-native:compute/v20230901:VirtualMachineScaleSetExtension": "VirtualMachineScaleSetExtension",
|
|
3437
|
+
"azure-native:compute/v20230901:VirtualMachineScaleSetVM": "VirtualMachineScaleSetVM",
|
|
3438
|
+
"azure-native:compute/v20230901:VirtualMachineScaleSetVMExtension": "VirtualMachineScaleSetVMExtension",
|
|
3439
|
+
"azure-native:compute/v20230901:VirtualMachineScaleSetVMRunCommand": "VirtualMachineScaleSetVMRunCommand"
|
|
3440
|
+
}
|
|
3441
|
+
},
|
|
3389
3442
|
{
|
|
3390
3443
|
"pkg": "azure-native",
|
|
3391
3444
|
"mod": "confidentialledger",
|
|
@@ -4369,6 +4422,14 @@ _utilities.register(
|
|
|
4369
4422
|
"azure-native:databox/v20230301:Job": "Job"
|
|
4370
4423
|
}
|
|
4371
4424
|
},
|
|
4425
|
+
{
|
|
4426
|
+
"pkg": "azure-native",
|
|
4427
|
+
"mod": "databox/v20231201",
|
|
4428
|
+
"fqn": "pulumi_azure_native.databox.v20231201",
|
|
4429
|
+
"classes": {
|
|
4430
|
+
"azure-native:databox/v20231201:Job": "Job"
|
|
4431
|
+
}
|
|
4432
|
+
},
|
|
4372
4433
|
{
|
|
4373
4434
|
"pkg": "azure-native",
|
|
4374
4435
|
"mod": "databoxedge",
|
|
@@ -4766,18 +4827,6 @@ _utilities.register(
|
|
|
4766
4827
|
"azure-native:dataprotection/v20230601preview:ResourceGuard": "ResourceGuard"
|
|
4767
4828
|
}
|
|
4768
4829
|
},
|
|
4769
|
-
{
|
|
4770
|
-
"pkg": "azure-native",
|
|
4771
|
-
"mod": "dataprotection/v20230801",
|
|
4772
|
-
"fqn": "pulumi_azure_native.dataprotection.v20230801",
|
|
4773
|
-
"classes": {
|
|
4774
|
-
"azure-native:dataprotection/v20230801:BackupInstance": "BackupInstance",
|
|
4775
|
-
"azure-native:dataprotection/v20230801:BackupPolicy": "BackupPolicy",
|
|
4776
|
-
"azure-native:dataprotection/v20230801:BackupVault": "BackupVault",
|
|
4777
|
-
"azure-native:dataprotection/v20230801:DppResourceGuardProxy": "DppResourceGuardProxy",
|
|
4778
|
-
"azure-native:dataprotection/v20230801:ResourceGuard": "ResourceGuard"
|
|
4779
|
-
}
|
|
4780
|
-
},
|
|
4781
4830
|
{
|
|
4782
4831
|
"pkg": "azure-native",
|
|
4783
4832
|
"mod": "dataprotection/v20230801preview",
|
|
@@ -7602,6 +7651,14 @@ _utilities.register(
|
|
|
7602
7651
|
"azure-native:kubernetes/v20231101preview:ConnectedCluster": "ConnectedCluster"
|
|
7603
7652
|
}
|
|
7604
7653
|
},
|
|
7654
|
+
{
|
|
7655
|
+
"pkg": "azure-native",
|
|
7656
|
+
"mod": "kubernetes/v20240101",
|
|
7657
|
+
"fqn": "pulumi_azure_native.kubernetes.v20240101",
|
|
7658
|
+
"classes": {
|
|
7659
|
+
"azure-native:kubernetes/v20240101:ConnectedCluster": "ConnectedCluster"
|
|
7660
|
+
}
|
|
7661
|
+
},
|
|
7605
7662
|
{
|
|
7606
7663
|
"pkg": "azure-native",
|
|
7607
7664
|
"mod": "kubernetesconfiguration",
|
|
@@ -8528,6 +8585,18 @@ _utilities.register(
|
|
|
8528
8585
|
"azure-native:maintenance/v20230901preview:MaintenanceConfiguration": "MaintenanceConfiguration"
|
|
8529
8586
|
}
|
|
8530
8587
|
},
|
|
8588
|
+
{
|
|
8589
|
+
"pkg": "azure-native",
|
|
8590
|
+
"mod": "maintenance/v20231001preview",
|
|
8591
|
+
"fqn": "pulumi_azure_native.maintenance.v20231001preview",
|
|
8592
|
+
"classes": {
|
|
8593
|
+
"azure-native:maintenance/v20231001preview:ConfigurationAssignment": "ConfigurationAssignment",
|
|
8594
|
+
"azure-native:maintenance/v20231001preview:ConfigurationAssignmentParent": "ConfigurationAssignmentParent",
|
|
8595
|
+
"azure-native:maintenance/v20231001preview:ConfigurationAssignmentsForResourceGroup": "ConfigurationAssignmentsForResourceGroup",
|
|
8596
|
+
"azure-native:maintenance/v20231001preview:ConfigurationAssignmentsForSubscription": "ConfigurationAssignmentsForSubscription",
|
|
8597
|
+
"azure-native:maintenance/v20231001preview:MaintenanceConfiguration": "MaintenanceConfiguration"
|
|
8598
|
+
}
|
|
8599
|
+
},
|
|
8531
8600
|
{
|
|
8532
8601
|
"pkg": "azure-native",
|
|
8533
8602
|
"mod": "managedidentity",
|
|
@@ -11479,6 +11548,7 @@ _utilities.register(
|
|
|
11479
11548
|
"azure-native:security:GovernanceRule": "GovernanceRule",
|
|
11480
11549
|
"azure-native:security:IotSecuritySolution": "IotSecuritySolution",
|
|
11481
11550
|
"azure-native:security:JitNetworkAccessPolicy": "JitNetworkAccessPolicy",
|
|
11551
|
+
"azure-native:security:Pricing": "Pricing",
|
|
11482
11552
|
"azure-native:security:SecurityConnector": "SecurityConnector",
|
|
11483
11553
|
"azure-native:security:SecurityConnectorApplication": "SecurityConnectorApplication",
|
|
11484
11554
|
"azure-native:security:SecurityContact": "SecurityContact",
|
|
@@ -11656,6 +11726,14 @@ _utilities.register(
|
|
|
11656
11726
|
"azure-native:security/v20231115:APICollectionByAzureApiManagementService": "APICollectionByAzureApiManagementService"
|
|
11657
11727
|
}
|
|
11658
11728
|
},
|
|
11729
|
+
{
|
|
11730
|
+
"pkg": "azure-native",
|
|
11731
|
+
"mod": "security/v20240101",
|
|
11732
|
+
"fqn": "pulumi_azure_native.security.v20240101",
|
|
11733
|
+
"classes": {
|
|
11734
|
+
"azure-native:security/v20240101:Pricing": "Pricing"
|
|
11735
|
+
}
|
|
11736
|
+
},
|
|
11659
11737
|
{
|
|
11660
11738
|
"pkg": "azure-native",
|
|
11661
11739
|
"mod": "securityandcompliance",
|
|
@@ -934,7 +934,7 @@ class BuildConfigurationArgs:
|
|
|
934
934
|
"""
|
|
935
935
|
Configuration of the build.
|
|
936
936
|
:param pulumi.Input[str] base_os: Base OS used to build and run the app.
|
|
937
|
-
:param pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]] environment_variables: List of environment variables to be passed to the build
|
|
937
|
+
:param pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]] environment_variables: List of environment variables to be passed to the build.
|
|
938
938
|
:param pulumi.Input[str] platform: Platform to be used to build and run the app.
|
|
939
939
|
:param pulumi.Input[str] platform_version: Platform version to be used to build and run the app.
|
|
940
940
|
:param pulumi.Input[Sequence[pulumi.Input['PreBuildStepArgs']]] pre_build_steps: List of steps to perform before the build.
|
|
@@ -966,7 +966,7 @@ class BuildConfigurationArgs:
|
|
|
966
966
|
@pulumi.getter(name="environmentVariables")
|
|
967
967
|
def environment_variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]]:
|
|
968
968
|
"""
|
|
969
|
-
List of environment variables to be passed to the build
|
|
969
|
+
List of environment variables to be passed to the build.
|
|
970
970
|
"""
|
|
971
971
|
return pulumi.get(self, "environment_variables")
|
|
972
972
|
|
|
@@ -1042,7 +1042,7 @@ class BuildConfigurationResponse(dict):
|
|
|
1042
1042
|
"""
|
|
1043
1043
|
Configuration of the build.
|
|
1044
1044
|
:param str base_os: Base OS used to build and run the app.
|
|
1045
|
-
:param Sequence['EnvironmentVariableResponse'] environment_variables: List of environment variables to be passed to the build
|
|
1045
|
+
:param Sequence['EnvironmentVariableResponse'] environment_variables: List of environment variables to be passed to the build.
|
|
1046
1046
|
:param str platform: Platform to be used to build and run the app.
|
|
1047
1047
|
:param str platform_version: Platform version to be used to build and run the app.
|
|
1048
1048
|
:param Sequence['PreBuildStepResponse'] pre_build_steps: List of steps to perform before the build.
|
|
@@ -1070,7 +1070,7 @@ class BuildConfigurationResponse(dict):
|
|
|
1070
1070
|
@pulumi.getter(name="environmentVariables")
|
|
1071
1071
|
def environment_variables(self) -> Optional[Sequence['outputs.EnvironmentVariableResponse']]:
|
|
1072
1072
|
"""
|
|
1073
|
-
List of environment variables to be passed to the build
|
|
1073
|
+
List of environment variables to be passed to the build.
|
|
1074
1074
|
"""
|
|
1075
1075
|
return pulumi.get(self, "environment_variables")
|
|
1076
1076
|
|
|
@@ -1013,7 +1013,7 @@ class BuildConfigurationArgs:
|
|
|
1013
1013
|
"""
|
|
1014
1014
|
Configuration of the build.
|
|
1015
1015
|
:param pulumi.Input[str] base_os: Base OS used to build and run the app.
|
|
1016
|
-
:param pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]] environment_variables: List of environment variables to be passed to the build
|
|
1016
|
+
:param pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]] environment_variables: List of environment variables to be passed to the build.
|
|
1017
1017
|
:param pulumi.Input[str] platform: Platform to be used to build and run the app.
|
|
1018
1018
|
:param pulumi.Input[str] platform_version: Platform version to be used to build and run the app.
|
|
1019
1019
|
:param pulumi.Input[Sequence[pulumi.Input['PreBuildStepArgs']]] pre_build_steps: List of steps to perform before the build.
|
|
@@ -1045,7 +1045,7 @@ class BuildConfigurationArgs:
|
|
|
1045
1045
|
@pulumi.getter(name="environmentVariables")
|
|
1046
1046
|
def environment_variables(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EnvironmentVariableArgs']]]]:
|
|
1047
1047
|
"""
|
|
1048
|
-
List of environment variables to be passed to the build
|
|
1048
|
+
List of environment variables to be passed to the build.
|
|
1049
1049
|
"""
|
|
1050
1050
|
return pulumi.get(self, "environment_variables")
|
|
1051
1051
|
|
|
@@ -1139,7 +1139,7 @@ class BuildConfigurationResponse(dict):
|
|
|
1139
1139
|
"""
|
|
1140
1140
|
Configuration of the build.
|
|
1141
1141
|
:param str base_os: Base OS used to build and run the app.
|
|
1142
|
-
:param Sequence['EnvironmentVariableResponse'] environment_variables: List of environment variables to be passed to the build
|
|
1142
|
+
:param Sequence['EnvironmentVariableResponse'] environment_variables: List of environment variables to be passed to the build.
|
|
1143
1143
|
:param str platform: Platform to be used to build and run the app.
|
|
1144
1144
|
:param str platform_version: Platform version to be used to build and run the app.
|
|
1145
1145
|
:param Sequence['PreBuildStepResponse'] pre_build_steps: List of steps to perform before the build.
|
|
@@ -1167,7 +1167,7 @@ class BuildConfigurationResponse(dict):
|
|
|
1167
1167
|
@pulumi.getter(name="environmentVariables")
|
|
1168
1168
|
def environment_variables(self) -> Optional[Sequence['outputs.EnvironmentVariableResponse']]:
|
|
1169
1169
|
"""
|
|
1170
|
-
List of environment variables to be passed to the build
|
|
1170
|
+
List of environment variables to be passed to the build.
|
|
1171
1171
|
"""
|
|
1172
1172
|
return pulumi.get(self, "environment_variables")
|
|
1173
1173
|
|
|
@@ -22,6 +22,9 @@ from . import outputs
|
|
|
22
22
|
if typing.TYPE_CHECKING:
|
|
23
23
|
import pulumi_azure_native.appconfiguration.v20230301 as __v20230301
|
|
24
24
|
v20230301 = __v20230301
|
|
25
|
+
import pulumi_azure_native.appconfiguration.v20230801preview as __v20230801preview
|
|
26
|
+
v20230801preview = __v20230801preview
|
|
25
27
|
else:
|
|
26
28
|
v20230301 = _utilities.lazy_import('pulumi_azure_native.appconfiguration.v20230301')
|
|
29
|
+
v20230801preview = _utilities.lazy_import('pulumi_azure_native.appconfiguration.v20230801preview')
|
|
27
30
|
|
|
@@ -240,7 +240,7 @@ class ConfigurationStore(pulumi.CustomResource):
|
|
|
240
240
|
The configuration store along with all resource properties. The Configuration Store will have all information to begin utilizing it.
|
|
241
241
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-06-01.
|
|
242
242
|
|
|
243
|
-
Other available API versions: 2019-02-01-preview.
|
|
243
|
+
Other available API versions: 2019-02-01-preview, 2023-08-01-preview.
|
|
244
244
|
|
|
245
245
|
:param str resource_name: The name of the resource.
|
|
246
246
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -267,7 +267,7 @@ class ConfigurationStore(pulumi.CustomResource):
|
|
|
267
267
|
The configuration store along with all resource properties. The Configuration Store will have all information to begin utilizing it.
|
|
268
268
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-06-01.
|
|
269
269
|
|
|
270
|
-
Other available API versions: 2019-02-01-preview.
|
|
270
|
+
Other available API versions: 2019-02-01-preview, 2023-08-01-preview.
|
|
271
271
|
|
|
272
272
|
:param str resource_name: The name of the resource.
|
|
273
273
|
:param ConfigurationStoreArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -334,7 +334,7 @@ class ConfigurationStore(pulumi.CustomResource):
|
|
|
334
334
|
__props__.__dict__["provisioning_state"] = None
|
|
335
335
|
__props__.__dict__["system_data"] = None
|
|
336
336
|
__props__.__dict__["type"] = None
|
|
337
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20190201preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191001:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:ConfigurationStore")])
|
|
337
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20190201preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191001:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:ConfigurationStore")])
|
|
338
338
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
339
339
|
super(ConfigurationStore, __self__).__init__(
|
|
340
340
|
'azure-native:appconfiguration:ConfigurationStore',
|
|
@@ -244,7 +244,7 @@ def get_configuration_store(config_store_name: Optional[str] = None,
|
|
|
244
244
|
Gets the properties of the specified configuration store.
|
|
245
245
|
Azure REST API version: 2023-03-01.
|
|
246
246
|
|
|
247
|
-
Other available API versions: 2019-02-01-preview.
|
|
247
|
+
Other available API versions: 2019-02-01-preview, 2023-08-01-preview.
|
|
248
248
|
|
|
249
249
|
|
|
250
250
|
:param str config_store_name: The name of the configuration store.
|
|
@@ -284,7 +284,7 @@ def get_configuration_store_output(config_store_name: Optional[pulumi.Input[str]
|
|
|
284
284
|
Gets the properties of the specified configuration store.
|
|
285
285
|
Azure REST API version: 2023-03-01.
|
|
286
286
|
|
|
287
|
-
Other available API versions: 2019-02-01-preview.
|
|
287
|
+
Other available API versions: 2019-02-01-preview, 2023-08-01-preview.
|
|
288
288
|
|
|
289
289
|
|
|
290
290
|
:param str config_store_name: The name of the configuration store.
|
|
@@ -176,6 +176,8 @@ def get_key_value(config_store_name: Optional[str] = None,
|
|
|
176
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
177
|
Azure REST API version: 2023-03-01.
|
|
178
178
|
|
|
179
|
+
Other available API versions: 2023-08-01-preview.
|
|
180
|
+
|
|
179
181
|
|
|
180
182
|
:param str config_store_name: The name of the configuration store.
|
|
181
183
|
:param str key_value_name: Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
|
|
@@ -211,6 +213,8 @@ def get_key_value_output(config_store_name: Optional[pulumi.Input[str]] = None,
|
|
|
211
213
|
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.
|
|
212
214
|
Azure REST API version: 2023-03-01.
|
|
213
215
|
|
|
216
|
+
Other available API versions: 2023-08-01-preview.
|
|
217
|
+
|
|
214
218
|
|
|
215
219
|
:param str config_store_name: The name of the configuration store.
|
|
216
220
|
:param str key_value_name: Identifier of key and label combination. Key and label are joined by $ character. Label is optional.
|
|
@@ -113,6 +113,8 @@ def get_private_endpoint_connection(config_store_name: Optional[str] = None,
|
|
|
113
113
|
Gets the specified private endpoint connection associated with the configuration store.
|
|
114
114
|
Azure REST API version: 2023-03-01.
|
|
115
115
|
|
|
116
|
+
Other available API versions: 2023-08-01-preview.
|
|
117
|
+
|
|
116
118
|
|
|
117
119
|
:param str config_store_name: The name of the configuration store.
|
|
118
120
|
:param str private_endpoint_connection_name: Private endpoint connection name
|
|
@@ -143,6 +145,8 @@ def get_private_endpoint_connection_output(config_store_name: Optional[pulumi.In
|
|
|
143
145
|
Gets the specified private endpoint connection associated with the configuration store.
|
|
144
146
|
Azure REST API version: 2023-03-01.
|
|
145
147
|
|
|
148
|
+
Other available API versions: 2023-08-01-preview.
|
|
149
|
+
|
|
146
150
|
|
|
147
151
|
:param str config_store_name: The name of the configuration store.
|
|
148
152
|
:param str private_endpoint_connection_name: Private endpoint connection name
|
|
@@ -125,6 +125,8 @@ def get_replica(config_store_name: Optional[str] = None,
|
|
|
125
125
|
Gets the properties of the specified replica.
|
|
126
126
|
Azure REST API version: 2023-03-01.
|
|
127
127
|
|
|
128
|
+
Other available API versions: 2023-08-01-preview.
|
|
129
|
+
|
|
128
130
|
|
|
129
131
|
:param str config_store_name: The name of the configuration store.
|
|
130
132
|
:param str replica_name: The name of the replica.
|
|
@@ -156,6 +158,8 @@ def get_replica_output(config_store_name: Optional[pulumi.Input[str]] = None,
|
|
|
156
158
|
Gets the properties of the specified replica.
|
|
157
159
|
Azure REST API version: 2023-03-01.
|
|
158
160
|
|
|
161
|
+
Other available API versions: 2023-08-01-preview.
|
|
162
|
+
|
|
159
163
|
|
|
160
164
|
:param str config_store_name: The name of the configuration store.
|
|
161
165
|
:param str replica_name: The name of the replica.
|
|
@@ -131,6 +131,8 @@ class KeyValue(pulumi.CustomResource):
|
|
|
131
131
|
The key-value resource along with all resource properties.
|
|
132
132
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-07-01-preview.
|
|
133
133
|
|
|
134
|
+
Other available API versions: 2023-08-01-preview.
|
|
135
|
+
|
|
134
136
|
:param str resource_name: The name of the resource.
|
|
135
137
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
136
138
|
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
@@ -151,6 +153,8 @@ class KeyValue(pulumi.CustomResource):
|
|
|
151
153
|
The key-value resource along with all resource properties.
|
|
152
154
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-07-01-preview.
|
|
153
155
|
|
|
156
|
+
Other available API versions: 2023-08-01-preview.
|
|
157
|
+
|
|
154
158
|
:param str resource_name: The name of the resource.
|
|
155
159
|
:param KeyValueArgs args: The arguments to use to populate this resource's properties.
|
|
156
160
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -198,7 +202,7 @@ class KeyValue(pulumi.CustomResource):
|
|
|
198
202
|
__props__.__dict__["locked"] = None
|
|
199
203
|
__props__.__dict__["name"] = None
|
|
200
204
|
__props__.__dict__["type"] = None
|
|
201
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:KeyValue")])
|
|
205
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:KeyValue")])
|
|
202
206
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
203
207
|
super(KeyValue, __self__).__init__(
|
|
204
208
|
'azure-native:appconfiguration:KeyValue',
|
|
@@ -65,7 +65,7 @@ def list_configuration_store_keys(config_store_name: Optional[str] = None,
|
|
|
65
65
|
Lists the access key for the specified configuration store.
|
|
66
66
|
Azure REST API version: 2023-03-01.
|
|
67
67
|
|
|
68
|
-
Other available API versions: 2019-02-01-preview.
|
|
68
|
+
Other available API versions: 2019-02-01-preview, 2023-08-01-preview.
|
|
69
69
|
|
|
70
70
|
|
|
71
71
|
:param str config_store_name: The name of the configuration store.
|
|
@@ -93,7 +93,7 @@ def list_configuration_store_keys_output(config_store_name: Optional[pulumi.Inpu
|
|
|
93
93
|
Lists the access key for the specified configuration store.
|
|
94
94
|
Azure REST API version: 2023-03-01.
|
|
95
95
|
|
|
96
|
-
Other available API versions: 2019-02-01-preview.
|
|
96
|
+
Other available API versions: 2019-02-01-preview, 2023-08-01-preview.
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
:param str config_store_name: The name of the configuration store.
|
|
@@ -114,6 +114,8 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
114
114
|
A private endpoint connection
|
|
115
115
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-06-01.
|
|
116
116
|
|
|
117
|
+
Other available API versions: 2023-08-01-preview.
|
|
118
|
+
|
|
117
119
|
:param str resource_name: The name of the resource.
|
|
118
120
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
119
121
|
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
@@ -132,6 +134,8 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
132
134
|
A private endpoint connection
|
|
133
135
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-06-01.
|
|
134
136
|
|
|
137
|
+
Other available API versions: 2023-08-01-preview.
|
|
138
|
+
|
|
135
139
|
:param str resource_name: The name of the resource.
|
|
136
140
|
:param PrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
137
141
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -175,7 +179,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
175
179
|
__props__.__dict__["name"] = None
|
|
176
180
|
__props__.__dict__["provisioning_state"] = None
|
|
177
181
|
__props__.__dict__["type"] = None
|
|
178
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:PrivateEndpointConnection")])
|
|
182
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:PrivateEndpointConnection")])
|
|
179
183
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
180
184
|
super(PrivateEndpointConnection, __self__).__init__(
|
|
181
185
|
'azure-native:appconfiguration:PrivateEndpointConnection',
|
|
@@ -96,6 +96,8 @@ class Replica(pulumi.CustomResource):
|
|
|
96
96
|
The replica resource.
|
|
97
97
|
Azure REST API version: 2023-03-01.
|
|
98
98
|
|
|
99
|
+
Other available API versions: 2023-08-01-preview.
|
|
100
|
+
|
|
99
101
|
:param str resource_name: The name of the resource.
|
|
100
102
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
101
103
|
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
@@ -113,6 +115,8 @@ class Replica(pulumi.CustomResource):
|
|
|
113
115
|
The replica resource.
|
|
114
116
|
Azure REST API version: 2023-03-01.
|
|
115
117
|
|
|
118
|
+
Other available API versions: 2023-08-01-preview.
|
|
119
|
+
|
|
116
120
|
:param str resource_name: The name of the resource.
|
|
117
121
|
:param ReplicaArgs args: The arguments to use to populate this resource's properties.
|
|
118
122
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -154,7 +158,7 @@ class Replica(pulumi.CustomResource):
|
|
|
154
158
|
__props__.__dict__["provisioning_state"] = None
|
|
155
159
|
__props__.__dict__["system_data"] = None
|
|
156
160
|
__props__.__dict__["type"] = None
|
|
157
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:Replica"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:Replica")])
|
|
161
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:Replica"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:Replica"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:Replica")])
|
|
158
162
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
159
163
|
super(Replica, __self__).__init__(
|
|
160
164
|
'azure-native:appconfiguration:Replica',
|
|
@@ -328,7 +328,7 @@ class ConfigurationStore(pulumi.CustomResource):
|
|
|
328
328
|
__props__.__dict__["provisioning_state"] = None
|
|
329
329
|
__props__.__dict__["system_data"] = None
|
|
330
330
|
__props__.__dict__["type"] = None
|
|
331
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20190201preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191001:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:ConfigurationStore")])
|
|
331
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20190201preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191001:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:ConfigurationStore"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:ConfigurationStore")])
|
|
332
332
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
333
333
|
super(ConfigurationStore, __self__).__init__(
|
|
334
334
|
'azure-native:appconfiguration/v20230301:ConfigurationStore',
|
|
@@ -196,7 +196,7 @@ class KeyValue(pulumi.CustomResource):
|
|
|
196
196
|
__props__.__dict__["locked"] = None
|
|
197
197
|
__props__.__dict__["name"] = None
|
|
198
198
|
__props__.__dict__["type"] = None
|
|
199
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:KeyValue")])
|
|
199
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:KeyValue"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:KeyValue")])
|
|
200
200
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
201
201
|
super(KeyValue, __self__).__init__(
|
|
202
202
|
'azure-native:appconfiguration/v20230301:KeyValue',
|
|
@@ -173,7 +173,7 @@ class PrivateEndpointConnection(pulumi.CustomResource):
|
|
|
173
173
|
__props__.__dict__["name"] = None
|
|
174
174
|
__props__.__dict__["provisioning_state"] = None
|
|
175
175
|
__props__.__dict__["type"] = None
|
|
176
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:PrivateEndpointConnection")])
|
|
176
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20191101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200601:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20200701preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20210301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20211001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20220501:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:PrivateEndpointConnection")])
|
|
177
177
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
178
178
|
super(PrivateEndpointConnection, __self__).__init__(
|
|
179
179
|
'azure-native:appconfiguration/v20230301:PrivateEndpointConnection',
|
|
@@ -152,7 +152,7 @@ class Replica(pulumi.CustomResource):
|
|
|
152
152
|
__props__.__dict__["provisioning_state"] = None
|
|
153
153
|
__props__.__dict__["system_data"] = None
|
|
154
154
|
__props__.__dict__["type"] = None
|
|
155
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:Replica"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:Replica")])
|
|
155
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:appconfiguration:Replica"), pulumi.Alias(type_="azure-native:appconfiguration/v20220301preview:Replica"), pulumi.Alias(type_="azure-native:appconfiguration/v20230801preview:Replica")])
|
|
156
156
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
157
157
|
super(Replica, __self__).__init__(
|
|
158
158
|
'azure-native:appconfiguration/v20230301:Replica',
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
from ... import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from ._enums import *
|
|
9
|
+
from .configuration_store import *
|
|
10
|
+
from .get_configuration_store import *
|
|
11
|
+
from .get_key_value import *
|
|
12
|
+
from .get_private_endpoint_connection import *
|
|
13
|
+
from .get_replica import *
|
|
14
|
+
from .key_value import *
|
|
15
|
+
from .list_configuration_store_keys import *
|
|
16
|
+
from .private_endpoint_connection import *
|
|
17
|
+
from .replica import *
|
|
18
|
+
from ._inputs import *
|
|
19
|
+
from . import outputs
|
|
@@ -0,0 +1,78 @@
|
|
|
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
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'AuthenticationMode',
|
|
9
|
+
'ConnectionStatus',
|
|
10
|
+
'CreateMode',
|
|
11
|
+
'IdentityType',
|
|
12
|
+
'PrivateLinkDelegation',
|
|
13
|
+
'PublicNetworkAccess',
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class AuthenticationMode(str, Enum):
|
|
18
|
+
"""
|
|
19
|
+
The data plane proxy authentication mode. This property manages the authentication mode of request to the data plane resources.
|
|
20
|
+
"""
|
|
21
|
+
LOCAL = "Local"
|
|
22
|
+
"""
|
|
23
|
+
The local authentication mode. Users are not required to have data plane permissions if local authentication is not disabled.
|
|
24
|
+
"""
|
|
25
|
+
PASS_THROUGH = "Pass-through"
|
|
26
|
+
"""
|
|
27
|
+
The pass-through authentication mode. User identity will be passed through from ARM, requiring user to have data plane action permissions (Available via App Configuration Data Owner/ App Configuration Data Reader).
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class ConnectionStatus(str, Enum):
|
|
32
|
+
"""
|
|
33
|
+
The private link service connection status.
|
|
34
|
+
"""
|
|
35
|
+
PENDING = "Pending"
|
|
36
|
+
APPROVED = "Approved"
|
|
37
|
+
REJECTED = "Rejected"
|
|
38
|
+
DISCONNECTED = "Disconnected"
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class CreateMode(str, Enum):
|
|
42
|
+
"""
|
|
43
|
+
Indicates whether the configuration store need to be recovered.
|
|
44
|
+
"""
|
|
45
|
+
RECOVER = "Recover"
|
|
46
|
+
DEFAULT = "Default"
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class IdentityType(str, Enum):
|
|
50
|
+
"""
|
|
51
|
+
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.
|
|
52
|
+
"""
|
|
53
|
+
NONE = "None"
|
|
54
|
+
SYSTEM_ASSIGNED = "SystemAssigned"
|
|
55
|
+
USER_ASSIGNED = "UserAssigned"
|
|
56
|
+
SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned"
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class PrivateLinkDelegation(str, Enum):
|
|
60
|
+
"""
|
|
61
|
+
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.
|
|
62
|
+
"""
|
|
63
|
+
ENABLED = "Enabled"
|
|
64
|
+
"""
|
|
65
|
+
ARM private endpoint is required if the resource requires private link.
|
|
66
|
+
"""
|
|
67
|
+
DISABLED = "Disabled"
|
|
68
|
+
"""
|
|
69
|
+
Request is denied if the resource requires private link.
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
class PublicNetworkAccess(str, Enum):
|
|
74
|
+
"""
|
|
75
|
+
Control permission for data plane traffic coming from public networks while private endpoint is enabled.
|
|
76
|
+
"""
|
|
77
|
+
ENABLED = "Enabled"
|
|
78
|
+
DISABLED = "Disabled"
|