pulumi-azure-native 2.21.2__py3-none-any.whl → 2.21.3a1702685082__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +90 -12
- pulumi_azure_native/app/_inputs.py +2 -2
- pulumi_azure_native/app/outputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/_inputs.py +2 -2
- pulumi_azure_native/app/v20230801preview/outputs.py +2 -2
- pulumi_azure_native/appconfiguration/__init__.py +3 -0
- pulumi_azure_native/appconfiguration/configuration_store.py +3 -3
- pulumi_azure_native/appconfiguration/get_configuration_store.py +2 -2
- pulumi_azure_native/appconfiguration/get_key_value.py +4 -0
- pulumi_azure_native/appconfiguration/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/appconfiguration/get_replica.py +4 -0
- pulumi_azure_native/appconfiguration/key_value.py +5 -1
- pulumi_azure_native/appconfiguration/list_configuration_store_keys.py +2 -2
- pulumi_azure_native/appconfiguration/private_endpoint_connection.py +5 -1
- pulumi_azure_native/appconfiguration/replica.py +5 -1
- pulumi_azure_native/appconfiguration/v20230301/configuration_store.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/key_value.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/private_endpoint_connection.py +1 -1
- pulumi_azure_native/appconfiguration/v20230301/replica.py +1 -1
- pulumi_azure_native/appconfiguration/v20230801preview/__init__.py +19 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_enums.py +78 -0
- pulumi_azure_native/appconfiguration/v20230801preview/_inputs.py +253 -0
- pulumi_azure_native/appconfiguration/v20230801preview/configuration_store.py +529 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_configuration_store.py +300 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_key_value.py +217 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/appconfiguration/v20230801preview/get_replica.py +162 -0
- pulumi_azure_native/appconfiguration/v20230801preview/key_value.py +318 -0
- pulumi_azure_native/appconfiguration/v20230801preview/list_configuration_store_keys.py +97 -0
- pulumi_azure_native/appconfiguration/v20230801preview/outputs.py +699 -0
- pulumi_azure_native/appconfiguration/v20230801preview/private_endpoint_connection.py +246 -0
- pulumi_azure_native/appconfiguration/v20230801preview/replica.py +234 -0
- pulumi_azure_native/azurestackhci/__init__.py +5 -0
- pulumi_azure_native/azurestackhci/_enums.py +15 -0
- pulumi_azure_native/azurestackhci/arc_setting.py +3 -3
- pulumi_azure_native/azurestackhci/cluster.py +3 -3
- pulumi_azure_native/azurestackhci/deployment_setting.py +5 -1
- pulumi_azure_native/azurestackhci/edge_device.py +5 -1
- pulumi_azure_native/azurestackhci/extension.py +3 -3
- pulumi_azure_native/azurestackhci/get_arc_setting.py +2 -2
- pulumi_azure_native/azurestackhci/get_cluster.py +2 -2
- pulumi_azure_native/azurestackhci/get_deployment_setting.py +4 -0
- pulumi_azure_native/azurestackhci/get_edge_device.py +4 -0
- pulumi_azure_native/azurestackhci/get_extension.py +2 -2
- pulumi_azure_native/azurestackhci/get_security_setting.py +164 -0
- pulumi_azure_native/azurestackhci/get_update.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_run.py +2 -2
- pulumi_azure_native/azurestackhci/get_update_summary.py +2 -2
- pulumi_azure_native/azurestackhci/outputs.py +92 -0
- pulumi_azure_native/azurestackhci/security_setting.py +241 -0
- pulumi_azure_native/azurestackhci/update.py +3 -3
- pulumi_azure_native/azurestackhci/update_run.py +3 -3
- pulumi_azure_native/azurestackhci/update_summary.py +3 -3
- pulumi_azure_native/azurestackhci/v20210901preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20220101/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20220901/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20221215preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230301/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230601/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/arc_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/cluster.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/deployment_setting.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/edge_device.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/extension.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_run.py +1 -1
- pulumi_azure_native/azurestackhci/v20230801preview/update_summary.py +1 -1
- pulumi_azure_native/azurestackhci/v20231101preview/__init__.py +28 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_enums.py +147 -0
- pulumi_azure_native/azurestackhci/v20231101preview/_inputs.py +1824 -0
- pulumi_azure_native/azurestackhci/v20231101preview/arc_setting.py +401 -0
- pulumi_azure_native/azurestackhci/v20231101preview/cluster.py +626 -0
- pulumi_azure_native/azurestackhci/v20231101preview/deployment_setting.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/edge_device.py +205 -0
- pulumi_azure_native/azurestackhci/v20231101preview/extension.py +468 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_arc_setting.py +253 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_cluster.py +443 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_deployment_setting.py +188 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_edge_device.py +144 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_extension.py +271 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_security_setting.py +162 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update.py +357 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_run.py +297 -0
- pulumi_azure_native/azurestackhci/v20231101preview/get_update_summary.py +235 -0
- pulumi_azure_native/azurestackhci/v20231101preview/outputs.py +3394 -0
- pulumi_azure_native/azurestackhci/v20231101preview/security_setting.py +239 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update.py +690 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_run.py +585 -0
- pulumi_azure_native/azurestackhci/v20231101preview/update_summary.py +408 -0
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/__init__.py +48 -0
- pulumi_azure_native/compute/v20230901/_enums.py +650 -0
- pulumi_azure_native/compute/v20230901/_inputs.py +7313 -0
- pulumi_azure_native/compute/v20230901/availability_set.py +368 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +363 -0
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +301 -0
- pulumi_azure_native/compute/v20230901/dedicated_host.py +412 -0
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +350 -0
- pulumi_azure_native/compute/v20230901/get_availability_set.py +209 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation.py +258 -0
- pulumi_azure_native/compute/v20230901/get_capacity_reservation_group.py +201 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host.py +271 -0
- pulumi_azure_native/compute/v20230901/get_dedicated_host_group.py +214 -0
- pulumi_azure_native/compute/v20230901/get_image.py +201 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_request_rate_by_interval.py +120 -0
- pulumi_azure_native/compute/v20230901/get_log_analytic_export_throttled_requests.py +114 -0
- pulumi_azure_native/compute/v20230901/get_proximity_placement_group.py +227 -0
- pulumi_azure_native/compute/v20230901/get_restore_point.py +206 -0
- pulumi_azure_native/compute/v20230901/get_restore_point_collection.py +188 -0
- pulumi_azure_native/compute/v20230901/get_ssh_public_key.py +143 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine.py +565 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_extension.py +297 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_run_command_by_virtual_machine.py +323 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set.py +474 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_extension.py +258 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm.py +466 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_extension.py +289 -0
- pulumi_azure_native/compute/v20230901/get_virtual_machine_scale_set_vm_run_command.py +328 -0
- pulumi_azure_native/compute/v20230901/image.py +340 -0
- pulumi_azure_native/compute/v20230901/outputs.py +10926 -0
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +360 -0
- pulumi_azure_native/compute/v20230901/restore_point.py +342 -0
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +272 -0
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +240 -0
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1038 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +583 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +610 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +892 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +514 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +750 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +575 -0
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +631 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/databox/__init__.py +3 -0
- pulumi_azure_native/databox/get_job.py +2 -2
- pulumi_azure_native/databox/job.py +3 -3
- pulumi_azure_native/databox/list_job_credentials.py +2 -2
- pulumi_azure_native/databox/v20221201/job.py +1 -1
- pulumi_azure_native/databox/v20230301/job.py +1 -1
- pulumi_azure_native/databox/v20231201/__init__.py +13 -0
- pulumi_azure_native/databox/v20231201/_enums.py +270 -0
- pulumi_azure_native/databox/v20231201/_inputs.py +2350 -0
- pulumi_azure_native/databox/v20231201/get_job.py +383 -0
- pulumi_azure_native/databox/v20231201/job.py +524 -0
- pulumi_azure_native/databox/v20231201/list_job_credentials.py +92 -0
- pulumi_azure_native/databox/v20231201/outputs.py +6380 -0
- pulumi_azure_native/dataprotection/__init__.py +0 -3
- pulumi_azure_native/dataprotection/backup_instance.py +3 -3
- pulumi_azure_native/dataprotection/backup_policy.py +3 -3
- pulumi_azure_native/dataprotection/backup_vault.py +3 -3
- pulumi_azure_native/dataprotection/dpp_resource_guard_proxy.py +3 -3
- pulumi_azure_native/dataprotection/get_backup_instance.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_policy.py +2 -2
- pulumi_azure_native/dataprotection/get_backup_vault.py +2 -2
- pulumi_azure_native/dataprotection/get_dpp_resource_guard_proxy.py +2 -2
- pulumi_azure_native/dataprotection/get_resource_guard.py +2 -2
- pulumi_azure_native/dataprotection/resource_guard.py +3 -3
- pulumi_azure_native/dataprotection/v20221101preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230101/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230401preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230501/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230601preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20230801preview/resource_guard.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_instance.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/dpp_resource_guard_proxy.py +1 -1
- pulumi_azure_native/dataprotection/v20231101/resource_guard.py +1 -1
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240101/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240101/_inputs.py +141 -0
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +672 -0
- pulumi_azure_native/kubernetes/v20240101/get_connected_cluster.py +417 -0
- pulumi_azure_native/kubernetes/v20240101/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240101/outputs.py +408 -0
- pulumi_azure_native/maintenance/__init__.py +3 -0
- pulumi_azure_native/maintenance/configuration_assignment.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignment_parent.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_resource_group.py +3 -3
- pulumi_azure_native/maintenance/configuration_assignments_for_subscription.py +3 -3
- pulumi_azure_native/maintenance/get_configuration_assignment.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignment_parent.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_resource_group.py +2 -2
- pulumi_azure_native/maintenance/get_configuration_assignments_for_subscription.py +2 -2
- pulumi_azure_native/maintenance/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/maintenance/maintenance_configuration.py +3 -3
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20221101preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230401/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230401/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignment_parent.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_resource_group.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/configuration_assignments_for_subscription.py +1 -1
- pulumi_azure_native/maintenance/v20230901preview/maintenance_configuration.py +1 -1
- pulumi_azure_native/maintenance/v20231001preview/__init__.py +20 -0
- pulumi_azure_native/maintenance/v20231001preview/_enums.py +77 -0
- pulumi_azure_native/maintenance/v20231001preview/_inputs.py +334 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment.py +345 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignment_parent.py +387 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_resource_group.py +282 -0
- pulumi_azure_native/maintenance/v20231001preview/configuration_assignments_for_subscription.py +261 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment.py +185 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignment_parent.py +195 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_resource_group.py +170 -0
- pulumi_azure_native/maintenance/v20231001preview/get_configuration_assignments_for_subscription.py +165 -0
- pulumi_azure_native/maintenance/v20231001preview/get_maintenance_configuration.py +274 -0
- pulumi_azure_native/maintenance/v20231001preview/maintenance_configuration.py +514 -0
- pulumi_azure_native/maintenance/v20231001preview/outputs.py +498 -0
- pulumi_azure_native/security/__init__.py +5 -0
- pulumi_azure_native/security/_enums.py +45 -0
- pulumi_azure_native/security/_inputs.py +63 -0
- pulumi_azure_native/security/get_pricing.py +250 -0
- pulumi_azure_native/security/outputs.py +122 -0
- pulumi_azure_native/security/pricing.py +345 -0
- pulumi_azure_native/security/v20240101/__init__.py +12 -0
- pulumi_azure_native/security/v20240101/_enums.py +53 -0
- pulumi_azure_native/security/v20240101/_inputs.py +78 -0
- pulumi_azure_native/security/v20240101/get_pricing.py +248 -0
- pulumi_azure_native/security/v20240101/outputs.py +138 -0
- pulumi_azure_native/security/v20240101/pricing.py +343 -0
- pulumi_azure_native/sql/v20230501preview/get_long_term_retention_policy.py +27 -1
- pulumi_azure_native/sql/v20230501preview/long_term_retention_policy.py +59 -0
- pulumi_azure_native/synapse/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601/get_big_data_pool.py +1 -1
- pulumi_azure_native/synapse/v20210601preview/big_data_pool.py +21 -2
- pulumi_azure_native/synapse/v20210601preview/get_big_data_pool.py +1 -1
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/RECORD +363 -262
- pulumi_azure_native/dataprotection/v20230801/__init__.py +0 -20
- pulumi_azure_native/dataprotection/v20230801/_enums.py +0 -163
- pulumi_azure_native/dataprotection/v20230801/_inputs.py +0 -2383
- pulumi_azure_native/dataprotection/v20230801/backup_instance.py +0 -245
- pulumi_azure_native/dataprotection/v20230801/backup_policy.py +0 -216
- pulumi_azure_native/dataprotection/v20230801/backup_vault.py +0 -312
- pulumi_azure_native/dataprotection/v20230801/dpp_resource_guard_proxy.py +0 -215
- pulumi_azure_native/dataprotection/v20230801/get_backup_instance.py +0 -149
- pulumi_azure_native/dataprotection/v20230801/get_backup_policy.py +0 -134
- pulumi_azure_native/dataprotection/v20230801/get_backup_vault.py +0 -183
- pulumi_azure_native/dataprotection/v20230801/get_dpp_resource_guard_proxy.py +0 -136
- pulumi_azure_native/dataprotection/v20230801/get_resource_guard.py +0 -165
- pulumi_azure_native/dataprotection/v20230801/outputs.py +0 -3648
- pulumi_azure_native/dataprotection/v20230801/resource_guard.py +0 -279
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.21.2.dist-info → pulumi_azure_native-2.21.3a1702685082.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
from ._inputs import *
|
|
14
|
+
|
|
15
|
+
__all__ = ['PrivateEndpointConnectionArgs', 'PrivateEndpointConnection']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class PrivateEndpointConnectionArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
config_store_name: pulumi.Input[str],
|
|
21
|
+
private_link_service_connection_state: pulumi.Input['PrivateLinkServiceConnectionStateArgs'],
|
|
22
|
+
resource_group_name: pulumi.Input[str],
|
|
23
|
+
private_endpoint: Optional[pulumi.Input['PrivateEndpointArgs']] = None,
|
|
24
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a PrivateEndpointConnection resource.
|
|
27
|
+
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
28
|
+
:param pulumi.Input['PrivateLinkServiceConnectionStateArgs'] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
29
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group to which the container registry belongs.
|
|
30
|
+
:param pulumi.Input['PrivateEndpointArgs'] private_endpoint: The resource of private endpoint.
|
|
31
|
+
:param pulumi.Input[str] private_endpoint_connection_name: Private endpoint connection name
|
|
32
|
+
"""
|
|
33
|
+
pulumi.set(__self__, "config_store_name", config_store_name)
|
|
34
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
35
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
36
|
+
if private_endpoint is not None:
|
|
37
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
38
|
+
if private_endpoint_connection_name is not None:
|
|
39
|
+
pulumi.set(__self__, "private_endpoint_connection_name", private_endpoint_connection_name)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter(name="configStoreName")
|
|
43
|
+
def config_store_name(self) -> pulumi.Input[str]:
|
|
44
|
+
"""
|
|
45
|
+
The name of the configuration store.
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "config_store_name")
|
|
48
|
+
|
|
49
|
+
@config_store_name.setter
|
|
50
|
+
def config_store_name(self, value: pulumi.Input[str]):
|
|
51
|
+
pulumi.set(self, "config_store_name", value)
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
55
|
+
def private_link_service_connection_state(self) -> pulumi.Input['PrivateLinkServiceConnectionStateArgs']:
|
|
56
|
+
"""
|
|
57
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
60
|
+
|
|
61
|
+
@private_link_service_connection_state.setter
|
|
62
|
+
def private_link_service_connection_state(self, value: pulumi.Input['PrivateLinkServiceConnectionStateArgs']):
|
|
63
|
+
pulumi.set(self, "private_link_service_connection_state", value)
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="resourceGroupName")
|
|
67
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
68
|
+
"""
|
|
69
|
+
The name of the resource group to which the container registry belongs.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "resource_group_name")
|
|
72
|
+
|
|
73
|
+
@resource_group_name.setter
|
|
74
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
75
|
+
pulumi.set(self, "resource_group_name", value)
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="privateEndpoint")
|
|
79
|
+
def private_endpoint(self) -> Optional[pulumi.Input['PrivateEndpointArgs']]:
|
|
80
|
+
"""
|
|
81
|
+
The resource of private endpoint.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "private_endpoint")
|
|
84
|
+
|
|
85
|
+
@private_endpoint.setter
|
|
86
|
+
def private_endpoint(self, value: Optional[pulumi.Input['PrivateEndpointArgs']]):
|
|
87
|
+
pulumi.set(self, "private_endpoint", value)
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter(name="privateEndpointConnectionName")
|
|
91
|
+
def private_endpoint_connection_name(self) -> Optional[pulumi.Input[str]]:
|
|
92
|
+
"""
|
|
93
|
+
Private endpoint connection name
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "private_endpoint_connection_name")
|
|
96
|
+
|
|
97
|
+
@private_endpoint_connection_name.setter
|
|
98
|
+
def private_endpoint_connection_name(self, value: Optional[pulumi.Input[str]]):
|
|
99
|
+
pulumi.set(self, "private_endpoint_connection_name", value)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
class PrivateEndpointConnection(pulumi.CustomResource):
|
|
103
|
+
@overload
|
|
104
|
+
def __init__(__self__,
|
|
105
|
+
resource_name: str,
|
|
106
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
107
|
+
config_store_name: Optional[pulumi.Input[str]] = None,
|
|
108
|
+
private_endpoint: Optional[pulumi.Input[pulumi.InputType['PrivateEndpointArgs']]] = None,
|
|
109
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
110
|
+
private_link_service_connection_state: Optional[pulumi.Input[pulumi.InputType['PrivateLinkServiceConnectionStateArgs']]] = None,
|
|
111
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
112
|
+
__props__=None):
|
|
113
|
+
"""
|
|
114
|
+
A private endpoint connection
|
|
115
|
+
|
|
116
|
+
:param str resource_name: The name of the resource.
|
|
117
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
118
|
+
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
119
|
+
:param pulumi.Input[pulumi.InputType['PrivateEndpointArgs']] private_endpoint: The resource of private endpoint.
|
|
120
|
+
:param pulumi.Input[str] private_endpoint_connection_name: Private endpoint connection name
|
|
121
|
+
:param pulumi.Input[pulumi.InputType['PrivateLinkServiceConnectionStateArgs']] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
122
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group to which the container registry belongs.
|
|
123
|
+
"""
|
|
124
|
+
...
|
|
125
|
+
@overload
|
|
126
|
+
def __init__(__self__,
|
|
127
|
+
resource_name: str,
|
|
128
|
+
args: PrivateEndpointConnectionArgs,
|
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
130
|
+
"""
|
|
131
|
+
A private endpoint connection
|
|
132
|
+
|
|
133
|
+
:param str resource_name: The name of the resource.
|
|
134
|
+
:param PrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
135
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
136
|
+
"""
|
|
137
|
+
...
|
|
138
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
139
|
+
resource_args, opts = _utilities.get_resource_args_opts(PrivateEndpointConnectionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
140
|
+
if resource_args is not None:
|
|
141
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
142
|
+
else:
|
|
143
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
144
|
+
|
|
145
|
+
def _internal_init(__self__,
|
|
146
|
+
resource_name: str,
|
|
147
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
148
|
+
config_store_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
private_endpoint: Optional[pulumi.Input[pulumi.InputType['PrivateEndpointArgs']]] = None,
|
|
150
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
151
|
+
private_link_service_connection_state: Optional[pulumi.Input[pulumi.InputType['PrivateLinkServiceConnectionStateArgs']]] = None,
|
|
152
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
153
|
+
__props__=None):
|
|
154
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
155
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
156
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
157
|
+
if opts.id is None:
|
|
158
|
+
if __props__ is not None:
|
|
159
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
160
|
+
__props__ = PrivateEndpointConnectionArgs.__new__(PrivateEndpointConnectionArgs)
|
|
161
|
+
|
|
162
|
+
if config_store_name is None and not opts.urn:
|
|
163
|
+
raise TypeError("Missing required property 'config_store_name'")
|
|
164
|
+
__props__.__dict__["config_store_name"] = config_store_name
|
|
165
|
+
__props__.__dict__["private_endpoint"] = private_endpoint
|
|
166
|
+
__props__.__dict__["private_endpoint_connection_name"] = private_endpoint_connection_name
|
|
167
|
+
if private_link_service_connection_state is None and not opts.urn:
|
|
168
|
+
raise TypeError("Missing required property 'private_link_service_connection_state'")
|
|
169
|
+
__props__.__dict__["private_link_service_connection_state"] = private_link_service_connection_state
|
|
170
|
+
if resource_group_name is None and not opts.urn:
|
|
171
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
172
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
173
|
+
__props__.__dict__["name"] = None
|
|
174
|
+
__props__.__dict__["provisioning_state"] = None
|
|
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"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:PrivateEndpointConnection")])
|
|
177
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
178
|
+
super(PrivateEndpointConnection, __self__).__init__(
|
|
179
|
+
'azure-native:appconfiguration/v20230801preview:PrivateEndpointConnection',
|
|
180
|
+
resource_name,
|
|
181
|
+
__props__,
|
|
182
|
+
opts)
|
|
183
|
+
|
|
184
|
+
@staticmethod
|
|
185
|
+
def get(resource_name: str,
|
|
186
|
+
id: pulumi.Input[str],
|
|
187
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'PrivateEndpointConnection':
|
|
188
|
+
"""
|
|
189
|
+
Get an existing PrivateEndpointConnection resource's state with the given name, id, and optional extra
|
|
190
|
+
properties used to qualify the lookup.
|
|
191
|
+
|
|
192
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
193
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
194
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
195
|
+
"""
|
|
196
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
197
|
+
|
|
198
|
+
__props__ = PrivateEndpointConnectionArgs.__new__(PrivateEndpointConnectionArgs)
|
|
199
|
+
|
|
200
|
+
__props__.__dict__["name"] = None
|
|
201
|
+
__props__.__dict__["private_endpoint"] = None
|
|
202
|
+
__props__.__dict__["private_link_service_connection_state"] = None
|
|
203
|
+
__props__.__dict__["provisioning_state"] = None
|
|
204
|
+
__props__.__dict__["type"] = None
|
|
205
|
+
return PrivateEndpointConnection(resource_name, opts=opts, __props__=__props__)
|
|
206
|
+
|
|
207
|
+
@property
|
|
208
|
+
@pulumi.getter
|
|
209
|
+
def name(self) -> pulumi.Output[str]:
|
|
210
|
+
"""
|
|
211
|
+
The name of the resource.
|
|
212
|
+
"""
|
|
213
|
+
return pulumi.get(self, "name")
|
|
214
|
+
|
|
215
|
+
@property
|
|
216
|
+
@pulumi.getter(name="privateEndpoint")
|
|
217
|
+
def private_endpoint(self) -> pulumi.Output[Optional['outputs.PrivateEndpointResponse']]:
|
|
218
|
+
"""
|
|
219
|
+
The resource of private endpoint.
|
|
220
|
+
"""
|
|
221
|
+
return pulumi.get(self, "private_endpoint")
|
|
222
|
+
|
|
223
|
+
@property
|
|
224
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
225
|
+
def private_link_service_connection_state(self) -> pulumi.Output['outputs.PrivateLinkServiceConnectionStateResponse']:
|
|
226
|
+
"""
|
|
227
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
228
|
+
"""
|
|
229
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
@pulumi.getter(name="provisioningState")
|
|
233
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
234
|
+
"""
|
|
235
|
+
The provisioning status of the private endpoint connection.
|
|
236
|
+
"""
|
|
237
|
+
return pulumi.get(self, "provisioning_state")
|
|
238
|
+
|
|
239
|
+
@property
|
|
240
|
+
@pulumi.getter
|
|
241
|
+
def type(self) -> pulumi.Output[str]:
|
|
242
|
+
"""
|
|
243
|
+
The type of the resource.
|
|
244
|
+
"""
|
|
245
|
+
return pulumi.get(self, "type")
|
|
246
|
+
|
|
@@ -0,0 +1,234 @@
|
|
|
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__ = ['ReplicaArgs', 'Replica']
|
|
14
|
+
|
|
15
|
+
@pulumi.input_type
|
|
16
|
+
class ReplicaArgs:
|
|
17
|
+
def __init__(__self__, *,
|
|
18
|
+
config_store_name: pulumi.Input[str],
|
|
19
|
+
resource_group_name: pulumi.Input[str],
|
|
20
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
21
|
+
replica_name: Optional[pulumi.Input[str]] = None):
|
|
22
|
+
"""
|
|
23
|
+
The set of arguments for constructing a Replica resource.
|
|
24
|
+
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
25
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group to which the container registry belongs.
|
|
26
|
+
:param pulumi.Input[str] location: The location of the replica.
|
|
27
|
+
:param pulumi.Input[str] replica_name: The name of the replica.
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "config_store_name", config_store_name)
|
|
30
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
31
|
+
if location is not None:
|
|
32
|
+
pulumi.set(__self__, "location", location)
|
|
33
|
+
if replica_name is not None:
|
|
34
|
+
pulumi.set(__self__, "replica_name", replica_name)
|
|
35
|
+
|
|
36
|
+
@property
|
|
37
|
+
@pulumi.getter(name="configStoreName")
|
|
38
|
+
def config_store_name(self) -> pulumi.Input[str]:
|
|
39
|
+
"""
|
|
40
|
+
The name of the configuration store.
|
|
41
|
+
"""
|
|
42
|
+
return pulumi.get(self, "config_store_name")
|
|
43
|
+
|
|
44
|
+
@config_store_name.setter
|
|
45
|
+
def config_store_name(self, value: pulumi.Input[str]):
|
|
46
|
+
pulumi.set(self, "config_store_name", value)
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
@pulumi.getter(name="resourceGroupName")
|
|
50
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
51
|
+
"""
|
|
52
|
+
The name of the resource group to which the container registry belongs.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "resource_group_name")
|
|
55
|
+
|
|
56
|
+
@resource_group_name.setter
|
|
57
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
58
|
+
pulumi.set(self, "resource_group_name", value)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter
|
|
62
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
63
|
+
"""
|
|
64
|
+
The location of the replica.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "location")
|
|
67
|
+
|
|
68
|
+
@location.setter
|
|
69
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
70
|
+
pulumi.set(self, "location", value)
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="replicaName")
|
|
74
|
+
def replica_name(self) -> Optional[pulumi.Input[str]]:
|
|
75
|
+
"""
|
|
76
|
+
The name of the replica.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "replica_name")
|
|
79
|
+
|
|
80
|
+
@replica_name.setter
|
|
81
|
+
def replica_name(self, value: Optional[pulumi.Input[str]]):
|
|
82
|
+
pulumi.set(self, "replica_name", value)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class Replica(pulumi.CustomResource):
|
|
86
|
+
@overload
|
|
87
|
+
def __init__(__self__,
|
|
88
|
+
resource_name: str,
|
|
89
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
90
|
+
config_store_name: Optional[pulumi.Input[str]] = None,
|
|
91
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
92
|
+
replica_name: Optional[pulumi.Input[str]] = None,
|
|
93
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
94
|
+
__props__=None):
|
|
95
|
+
"""
|
|
96
|
+
The replica resource.
|
|
97
|
+
|
|
98
|
+
:param str resource_name: The name of the resource.
|
|
99
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
100
|
+
:param pulumi.Input[str] config_store_name: The name of the configuration store.
|
|
101
|
+
:param pulumi.Input[str] location: The location of the replica.
|
|
102
|
+
:param pulumi.Input[str] replica_name: The name of the replica.
|
|
103
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group to which the container registry belongs.
|
|
104
|
+
"""
|
|
105
|
+
...
|
|
106
|
+
@overload
|
|
107
|
+
def __init__(__self__,
|
|
108
|
+
resource_name: str,
|
|
109
|
+
args: ReplicaArgs,
|
|
110
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
111
|
+
"""
|
|
112
|
+
The replica resource.
|
|
113
|
+
|
|
114
|
+
:param str resource_name: The name of the resource.
|
|
115
|
+
:param ReplicaArgs args: The arguments to use to populate this resource's properties.
|
|
116
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
117
|
+
"""
|
|
118
|
+
...
|
|
119
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
120
|
+
resource_args, opts = _utilities.get_resource_args_opts(ReplicaArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
121
|
+
if resource_args is not None:
|
|
122
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
123
|
+
else:
|
|
124
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
125
|
+
|
|
126
|
+
def _internal_init(__self__,
|
|
127
|
+
resource_name: str,
|
|
128
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
129
|
+
config_store_name: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
replica_name: Optional[pulumi.Input[str]] = None,
|
|
132
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
133
|
+
__props__=None):
|
|
134
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
135
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
136
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
137
|
+
if opts.id is None:
|
|
138
|
+
if __props__ is not None:
|
|
139
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
140
|
+
__props__ = ReplicaArgs.__new__(ReplicaArgs)
|
|
141
|
+
|
|
142
|
+
if config_store_name is None and not opts.urn:
|
|
143
|
+
raise TypeError("Missing required property 'config_store_name'")
|
|
144
|
+
__props__.__dict__["config_store_name"] = config_store_name
|
|
145
|
+
__props__.__dict__["location"] = location
|
|
146
|
+
__props__.__dict__["replica_name"] = replica_name
|
|
147
|
+
if resource_group_name is None and not opts.urn:
|
|
148
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
149
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
150
|
+
__props__.__dict__["endpoint"] = None
|
|
151
|
+
__props__.__dict__["name"] = None
|
|
152
|
+
__props__.__dict__["provisioning_state"] = None
|
|
153
|
+
__props__.__dict__["system_data"] = None
|
|
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"), pulumi.Alias(type_="azure-native:appconfiguration/v20230301:Replica")])
|
|
156
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
157
|
+
super(Replica, __self__).__init__(
|
|
158
|
+
'azure-native:appconfiguration/v20230801preview:Replica',
|
|
159
|
+
resource_name,
|
|
160
|
+
__props__,
|
|
161
|
+
opts)
|
|
162
|
+
|
|
163
|
+
@staticmethod
|
|
164
|
+
def get(resource_name: str,
|
|
165
|
+
id: pulumi.Input[str],
|
|
166
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Replica':
|
|
167
|
+
"""
|
|
168
|
+
Get an existing Replica resource's state with the given name, id, and optional extra
|
|
169
|
+
properties used to qualify the lookup.
|
|
170
|
+
|
|
171
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
172
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
173
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
174
|
+
"""
|
|
175
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
176
|
+
|
|
177
|
+
__props__ = ReplicaArgs.__new__(ReplicaArgs)
|
|
178
|
+
|
|
179
|
+
__props__.__dict__["endpoint"] = None
|
|
180
|
+
__props__.__dict__["location"] = None
|
|
181
|
+
__props__.__dict__["name"] = None
|
|
182
|
+
__props__.__dict__["provisioning_state"] = None
|
|
183
|
+
__props__.__dict__["system_data"] = None
|
|
184
|
+
__props__.__dict__["type"] = None
|
|
185
|
+
return Replica(resource_name, opts=opts, __props__=__props__)
|
|
186
|
+
|
|
187
|
+
@property
|
|
188
|
+
@pulumi.getter
|
|
189
|
+
def endpoint(self) -> pulumi.Output[str]:
|
|
190
|
+
"""
|
|
191
|
+
The URI of the replica where the replica API will be available.
|
|
192
|
+
"""
|
|
193
|
+
return pulumi.get(self, "endpoint")
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter
|
|
197
|
+
def location(self) -> pulumi.Output[Optional[str]]:
|
|
198
|
+
"""
|
|
199
|
+
The location of the replica.
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "location")
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter
|
|
205
|
+
def name(self) -> pulumi.Output[str]:
|
|
206
|
+
"""
|
|
207
|
+
The name of the replica.
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "name")
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
@pulumi.getter(name="provisioningState")
|
|
213
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
214
|
+
"""
|
|
215
|
+
The provisioning state of the replica.
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "provisioning_state")
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
@pulumi.getter(name="systemData")
|
|
221
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
222
|
+
"""
|
|
223
|
+
Resource system metadata.
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "system_data")
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter
|
|
229
|
+
def type(self) -> pulumi.Output[str]:
|
|
230
|
+
"""
|
|
231
|
+
The type of the resource.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "type")
|
|
234
|
+
|
|
@@ -24,6 +24,7 @@ from .get_logical_network import *
|
|
|
24
24
|
from .get_machine_extension import *
|
|
25
25
|
from .get_marketplace_gallery_image import *
|
|
26
26
|
from .get_network_interface import *
|
|
27
|
+
from .get_security_setting import *
|
|
27
28
|
from .get_storage_container import *
|
|
28
29
|
from .get_update import *
|
|
29
30
|
from .get_update_run import *
|
|
@@ -38,6 +39,7 @@ from .logical_network import *
|
|
|
38
39
|
from .machine_extension import *
|
|
39
40
|
from .marketplace_gallery_image import *
|
|
40
41
|
from .network_interface import *
|
|
42
|
+
from .security_setting import *
|
|
41
43
|
from .storage_container import *
|
|
42
44
|
from .update import *
|
|
43
45
|
from .update_run import *
|
|
@@ -71,6 +73,8 @@ if typing.TYPE_CHECKING:
|
|
|
71
73
|
v20230801preview = __v20230801preview
|
|
72
74
|
import pulumi_azure_native.azurestackhci.v20230901preview as __v20230901preview
|
|
73
75
|
v20230901preview = __v20230901preview
|
|
76
|
+
import pulumi_azure_native.azurestackhci.v20231101preview as __v20231101preview
|
|
77
|
+
v20231101preview = __v20231101preview
|
|
74
78
|
else:
|
|
75
79
|
v20210901preview = _utilities.lazy_import('pulumi_azure_native.azurestackhci.v20210901preview')
|
|
76
80
|
v20220101 = _utilities.lazy_import('pulumi_azure_native.azurestackhci.v20220101')
|
|
@@ -82,4 +86,5 @@ else:
|
|
|
82
86
|
v20230801 = _utilities.lazy_import('pulumi_azure_native.azurestackhci.v20230801')
|
|
83
87
|
v20230801preview = _utilities.lazy_import('pulumi_azure_native.azurestackhci.v20230801preview')
|
|
84
88
|
v20230901preview = _utilities.lazy_import('pulumi_azure_native.azurestackhci.v20230901preview')
|
|
89
|
+
v20231101preview = _utilities.lazy_import('pulumi_azure_native.azurestackhci.v20231101preview')
|
|
85
90
|
|
|
@@ -7,6 +7,7 @@ from enum import Enum
|
|
|
7
7
|
__all__ = [
|
|
8
8
|
'AvailabilityType',
|
|
9
9
|
'CloudInitDataSource',
|
|
10
|
+
'ComplianceAssignmentType',
|
|
10
11
|
'DeploymentMode',
|
|
11
12
|
'DiagnosticLevel',
|
|
12
13
|
'DiskFileFormat',
|
|
@@ -49,6 +50,20 @@ class CloudInitDataSource(str, Enum):
|
|
|
49
50
|
AZURE = "Azure"
|
|
50
51
|
|
|
51
52
|
|
|
53
|
+
class ComplianceAssignmentType(str, Enum):
|
|
54
|
+
"""
|
|
55
|
+
Secured Core Compliance Assignment
|
|
56
|
+
"""
|
|
57
|
+
AUDIT = "Audit"
|
|
58
|
+
"""
|
|
59
|
+
Report on the state of the machine, but don't make changes.
|
|
60
|
+
"""
|
|
61
|
+
APPLY_AND_AUTO_CORRECT = "ApplyAndAutoCorrect"
|
|
62
|
+
"""
|
|
63
|
+
Applied to the machine. If it drifts, the local service inside the machine makes a correction at the next evaluation.
|
|
64
|
+
"""
|
|
65
|
+
|
|
66
|
+
|
|
52
67
|
class DeploymentMode(str, Enum):
|
|
53
68
|
"""
|
|
54
69
|
The deployment mode for cluster deployment.
|
|
@@ -182,7 +182,7 @@ class ArcSetting(pulumi.CustomResource):
|
|
|
182
182
|
ArcSetting details.
|
|
183
183
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2021-01-01-preview.
|
|
184
184
|
|
|
185
|
-
Other available API versions: 2021-09-01-preview, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview.
|
|
185
|
+
Other available API versions: 2021-09-01-preview, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview.
|
|
186
186
|
|
|
187
187
|
:param str resource_name: The name of the resource.
|
|
188
188
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -206,7 +206,7 @@ class ArcSetting(pulumi.CustomResource):
|
|
|
206
206
|
ArcSetting details.
|
|
207
207
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2021-01-01-preview.
|
|
208
208
|
|
|
209
|
-
Other available API versions: 2021-09-01-preview, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview.
|
|
209
|
+
Other available API versions: 2021-09-01-preview, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview.
|
|
210
210
|
|
|
211
211
|
:param str resource_name: The name of the resource.
|
|
212
212
|
:param ArcSettingArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -261,7 +261,7 @@ class ArcSetting(pulumi.CustomResource):
|
|
|
261
261
|
__props__.__dict__["provisioning_state"] = None
|
|
262
262
|
__props__.__dict__["system_data"] = None
|
|
263
263
|
__props__.__dict__["type"] = None
|
|
264
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20210101preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220101:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220301:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220501:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220901:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20221001:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20221201:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20221215preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230201:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230301:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230601:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:ArcSetting")])
|
|
264
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20210101preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220101:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220301:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220501:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20220901:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20221001:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20221201:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20221215preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230201:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230301:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230601:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:ArcSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20231101preview:ArcSetting")])
|
|
265
265
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
266
266
|
super(ArcSetting, __self__).__init__(
|
|
267
267
|
'azure-native:azurestackhci:ArcSetting',
|
|
@@ -251,7 +251,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
251
251
|
Cluster details.
|
|
252
252
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-10-01.
|
|
253
253
|
|
|
254
|
-
Other available API versions: 2022-01-01, 2022-09-01, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview.
|
|
254
|
+
Other available API versions: 2022-01-01, 2022-09-01, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview.
|
|
255
255
|
|
|
256
256
|
:param str resource_name: The name of the resource.
|
|
257
257
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -279,7 +279,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
279
279
|
Cluster details.
|
|
280
280
|
Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-10-01.
|
|
281
281
|
|
|
282
|
-
Other available API versions: 2022-01-01, 2022-09-01, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview.
|
|
282
|
+
Other available API versions: 2022-01-01, 2022-09-01, 2022-12-15-preview, 2023-06-01, 2023-08-01, 2023-08-01-preview, 2023-11-01-preview.
|
|
283
283
|
|
|
284
284
|
:param str resource_name: The name of the resource.
|
|
285
285
|
:param ClusterInitArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -350,7 +350,7 @@ class Cluster(pulumi.CustomResource):
|
|
|
350
350
|
__props__.__dict__["system_data"] = None
|
|
351
351
|
__props__.__dict__["tenant_id"] = None
|
|
352
352
|
__props__.__dict__["trial_days_remaining"] = None
|
|
353
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20200301preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20201001:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20210101preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220101:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220301:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220501:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220901:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20221001:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20221201:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20221215preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230201:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230301:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230601:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:Cluster")])
|
|
353
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20200301preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20201001:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20210101preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20210901preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220101:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220301:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220501:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20220901:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20221001:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20221201:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20221215preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230201:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230301:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230601:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:Cluster"), pulumi.Alias(type_="azure-native:azurestackhci/v20231101preview:Cluster")])
|
|
354
354
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
355
355
|
super(Cluster, __self__).__init__(
|
|
356
356
|
'azure-native:azurestackhci:Cluster',
|
|
@@ -129,6 +129,8 @@ class DeploymentSetting(pulumi.CustomResource):
|
|
|
129
129
|
Edge device resource
|
|
130
130
|
Azure REST API version: 2023-08-01-preview.
|
|
131
131
|
|
|
132
|
+
Other available API versions: 2023-11-01-preview.
|
|
133
|
+
|
|
132
134
|
:param str resource_name: The name of the resource.
|
|
133
135
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
134
136
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] arc_node_resource_ids: Azure resource ids of Arc machines to be part of cluster.
|
|
@@ -148,6 +150,8 @@ class DeploymentSetting(pulumi.CustomResource):
|
|
|
148
150
|
Edge device resource
|
|
149
151
|
Azure REST API version: 2023-08-01-preview.
|
|
150
152
|
|
|
153
|
+
Other available API versions: 2023-11-01-preview.
|
|
154
|
+
|
|
151
155
|
:param str resource_name: The name of the resource.
|
|
152
156
|
:param DeploymentSettingArgs args: The arguments to use to populate this resource's properties.
|
|
153
157
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -199,7 +203,7 @@ class DeploymentSetting(pulumi.CustomResource):
|
|
|
199
203
|
__props__.__dict__["reported_properties"] = None
|
|
200
204
|
__props__.__dict__["system_data"] = None
|
|
201
205
|
__props__.__dict__["type"] = None
|
|
202
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:DeploymentSetting")])
|
|
206
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:DeploymentSetting"), pulumi.Alias(type_="azure-native:azurestackhci/v20231101preview:DeploymentSetting")])
|
|
203
207
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
204
208
|
super(DeploymentSetting, __self__).__init__(
|
|
205
209
|
'azure-native:azurestackhci:DeploymentSetting',
|
|
@@ -80,6 +80,8 @@ class EdgeDevice(pulumi.CustomResource):
|
|
|
80
80
|
Edge device resource
|
|
81
81
|
Azure REST API version: 2023-08-01-preview.
|
|
82
82
|
|
|
83
|
+
Other available API versions: 2023-11-01-preview.
|
|
84
|
+
|
|
83
85
|
:param str resource_name: The name of the resource.
|
|
84
86
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
85
87
|
:param pulumi.Input[pulumi.InputType['DeviceConfigurationArgs']] device_configuration: Device Configuration
|
|
@@ -96,6 +98,8 @@ class EdgeDevice(pulumi.CustomResource):
|
|
|
96
98
|
Edge device resource
|
|
97
99
|
Azure REST API version: 2023-08-01-preview.
|
|
98
100
|
|
|
101
|
+
Other available API versions: 2023-11-01-preview.
|
|
102
|
+
|
|
99
103
|
:param str resource_name: The name of the resource.
|
|
100
104
|
:param EdgeDeviceArgs args: The arguments to use to populate this resource's properties.
|
|
101
105
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -134,7 +138,7 @@ class EdgeDevice(pulumi.CustomResource):
|
|
|
134
138
|
__props__.__dict__["provisioning_state"] = None
|
|
135
139
|
__props__.__dict__["system_data"] = None
|
|
136
140
|
__props__.__dict__["type"] = None
|
|
137
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:EdgeDevice")])
|
|
141
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:azurestackhci/v20230801preview:EdgeDevice"), pulumi.Alias(type_="azure-native:azurestackhci/v20231101preview:EdgeDevice")])
|
|
138
142
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
139
143
|
super(EdgeDevice, __self__).__init__(
|
|
140
144
|
'azure-native:azurestackhci:EdgeDevice',
|