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,3394 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
'AdapterPropertyOverridesResponse',
|
|
16
|
+
'ArcConnectivityPropertiesResponse',
|
|
17
|
+
'ClusterDesiredPropertiesResponse',
|
|
18
|
+
'ClusterNodeResponse',
|
|
19
|
+
'ClusterReportedPropertiesResponse',
|
|
20
|
+
'DefaultExtensionDetailsResponse',
|
|
21
|
+
'DeploymentClusterResponse',
|
|
22
|
+
'DeploymentConfigurationResponse',
|
|
23
|
+
'DeploymentDataResponse',
|
|
24
|
+
'DeploymentSecuritySettingsResponse',
|
|
25
|
+
'DeploymentStatusResponse',
|
|
26
|
+
'DeploymentStepResponse',
|
|
27
|
+
'DeviceConfigurationResponse',
|
|
28
|
+
'ExtensionInstanceViewResponse',
|
|
29
|
+
'ExtensionInstanceViewResponseStatus',
|
|
30
|
+
'HostNetworkResponse',
|
|
31
|
+
'InfrastructureNetworkResponse',
|
|
32
|
+
'IntentsResponse',
|
|
33
|
+
'IpPoolsResponse',
|
|
34
|
+
'IsolatedVmAttestationConfigurationResponse',
|
|
35
|
+
'NicDetailResponse',
|
|
36
|
+
'ObservabilityResponse',
|
|
37
|
+
'OptionalServicesResponse',
|
|
38
|
+
'PerNodeExtensionStateResponse',
|
|
39
|
+
'PerNodeStateResponse',
|
|
40
|
+
'PhysicalNodesResponse',
|
|
41
|
+
'QosPolicyOverridesResponse',
|
|
42
|
+
'ReportedPropertiesResponse',
|
|
43
|
+
'ScaleUnitsResponse',
|
|
44
|
+
'SecurityComplianceStatusResponse',
|
|
45
|
+
'ServiceConfigurationResponse',
|
|
46
|
+
'SoftwareAssurancePropertiesResponse',
|
|
47
|
+
'StepResponse',
|
|
48
|
+
'StorageNetworksResponse',
|
|
49
|
+
'StorageResponse',
|
|
50
|
+
'SystemDataResponse',
|
|
51
|
+
'UpdatePrerequisiteResponse',
|
|
52
|
+
'UserAssignedIdentityResponse',
|
|
53
|
+
'ValidationStatusResponse',
|
|
54
|
+
'VirtualSwitchConfigurationOverridesResponse',
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
@pulumi.output_type
|
|
58
|
+
class AdapterPropertyOverridesResponse(dict):
|
|
59
|
+
"""
|
|
60
|
+
The AdapterPropertyOverrides of a cluster.
|
|
61
|
+
"""
|
|
62
|
+
@staticmethod
|
|
63
|
+
def __key_warning(key: str):
|
|
64
|
+
suggest = None
|
|
65
|
+
if key == "jumboPacket":
|
|
66
|
+
suggest = "jumbo_packet"
|
|
67
|
+
elif key == "networkDirect":
|
|
68
|
+
suggest = "network_direct"
|
|
69
|
+
elif key == "networkDirectTechnology":
|
|
70
|
+
suggest = "network_direct_technology"
|
|
71
|
+
|
|
72
|
+
if suggest:
|
|
73
|
+
pulumi.log.warn(f"Key '{key}' not found in AdapterPropertyOverridesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
74
|
+
|
|
75
|
+
def __getitem__(self, key: str) -> Any:
|
|
76
|
+
AdapterPropertyOverridesResponse.__key_warning(key)
|
|
77
|
+
return super().__getitem__(key)
|
|
78
|
+
|
|
79
|
+
def get(self, key: str, default = None) -> Any:
|
|
80
|
+
AdapterPropertyOverridesResponse.__key_warning(key)
|
|
81
|
+
return super().get(key, default)
|
|
82
|
+
|
|
83
|
+
def __init__(__self__, *,
|
|
84
|
+
jumbo_packet: Optional[str] = None,
|
|
85
|
+
network_direct: Optional[str] = None,
|
|
86
|
+
network_direct_technology: Optional[str] = None):
|
|
87
|
+
"""
|
|
88
|
+
The AdapterPropertyOverrides of a cluster.
|
|
89
|
+
:param str jumbo_packet: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
90
|
+
:param str network_direct: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
91
|
+
:param str network_direct_technology: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation. Expected values are 'iWARP', 'RoCEv2', 'RoCE'
|
|
92
|
+
"""
|
|
93
|
+
if jumbo_packet is not None:
|
|
94
|
+
pulumi.set(__self__, "jumbo_packet", jumbo_packet)
|
|
95
|
+
if network_direct is not None:
|
|
96
|
+
pulumi.set(__self__, "network_direct", network_direct)
|
|
97
|
+
if network_direct_technology is not None:
|
|
98
|
+
pulumi.set(__self__, "network_direct_technology", network_direct_technology)
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter(name="jumboPacket")
|
|
102
|
+
def jumbo_packet(self) -> Optional[str]:
|
|
103
|
+
"""
|
|
104
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "jumbo_packet")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter(name="networkDirect")
|
|
110
|
+
def network_direct(self) -> Optional[str]:
|
|
111
|
+
"""
|
|
112
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "network_direct")
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter(name="networkDirectTechnology")
|
|
118
|
+
def network_direct_technology(self) -> Optional[str]:
|
|
119
|
+
"""
|
|
120
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation. Expected values are 'iWARP', 'RoCEv2', 'RoCE'
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "network_direct_technology")
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
@pulumi.output_type
|
|
126
|
+
class ArcConnectivityPropertiesResponse(dict):
|
|
127
|
+
"""
|
|
128
|
+
Connectivity related configuration required by arc server.
|
|
129
|
+
"""
|
|
130
|
+
@staticmethod
|
|
131
|
+
def __key_warning(key: str):
|
|
132
|
+
suggest = None
|
|
133
|
+
if key == "serviceConfigurations":
|
|
134
|
+
suggest = "service_configurations"
|
|
135
|
+
|
|
136
|
+
if suggest:
|
|
137
|
+
pulumi.log.warn(f"Key '{key}' not found in ArcConnectivityPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
138
|
+
|
|
139
|
+
def __getitem__(self, key: str) -> Any:
|
|
140
|
+
ArcConnectivityPropertiesResponse.__key_warning(key)
|
|
141
|
+
return super().__getitem__(key)
|
|
142
|
+
|
|
143
|
+
def get(self, key: str, default = None) -> Any:
|
|
144
|
+
ArcConnectivityPropertiesResponse.__key_warning(key)
|
|
145
|
+
return super().get(key, default)
|
|
146
|
+
|
|
147
|
+
def __init__(__self__, *,
|
|
148
|
+
enabled: Optional[bool] = None,
|
|
149
|
+
service_configurations: Optional[Sequence['outputs.ServiceConfigurationResponse']] = None):
|
|
150
|
+
"""
|
|
151
|
+
Connectivity related configuration required by arc server.
|
|
152
|
+
:param bool enabled: True indicates ARC connectivity is enabled
|
|
153
|
+
:param Sequence['ServiceConfigurationResponse'] service_configurations: Service configurations associated with the connectivity resource. They are only processed by the server if 'enabled' property is set to 'true'.
|
|
154
|
+
"""
|
|
155
|
+
if enabled is not None:
|
|
156
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
157
|
+
if service_configurations is not None:
|
|
158
|
+
pulumi.set(__self__, "service_configurations", service_configurations)
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter
|
|
162
|
+
def enabled(self) -> Optional[bool]:
|
|
163
|
+
"""
|
|
164
|
+
True indicates ARC connectivity is enabled
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "enabled")
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="serviceConfigurations")
|
|
170
|
+
def service_configurations(self) -> Optional[Sequence['outputs.ServiceConfigurationResponse']]:
|
|
171
|
+
"""
|
|
172
|
+
Service configurations associated with the connectivity resource. They are only processed by the server if 'enabled' property is set to 'true'.
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "service_configurations")
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
@pulumi.output_type
|
|
178
|
+
class ClusterDesiredPropertiesResponse(dict):
|
|
179
|
+
"""
|
|
180
|
+
Desired properties of the cluster.
|
|
181
|
+
"""
|
|
182
|
+
@staticmethod
|
|
183
|
+
def __key_warning(key: str):
|
|
184
|
+
suggest = None
|
|
185
|
+
if key == "diagnosticLevel":
|
|
186
|
+
suggest = "diagnostic_level"
|
|
187
|
+
elif key == "windowsServerSubscription":
|
|
188
|
+
suggest = "windows_server_subscription"
|
|
189
|
+
|
|
190
|
+
if suggest:
|
|
191
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterDesiredPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
192
|
+
|
|
193
|
+
def __getitem__(self, key: str) -> Any:
|
|
194
|
+
ClusterDesiredPropertiesResponse.__key_warning(key)
|
|
195
|
+
return super().__getitem__(key)
|
|
196
|
+
|
|
197
|
+
def get(self, key: str, default = None) -> Any:
|
|
198
|
+
ClusterDesiredPropertiesResponse.__key_warning(key)
|
|
199
|
+
return super().get(key, default)
|
|
200
|
+
|
|
201
|
+
def __init__(__self__, *,
|
|
202
|
+
diagnostic_level: Optional[str] = None,
|
|
203
|
+
windows_server_subscription: Optional[str] = None):
|
|
204
|
+
"""
|
|
205
|
+
Desired properties of the cluster.
|
|
206
|
+
:param str diagnostic_level: Desired level of diagnostic data emitted by the cluster.
|
|
207
|
+
:param str windows_server_subscription: Desired state of Windows Server Subscription.
|
|
208
|
+
"""
|
|
209
|
+
if diagnostic_level is not None:
|
|
210
|
+
pulumi.set(__self__, "diagnostic_level", diagnostic_level)
|
|
211
|
+
if windows_server_subscription is not None:
|
|
212
|
+
pulumi.set(__self__, "windows_server_subscription", windows_server_subscription)
|
|
213
|
+
|
|
214
|
+
@property
|
|
215
|
+
@pulumi.getter(name="diagnosticLevel")
|
|
216
|
+
def diagnostic_level(self) -> Optional[str]:
|
|
217
|
+
"""
|
|
218
|
+
Desired level of diagnostic data emitted by the cluster.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "diagnostic_level")
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
@pulumi.getter(name="windowsServerSubscription")
|
|
224
|
+
def windows_server_subscription(self) -> Optional[str]:
|
|
225
|
+
"""
|
|
226
|
+
Desired state of Windows Server Subscription.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "windows_server_subscription")
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
@pulumi.output_type
|
|
232
|
+
class ClusterNodeResponse(dict):
|
|
233
|
+
"""
|
|
234
|
+
Cluster node details.
|
|
235
|
+
"""
|
|
236
|
+
@staticmethod
|
|
237
|
+
def __key_warning(key: str):
|
|
238
|
+
suggest = None
|
|
239
|
+
if key == "coreCount":
|
|
240
|
+
suggest = "core_count"
|
|
241
|
+
elif key == "ehcResourceId":
|
|
242
|
+
suggest = "ehc_resource_id"
|
|
243
|
+
elif key == "lastLicensingTimestamp":
|
|
244
|
+
suggest = "last_licensing_timestamp"
|
|
245
|
+
elif key == "memoryInGiB":
|
|
246
|
+
suggest = "memory_in_gi_b"
|
|
247
|
+
elif key == "nodeType":
|
|
248
|
+
suggest = "node_type"
|
|
249
|
+
elif key == "oemActivation":
|
|
250
|
+
suggest = "oem_activation"
|
|
251
|
+
elif key == "osDisplayVersion":
|
|
252
|
+
suggest = "os_display_version"
|
|
253
|
+
elif key == "osName":
|
|
254
|
+
suggest = "os_name"
|
|
255
|
+
elif key == "osVersion":
|
|
256
|
+
suggest = "os_version"
|
|
257
|
+
elif key == "serialNumber":
|
|
258
|
+
suggest = "serial_number"
|
|
259
|
+
elif key == "windowsServerSubscription":
|
|
260
|
+
suggest = "windows_server_subscription"
|
|
261
|
+
|
|
262
|
+
if suggest:
|
|
263
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterNodeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
264
|
+
|
|
265
|
+
def __getitem__(self, key: str) -> Any:
|
|
266
|
+
ClusterNodeResponse.__key_warning(key)
|
|
267
|
+
return super().__getitem__(key)
|
|
268
|
+
|
|
269
|
+
def get(self, key: str, default = None) -> Any:
|
|
270
|
+
ClusterNodeResponse.__key_warning(key)
|
|
271
|
+
return super().get(key, default)
|
|
272
|
+
|
|
273
|
+
def __init__(__self__, *,
|
|
274
|
+
core_count: float,
|
|
275
|
+
ehc_resource_id: str,
|
|
276
|
+
id: float,
|
|
277
|
+
last_licensing_timestamp: str,
|
|
278
|
+
manufacturer: str,
|
|
279
|
+
memory_in_gi_b: float,
|
|
280
|
+
model: str,
|
|
281
|
+
name: str,
|
|
282
|
+
node_type: str,
|
|
283
|
+
oem_activation: str,
|
|
284
|
+
os_display_version: str,
|
|
285
|
+
os_name: str,
|
|
286
|
+
os_version: str,
|
|
287
|
+
serial_number: str,
|
|
288
|
+
windows_server_subscription: str):
|
|
289
|
+
"""
|
|
290
|
+
Cluster node details.
|
|
291
|
+
:param float core_count: Number of physical cores on the cluster node.
|
|
292
|
+
:param str ehc_resource_id: Edge Hardware Center Resource Id
|
|
293
|
+
:param float id: Id of the node in the cluster.
|
|
294
|
+
:param str last_licensing_timestamp: Most recent licensing timestamp.
|
|
295
|
+
:param str manufacturer: Manufacturer of the cluster node hardware.
|
|
296
|
+
:param float memory_in_gi_b: Total available memory on the cluster node (in GiB).
|
|
297
|
+
:param str model: Model name of the cluster node hardware.
|
|
298
|
+
:param str name: Name of the cluster node.
|
|
299
|
+
:param str node_type: Type of the cluster node hardware.
|
|
300
|
+
:param str oem_activation: OEM activation status of the node.
|
|
301
|
+
:param str os_display_version: Display version of the operating system running on the cluster node.
|
|
302
|
+
:param str os_name: Operating system running on the cluster node.
|
|
303
|
+
:param str os_version: Version of the operating system running on the cluster node.
|
|
304
|
+
:param str serial_number: Immutable id of the cluster node.
|
|
305
|
+
:param str windows_server_subscription: State of Windows Server Subscription.
|
|
306
|
+
"""
|
|
307
|
+
pulumi.set(__self__, "core_count", core_count)
|
|
308
|
+
pulumi.set(__self__, "ehc_resource_id", ehc_resource_id)
|
|
309
|
+
pulumi.set(__self__, "id", id)
|
|
310
|
+
pulumi.set(__self__, "last_licensing_timestamp", last_licensing_timestamp)
|
|
311
|
+
pulumi.set(__self__, "manufacturer", manufacturer)
|
|
312
|
+
pulumi.set(__self__, "memory_in_gi_b", memory_in_gi_b)
|
|
313
|
+
pulumi.set(__self__, "model", model)
|
|
314
|
+
pulumi.set(__self__, "name", name)
|
|
315
|
+
pulumi.set(__self__, "node_type", node_type)
|
|
316
|
+
pulumi.set(__self__, "oem_activation", oem_activation)
|
|
317
|
+
pulumi.set(__self__, "os_display_version", os_display_version)
|
|
318
|
+
pulumi.set(__self__, "os_name", os_name)
|
|
319
|
+
pulumi.set(__self__, "os_version", os_version)
|
|
320
|
+
pulumi.set(__self__, "serial_number", serial_number)
|
|
321
|
+
pulumi.set(__self__, "windows_server_subscription", windows_server_subscription)
|
|
322
|
+
|
|
323
|
+
@property
|
|
324
|
+
@pulumi.getter(name="coreCount")
|
|
325
|
+
def core_count(self) -> float:
|
|
326
|
+
"""
|
|
327
|
+
Number of physical cores on the cluster node.
|
|
328
|
+
"""
|
|
329
|
+
return pulumi.get(self, "core_count")
|
|
330
|
+
|
|
331
|
+
@property
|
|
332
|
+
@pulumi.getter(name="ehcResourceId")
|
|
333
|
+
def ehc_resource_id(self) -> str:
|
|
334
|
+
"""
|
|
335
|
+
Edge Hardware Center Resource Id
|
|
336
|
+
"""
|
|
337
|
+
return pulumi.get(self, "ehc_resource_id")
|
|
338
|
+
|
|
339
|
+
@property
|
|
340
|
+
@pulumi.getter
|
|
341
|
+
def id(self) -> float:
|
|
342
|
+
"""
|
|
343
|
+
Id of the node in the cluster.
|
|
344
|
+
"""
|
|
345
|
+
return pulumi.get(self, "id")
|
|
346
|
+
|
|
347
|
+
@property
|
|
348
|
+
@pulumi.getter(name="lastLicensingTimestamp")
|
|
349
|
+
def last_licensing_timestamp(self) -> str:
|
|
350
|
+
"""
|
|
351
|
+
Most recent licensing timestamp.
|
|
352
|
+
"""
|
|
353
|
+
return pulumi.get(self, "last_licensing_timestamp")
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
@pulumi.getter
|
|
357
|
+
def manufacturer(self) -> str:
|
|
358
|
+
"""
|
|
359
|
+
Manufacturer of the cluster node hardware.
|
|
360
|
+
"""
|
|
361
|
+
return pulumi.get(self, "manufacturer")
|
|
362
|
+
|
|
363
|
+
@property
|
|
364
|
+
@pulumi.getter(name="memoryInGiB")
|
|
365
|
+
def memory_in_gi_b(self) -> float:
|
|
366
|
+
"""
|
|
367
|
+
Total available memory on the cluster node (in GiB).
|
|
368
|
+
"""
|
|
369
|
+
return pulumi.get(self, "memory_in_gi_b")
|
|
370
|
+
|
|
371
|
+
@property
|
|
372
|
+
@pulumi.getter
|
|
373
|
+
def model(self) -> str:
|
|
374
|
+
"""
|
|
375
|
+
Model name of the cluster node hardware.
|
|
376
|
+
"""
|
|
377
|
+
return pulumi.get(self, "model")
|
|
378
|
+
|
|
379
|
+
@property
|
|
380
|
+
@pulumi.getter
|
|
381
|
+
def name(self) -> str:
|
|
382
|
+
"""
|
|
383
|
+
Name of the cluster node.
|
|
384
|
+
"""
|
|
385
|
+
return pulumi.get(self, "name")
|
|
386
|
+
|
|
387
|
+
@property
|
|
388
|
+
@pulumi.getter(name="nodeType")
|
|
389
|
+
def node_type(self) -> str:
|
|
390
|
+
"""
|
|
391
|
+
Type of the cluster node hardware.
|
|
392
|
+
"""
|
|
393
|
+
return pulumi.get(self, "node_type")
|
|
394
|
+
|
|
395
|
+
@property
|
|
396
|
+
@pulumi.getter(name="oemActivation")
|
|
397
|
+
def oem_activation(self) -> str:
|
|
398
|
+
"""
|
|
399
|
+
OEM activation status of the node.
|
|
400
|
+
"""
|
|
401
|
+
return pulumi.get(self, "oem_activation")
|
|
402
|
+
|
|
403
|
+
@property
|
|
404
|
+
@pulumi.getter(name="osDisplayVersion")
|
|
405
|
+
def os_display_version(self) -> str:
|
|
406
|
+
"""
|
|
407
|
+
Display version of the operating system running on the cluster node.
|
|
408
|
+
"""
|
|
409
|
+
return pulumi.get(self, "os_display_version")
|
|
410
|
+
|
|
411
|
+
@property
|
|
412
|
+
@pulumi.getter(name="osName")
|
|
413
|
+
def os_name(self) -> str:
|
|
414
|
+
"""
|
|
415
|
+
Operating system running on the cluster node.
|
|
416
|
+
"""
|
|
417
|
+
return pulumi.get(self, "os_name")
|
|
418
|
+
|
|
419
|
+
@property
|
|
420
|
+
@pulumi.getter(name="osVersion")
|
|
421
|
+
def os_version(self) -> str:
|
|
422
|
+
"""
|
|
423
|
+
Version of the operating system running on the cluster node.
|
|
424
|
+
"""
|
|
425
|
+
return pulumi.get(self, "os_version")
|
|
426
|
+
|
|
427
|
+
@property
|
|
428
|
+
@pulumi.getter(name="serialNumber")
|
|
429
|
+
def serial_number(self) -> str:
|
|
430
|
+
"""
|
|
431
|
+
Immutable id of the cluster node.
|
|
432
|
+
"""
|
|
433
|
+
return pulumi.get(self, "serial_number")
|
|
434
|
+
|
|
435
|
+
@property
|
|
436
|
+
@pulumi.getter(name="windowsServerSubscription")
|
|
437
|
+
def windows_server_subscription(self) -> str:
|
|
438
|
+
"""
|
|
439
|
+
State of Windows Server Subscription.
|
|
440
|
+
"""
|
|
441
|
+
return pulumi.get(self, "windows_server_subscription")
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
@pulumi.output_type
|
|
445
|
+
class ClusterReportedPropertiesResponse(dict):
|
|
446
|
+
"""
|
|
447
|
+
Properties reported by cluster agent.
|
|
448
|
+
"""
|
|
449
|
+
@staticmethod
|
|
450
|
+
def __key_warning(key: str):
|
|
451
|
+
suggest = None
|
|
452
|
+
if key == "clusterId":
|
|
453
|
+
suggest = "cluster_id"
|
|
454
|
+
elif key == "clusterName":
|
|
455
|
+
suggest = "cluster_name"
|
|
456
|
+
elif key == "clusterType":
|
|
457
|
+
suggest = "cluster_type"
|
|
458
|
+
elif key == "clusterVersion":
|
|
459
|
+
suggest = "cluster_version"
|
|
460
|
+
elif key == "imdsAttestation":
|
|
461
|
+
suggest = "imds_attestation"
|
|
462
|
+
elif key == "lastUpdated":
|
|
463
|
+
suggest = "last_updated"
|
|
464
|
+
elif key == "oemActivation":
|
|
465
|
+
suggest = "oem_activation"
|
|
466
|
+
elif key == "supportedCapabilities":
|
|
467
|
+
suggest = "supported_capabilities"
|
|
468
|
+
elif key == "diagnosticLevel":
|
|
469
|
+
suggest = "diagnostic_level"
|
|
470
|
+
|
|
471
|
+
if suggest:
|
|
472
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterReportedPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
473
|
+
|
|
474
|
+
def __getitem__(self, key: str) -> Any:
|
|
475
|
+
ClusterReportedPropertiesResponse.__key_warning(key)
|
|
476
|
+
return super().__getitem__(key)
|
|
477
|
+
|
|
478
|
+
def get(self, key: str, default = None) -> Any:
|
|
479
|
+
ClusterReportedPropertiesResponse.__key_warning(key)
|
|
480
|
+
return super().get(key, default)
|
|
481
|
+
|
|
482
|
+
def __init__(__self__, *,
|
|
483
|
+
cluster_id: str,
|
|
484
|
+
cluster_name: str,
|
|
485
|
+
cluster_type: str,
|
|
486
|
+
cluster_version: str,
|
|
487
|
+
imds_attestation: str,
|
|
488
|
+
last_updated: str,
|
|
489
|
+
manufacturer: str,
|
|
490
|
+
nodes: Sequence['outputs.ClusterNodeResponse'],
|
|
491
|
+
oem_activation: str,
|
|
492
|
+
supported_capabilities: Sequence[str],
|
|
493
|
+
diagnostic_level: Optional[str] = None):
|
|
494
|
+
"""
|
|
495
|
+
Properties reported by cluster agent.
|
|
496
|
+
:param str cluster_id: Unique id generated by the on-prem cluster.
|
|
497
|
+
:param str cluster_name: Name of the on-prem cluster connected to this resource.
|
|
498
|
+
:param str cluster_type: The node type of all the nodes of the cluster.
|
|
499
|
+
:param str cluster_version: Version of the cluster software.
|
|
500
|
+
:param str imds_attestation: IMDS attestation status of the cluster.
|
|
501
|
+
:param str last_updated: Last time the cluster reported the data.
|
|
502
|
+
:param str manufacturer: The manufacturer of all the nodes of the cluster.
|
|
503
|
+
:param Sequence['ClusterNodeResponse'] nodes: List of nodes reported by the cluster.
|
|
504
|
+
:param str oem_activation: OEM activation status of the cluster.
|
|
505
|
+
:param Sequence[str] supported_capabilities: Capabilities supported by the cluster.
|
|
506
|
+
:param str diagnostic_level: Level of diagnostic data emitted by the cluster.
|
|
507
|
+
"""
|
|
508
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
|
509
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
510
|
+
pulumi.set(__self__, "cluster_type", cluster_type)
|
|
511
|
+
pulumi.set(__self__, "cluster_version", cluster_version)
|
|
512
|
+
pulumi.set(__self__, "imds_attestation", imds_attestation)
|
|
513
|
+
pulumi.set(__self__, "last_updated", last_updated)
|
|
514
|
+
pulumi.set(__self__, "manufacturer", manufacturer)
|
|
515
|
+
pulumi.set(__self__, "nodes", nodes)
|
|
516
|
+
pulumi.set(__self__, "oem_activation", oem_activation)
|
|
517
|
+
pulumi.set(__self__, "supported_capabilities", supported_capabilities)
|
|
518
|
+
if diagnostic_level is not None:
|
|
519
|
+
pulumi.set(__self__, "diagnostic_level", diagnostic_level)
|
|
520
|
+
|
|
521
|
+
@property
|
|
522
|
+
@pulumi.getter(name="clusterId")
|
|
523
|
+
def cluster_id(self) -> str:
|
|
524
|
+
"""
|
|
525
|
+
Unique id generated by the on-prem cluster.
|
|
526
|
+
"""
|
|
527
|
+
return pulumi.get(self, "cluster_id")
|
|
528
|
+
|
|
529
|
+
@property
|
|
530
|
+
@pulumi.getter(name="clusterName")
|
|
531
|
+
def cluster_name(self) -> str:
|
|
532
|
+
"""
|
|
533
|
+
Name of the on-prem cluster connected to this resource.
|
|
534
|
+
"""
|
|
535
|
+
return pulumi.get(self, "cluster_name")
|
|
536
|
+
|
|
537
|
+
@property
|
|
538
|
+
@pulumi.getter(name="clusterType")
|
|
539
|
+
def cluster_type(self) -> str:
|
|
540
|
+
"""
|
|
541
|
+
The node type of all the nodes of the cluster.
|
|
542
|
+
"""
|
|
543
|
+
return pulumi.get(self, "cluster_type")
|
|
544
|
+
|
|
545
|
+
@property
|
|
546
|
+
@pulumi.getter(name="clusterVersion")
|
|
547
|
+
def cluster_version(self) -> str:
|
|
548
|
+
"""
|
|
549
|
+
Version of the cluster software.
|
|
550
|
+
"""
|
|
551
|
+
return pulumi.get(self, "cluster_version")
|
|
552
|
+
|
|
553
|
+
@property
|
|
554
|
+
@pulumi.getter(name="imdsAttestation")
|
|
555
|
+
def imds_attestation(self) -> str:
|
|
556
|
+
"""
|
|
557
|
+
IMDS attestation status of the cluster.
|
|
558
|
+
"""
|
|
559
|
+
return pulumi.get(self, "imds_attestation")
|
|
560
|
+
|
|
561
|
+
@property
|
|
562
|
+
@pulumi.getter(name="lastUpdated")
|
|
563
|
+
def last_updated(self) -> str:
|
|
564
|
+
"""
|
|
565
|
+
Last time the cluster reported the data.
|
|
566
|
+
"""
|
|
567
|
+
return pulumi.get(self, "last_updated")
|
|
568
|
+
|
|
569
|
+
@property
|
|
570
|
+
@pulumi.getter
|
|
571
|
+
def manufacturer(self) -> str:
|
|
572
|
+
"""
|
|
573
|
+
The manufacturer of all the nodes of the cluster.
|
|
574
|
+
"""
|
|
575
|
+
return pulumi.get(self, "manufacturer")
|
|
576
|
+
|
|
577
|
+
@property
|
|
578
|
+
@pulumi.getter
|
|
579
|
+
def nodes(self) -> Sequence['outputs.ClusterNodeResponse']:
|
|
580
|
+
"""
|
|
581
|
+
List of nodes reported by the cluster.
|
|
582
|
+
"""
|
|
583
|
+
return pulumi.get(self, "nodes")
|
|
584
|
+
|
|
585
|
+
@property
|
|
586
|
+
@pulumi.getter(name="oemActivation")
|
|
587
|
+
def oem_activation(self) -> str:
|
|
588
|
+
"""
|
|
589
|
+
OEM activation status of the cluster.
|
|
590
|
+
"""
|
|
591
|
+
return pulumi.get(self, "oem_activation")
|
|
592
|
+
|
|
593
|
+
@property
|
|
594
|
+
@pulumi.getter(name="supportedCapabilities")
|
|
595
|
+
def supported_capabilities(self) -> Sequence[str]:
|
|
596
|
+
"""
|
|
597
|
+
Capabilities supported by the cluster.
|
|
598
|
+
"""
|
|
599
|
+
return pulumi.get(self, "supported_capabilities")
|
|
600
|
+
|
|
601
|
+
@property
|
|
602
|
+
@pulumi.getter(name="diagnosticLevel")
|
|
603
|
+
def diagnostic_level(self) -> Optional[str]:
|
|
604
|
+
"""
|
|
605
|
+
Level of diagnostic data emitted by the cluster.
|
|
606
|
+
"""
|
|
607
|
+
return pulumi.get(self, "diagnostic_level")
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
@pulumi.output_type
|
|
611
|
+
class DefaultExtensionDetailsResponse(dict):
|
|
612
|
+
"""
|
|
613
|
+
Properties for a particular default extension category.
|
|
614
|
+
"""
|
|
615
|
+
@staticmethod
|
|
616
|
+
def __key_warning(key: str):
|
|
617
|
+
suggest = None
|
|
618
|
+
if key == "consentTime":
|
|
619
|
+
suggest = "consent_time"
|
|
620
|
+
|
|
621
|
+
if suggest:
|
|
622
|
+
pulumi.log.warn(f"Key '{key}' not found in DefaultExtensionDetailsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
623
|
+
|
|
624
|
+
def __getitem__(self, key: str) -> Any:
|
|
625
|
+
DefaultExtensionDetailsResponse.__key_warning(key)
|
|
626
|
+
return super().__getitem__(key)
|
|
627
|
+
|
|
628
|
+
def get(self, key: str, default = None) -> Any:
|
|
629
|
+
DefaultExtensionDetailsResponse.__key_warning(key)
|
|
630
|
+
return super().get(key, default)
|
|
631
|
+
|
|
632
|
+
def __init__(__self__, *,
|
|
633
|
+
category: str,
|
|
634
|
+
consent_time: str):
|
|
635
|
+
"""
|
|
636
|
+
Properties for a particular default extension category.
|
|
637
|
+
:param str category: Default extension category
|
|
638
|
+
:param str consent_time: Consent time for extension category
|
|
639
|
+
"""
|
|
640
|
+
pulumi.set(__self__, "category", category)
|
|
641
|
+
pulumi.set(__self__, "consent_time", consent_time)
|
|
642
|
+
|
|
643
|
+
@property
|
|
644
|
+
@pulumi.getter
|
|
645
|
+
def category(self) -> str:
|
|
646
|
+
"""
|
|
647
|
+
Default extension category
|
|
648
|
+
"""
|
|
649
|
+
return pulumi.get(self, "category")
|
|
650
|
+
|
|
651
|
+
@property
|
|
652
|
+
@pulumi.getter(name="consentTime")
|
|
653
|
+
def consent_time(self) -> str:
|
|
654
|
+
"""
|
|
655
|
+
Consent time for extension category
|
|
656
|
+
"""
|
|
657
|
+
return pulumi.get(self, "consent_time")
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
@pulumi.output_type
|
|
661
|
+
class DeploymentClusterResponse(dict):
|
|
662
|
+
"""
|
|
663
|
+
AzureStackHCI Cluster deployment properties.
|
|
664
|
+
"""
|
|
665
|
+
@staticmethod
|
|
666
|
+
def __key_warning(key: str):
|
|
667
|
+
suggest = None
|
|
668
|
+
if key == "azureServiceEndpoint":
|
|
669
|
+
suggest = "azure_service_endpoint"
|
|
670
|
+
elif key == "cloudAccountName":
|
|
671
|
+
suggest = "cloud_account_name"
|
|
672
|
+
elif key == "witnessPath":
|
|
673
|
+
suggest = "witness_path"
|
|
674
|
+
elif key == "witnessType":
|
|
675
|
+
suggest = "witness_type"
|
|
676
|
+
|
|
677
|
+
if suggest:
|
|
678
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentClusterResponse. Access the value via the '{suggest}' property getter instead.")
|
|
679
|
+
|
|
680
|
+
def __getitem__(self, key: str) -> Any:
|
|
681
|
+
DeploymentClusterResponse.__key_warning(key)
|
|
682
|
+
return super().__getitem__(key)
|
|
683
|
+
|
|
684
|
+
def get(self, key: str, default = None) -> Any:
|
|
685
|
+
DeploymentClusterResponse.__key_warning(key)
|
|
686
|
+
return super().get(key, default)
|
|
687
|
+
|
|
688
|
+
def __init__(__self__, *,
|
|
689
|
+
azure_service_endpoint: Optional[str] = None,
|
|
690
|
+
cloud_account_name: Optional[str] = None,
|
|
691
|
+
name: Optional[str] = None,
|
|
692
|
+
witness_path: Optional[str] = None,
|
|
693
|
+
witness_type: Optional[str] = None):
|
|
694
|
+
"""
|
|
695
|
+
AzureStackHCI Cluster deployment properties.
|
|
696
|
+
:param str azure_service_endpoint: For Azure blob service endpoint type, select either Default or Custom domain. If you selected **Custom domain, enter the domain for the blob service in this format core.windows.net.
|
|
697
|
+
:param str cloud_account_name: Specify the Azure Storage account name for cloud witness for your Azure Stack HCI cluster.
|
|
698
|
+
:param str name: The cluster name provided when preparing Active Directory.
|
|
699
|
+
:param str witness_path: Specify the fileshare path for the local witness for your Azure Stack HCI cluster.
|
|
700
|
+
:param str witness_type: Use a cloud witness if you have internet access and if you use an Azure Storage account to provide a vote on cluster quorum. A cloud witness uses Azure Blob Storage to read or write a blob file and then uses it to arbitrate in split-brain resolution. Only allowed values are 'Cloud', 'FileShare'.
|
|
701
|
+
"""
|
|
702
|
+
if azure_service_endpoint is not None:
|
|
703
|
+
pulumi.set(__self__, "azure_service_endpoint", azure_service_endpoint)
|
|
704
|
+
if cloud_account_name is not None:
|
|
705
|
+
pulumi.set(__self__, "cloud_account_name", cloud_account_name)
|
|
706
|
+
if name is not None:
|
|
707
|
+
pulumi.set(__self__, "name", name)
|
|
708
|
+
if witness_path is not None:
|
|
709
|
+
pulumi.set(__self__, "witness_path", witness_path)
|
|
710
|
+
if witness_type is not None:
|
|
711
|
+
pulumi.set(__self__, "witness_type", witness_type)
|
|
712
|
+
|
|
713
|
+
@property
|
|
714
|
+
@pulumi.getter(name="azureServiceEndpoint")
|
|
715
|
+
def azure_service_endpoint(self) -> Optional[str]:
|
|
716
|
+
"""
|
|
717
|
+
For Azure blob service endpoint type, select either Default or Custom domain. If you selected **Custom domain, enter the domain for the blob service in this format core.windows.net.
|
|
718
|
+
"""
|
|
719
|
+
return pulumi.get(self, "azure_service_endpoint")
|
|
720
|
+
|
|
721
|
+
@property
|
|
722
|
+
@pulumi.getter(name="cloudAccountName")
|
|
723
|
+
def cloud_account_name(self) -> Optional[str]:
|
|
724
|
+
"""
|
|
725
|
+
Specify the Azure Storage account name for cloud witness for your Azure Stack HCI cluster.
|
|
726
|
+
"""
|
|
727
|
+
return pulumi.get(self, "cloud_account_name")
|
|
728
|
+
|
|
729
|
+
@property
|
|
730
|
+
@pulumi.getter
|
|
731
|
+
def name(self) -> Optional[str]:
|
|
732
|
+
"""
|
|
733
|
+
The cluster name provided when preparing Active Directory.
|
|
734
|
+
"""
|
|
735
|
+
return pulumi.get(self, "name")
|
|
736
|
+
|
|
737
|
+
@property
|
|
738
|
+
@pulumi.getter(name="witnessPath")
|
|
739
|
+
def witness_path(self) -> Optional[str]:
|
|
740
|
+
"""
|
|
741
|
+
Specify the fileshare path for the local witness for your Azure Stack HCI cluster.
|
|
742
|
+
"""
|
|
743
|
+
return pulumi.get(self, "witness_path")
|
|
744
|
+
|
|
745
|
+
@property
|
|
746
|
+
@pulumi.getter(name="witnessType")
|
|
747
|
+
def witness_type(self) -> Optional[str]:
|
|
748
|
+
"""
|
|
749
|
+
Use a cloud witness if you have internet access and if you use an Azure Storage account to provide a vote on cluster quorum. A cloud witness uses Azure Blob Storage to read or write a blob file and then uses it to arbitrate in split-brain resolution. Only allowed values are 'Cloud', 'FileShare'.
|
|
750
|
+
"""
|
|
751
|
+
return pulumi.get(self, "witness_type")
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
@pulumi.output_type
|
|
755
|
+
class DeploymentConfigurationResponse(dict):
|
|
756
|
+
"""
|
|
757
|
+
Deployment Configuration
|
|
758
|
+
"""
|
|
759
|
+
@staticmethod
|
|
760
|
+
def __key_warning(key: str):
|
|
761
|
+
suggest = None
|
|
762
|
+
if key == "scaleUnits":
|
|
763
|
+
suggest = "scale_units"
|
|
764
|
+
|
|
765
|
+
if suggest:
|
|
766
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
767
|
+
|
|
768
|
+
def __getitem__(self, key: str) -> Any:
|
|
769
|
+
DeploymentConfigurationResponse.__key_warning(key)
|
|
770
|
+
return super().__getitem__(key)
|
|
771
|
+
|
|
772
|
+
def get(self, key: str, default = None) -> Any:
|
|
773
|
+
DeploymentConfigurationResponse.__key_warning(key)
|
|
774
|
+
return super().get(key, default)
|
|
775
|
+
|
|
776
|
+
def __init__(__self__, *,
|
|
777
|
+
scale_units: Sequence['outputs.ScaleUnitsResponse'],
|
|
778
|
+
version: Optional[str] = None):
|
|
779
|
+
"""
|
|
780
|
+
Deployment Configuration
|
|
781
|
+
:param Sequence['ScaleUnitsResponse'] scale_units: Scale units will contains list of deployment data
|
|
782
|
+
:param str version: deployment template version
|
|
783
|
+
"""
|
|
784
|
+
pulumi.set(__self__, "scale_units", scale_units)
|
|
785
|
+
if version is not None:
|
|
786
|
+
pulumi.set(__self__, "version", version)
|
|
787
|
+
|
|
788
|
+
@property
|
|
789
|
+
@pulumi.getter(name="scaleUnits")
|
|
790
|
+
def scale_units(self) -> Sequence['outputs.ScaleUnitsResponse']:
|
|
791
|
+
"""
|
|
792
|
+
Scale units will contains list of deployment data
|
|
793
|
+
"""
|
|
794
|
+
return pulumi.get(self, "scale_units")
|
|
795
|
+
|
|
796
|
+
@property
|
|
797
|
+
@pulumi.getter
|
|
798
|
+
def version(self) -> Optional[str]:
|
|
799
|
+
"""
|
|
800
|
+
deployment template version
|
|
801
|
+
"""
|
|
802
|
+
return pulumi.get(self, "version")
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
@pulumi.output_type
|
|
806
|
+
class DeploymentDataResponse(dict):
|
|
807
|
+
"""
|
|
808
|
+
The Deployment data of AzureStackHCI Cluster.
|
|
809
|
+
"""
|
|
810
|
+
@staticmethod
|
|
811
|
+
def __key_warning(key: str):
|
|
812
|
+
suggest = None
|
|
813
|
+
if key == "adouPath":
|
|
814
|
+
suggest = "adou_path"
|
|
815
|
+
elif key == "domainFqdn":
|
|
816
|
+
suggest = "domain_fqdn"
|
|
817
|
+
elif key == "hostNetwork":
|
|
818
|
+
suggest = "host_network"
|
|
819
|
+
elif key == "infrastructureNetwork":
|
|
820
|
+
suggest = "infrastructure_network"
|
|
821
|
+
elif key == "namingPrefix":
|
|
822
|
+
suggest = "naming_prefix"
|
|
823
|
+
elif key == "optionalServices":
|
|
824
|
+
suggest = "optional_services"
|
|
825
|
+
elif key == "physicalNodes":
|
|
826
|
+
suggest = "physical_nodes"
|
|
827
|
+
elif key == "secretsLocation":
|
|
828
|
+
suggest = "secrets_location"
|
|
829
|
+
elif key == "securitySettings":
|
|
830
|
+
suggest = "security_settings"
|
|
831
|
+
|
|
832
|
+
if suggest:
|
|
833
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
834
|
+
|
|
835
|
+
def __getitem__(self, key: str) -> Any:
|
|
836
|
+
DeploymentDataResponse.__key_warning(key)
|
|
837
|
+
return super().__getitem__(key)
|
|
838
|
+
|
|
839
|
+
def get(self, key: str, default = None) -> Any:
|
|
840
|
+
DeploymentDataResponse.__key_warning(key)
|
|
841
|
+
return super().get(key, default)
|
|
842
|
+
|
|
843
|
+
def __init__(__self__, *,
|
|
844
|
+
adou_path: Optional[str] = None,
|
|
845
|
+
cluster: Optional['outputs.DeploymentClusterResponse'] = None,
|
|
846
|
+
domain_fqdn: Optional[str] = None,
|
|
847
|
+
host_network: Optional['outputs.HostNetworkResponse'] = None,
|
|
848
|
+
infrastructure_network: Optional[Sequence['outputs.InfrastructureNetworkResponse']] = None,
|
|
849
|
+
naming_prefix: Optional[str] = None,
|
|
850
|
+
observability: Optional['outputs.ObservabilityResponse'] = None,
|
|
851
|
+
optional_services: Optional['outputs.OptionalServicesResponse'] = None,
|
|
852
|
+
physical_nodes: Optional[Sequence['outputs.PhysicalNodesResponse']] = None,
|
|
853
|
+
secrets_location: Optional[str] = None,
|
|
854
|
+
security_settings: Optional['outputs.DeploymentSecuritySettingsResponse'] = None,
|
|
855
|
+
storage: Optional['outputs.StorageResponse'] = None):
|
|
856
|
+
"""
|
|
857
|
+
The Deployment data of AzureStackHCI Cluster.
|
|
858
|
+
:param str adou_path: The path to the Active Directory Organizational Unit container object prepared for the deployment.
|
|
859
|
+
:param 'DeploymentClusterResponse' cluster: Observability config to deploy AzureStackHCI Cluster.
|
|
860
|
+
:param str domain_fqdn: FQDN to deploy cluster
|
|
861
|
+
:param 'HostNetworkResponse' host_network: HostNetwork config to deploy AzureStackHCI Cluster.
|
|
862
|
+
:param Sequence['InfrastructureNetworkResponse'] infrastructure_network: InfrastructureNetwork config to deploy AzureStackHCI Cluster.
|
|
863
|
+
:param str naming_prefix: naming prefix to deploy cluster.
|
|
864
|
+
:param 'ObservabilityResponse' observability: Observability config to deploy AzureStackHCI Cluster.
|
|
865
|
+
:param 'OptionalServicesResponse' optional_services: OptionalServices config to deploy AzureStackHCI Cluster.
|
|
866
|
+
:param Sequence['PhysicalNodesResponse'] physical_nodes: list of physical nodes config to deploy AzureStackHCI Cluster.
|
|
867
|
+
:param str secrets_location: The URI to the keyvault / secret store.
|
|
868
|
+
:param 'DeploymentSecuritySettingsResponse' security_settings: SecuritySettings to deploy AzureStackHCI Cluster.
|
|
869
|
+
:param 'StorageResponse' storage: Storage config to deploy AzureStackHCI Cluster.
|
|
870
|
+
"""
|
|
871
|
+
if adou_path is not None:
|
|
872
|
+
pulumi.set(__self__, "adou_path", adou_path)
|
|
873
|
+
if cluster is not None:
|
|
874
|
+
pulumi.set(__self__, "cluster", cluster)
|
|
875
|
+
if domain_fqdn is not None:
|
|
876
|
+
pulumi.set(__self__, "domain_fqdn", domain_fqdn)
|
|
877
|
+
if host_network is not None:
|
|
878
|
+
pulumi.set(__self__, "host_network", host_network)
|
|
879
|
+
if infrastructure_network is not None:
|
|
880
|
+
pulumi.set(__self__, "infrastructure_network", infrastructure_network)
|
|
881
|
+
if naming_prefix is not None:
|
|
882
|
+
pulumi.set(__self__, "naming_prefix", naming_prefix)
|
|
883
|
+
if observability is not None:
|
|
884
|
+
pulumi.set(__self__, "observability", observability)
|
|
885
|
+
if optional_services is not None:
|
|
886
|
+
pulumi.set(__self__, "optional_services", optional_services)
|
|
887
|
+
if physical_nodes is not None:
|
|
888
|
+
pulumi.set(__self__, "physical_nodes", physical_nodes)
|
|
889
|
+
if secrets_location is not None:
|
|
890
|
+
pulumi.set(__self__, "secrets_location", secrets_location)
|
|
891
|
+
if security_settings is not None:
|
|
892
|
+
pulumi.set(__self__, "security_settings", security_settings)
|
|
893
|
+
if storage is not None:
|
|
894
|
+
pulumi.set(__self__, "storage", storage)
|
|
895
|
+
|
|
896
|
+
@property
|
|
897
|
+
@pulumi.getter(name="adouPath")
|
|
898
|
+
def adou_path(self) -> Optional[str]:
|
|
899
|
+
"""
|
|
900
|
+
The path to the Active Directory Organizational Unit container object prepared for the deployment.
|
|
901
|
+
"""
|
|
902
|
+
return pulumi.get(self, "adou_path")
|
|
903
|
+
|
|
904
|
+
@property
|
|
905
|
+
@pulumi.getter
|
|
906
|
+
def cluster(self) -> Optional['outputs.DeploymentClusterResponse']:
|
|
907
|
+
"""
|
|
908
|
+
Observability config to deploy AzureStackHCI Cluster.
|
|
909
|
+
"""
|
|
910
|
+
return pulumi.get(self, "cluster")
|
|
911
|
+
|
|
912
|
+
@property
|
|
913
|
+
@pulumi.getter(name="domainFqdn")
|
|
914
|
+
def domain_fqdn(self) -> Optional[str]:
|
|
915
|
+
"""
|
|
916
|
+
FQDN to deploy cluster
|
|
917
|
+
"""
|
|
918
|
+
return pulumi.get(self, "domain_fqdn")
|
|
919
|
+
|
|
920
|
+
@property
|
|
921
|
+
@pulumi.getter(name="hostNetwork")
|
|
922
|
+
def host_network(self) -> Optional['outputs.HostNetworkResponse']:
|
|
923
|
+
"""
|
|
924
|
+
HostNetwork config to deploy AzureStackHCI Cluster.
|
|
925
|
+
"""
|
|
926
|
+
return pulumi.get(self, "host_network")
|
|
927
|
+
|
|
928
|
+
@property
|
|
929
|
+
@pulumi.getter(name="infrastructureNetwork")
|
|
930
|
+
def infrastructure_network(self) -> Optional[Sequence['outputs.InfrastructureNetworkResponse']]:
|
|
931
|
+
"""
|
|
932
|
+
InfrastructureNetwork config to deploy AzureStackHCI Cluster.
|
|
933
|
+
"""
|
|
934
|
+
return pulumi.get(self, "infrastructure_network")
|
|
935
|
+
|
|
936
|
+
@property
|
|
937
|
+
@pulumi.getter(name="namingPrefix")
|
|
938
|
+
def naming_prefix(self) -> Optional[str]:
|
|
939
|
+
"""
|
|
940
|
+
naming prefix to deploy cluster.
|
|
941
|
+
"""
|
|
942
|
+
return pulumi.get(self, "naming_prefix")
|
|
943
|
+
|
|
944
|
+
@property
|
|
945
|
+
@pulumi.getter
|
|
946
|
+
def observability(self) -> Optional['outputs.ObservabilityResponse']:
|
|
947
|
+
"""
|
|
948
|
+
Observability config to deploy AzureStackHCI Cluster.
|
|
949
|
+
"""
|
|
950
|
+
return pulumi.get(self, "observability")
|
|
951
|
+
|
|
952
|
+
@property
|
|
953
|
+
@pulumi.getter(name="optionalServices")
|
|
954
|
+
def optional_services(self) -> Optional['outputs.OptionalServicesResponse']:
|
|
955
|
+
"""
|
|
956
|
+
OptionalServices config to deploy AzureStackHCI Cluster.
|
|
957
|
+
"""
|
|
958
|
+
return pulumi.get(self, "optional_services")
|
|
959
|
+
|
|
960
|
+
@property
|
|
961
|
+
@pulumi.getter(name="physicalNodes")
|
|
962
|
+
def physical_nodes(self) -> Optional[Sequence['outputs.PhysicalNodesResponse']]:
|
|
963
|
+
"""
|
|
964
|
+
list of physical nodes config to deploy AzureStackHCI Cluster.
|
|
965
|
+
"""
|
|
966
|
+
return pulumi.get(self, "physical_nodes")
|
|
967
|
+
|
|
968
|
+
@property
|
|
969
|
+
@pulumi.getter(name="secretsLocation")
|
|
970
|
+
def secrets_location(self) -> Optional[str]:
|
|
971
|
+
"""
|
|
972
|
+
The URI to the keyvault / secret store.
|
|
973
|
+
"""
|
|
974
|
+
return pulumi.get(self, "secrets_location")
|
|
975
|
+
|
|
976
|
+
@property
|
|
977
|
+
@pulumi.getter(name="securitySettings")
|
|
978
|
+
def security_settings(self) -> Optional['outputs.DeploymentSecuritySettingsResponse']:
|
|
979
|
+
"""
|
|
980
|
+
SecuritySettings to deploy AzureStackHCI Cluster.
|
|
981
|
+
"""
|
|
982
|
+
return pulumi.get(self, "security_settings")
|
|
983
|
+
|
|
984
|
+
@property
|
|
985
|
+
@pulumi.getter
|
|
986
|
+
def storage(self) -> Optional['outputs.StorageResponse']:
|
|
987
|
+
"""
|
|
988
|
+
Storage config to deploy AzureStackHCI Cluster.
|
|
989
|
+
"""
|
|
990
|
+
return pulumi.get(self, "storage")
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
@pulumi.output_type
|
|
994
|
+
class DeploymentSecuritySettingsResponse(dict):
|
|
995
|
+
"""
|
|
996
|
+
The SecuritySettings of AzureStackHCI Cluster.
|
|
997
|
+
"""
|
|
998
|
+
@staticmethod
|
|
999
|
+
def __key_warning(key: str):
|
|
1000
|
+
suggest = None
|
|
1001
|
+
if key == "bitlockerBootVolume":
|
|
1002
|
+
suggest = "bitlocker_boot_volume"
|
|
1003
|
+
elif key == "bitlockerDataVolumes":
|
|
1004
|
+
suggest = "bitlocker_data_volumes"
|
|
1005
|
+
elif key == "credentialGuardEnforced":
|
|
1006
|
+
suggest = "credential_guard_enforced"
|
|
1007
|
+
elif key == "driftControlEnforced":
|
|
1008
|
+
suggest = "drift_control_enforced"
|
|
1009
|
+
elif key == "drtmProtection":
|
|
1010
|
+
suggest = "drtm_protection"
|
|
1011
|
+
elif key == "hvciProtection":
|
|
1012
|
+
suggest = "hvci_protection"
|
|
1013
|
+
elif key == "sideChannelMitigationEnforced":
|
|
1014
|
+
suggest = "side_channel_mitigation_enforced"
|
|
1015
|
+
elif key == "smbClusterEncryption":
|
|
1016
|
+
suggest = "smb_cluster_encryption"
|
|
1017
|
+
elif key == "smbSigningEnforced":
|
|
1018
|
+
suggest = "smb_signing_enforced"
|
|
1019
|
+
elif key == "wdacEnforced":
|
|
1020
|
+
suggest = "wdac_enforced"
|
|
1021
|
+
|
|
1022
|
+
if suggest:
|
|
1023
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentSecuritySettingsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1024
|
+
|
|
1025
|
+
def __getitem__(self, key: str) -> Any:
|
|
1026
|
+
DeploymentSecuritySettingsResponse.__key_warning(key)
|
|
1027
|
+
return super().__getitem__(key)
|
|
1028
|
+
|
|
1029
|
+
def get(self, key: str, default = None) -> Any:
|
|
1030
|
+
DeploymentSecuritySettingsResponse.__key_warning(key)
|
|
1031
|
+
return super().get(key, default)
|
|
1032
|
+
|
|
1033
|
+
def __init__(__self__, *,
|
|
1034
|
+
bitlocker_boot_volume: Optional[bool] = None,
|
|
1035
|
+
bitlocker_data_volumes: Optional[bool] = None,
|
|
1036
|
+
credential_guard_enforced: Optional[bool] = None,
|
|
1037
|
+
drift_control_enforced: Optional[bool] = None,
|
|
1038
|
+
drtm_protection: Optional[bool] = None,
|
|
1039
|
+
hvci_protection: Optional[bool] = None,
|
|
1040
|
+
side_channel_mitigation_enforced: Optional[bool] = None,
|
|
1041
|
+
smb_cluster_encryption: Optional[bool] = None,
|
|
1042
|
+
smb_signing_enforced: Optional[bool] = None,
|
|
1043
|
+
wdac_enforced: Optional[bool] = None):
|
|
1044
|
+
"""
|
|
1045
|
+
The SecuritySettings of AzureStackHCI Cluster.
|
|
1046
|
+
:param bool bitlocker_boot_volume: When set to true, BitLocker XTS_AES 256-bit encryption is enabled for all data-at-rest on the OS volume of your Azure Stack HCI cluster. This setting is TPM-hardware dependent.
|
|
1047
|
+
:param bool bitlocker_data_volumes: When set to true, BitLocker XTS-AES 256-bit encryption is enabled for all data-at-rest on your Azure Stack HCI cluster shared volumes.
|
|
1048
|
+
:param bool credential_guard_enforced: When set to true, Credential Guard is enabled.
|
|
1049
|
+
:param bool drift_control_enforced: When set to true, the security baseline is re-applied regularly.
|
|
1050
|
+
:param bool drtm_protection: By default, Secure Boot is enabled on your Azure HCI cluster. This setting is hardware dependent.
|
|
1051
|
+
:param bool hvci_protection: By default, Hypervisor-protected Code Integrity is enabled on your Azure HCI cluster.
|
|
1052
|
+
:param bool side_channel_mitigation_enforced: When set to true, all the side channel mitigations are enabled
|
|
1053
|
+
:param bool smb_cluster_encryption: When set to true, cluster east-west traffic is encrypted.
|
|
1054
|
+
:param bool smb_signing_enforced: When set to true, the SMB default instance requires sign in for the client and server services.
|
|
1055
|
+
:param bool wdac_enforced: WDAC is enabled by default and limits the applications and the code that you can run on your Azure Stack HCI cluster.
|
|
1056
|
+
"""
|
|
1057
|
+
if bitlocker_boot_volume is None:
|
|
1058
|
+
bitlocker_boot_volume = True
|
|
1059
|
+
if bitlocker_boot_volume is not None:
|
|
1060
|
+
pulumi.set(__self__, "bitlocker_boot_volume", bitlocker_boot_volume)
|
|
1061
|
+
if bitlocker_data_volumes is None:
|
|
1062
|
+
bitlocker_data_volumes = True
|
|
1063
|
+
if bitlocker_data_volumes is not None:
|
|
1064
|
+
pulumi.set(__self__, "bitlocker_data_volumes", bitlocker_data_volumes)
|
|
1065
|
+
if credential_guard_enforced is None:
|
|
1066
|
+
credential_guard_enforced = False
|
|
1067
|
+
if credential_guard_enforced is not None:
|
|
1068
|
+
pulumi.set(__self__, "credential_guard_enforced", credential_guard_enforced)
|
|
1069
|
+
if drift_control_enforced is None:
|
|
1070
|
+
drift_control_enforced = True
|
|
1071
|
+
if drift_control_enforced is not None:
|
|
1072
|
+
pulumi.set(__self__, "drift_control_enforced", drift_control_enforced)
|
|
1073
|
+
if drtm_protection is None:
|
|
1074
|
+
drtm_protection = True
|
|
1075
|
+
if drtm_protection is not None:
|
|
1076
|
+
pulumi.set(__self__, "drtm_protection", drtm_protection)
|
|
1077
|
+
if hvci_protection is None:
|
|
1078
|
+
hvci_protection = True
|
|
1079
|
+
if hvci_protection is not None:
|
|
1080
|
+
pulumi.set(__self__, "hvci_protection", hvci_protection)
|
|
1081
|
+
if side_channel_mitigation_enforced is None:
|
|
1082
|
+
side_channel_mitigation_enforced = True
|
|
1083
|
+
if side_channel_mitigation_enforced is not None:
|
|
1084
|
+
pulumi.set(__self__, "side_channel_mitigation_enforced", side_channel_mitigation_enforced)
|
|
1085
|
+
if smb_cluster_encryption is None:
|
|
1086
|
+
smb_cluster_encryption = False
|
|
1087
|
+
if smb_cluster_encryption is not None:
|
|
1088
|
+
pulumi.set(__self__, "smb_cluster_encryption", smb_cluster_encryption)
|
|
1089
|
+
if smb_signing_enforced is None:
|
|
1090
|
+
smb_signing_enforced = True
|
|
1091
|
+
if smb_signing_enforced is not None:
|
|
1092
|
+
pulumi.set(__self__, "smb_signing_enforced", smb_signing_enforced)
|
|
1093
|
+
if wdac_enforced is None:
|
|
1094
|
+
wdac_enforced = True
|
|
1095
|
+
if wdac_enforced is not None:
|
|
1096
|
+
pulumi.set(__self__, "wdac_enforced", wdac_enforced)
|
|
1097
|
+
|
|
1098
|
+
@property
|
|
1099
|
+
@pulumi.getter(name="bitlockerBootVolume")
|
|
1100
|
+
def bitlocker_boot_volume(self) -> Optional[bool]:
|
|
1101
|
+
"""
|
|
1102
|
+
When set to true, BitLocker XTS_AES 256-bit encryption is enabled for all data-at-rest on the OS volume of your Azure Stack HCI cluster. This setting is TPM-hardware dependent.
|
|
1103
|
+
"""
|
|
1104
|
+
return pulumi.get(self, "bitlocker_boot_volume")
|
|
1105
|
+
|
|
1106
|
+
@property
|
|
1107
|
+
@pulumi.getter(name="bitlockerDataVolumes")
|
|
1108
|
+
def bitlocker_data_volumes(self) -> Optional[bool]:
|
|
1109
|
+
"""
|
|
1110
|
+
When set to true, BitLocker XTS-AES 256-bit encryption is enabled for all data-at-rest on your Azure Stack HCI cluster shared volumes.
|
|
1111
|
+
"""
|
|
1112
|
+
return pulumi.get(self, "bitlocker_data_volumes")
|
|
1113
|
+
|
|
1114
|
+
@property
|
|
1115
|
+
@pulumi.getter(name="credentialGuardEnforced")
|
|
1116
|
+
def credential_guard_enforced(self) -> Optional[bool]:
|
|
1117
|
+
"""
|
|
1118
|
+
When set to true, Credential Guard is enabled.
|
|
1119
|
+
"""
|
|
1120
|
+
return pulumi.get(self, "credential_guard_enforced")
|
|
1121
|
+
|
|
1122
|
+
@property
|
|
1123
|
+
@pulumi.getter(name="driftControlEnforced")
|
|
1124
|
+
def drift_control_enforced(self) -> Optional[bool]:
|
|
1125
|
+
"""
|
|
1126
|
+
When set to true, the security baseline is re-applied regularly.
|
|
1127
|
+
"""
|
|
1128
|
+
return pulumi.get(self, "drift_control_enforced")
|
|
1129
|
+
|
|
1130
|
+
@property
|
|
1131
|
+
@pulumi.getter(name="drtmProtection")
|
|
1132
|
+
def drtm_protection(self) -> Optional[bool]:
|
|
1133
|
+
"""
|
|
1134
|
+
By default, Secure Boot is enabled on your Azure HCI cluster. This setting is hardware dependent.
|
|
1135
|
+
"""
|
|
1136
|
+
return pulumi.get(self, "drtm_protection")
|
|
1137
|
+
|
|
1138
|
+
@property
|
|
1139
|
+
@pulumi.getter(name="hvciProtection")
|
|
1140
|
+
def hvci_protection(self) -> Optional[bool]:
|
|
1141
|
+
"""
|
|
1142
|
+
By default, Hypervisor-protected Code Integrity is enabled on your Azure HCI cluster.
|
|
1143
|
+
"""
|
|
1144
|
+
return pulumi.get(self, "hvci_protection")
|
|
1145
|
+
|
|
1146
|
+
@property
|
|
1147
|
+
@pulumi.getter(name="sideChannelMitigationEnforced")
|
|
1148
|
+
def side_channel_mitigation_enforced(self) -> Optional[bool]:
|
|
1149
|
+
"""
|
|
1150
|
+
When set to true, all the side channel mitigations are enabled
|
|
1151
|
+
"""
|
|
1152
|
+
return pulumi.get(self, "side_channel_mitigation_enforced")
|
|
1153
|
+
|
|
1154
|
+
@property
|
|
1155
|
+
@pulumi.getter(name="smbClusterEncryption")
|
|
1156
|
+
def smb_cluster_encryption(self) -> Optional[bool]:
|
|
1157
|
+
"""
|
|
1158
|
+
When set to true, cluster east-west traffic is encrypted.
|
|
1159
|
+
"""
|
|
1160
|
+
return pulumi.get(self, "smb_cluster_encryption")
|
|
1161
|
+
|
|
1162
|
+
@property
|
|
1163
|
+
@pulumi.getter(name="smbSigningEnforced")
|
|
1164
|
+
def smb_signing_enforced(self) -> Optional[bool]:
|
|
1165
|
+
"""
|
|
1166
|
+
When set to true, the SMB default instance requires sign in for the client and server services.
|
|
1167
|
+
"""
|
|
1168
|
+
return pulumi.get(self, "smb_signing_enforced")
|
|
1169
|
+
|
|
1170
|
+
@property
|
|
1171
|
+
@pulumi.getter(name="wdacEnforced")
|
|
1172
|
+
def wdac_enforced(self) -> Optional[bool]:
|
|
1173
|
+
"""
|
|
1174
|
+
WDAC is enabled by default and limits the applications and the code that you can run on your Azure Stack HCI cluster.
|
|
1175
|
+
"""
|
|
1176
|
+
return pulumi.get(self, "wdac_enforced")
|
|
1177
|
+
|
|
1178
|
+
|
|
1179
|
+
@pulumi.output_type
|
|
1180
|
+
class DeploymentStatusResponse(dict):
|
|
1181
|
+
"""
|
|
1182
|
+
The DeploymentStatus of AzureStackHCI Cluster.
|
|
1183
|
+
"""
|
|
1184
|
+
def __init__(__self__, *,
|
|
1185
|
+
status: str,
|
|
1186
|
+
steps: Sequence['outputs.DeploymentStepResponse']):
|
|
1187
|
+
"""
|
|
1188
|
+
The DeploymentStatus of AzureStackHCI Cluster.
|
|
1189
|
+
:param str status: Status of AzureStackHCI Cluster Deployment.
|
|
1190
|
+
:param Sequence['DeploymentStepResponse'] steps: List of steps of AzureStackHCI Cluster Deployment.
|
|
1191
|
+
"""
|
|
1192
|
+
pulumi.set(__self__, "status", status)
|
|
1193
|
+
pulumi.set(__self__, "steps", steps)
|
|
1194
|
+
|
|
1195
|
+
@property
|
|
1196
|
+
@pulumi.getter
|
|
1197
|
+
def status(self) -> str:
|
|
1198
|
+
"""
|
|
1199
|
+
Status of AzureStackHCI Cluster Deployment.
|
|
1200
|
+
"""
|
|
1201
|
+
return pulumi.get(self, "status")
|
|
1202
|
+
|
|
1203
|
+
@property
|
|
1204
|
+
@pulumi.getter
|
|
1205
|
+
def steps(self) -> Sequence['outputs.DeploymentStepResponse']:
|
|
1206
|
+
"""
|
|
1207
|
+
List of steps of AzureStackHCI Cluster Deployment.
|
|
1208
|
+
"""
|
|
1209
|
+
return pulumi.get(self, "steps")
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
@pulumi.output_type
|
|
1213
|
+
class DeploymentStepResponse(dict):
|
|
1214
|
+
"""
|
|
1215
|
+
The Step of AzureStackHCI Cluster.
|
|
1216
|
+
"""
|
|
1217
|
+
@staticmethod
|
|
1218
|
+
def __key_warning(key: str):
|
|
1219
|
+
suggest = None
|
|
1220
|
+
if key == "endTimeUtc":
|
|
1221
|
+
suggest = "end_time_utc"
|
|
1222
|
+
elif key == "fullStepIndex":
|
|
1223
|
+
suggest = "full_step_index"
|
|
1224
|
+
elif key == "startTimeUtc":
|
|
1225
|
+
suggest = "start_time_utc"
|
|
1226
|
+
|
|
1227
|
+
if suggest:
|
|
1228
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentStepResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1229
|
+
|
|
1230
|
+
def __getitem__(self, key: str) -> Any:
|
|
1231
|
+
DeploymentStepResponse.__key_warning(key)
|
|
1232
|
+
return super().__getitem__(key)
|
|
1233
|
+
|
|
1234
|
+
def get(self, key: str, default = None) -> Any:
|
|
1235
|
+
DeploymentStepResponse.__key_warning(key)
|
|
1236
|
+
return super().get(key, default)
|
|
1237
|
+
|
|
1238
|
+
def __init__(__self__, *,
|
|
1239
|
+
description: str,
|
|
1240
|
+
end_time_utc: str,
|
|
1241
|
+
exception: Sequence[str],
|
|
1242
|
+
full_step_index: str,
|
|
1243
|
+
name: str,
|
|
1244
|
+
start_time_utc: str,
|
|
1245
|
+
status: str,
|
|
1246
|
+
steps: Sequence['outputs.DeploymentStepResponse']):
|
|
1247
|
+
"""
|
|
1248
|
+
The Step of AzureStackHCI Cluster.
|
|
1249
|
+
:param str description: Description of step.
|
|
1250
|
+
:param str end_time_utc: End time of step.
|
|
1251
|
+
:param Sequence[str] exception: List of exceptions in AzureStackHCI Cluster Deployment.
|
|
1252
|
+
:param str full_step_index: FullStepIndex of step.
|
|
1253
|
+
:param str name: Name of step.
|
|
1254
|
+
:param str start_time_utc: Start time of step.
|
|
1255
|
+
:param str status: Status of step. Allowed values are 'Error', 'Success', 'InProgress'
|
|
1256
|
+
:param Sequence['DeploymentStepResponse'] steps: List of nested steps of AzureStackHCI Cluster Deployment.
|
|
1257
|
+
"""
|
|
1258
|
+
pulumi.set(__self__, "description", description)
|
|
1259
|
+
pulumi.set(__self__, "end_time_utc", end_time_utc)
|
|
1260
|
+
pulumi.set(__self__, "exception", exception)
|
|
1261
|
+
pulumi.set(__self__, "full_step_index", full_step_index)
|
|
1262
|
+
pulumi.set(__self__, "name", name)
|
|
1263
|
+
pulumi.set(__self__, "start_time_utc", start_time_utc)
|
|
1264
|
+
pulumi.set(__self__, "status", status)
|
|
1265
|
+
pulumi.set(__self__, "steps", steps)
|
|
1266
|
+
|
|
1267
|
+
@property
|
|
1268
|
+
@pulumi.getter
|
|
1269
|
+
def description(self) -> str:
|
|
1270
|
+
"""
|
|
1271
|
+
Description of step.
|
|
1272
|
+
"""
|
|
1273
|
+
return pulumi.get(self, "description")
|
|
1274
|
+
|
|
1275
|
+
@property
|
|
1276
|
+
@pulumi.getter(name="endTimeUtc")
|
|
1277
|
+
def end_time_utc(self) -> str:
|
|
1278
|
+
"""
|
|
1279
|
+
End time of step.
|
|
1280
|
+
"""
|
|
1281
|
+
return pulumi.get(self, "end_time_utc")
|
|
1282
|
+
|
|
1283
|
+
@property
|
|
1284
|
+
@pulumi.getter
|
|
1285
|
+
def exception(self) -> Sequence[str]:
|
|
1286
|
+
"""
|
|
1287
|
+
List of exceptions in AzureStackHCI Cluster Deployment.
|
|
1288
|
+
"""
|
|
1289
|
+
return pulumi.get(self, "exception")
|
|
1290
|
+
|
|
1291
|
+
@property
|
|
1292
|
+
@pulumi.getter(name="fullStepIndex")
|
|
1293
|
+
def full_step_index(self) -> str:
|
|
1294
|
+
"""
|
|
1295
|
+
FullStepIndex of step.
|
|
1296
|
+
"""
|
|
1297
|
+
return pulumi.get(self, "full_step_index")
|
|
1298
|
+
|
|
1299
|
+
@property
|
|
1300
|
+
@pulumi.getter
|
|
1301
|
+
def name(self) -> str:
|
|
1302
|
+
"""
|
|
1303
|
+
Name of step.
|
|
1304
|
+
"""
|
|
1305
|
+
return pulumi.get(self, "name")
|
|
1306
|
+
|
|
1307
|
+
@property
|
|
1308
|
+
@pulumi.getter(name="startTimeUtc")
|
|
1309
|
+
def start_time_utc(self) -> str:
|
|
1310
|
+
"""
|
|
1311
|
+
Start time of step.
|
|
1312
|
+
"""
|
|
1313
|
+
return pulumi.get(self, "start_time_utc")
|
|
1314
|
+
|
|
1315
|
+
@property
|
|
1316
|
+
@pulumi.getter
|
|
1317
|
+
def status(self) -> str:
|
|
1318
|
+
"""
|
|
1319
|
+
Status of step. Allowed values are 'Error', 'Success', 'InProgress'
|
|
1320
|
+
"""
|
|
1321
|
+
return pulumi.get(self, "status")
|
|
1322
|
+
|
|
1323
|
+
@property
|
|
1324
|
+
@pulumi.getter
|
|
1325
|
+
def steps(self) -> Sequence['outputs.DeploymentStepResponse']:
|
|
1326
|
+
"""
|
|
1327
|
+
List of nested steps of AzureStackHCI Cluster Deployment.
|
|
1328
|
+
"""
|
|
1329
|
+
return pulumi.get(self, "steps")
|
|
1330
|
+
|
|
1331
|
+
|
|
1332
|
+
@pulumi.output_type
|
|
1333
|
+
class DeviceConfigurationResponse(dict):
|
|
1334
|
+
"""
|
|
1335
|
+
The device Configuration of a device.
|
|
1336
|
+
"""
|
|
1337
|
+
@staticmethod
|
|
1338
|
+
def __key_warning(key: str):
|
|
1339
|
+
suggest = None
|
|
1340
|
+
if key == "nicDetails":
|
|
1341
|
+
suggest = "nic_details"
|
|
1342
|
+
elif key == "deviceMetadata":
|
|
1343
|
+
suggest = "device_metadata"
|
|
1344
|
+
|
|
1345
|
+
if suggest:
|
|
1346
|
+
pulumi.log.warn(f"Key '{key}' not found in DeviceConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1347
|
+
|
|
1348
|
+
def __getitem__(self, key: str) -> Any:
|
|
1349
|
+
DeviceConfigurationResponse.__key_warning(key)
|
|
1350
|
+
return super().__getitem__(key)
|
|
1351
|
+
|
|
1352
|
+
def get(self, key: str, default = None) -> Any:
|
|
1353
|
+
DeviceConfigurationResponse.__key_warning(key)
|
|
1354
|
+
return super().get(key, default)
|
|
1355
|
+
|
|
1356
|
+
def __init__(__self__, *,
|
|
1357
|
+
nic_details: Sequence['outputs.NicDetailResponse'],
|
|
1358
|
+
device_metadata: Optional[str] = None):
|
|
1359
|
+
"""
|
|
1360
|
+
The device Configuration of a device.
|
|
1361
|
+
:param Sequence['NicDetailResponse'] nic_details: NIC Details of device
|
|
1362
|
+
:param str device_metadata: device metadata details.
|
|
1363
|
+
"""
|
|
1364
|
+
pulumi.set(__self__, "nic_details", nic_details)
|
|
1365
|
+
if device_metadata is not None:
|
|
1366
|
+
pulumi.set(__self__, "device_metadata", device_metadata)
|
|
1367
|
+
|
|
1368
|
+
@property
|
|
1369
|
+
@pulumi.getter(name="nicDetails")
|
|
1370
|
+
def nic_details(self) -> Sequence['outputs.NicDetailResponse']:
|
|
1371
|
+
"""
|
|
1372
|
+
NIC Details of device
|
|
1373
|
+
"""
|
|
1374
|
+
return pulumi.get(self, "nic_details")
|
|
1375
|
+
|
|
1376
|
+
@property
|
|
1377
|
+
@pulumi.getter(name="deviceMetadata")
|
|
1378
|
+
def device_metadata(self) -> Optional[str]:
|
|
1379
|
+
"""
|
|
1380
|
+
device metadata details.
|
|
1381
|
+
"""
|
|
1382
|
+
return pulumi.get(self, "device_metadata")
|
|
1383
|
+
|
|
1384
|
+
|
|
1385
|
+
@pulumi.output_type
|
|
1386
|
+
class ExtensionInstanceViewResponse(dict):
|
|
1387
|
+
"""
|
|
1388
|
+
Describes the Extension Instance View.
|
|
1389
|
+
"""
|
|
1390
|
+
@staticmethod
|
|
1391
|
+
def __key_warning(key: str):
|
|
1392
|
+
suggest = None
|
|
1393
|
+
if key == "typeHandlerVersion":
|
|
1394
|
+
suggest = "type_handler_version"
|
|
1395
|
+
|
|
1396
|
+
if suggest:
|
|
1397
|
+
pulumi.log.warn(f"Key '{key}' not found in ExtensionInstanceViewResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1398
|
+
|
|
1399
|
+
def __getitem__(self, key: str) -> Any:
|
|
1400
|
+
ExtensionInstanceViewResponse.__key_warning(key)
|
|
1401
|
+
return super().__getitem__(key)
|
|
1402
|
+
|
|
1403
|
+
def get(self, key: str, default = None) -> Any:
|
|
1404
|
+
ExtensionInstanceViewResponse.__key_warning(key)
|
|
1405
|
+
return super().get(key, default)
|
|
1406
|
+
|
|
1407
|
+
def __init__(__self__, *,
|
|
1408
|
+
name: Optional[str] = None,
|
|
1409
|
+
status: Optional['outputs.ExtensionInstanceViewResponseStatus'] = None,
|
|
1410
|
+
type: Optional[str] = None,
|
|
1411
|
+
type_handler_version: Optional[str] = None):
|
|
1412
|
+
"""
|
|
1413
|
+
Describes the Extension Instance View.
|
|
1414
|
+
:param str name: The extension name.
|
|
1415
|
+
:param 'ExtensionInstanceViewResponseStatus' status: Instance view status.
|
|
1416
|
+
:param str type: Specifies the type of the extension; an example is "MicrosoftMonitoringAgent".
|
|
1417
|
+
:param str type_handler_version: Specifies the version of the script handler.
|
|
1418
|
+
"""
|
|
1419
|
+
if name is not None:
|
|
1420
|
+
pulumi.set(__self__, "name", name)
|
|
1421
|
+
if status is not None:
|
|
1422
|
+
pulumi.set(__self__, "status", status)
|
|
1423
|
+
if type is not None:
|
|
1424
|
+
pulumi.set(__self__, "type", type)
|
|
1425
|
+
if type_handler_version is not None:
|
|
1426
|
+
pulumi.set(__self__, "type_handler_version", type_handler_version)
|
|
1427
|
+
|
|
1428
|
+
@property
|
|
1429
|
+
@pulumi.getter
|
|
1430
|
+
def name(self) -> Optional[str]:
|
|
1431
|
+
"""
|
|
1432
|
+
The extension name.
|
|
1433
|
+
"""
|
|
1434
|
+
return pulumi.get(self, "name")
|
|
1435
|
+
|
|
1436
|
+
@property
|
|
1437
|
+
@pulumi.getter
|
|
1438
|
+
def status(self) -> Optional['outputs.ExtensionInstanceViewResponseStatus']:
|
|
1439
|
+
"""
|
|
1440
|
+
Instance view status.
|
|
1441
|
+
"""
|
|
1442
|
+
return pulumi.get(self, "status")
|
|
1443
|
+
|
|
1444
|
+
@property
|
|
1445
|
+
@pulumi.getter
|
|
1446
|
+
def type(self) -> Optional[str]:
|
|
1447
|
+
"""
|
|
1448
|
+
Specifies the type of the extension; an example is "MicrosoftMonitoringAgent".
|
|
1449
|
+
"""
|
|
1450
|
+
return pulumi.get(self, "type")
|
|
1451
|
+
|
|
1452
|
+
@property
|
|
1453
|
+
@pulumi.getter(name="typeHandlerVersion")
|
|
1454
|
+
def type_handler_version(self) -> Optional[str]:
|
|
1455
|
+
"""
|
|
1456
|
+
Specifies the version of the script handler.
|
|
1457
|
+
"""
|
|
1458
|
+
return pulumi.get(self, "type_handler_version")
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
@pulumi.output_type
|
|
1462
|
+
class ExtensionInstanceViewResponseStatus(dict):
|
|
1463
|
+
"""
|
|
1464
|
+
Instance view status.
|
|
1465
|
+
"""
|
|
1466
|
+
@staticmethod
|
|
1467
|
+
def __key_warning(key: str):
|
|
1468
|
+
suggest = None
|
|
1469
|
+
if key == "displayStatus":
|
|
1470
|
+
suggest = "display_status"
|
|
1471
|
+
|
|
1472
|
+
if suggest:
|
|
1473
|
+
pulumi.log.warn(f"Key '{key}' not found in ExtensionInstanceViewResponseStatus. Access the value via the '{suggest}' property getter instead.")
|
|
1474
|
+
|
|
1475
|
+
def __getitem__(self, key: str) -> Any:
|
|
1476
|
+
ExtensionInstanceViewResponseStatus.__key_warning(key)
|
|
1477
|
+
return super().__getitem__(key)
|
|
1478
|
+
|
|
1479
|
+
def get(self, key: str, default = None) -> Any:
|
|
1480
|
+
ExtensionInstanceViewResponseStatus.__key_warning(key)
|
|
1481
|
+
return super().get(key, default)
|
|
1482
|
+
|
|
1483
|
+
def __init__(__self__, *,
|
|
1484
|
+
code: Optional[str] = None,
|
|
1485
|
+
display_status: Optional[str] = None,
|
|
1486
|
+
level: Optional[str] = None,
|
|
1487
|
+
message: Optional[str] = None,
|
|
1488
|
+
time: Optional[str] = None):
|
|
1489
|
+
"""
|
|
1490
|
+
Instance view status.
|
|
1491
|
+
:param str code: The status code.
|
|
1492
|
+
:param str display_status: The short localizable label for the status.
|
|
1493
|
+
:param str level: The level code.
|
|
1494
|
+
:param str message: The detailed status message, including for alerts and error messages.
|
|
1495
|
+
:param str time: The time of the status.
|
|
1496
|
+
"""
|
|
1497
|
+
if code is not None:
|
|
1498
|
+
pulumi.set(__self__, "code", code)
|
|
1499
|
+
if display_status is not None:
|
|
1500
|
+
pulumi.set(__self__, "display_status", display_status)
|
|
1501
|
+
if level is not None:
|
|
1502
|
+
pulumi.set(__self__, "level", level)
|
|
1503
|
+
if message is not None:
|
|
1504
|
+
pulumi.set(__self__, "message", message)
|
|
1505
|
+
if time is not None:
|
|
1506
|
+
pulumi.set(__self__, "time", time)
|
|
1507
|
+
|
|
1508
|
+
@property
|
|
1509
|
+
@pulumi.getter
|
|
1510
|
+
def code(self) -> Optional[str]:
|
|
1511
|
+
"""
|
|
1512
|
+
The status code.
|
|
1513
|
+
"""
|
|
1514
|
+
return pulumi.get(self, "code")
|
|
1515
|
+
|
|
1516
|
+
@property
|
|
1517
|
+
@pulumi.getter(name="displayStatus")
|
|
1518
|
+
def display_status(self) -> Optional[str]:
|
|
1519
|
+
"""
|
|
1520
|
+
The short localizable label for the status.
|
|
1521
|
+
"""
|
|
1522
|
+
return pulumi.get(self, "display_status")
|
|
1523
|
+
|
|
1524
|
+
@property
|
|
1525
|
+
@pulumi.getter
|
|
1526
|
+
def level(self) -> Optional[str]:
|
|
1527
|
+
"""
|
|
1528
|
+
The level code.
|
|
1529
|
+
"""
|
|
1530
|
+
return pulumi.get(self, "level")
|
|
1531
|
+
|
|
1532
|
+
@property
|
|
1533
|
+
@pulumi.getter
|
|
1534
|
+
def message(self) -> Optional[str]:
|
|
1535
|
+
"""
|
|
1536
|
+
The detailed status message, including for alerts and error messages.
|
|
1537
|
+
"""
|
|
1538
|
+
return pulumi.get(self, "message")
|
|
1539
|
+
|
|
1540
|
+
@property
|
|
1541
|
+
@pulumi.getter
|
|
1542
|
+
def time(self) -> Optional[str]:
|
|
1543
|
+
"""
|
|
1544
|
+
The time of the status.
|
|
1545
|
+
"""
|
|
1546
|
+
return pulumi.get(self, "time")
|
|
1547
|
+
|
|
1548
|
+
|
|
1549
|
+
@pulumi.output_type
|
|
1550
|
+
class HostNetworkResponse(dict):
|
|
1551
|
+
"""
|
|
1552
|
+
The HostNetwork of a cluster.
|
|
1553
|
+
"""
|
|
1554
|
+
@staticmethod
|
|
1555
|
+
def __key_warning(key: str):
|
|
1556
|
+
suggest = None
|
|
1557
|
+
if key == "enableStorageAutoIp":
|
|
1558
|
+
suggest = "enable_storage_auto_ip"
|
|
1559
|
+
elif key == "storageConnectivitySwitchless":
|
|
1560
|
+
suggest = "storage_connectivity_switchless"
|
|
1561
|
+
elif key == "storageNetworks":
|
|
1562
|
+
suggest = "storage_networks"
|
|
1563
|
+
|
|
1564
|
+
if suggest:
|
|
1565
|
+
pulumi.log.warn(f"Key '{key}' not found in HostNetworkResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1566
|
+
|
|
1567
|
+
def __getitem__(self, key: str) -> Any:
|
|
1568
|
+
HostNetworkResponse.__key_warning(key)
|
|
1569
|
+
return super().__getitem__(key)
|
|
1570
|
+
|
|
1571
|
+
def get(self, key: str, default = None) -> Any:
|
|
1572
|
+
HostNetworkResponse.__key_warning(key)
|
|
1573
|
+
return super().get(key, default)
|
|
1574
|
+
|
|
1575
|
+
def __init__(__self__, *,
|
|
1576
|
+
enable_storage_auto_ip: Optional[bool] = None,
|
|
1577
|
+
intents: Optional[Sequence['outputs.IntentsResponse']] = None,
|
|
1578
|
+
storage_connectivity_switchless: Optional[bool] = None,
|
|
1579
|
+
storage_networks: Optional[Sequence['outputs.StorageNetworksResponse']] = None):
|
|
1580
|
+
"""
|
|
1581
|
+
The HostNetwork of a cluster.
|
|
1582
|
+
:param bool enable_storage_auto_ip: Optional parameter required only for 3 Nodes Switchless deployments. This allows users to specify IPs and Mask for Storage NICs when Network ATC is not assigning the IPs for storage automatically.
|
|
1583
|
+
:param Sequence['IntentsResponse'] intents: The network intents assigned to the network reference pattern used for the deployment. Each intent will define its own name, traffic type, adapter names, and overrides as recommended by your OEM.
|
|
1584
|
+
:param bool storage_connectivity_switchless: Defines how the storage adapters between nodes are connected either switch or switch less..
|
|
1585
|
+
:param Sequence['StorageNetworksResponse'] storage_networks: List of StorageNetworks config to deploy AzureStackHCI Cluster.
|
|
1586
|
+
"""
|
|
1587
|
+
if enable_storage_auto_ip is None:
|
|
1588
|
+
enable_storage_auto_ip = False
|
|
1589
|
+
if enable_storage_auto_ip is not None:
|
|
1590
|
+
pulumi.set(__self__, "enable_storage_auto_ip", enable_storage_auto_ip)
|
|
1591
|
+
if intents is not None:
|
|
1592
|
+
pulumi.set(__self__, "intents", intents)
|
|
1593
|
+
if storage_connectivity_switchless is None:
|
|
1594
|
+
storage_connectivity_switchless = False
|
|
1595
|
+
if storage_connectivity_switchless is not None:
|
|
1596
|
+
pulumi.set(__self__, "storage_connectivity_switchless", storage_connectivity_switchless)
|
|
1597
|
+
if storage_networks is not None:
|
|
1598
|
+
pulumi.set(__self__, "storage_networks", storage_networks)
|
|
1599
|
+
|
|
1600
|
+
@property
|
|
1601
|
+
@pulumi.getter(name="enableStorageAutoIp")
|
|
1602
|
+
def enable_storage_auto_ip(self) -> Optional[bool]:
|
|
1603
|
+
"""
|
|
1604
|
+
Optional parameter required only for 3 Nodes Switchless deployments. This allows users to specify IPs and Mask for Storage NICs when Network ATC is not assigning the IPs for storage automatically.
|
|
1605
|
+
"""
|
|
1606
|
+
return pulumi.get(self, "enable_storage_auto_ip")
|
|
1607
|
+
|
|
1608
|
+
@property
|
|
1609
|
+
@pulumi.getter
|
|
1610
|
+
def intents(self) -> Optional[Sequence['outputs.IntentsResponse']]:
|
|
1611
|
+
"""
|
|
1612
|
+
The network intents assigned to the network reference pattern used for the deployment. Each intent will define its own name, traffic type, adapter names, and overrides as recommended by your OEM.
|
|
1613
|
+
"""
|
|
1614
|
+
return pulumi.get(self, "intents")
|
|
1615
|
+
|
|
1616
|
+
@property
|
|
1617
|
+
@pulumi.getter(name="storageConnectivitySwitchless")
|
|
1618
|
+
def storage_connectivity_switchless(self) -> Optional[bool]:
|
|
1619
|
+
"""
|
|
1620
|
+
Defines how the storage adapters between nodes are connected either switch or switch less..
|
|
1621
|
+
"""
|
|
1622
|
+
return pulumi.get(self, "storage_connectivity_switchless")
|
|
1623
|
+
|
|
1624
|
+
@property
|
|
1625
|
+
@pulumi.getter(name="storageNetworks")
|
|
1626
|
+
def storage_networks(self) -> Optional[Sequence['outputs.StorageNetworksResponse']]:
|
|
1627
|
+
"""
|
|
1628
|
+
List of StorageNetworks config to deploy AzureStackHCI Cluster.
|
|
1629
|
+
"""
|
|
1630
|
+
return pulumi.get(self, "storage_networks")
|
|
1631
|
+
|
|
1632
|
+
|
|
1633
|
+
@pulumi.output_type
|
|
1634
|
+
class InfrastructureNetworkResponse(dict):
|
|
1635
|
+
"""
|
|
1636
|
+
The InfrastructureNetwork of a AzureStackHCI Cluster.
|
|
1637
|
+
"""
|
|
1638
|
+
@staticmethod
|
|
1639
|
+
def __key_warning(key: str):
|
|
1640
|
+
suggest = None
|
|
1641
|
+
if key == "dnsServers":
|
|
1642
|
+
suggest = "dns_servers"
|
|
1643
|
+
elif key == "ipPools":
|
|
1644
|
+
suggest = "ip_pools"
|
|
1645
|
+
elif key == "subnetMask":
|
|
1646
|
+
suggest = "subnet_mask"
|
|
1647
|
+
elif key == "useDhcp":
|
|
1648
|
+
suggest = "use_dhcp"
|
|
1649
|
+
|
|
1650
|
+
if suggest:
|
|
1651
|
+
pulumi.log.warn(f"Key '{key}' not found in InfrastructureNetworkResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1652
|
+
|
|
1653
|
+
def __getitem__(self, key: str) -> Any:
|
|
1654
|
+
InfrastructureNetworkResponse.__key_warning(key)
|
|
1655
|
+
return super().__getitem__(key)
|
|
1656
|
+
|
|
1657
|
+
def get(self, key: str, default = None) -> Any:
|
|
1658
|
+
InfrastructureNetworkResponse.__key_warning(key)
|
|
1659
|
+
return super().get(key, default)
|
|
1660
|
+
|
|
1661
|
+
def __init__(__self__, *,
|
|
1662
|
+
dns_servers: Optional[Sequence[str]] = None,
|
|
1663
|
+
gateway: Optional[str] = None,
|
|
1664
|
+
ip_pools: Optional[Sequence['outputs.IpPoolsResponse']] = None,
|
|
1665
|
+
subnet_mask: Optional[str] = None,
|
|
1666
|
+
use_dhcp: Optional[bool] = None):
|
|
1667
|
+
"""
|
|
1668
|
+
The InfrastructureNetwork of a AzureStackHCI Cluster.
|
|
1669
|
+
:param Sequence[str] dns_servers: IPv4 address of the DNS servers in your environment.
|
|
1670
|
+
:param str gateway: Default gateway that should be used for the provided IP address space.
|
|
1671
|
+
:param Sequence['IpPoolsResponse'] ip_pools: Range of IP addresses from which addresses are allocated for nodes within a subnet.
|
|
1672
|
+
:param str subnet_mask: Subnet mask that matches the provided IP address space.
|
|
1673
|
+
:param bool use_dhcp: Allows customers to use DHCP for Hosts and Cluster IPs. If not declared, the deployment will default to static IPs. When true, GW and DNS servers are not required
|
|
1674
|
+
"""
|
|
1675
|
+
if dns_servers is not None:
|
|
1676
|
+
pulumi.set(__self__, "dns_servers", dns_servers)
|
|
1677
|
+
if gateway is not None:
|
|
1678
|
+
pulumi.set(__self__, "gateway", gateway)
|
|
1679
|
+
if ip_pools is not None:
|
|
1680
|
+
pulumi.set(__self__, "ip_pools", ip_pools)
|
|
1681
|
+
if subnet_mask is not None:
|
|
1682
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
|
1683
|
+
if use_dhcp is not None:
|
|
1684
|
+
pulumi.set(__self__, "use_dhcp", use_dhcp)
|
|
1685
|
+
|
|
1686
|
+
@property
|
|
1687
|
+
@pulumi.getter(name="dnsServers")
|
|
1688
|
+
def dns_servers(self) -> Optional[Sequence[str]]:
|
|
1689
|
+
"""
|
|
1690
|
+
IPv4 address of the DNS servers in your environment.
|
|
1691
|
+
"""
|
|
1692
|
+
return pulumi.get(self, "dns_servers")
|
|
1693
|
+
|
|
1694
|
+
@property
|
|
1695
|
+
@pulumi.getter
|
|
1696
|
+
def gateway(self) -> Optional[str]:
|
|
1697
|
+
"""
|
|
1698
|
+
Default gateway that should be used for the provided IP address space.
|
|
1699
|
+
"""
|
|
1700
|
+
return pulumi.get(self, "gateway")
|
|
1701
|
+
|
|
1702
|
+
@property
|
|
1703
|
+
@pulumi.getter(name="ipPools")
|
|
1704
|
+
def ip_pools(self) -> Optional[Sequence['outputs.IpPoolsResponse']]:
|
|
1705
|
+
"""
|
|
1706
|
+
Range of IP addresses from which addresses are allocated for nodes within a subnet.
|
|
1707
|
+
"""
|
|
1708
|
+
return pulumi.get(self, "ip_pools")
|
|
1709
|
+
|
|
1710
|
+
@property
|
|
1711
|
+
@pulumi.getter(name="subnetMask")
|
|
1712
|
+
def subnet_mask(self) -> Optional[str]:
|
|
1713
|
+
"""
|
|
1714
|
+
Subnet mask that matches the provided IP address space.
|
|
1715
|
+
"""
|
|
1716
|
+
return pulumi.get(self, "subnet_mask")
|
|
1717
|
+
|
|
1718
|
+
@property
|
|
1719
|
+
@pulumi.getter(name="useDhcp")
|
|
1720
|
+
def use_dhcp(self) -> Optional[bool]:
|
|
1721
|
+
"""
|
|
1722
|
+
Allows customers to use DHCP for Hosts and Cluster IPs. If not declared, the deployment will default to static IPs. When true, GW and DNS servers are not required
|
|
1723
|
+
"""
|
|
1724
|
+
return pulumi.get(self, "use_dhcp")
|
|
1725
|
+
|
|
1726
|
+
|
|
1727
|
+
@pulumi.output_type
|
|
1728
|
+
class IntentsResponse(dict):
|
|
1729
|
+
"""
|
|
1730
|
+
The Intents of a cluster.
|
|
1731
|
+
"""
|
|
1732
|
+
@staticmethod
|
|
1733
|
+
def __key_warning(key: str):
|
|
1734
|
+
suggest = None
|
|
1735
|
+
if key == "adapterPropertyOverrides":
|
|
1736
|
+
suggest = "adapter_property_overrides"
|
|
1737
|
+
elif key == "overrideAdapterProperty":
|
|
1738
|
+
suggest = "override_adapter_property"
|
|
1739
|
+
elif key == "overrideQosPolicy":
|
|
1740
|
+
suggest = "override_qos_policy"
|
|
1741
|
+
elif key == "overrideVirtualSwitchConfiguration":
|
|
1742
|
+
suggest = "override_virtual_switch_configuration"
|
|
1743
|
+
elif key == "qosPolicyOverrides":
|
|
1744
|
+
suggest = "qos_policy_overrides"
|
|
1745
|
+
elif key == "trafficType":
|
|
1746
|
+
suggest = "traffic_type"
|
|
1747
|
+
elif key == "virtualSwitchConfigurationOverrides":
|
|
1748
|
+
suggest = "virtual_switch_configuration_overrides"
|
|
1749
|
+
|
|
1750
|
+
if suggest:
|
|
1751
|
+
pulumi.log.warn(f"Key '{key}' not found in IntentsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1752
|
+
|
|
1753
|
+
def __getitem__(self, key: str) -> Any:
|
|
1754
|
+
IntentsResponse.__key_warning(key)
|
|
1755
|
+
return super().__getitem__(key)
|
|
1756
|
+
|
|
1757
|
+
def get(self, key: str, default = None) -> Any:
|
|
1758
|
+
IntentsResponse.__key_warning(key)
|
|
1759
|
+
return super().get(key, default)
|
|
1760
|
+
|
|
1761
|
+
def __init__(__self__, *,
|
|
1762
|
+
adapter: Optional[Sequence[str]] = None,
|
|
1763
|
+
adapter_property_overrides: Optional['outputs.AdapterPropertyOverridesResponse'] = None,
|
|
1764
|
+
name: Optional[str] = None,
|
|
1765
|
+
override_adapter_property: Optional[bool] = None,
|
|
1766
|
+
override_qos_policy: Optional[bool] = None,
|
|
1767
|
+
override_virtual_switch_configuration: Optional[bool] = None,
|
|
1768
|
+
qos_policy_overrides: Optional['outputs.QosPolicyOverridesResponse'] = None,
|
|
1769
|
+
traffic_type: Optional[Sequence[str]] = None,
|
|
1770
|
+
virtual_switch_configuration_overrides: Optional['outputs.VirtualSwitchConfigurationOverridesResponse'] = None):
|
|
1771
|
+
"""
|
|
1772
|
+
The Intents of a cluster.
|
|
1773
|
+
:param Sequence[str] adapter: Array of network interfaces used for the network intent.
|
|
1774
|
+
:param 'AdapterPropertyOverridesResponse' adapter_property_overrides: Set Adapter PropertyOverrides for cluster.
|
|
1775
|
+
:param str name: Name of the network intent you wish to create.
|
|
1776
|
+
:param bool override_adapter_property: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
1777
|
+
:param bool override_qos_policy: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
1778
|
+
:param bool override_virtual_switch_configuration: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
1779
|
+
:param 'QosPolicyOverridesResponse' qos_policy_overrides: Set QoS PolicyOverrides for cluster.
|
|
1780
|
+
:param Sequence[str] traffic_type: List of network traffic types. Only allowed values are 'Compute', 'Storage', 'Management'.
|
|
1781
|
+
:param 'VirtualSwitchConfigurationOverridesResponse' virtual_switch_configuration_overrides: Set virtualSwitch ConfigurationOverrides for cluster.
|
|
1782
|
+
"""
|
|
1783
|
+
if adapter is not None:
|
|
1784
|
+
pulumi.set(__self__, "adapter", adapter)
|
|
1785
|
+
if adapter_property_overrides is not None:
|
|
1786
|
+
pulumi.set(__self__, "adapter_property_overrides", adapter_property_overrides)
|
|
1787
|
+
if name is not None:
|
|
1788
|
+
pulumi.set(__self__, "name", name)
|
|
1789
|
+
if override_adapter_property is None:
|
|
1790
|
+
override_adapter_property = False
|
|
1791
|
+
if override_adapter_property is not None:
|
|
1792
|
+
pulumi.set(__self__, "override_adapter_property", override_adapter_property)
|
|
1793
|
+
if override_qos_policy is None:
|
|
1794
|
+
override_qos_policy = False
|
|
1795
|
+
if override_qos_policy is not None:
|
|
1796
|
+
pulumi.set(__self__, "override_qos_policy", override_qos_policy)
|
|
1797
|
+
if override_virtual_switch_configuration is None:
|
|
1798
|
+
override_virtual_switch_configuration = False
|
|
1799
|
+
if override_virtual_switch_configuration is not None:
|
|
1800
|
+
pulumi.set(__self__, "override_virtual_switch_configuration", override_virtual_switch_configuration)
|
|
1801
|
+
if qos_policy_overrides is not None:
|
|
1802
|
+
pulumi.set(__self__, "qos_policy_overrides", qos_policy_overrides)
|
|
1803
|
+
if traffic_type is not None:
|
|
1804
|
+
pulumi.set(__self__, "traffic_type", traffic_type)
|
|
1805
|
+
if virtual_switch_configuration_overrides is not None:
|
|
1806
|
+
pulumi.set(__self__, "virtual_switch_configuration_overrides", virtual_switch_configuration_overrides)
|
|
1807
|
+
|
|
1808
|
+
@property
|
|
1809
|
+
@pulumi.getter
|
|
1810
|
+
def adapter(self) -> Optional[Sequence[str]]:
|
|
1811
|
+
"""
|
|
1812
|
+
Array of network interfaces used for the network intent.
|
|
1813
|
+
"""
|
|
1814
|
+
return pulumi.get(self, "adapter")
|
|
1815
|
+
|
|
1816
|
+
@property
|
|
1817
|
+
@pulumi.getter(name="adapterPropertyOverrides")
|
|
1818
|
+
def adapter_property_overrides(self) -> Optional['outputs.AdapterPropertyOverridesResponse']:
|
|
1819
|
+
"""
|
|
1820
|
+
Set Adapter PropertyOverrides for cluster.
|
|
1821
|
+
"""
|
|
1822
|
+
return pulumi.get(self, "adapter_property_overrides")
|
|
1823
|
+
|
|
1824
|
+
@property
|
|
1825
|
+
@pulumi.getter
|
|
1826
|
+
def name(self) -> Optional[str]:
|
|
1827
|
+
"""
|
|
1828
|
+
Name of the network intent you wish to create.
|
|
1829
|
+
"""
|
|
1830
|
+
return pulumi.get(self, "name")
|
|
1831
|
+
|
|
1832
|
+
@property
|
|
1833
|
+
@pulumi.getter(name="overrideAdapterProperty")
|
|
1834
|
+
def override_adapter_property(self) -> Optional[bool]:
|
|
1835
|
+
"""
|
|
1836
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
1837
|
+
"""
|
|
1838
|
+
return pulumi.get(self, "override_adapter_property")
|
|
1839
|
+
|
|
1840
|
+
@property
|
|
1841
|
+
@pulumi.getter(name="overrideQosPolicy")
|
|
1842
|
+
def override_qos_policy(self) -> Optional[bool]:
|
|
1843
|
+
"""
|
|
1844
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
1845
|
+
"""
|
|
1846
|
+
return pulumi.get(self, "override_qos_policy")
|
|
1847
|
+
|
|
1848
|
+
@property
|
|
1849
|
+
@pulumi.getter(name="overrideVirtualSwitchConfiguration")
|
|
1850
|
+
def override_virtual_switch_configuration(self) -> Optional[bool]:
|
|
1851
|
+
"""
|
|
1852
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
1853
|
+
"""
|
|
1854
|
+
return pulumi.get(self, "override_virtual_switch_configuration")
|
|
1855
|
+
|
|
1856
|
+
@property
|
|
1857
|
+
@pulumi.getter(name="qosPolicyOverrides")
|
|
1858
|
+
def qos_policy_overrides(self) -> Optional['outputs.QosPolicyOverridesResponse']:
|
|
1859
|
+
"""
|
|
1860
|
+
Set QoS PolicyOverrides for cluster.
|
|
1861
|
+
"""
|
|
1862
|
+
return pulumi.get(self, "qos_policy_overrides")
|
|
1863
|
+
|
|
1864
|
+
@property
|
|
1865
|
+
@pulumi.getter(name="trafficType")
|
|
1866
|
+
def traffic_type(self) -> Optional[Sequence[str]]:
|
|
1867
|
+
"""
|
|
1868
|
+
List of network traffic types. Only allowed values are 'Compute', 'Storage', 'Management'.
|
|
1869
|
+
"""
|
|
1870
|
+
return pulumi.get(self, "traffic_type")
|
|
1871
|
+
|
|
1872
|
+
@property
|
|
1873
|
+
@pulumi.getter(name="virtualSwitchConfigurationOverrides")
|
|
1874
|
+
def virtual_switch_configuration_overrides(self) -> Optional['outputs.VirtualSwitchConfigurationOverridesResponse']:
|
|
1875
|
+
"""
|
|
1876
|
+
Set virtualSwitch ConfigurationOverrides for cluster.
|
|
1877
|
+
"""
|
|
1878
|
+
return pulumi.get(self, "virtual_switch_configuration_overrides")
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
@pulumi.output_type
|
|
1882
|
+
class IpPoolsResponse(dict):
|
|
1883
|
+
"""
|
|
1884
|
+
The dnsServers of a device.
|
|
1885
|
+
"""
|
|
1886
|
+
@staticmethod
|
|
1887
|
+
def __key_warning(key: str):
|
|
1888
|
+
suggest = None
|
|
1889
|
+
if key == "endingAddress":
|
|
1890
|
+
suggest = "ending_address"
|
|
1891
|
+
elif key == "startingAddress":
|
|
1892
|
+
suggest = "starting_address"
|
|
1893
|
+
|
|
1894
|
+
if suggest:
|
|
1895
|
+
pulumi.log.warn(f"Key '{key}' not found in IpPoolsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1896
|
+
|
|
1897
|
+
def __getitem__(self, key: str) -> Any:
|
|
1898
|
+
IpPoolsResponse.__key_warning(key)
|
|
1899
|
+
return super().__getitem__(key)
|
|
1900
|
+
|
|
1901
|
+
def get(self, key: str, default = None) -> Any:
|
|
1902
|
+
IpPoolsResponse.__key_warning(key)
|
|
1903
|
+
return super().get(key, default)
|
|
1904
|
+
|
|
1905
|
+
def __init__(__self__, *,
|
|
1906
|
+
ending_address: Optional[str] = None,
|
|
1907
|
+
starting_address: Optional[str] = None):
|
|
1908
|
+
"""
|
|
1909
|
+
The dnsServers of a device.
|
|
1910
|
+
:param str ending_address: Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
|
|
1911
|
+
:param str starting_address: Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
|
|
1912
|
+
"""
|
|
1913
|
+
if ending_address is not None:
|
|
1914
|
+
pulumi.set(__self__, "ending_address", ending_address)
|
|
1915
|
+
if starting_address is not None:
|
|
1916
|
+
pulumi.set(__self__, "starting_address", starting_address)
|
|
1917
|
+
|
|
1918
|
+
@property
|
|
1919
|
+
@pulumi.getter(name="endingAddress")
|
|
1920
|
+
def ending_address(self) -> Optional[str]:
|
|
1921
|
+
"""
|
|
1922
|
+
Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
|
|
1923
|
+
"""
|
|
1924
|
+
return pulumi.get(self, "ending_address")
|
|
1925
|
+
|
|
1926
|
+
@property
|
|
1927
|
+
@pulumi.getter(name="startingAddress")
|
|
1928
|
+
def starting_address(self) -> Optional[str]:
|
|
1929
|
+
"""
|
|
1930
|
+
Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
|
|
1931
|
+
"""
|
|
1932
|
+
return pulumi.get(self, "starting_address")
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
@pulumi.output_type
|
|
1936
|
+
class IsolatedVmAttestationConfigurationResponse(dict):
|
|
1937
|
+
"""
|
|
1938
|
+
Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
|
|
1939
|
+
"""
|
|
1940
|
+
@staticmethod
|
|
1941
|
+
def __key_warning(key: str):
|
|
1942
|
+
suggest = None
|
|
1943
|
+
if key == "attestationResourceId":
|
|
1944
|
+
suggest = "attestation_resource_id"
|
|
1945
|
+
elif key == "attestationServiceEndpoint":
|
|
1946
|
+
suggest = "attestation_service_endpoint"
|
|
1947
|
+
elif key == "relyingPartyServiceEndpoint":
|
|
1948
|
+
suggest = "relying_party_service_endpoint"
|
|
1949
|
+
|
|
1950
|
+
if suggest:
|
|
1951
|
+
pulumi.log.warn(f"Key '{key}' not found in IsolatedVmAttestationConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1952
|
+
|
|
1953
|
+
def __getitem__(self, key: str) -> Any:
|
|
1954
|
+
IsolatedVmAttestationConfigurationResponse.__key_warning(key)
|
|
1955
|
+
return super().__getitem__(key)
|
|
1956
|
+
|
|
1957
|
+
def get(self, key: str, default = None) -> Any:
|
|
1958
|
+
IsolatedVmAttestationConfigurationResponse.__key_warning(key)
|
|
1959
|
+
return super().get(key, default)
|
|
1960
|
+
|
|
1961
|
+
def __init__(__self__, *,
|
|
1962
|
+
attestation_resource_id: str,
|
|
1963
|
+
attestation_service_endpoint: str,
|
|
1964
|
+
relying_party_service_endpoint: str):
|
|
1965
|
+
"""
|
|
1966
|
+
Attestation configurations for isolated VM (e.g. TVM, CVM) of the cluster.
|
|
1967
|
+
:param str attestation_resource_id: Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
|
|
1968
|
+
:param str attestation_service_endpoint: Region specific endpoint for Microsoft Azure Attestation service for the cluster
|
|
1969
|
+
:param str relying_party_service_endpoint: Region specific endpoint for relying party service.
|
|
1970
|
+
"""
|
|
1971
|
+
pulumi.set(__self__, "attestation_resource_id", attestation_resource_id)
|
|
1972
|
+
pulumi.set(__self__, "attestation_service_endpoint", attestation_service_endpoint)
|
|
1973
|
+
pulumi.set(__self__, "relying_party_service_endpoint", relying_party_service_endpoint)
|
|
1974
|
+
|
|
1975
|
+
@property
|
|
1976
|
+
@pulumi.getter(name="attestationResourceId")
|
|
1977
|
+
def attestation_resource_id(self) -> str:
|
|
1978
|
+
"""
|
|
1979
|
+
Fully qualified Azure resource id of the Microsoft Azure attestation resource associated with this cluster.
|
|
1980
|
+
"""
|
|
1981
|
+
return pulumi.get(self, "attestation_resource_id")
|
|
1982
|
+
|
|
1983
|
+
@property
|
|
1984
|
+
@pulumi.getter(name="attestationServiceEndpoint")
|
|
1985
|
+
def attestation_service_endpoint(self) -> str:
|
|
1986
|
+
"""
|
|
1987
|
+
Region specific endpoint for Microsoft Azure Attestation service for the cluster
|
|
1988
|
+
"""
|
|
1989
|
+
return pulumi.get(self, "attestation_service_endpoint")
|
|
1990
|
+
|
|
1991
|
+
@property
|
|
1992
|
+
@pulumi.getter(name="relyingPartyServiceEndpoint")
|
|
1993
|
+
def relying_party_service_endpoint(self) -> str:
|
|
1994
|
+
"""
|
|
1995
|
+
Region specific endpoint for relying party service.
|
|
1996
|
+
"""
|
|
1997
|
+
return pulumi.get(self, "relying_party_service_endpoint")
|
|
1998
|
+
|
|
1999
|
+
|
|
2000
|
+
@pulumi.output_type
|
|
2001
|
+
class NicDetailResponse(dict):
|
|
2002
|
+
"""
|
|
2003
|
+
The NIC Detail of a device.
|
|
2004
|
+
"""
|
|
2005
|
+
@staticmethod
|
|
2006
|
+
def __key_warning(key: str):
|
|
2007
|
+
suggest = None
|
|
2008
|
+
if key == "adapterName":
|
|
2009
|
+
suggest = "adapter_name"
|
|
2010
|
+
elif key == "componentId":
|
|
2011
|
+
suggest = "component_id"
|
|
2012
|
+
elif key == "defaultGateway":
|
|
2013
|
+
suggest = "default_gateway"
|
|
2014
|
+
elif key == "defaultIsolationId":
|
|
2015
|
+
suggest = "default_isolation_id"
|
|
2016
|
+
elif key == "dnsServers":
|
|
2017
|
+
suggest = "dns_servers"
|
|
2018
|
+
elif key == "driverVersion":
|
|
2019
|
+
suggest = "driver_version"
|
|
2020
|
+
elif key == "interfaceDescription":
|
|
2021
|
+
suggest = "interface_description"
|
|
2022
|
+
elif key == "ip4Address":
|
|
2023
|
+
suggest = "ip4_address"
|
|
2024
|
+
elif key == "subnetMask":
|
|
2025
|
+
suggest = "subnet_mask"
|
|
2026
|
+
|
|
2027
|
+
if suggest:
|
|
2028
|
+
pulumi.log.warn(f"Key '{key}' not found in NicDetailResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2029
|
+
|
|
2030
|
+
def __getitem__(self, key: str) -> Any:
|
|
2031
|
+
NicDetailResponse.__key_warning(key)
|
|
2032
|
+
return super().__getitem__(key)
|
|
2033
|
+
|
|
2034
|
+
def get(self, key: str, default = None) -> Any:
|
|
2035
|
+
NicDetailResponse.__key_warning(key)
|
|
2036
|
+
return super().get(key, default)
|
|
2037
|
+
|
|
2038
|
+
def __init__(__self__, *,
|
|
2039
|
+
adapter_name: str,
|
|
2040
|
+
component_id: Optional[str] = None,
|
|
2041
|
+
default_gateway: Optional[str] = None,
|
|
2042
|
+
default_isolation_id: Optional[str] = None,
|
|
2043
|
+
dns_servers: Optional[Sequence[str]] = None,
|
|
2044
|
+
driver_version: Optional[str] = None,
|
|
2045
|
+
interface_description: Optional[str] = None,
|
|
2046
|
+
ip4_address: Optional[str] = None,
|
|
2047
|
+
subnet_mask: Optional[str] = None):
|
|
2048
|
+
"""
|
|
2049
|
+
The NIC Detail of a device.
|
|
2050
|
+
:param str adapter_name: Adapter Name of NIC
|
|
2051
|
+
:param str component_id: Component Id of NIC
|
|
2052
|
+
:param str default_gateway: Default Gateway of NIC
|
|
2053
|
+
:param str default_isolation_id: Default Isolation of Management NIC
|
|
2054
|
+
:param Sequence[str] dns_servers: DNS Servers for NIC
|
|
2055
|
+
:param str driver_version: Driver Version of NIC
|
|
2056
|
+
:param str interface_description: Interface Description of NIC
|
|
2057
|
+
:param str ip4_address: Subnet Mask of NIC
|
|
2058
|
+
:param str subnet_mask: Subnet Mask of NIC
|
|
2059
|
+
"""
|
|
2060
|
+
pulumi.set(__self__, "adapter_name", adapter_name)
|
|
2061
|
+
if component_id is not None:
|
|
2062
|
+
pulumi.set(__self__, "component_id", component_id)
|
|
2063
|
+
if default_gateway is not None:
|
|
2064
|
+
pulumi.set(__self__, "default_gateway", default_gateway)
|
|
2065
|
+
if default_isolation_id is not None:
|
|
2066
|
+
pulumi.set(__self__, "default_isolation_id", default_isolation_id)
|
|
2067
|
+
if dns_servers is not None:
|
|
2068
|
+
pulumi.set(__self__, "dns_servers", dns_servers)
|
|
2069
|
+
if driver_version is not None:
|
|
2070
|
+
pulumi.set(__self__, "driver_version", driver_version)
|
|
2071
|
+
if interface_description is not None:
|
|
2072
|
+
pulumi.set(__self__, "interface_description", interface_description)
|
|
2073
|
+
if ip4_address is not None:
|
|
2074
|
+
pulumi.set(__self__, "ip4_address", ip4_address)
|
|
2075
|
+
if subnet_mask is not None:
|
|
2076
|
+
pulumi.set(__self__, "subnet_mask", subnet_mask)
|
|
2077
|
+
|
|
2078
|
+
@property
|
|
2079
|
+
@pulumi.getter(name="adapterName")
|
|
2080
|
+
def adapter_name(self) -> str:
|
|
2081
|
+
"""
|
|
2082
|
+
Adapter Name of NIC
|
|
2083
|
+
"""
|
|
2084
|
+
return pulumi.get(self, "adapter_name")
|
|
2085
|
+
|
|
2086
|
+
@property
|
|
2087
|
+
@pulumi.getter(name="componentId")
|
|
2088
|
+
def component_id(self) -> Optional[str]:
|
|
2089
|
+
"""
|
|
2090
|
+
Component Id of NIC
|
|
2091
|
+
"""
|
|
2092
|
+
return pulumi.get(self, "component_id")
|
|
2093
|
+
|
|
2094
|
+
@property
|
|
2095
|
+
@pulumi.getter(name="defaultGateway")
|
|
2096
|
+
def default_gateway(self) -> Optional[str]:
|
|
2097
|
+
"""
|
|
2098
|
+
Default Gateway of NIC
|
|
2099
|
+
"""
|
|
2100
|
+
return pulumi.get(self, "default_gateway")
|
|
2101
|
+
|
|
2102
|
+
@property
|
|
2103
|
+
@pulumi.getter(name="defaultIsolationId")
|
|
2104
|
+
def default_isolation_id(self) -> Optional[str]:
|
|
2105
|
+
"""
|
|
2106
|
+
Default Isolation of Management NIC
|
|
2107
|
+
"""
|
|
2108
|
+
return pulumi.get(self, "default_isolation_id")
|
|
2109
|
+
|
|
2110
|
+
@property
|
|
2111
|
+
@pulumi.getter(name="dnsServers")
|
|
2112
|
+
def dns_servers(self) -> Optional[Sequence[str]]:
|
|
2113
|
+
"""
|
|
2114
|
+
DNS Servers for NIC
|
|
2115
|
+
"""
|
|
2116
|
+
return pulumi.get(self, "dns_servers")
|
|
2117
|
+
|
|
2118
|
+
@property
|
|
2119
|
+
@pulumi.getter(name="driverVersion")
|
|
2120
|
+
def driver_version(self) -> Optional[str]:
|
|
2121
|
+
"""
|
|
2122
|
+
Driver Version of NIC
|
|
2123
|
+
"""
|
|
2124
|
+
return pulumi.get(self, "driver_version")
|
|
2125
|
+
|
|
2126
|
+
@property
|
|
2127
|
+
@pulumi.getter(name="interfaceDescription")
|
|
2128
|
+
def interface_description(self) -> Optional[str]:
|
|
2129
|
+
"""
|
|
2130
|
+
Interface Description of NIC
|
|
2131
|
+
"""
|
|
2132
|
+
return pulumi.get(self, "interface_description")
|
|
2133
|
+
|
|
2134
|
+
@property
|
|
2135
|
+
@pulumi.getter(name="ip4Address")
|
|
2136
|
+
def ip4_address(self) -> Optional[str]:
|
|
2137
|
+
"""
|
|
2138
|
+
Subnet Mask of NIC
|
|
2139
|
+
"""
|
|
2140
|
+
return pulumi.get(self, "ip4_address")
|
|
2141
|
+
|
|
2142
|
+
@property
|
|
2143
|
+
@pulumi.getter(name="subnetMask")
|
|
2144
|
+
def subnet_mask(self) -> Optional[str]:
|
|
2145
|
+
"""
|
|
2146
|
+
Subnet Mask of NIC
|
|
2147
|
+
"""
|
|
2148
|
+
return pulumi.get(self, "subnet_mask")
|
|
2149
|
+
|
|
2150
|
+
|
|
2151
|
+
@pulumi.output_type
|
|
2152
|
+
class ObservabilityResponse(dict):
|
|
2153
|
+
"""
|
|
2154
|
+
The Observability of AzureStackHCI Cluster.
|
|
2155
|
+
"""
|
|
2156
|
+
@staticmethod
|
|
2157
|
+
def __key_warning(key: str):
|
|
2158
|
+
suggest = None
|
|
2159
|
+
if key == "episodicDataUpload":
|
|
2160
|
+
suggest = "episodic_data_upload"
|
|
2161
|
+
elif key == "euLocation":
|
|
2162
|
+
suggest = "eu_location"
|
|
2163
|
+
elif key == "streamingDataClient":
|
|
2164
|
+
suggest = "streaming_data_client"
|
|
2165
|
+
|
|
2166
|
+
if suggest:
|
|
2167
|
+
pulumi.log.warn(f"Key '{key}' not found in ObservabilityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2168
|
+
|
|
2169
|
+
def __getitem__(self, key: str) -> Any:
|
|
2170
|
+
ObservabilityResponse.__key_warning(key)
|
|
2171
|
+
return super().__getitem__(key)
|
|
2172
|
+
|
|
2173
|
+
def get(self, key: str, default = None) -> Any:
|
|
2174
|
+
ObservabilityResponse.__key_warning(key)
|
|
2175
|
+
return super().get(key, default)
|
|
2176
|
+
|
|
2177
|
+
def __init__(__self__, *,
|
|
2178
|
+
episodic_data_upload: Optional[bool] = None,
|
|
2179
|
+
eu_location: Optional[bool] = None,
|
|
2180
|
+
streaming_data_client: Optional[bool] = None):
|
|
2181
|
+
"""
|
|
2182
|
+
The Observability of AzureStackHCI Cluster.
|
|
2183
|
+
:param bool episodic_data_upload: When set to true, collects log data to facilitate quicker issue resolution.
|
|
2184
|
+
:param bool eu_location: Location of your cluster. The log and diagnostic data is sent to the appropriate diagnostics servers depending upon where your cluster resides. Setting this to false results in all data sent to Microsoft to be stored outside of the EU.
|
|
2185
|
+
:param bool streaming_data_client: Enables telemetry data to be sent to Microsoft
|
|
2186
|
+
"""
|
|
2187
|
+
if episodic_data_upload is None:
|
|
2188
|
+
episodic_data_upload = True
|
|
2189
|
+
if episodic_data_upload is not None:
|
|
2190
|
+
pulumi.set(__self__, "episodic_data_upload", episodic_data_upload)
|
|
2191
|
+
if eu_location is None:
|
|
2192
|
+
eu_location = False
|
|
2193
|
+
if eu_location is not None:
|
|
2194
|
+
pulumi.set(__self__, "eu_location", eu_location)
|
|
2195
|
+
if streaming_data_client is None:
|
|
2196
|
+
streaming_data_client = True
|
|
2197
|
+
if streaming_data_client is not None:
|
|
2198
|
+
pulumi.set(__self__, "streaming_data_client", streaming_data_client)
|
|
2199
|
+
|
|
2200
|
+
@property
|
|
2201
|
+
@pulumi.getter(name="episodicDataUpload")
|
|
2202
|
+
def episodic_data_upload(self) -> Optional[bool]:
|
|
2203
|
+
"""
|
|
2204
|
+
When set to true, collects log data to facilitate quicker issue resolution.
|
|
2205
|
+
"""
|
|
2206
|
+
return pulumi.get(self, "episodic_data_upload")
|
|
2207
|
+
|
|
2208
|
+
@property
|
|
2209
|
+
@pulumi.getter(name="euLocation")
|
|
2210
|
+
def eu_location(self) -> Optional[bool]:
|
|
2211
|
+
"""
|
|
2212
|
+
Location of your cluster. The log and diagnostic data is sent to the appropriate diagnostics servers depending upon where your cluster resides. Setting this to false results in all data sent to Microsoft to be stored outside of the EU.
|
|
2213
|
+
"""
|
|
2214
|
+
return pulumi.get(self, "eu_location")
|
|
2215
|
+
|
|
2216
|
+
@property
|
|
2217
|
+
@pulumi.getter(name="streamingDataClient")
|
|
2218
|
+
def streaming_data_client(self) -> Optional[bool]:
|
|
2219
|
+
"""
|
|
2220
|
+
Enables telemetry data to be sent to Microsoft
|
|
2221
|
+
"""
|
|
2222
|
+
return pulumi.get(self, "streaming_data_client")
|
|
2223
|
+
|
|
2224
|
+
|
|
2225
|
+
@pulumi.output_type
|
|
2226
|
+
class OptionalServicesResponse(dict):
|
|
2227
|
+
"""
|
|
2228
|
+
The OptionalServices of AzureStackHCI Cluster.
|
|
2229
|
+
"""
|
|
2230
|
+
@staticmethod
|
|
2231
|
+
def __key_warning(key: str):
|
|
2232
|
+
suggest = None
|
|
2233
|
+
if key == "customLocation":
|
|
2234
|
+
suggest = "custom_location"
|
|
2235
|
+
|
|
2236
|
+
if suggest:
|
|
2237
|
+
pulumi.log.warn(f"Key '{key}' not found in OptionalServicesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2238
|
+
|
|
2239
|
+
def __getitem__(self, key: str) -> Any:
|
|
2240
|
+
OptionalServicesResponse.__key_warning(key)
|
|
2241
|
+
return super().__getitem__(key)
|
|
2242
|
+
|
|
2243
|
+
def get(self, key: str, default = None) -> Any:
|
|
2244
|
+
OptionalServicesResponse.__key_warning(key)
|
|
2245
|
+
return super().get(key, default)
|
|
2246
|
+
|
|
2247
|
+
def __init__(__self__, *,
|
|
2248
|
+
custom_location: Optional[str] = None):
|
|
2249
|
+
"""
|
|
2250
|
+
The OptionalServices of AzureStackHCI Cluster.
|
|
2251
|
+
:param str custom_location: The name of custom location.
|
|
2252
|
+
"""
|
|
2253
|
+
if custom_location is not None:
|
|
2254
|
+
pulumi.set(__self__, "custom_location", custom_location)
|
|
2255
|
+
|
|
2256
|
+
@property
|
|
2257
|
+
@pulumi.getter(name="customLocation")
|
|
2258
|
+
def custom_location(self) -> Optional[str]:
|
|
2259
|
+
"""
|
|
2260
|
+
The name of custom location.
|
|
2261
|
+
"""
|
|
2262
|
+
return pulumi.get(self, "custom_location")
|
|
2263
|
+
|
|
2264
|
+
|
|
2265
|
+
@pulumi.output_type
|
|
2266
|
+
class PerNodeExtensionStateResponse(dict):
|
|
2267
|
+
"""
|
|
2268
|
+
Status of Arc Extension for a particular node in HCI Cluster.
|
|
2269
|
+
"""
|
|
2270
|
+
@staticmethod
|
|
2271
|
+
def __key_warning(key: str):
|
|
2272
|
+
suggest = None
|
|
2273
|
+
if key == "instanceView":
|
|
2274
|
+
suggest = "instance_view"
|
|
2275
|
+
elif key == "typeHandlerVersion":
|
|
2276
|
+
suggest = "type_handler_version"
|
|
2277
|
+
|
|
2278
|
+
if suggest:
|
|
2279
|
+
pulumi.log.warn(f"Key '{key}' not found in PerNodeExtensionStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2280
|
+
|
|
2281
|
+
def __getitem__(self, key: str) -> Any:
|
|
2282
|
+
PerNodeExtensionStateResponse.__key_warning(key)
|
|
2283
|
+
return super().__getitem__(key)
|
|
2284
|
+
|
|
2285
|
+
def get(self, key: str, default = None) -> Any:
|
|
2286
|
+
PerNodeExtensionStateResponse.__key_warning(key)
|
|
2287
|
+
return super().get(key, default)
|
|
2288
|
+
|
|
2289
|
+
def __init__(__self__, *,
|
|
2290
|
+
extension: str,
|
|
2291
|
+
instance_view: 'outputs.ExtensionInstanceViewResponse',
|
|
2292
|
+
name: str,
|
|
2293
|
+
state: str,
|
|
2294
|
+
type_handler_version: str):
|
|
2295
|
+
"""
|
|
2296
|
+
Status of Arc Extension for a particular node in HCI Cluster.
|
|
2297
|
+
:param str extension: Fully qualified resource ID for the particular Arc Extension on this node.
|
|
2298
|
+
:param 'ExtensionInstanceViewResponse' instance_view: The extension instance view.
|
|
2299
|
+
:param str name: Name of the node in HCI Cluster.
|
|
2300
|
+
:param str state: State of Arc Extension in this node.
|
|
2301
|
+
:param str type_handler_version: Specifies the version of the script handler.
|
|
2302
|
+
"""
|
|
2303
|
+
pulumi.set(__self__, "extension", extension)
|
|
2304
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
2305
|
+
pulumi.set(__self__, "name", name)
|
|
2306
|
+
pulumi.set(__self__, "state", state)
|
|
2307
|
+
pulumi.set(__self__, "type_handler_version", type_handler_version)
|
|
2308
|
+
|
|
2309
|
+
@property
|
|
2310
|
+
@pulumi.getter
|
|
2311
|
+
def extension(self) -> str:
|
|
2312
|
+
"""
|
|
2313
|
+
Fully qualified resource ID for the particular Arc Extension on this node.
|
|
2314
|
+
"""
|
|
2315
|
+
return pulumi.get(self, "extension")
|
|
2316
|
+
|
|
2317
|
+
@property
|
|
2318
|
+
@pulumi.getter(name="instanceView")
|
|
2319
|
+
def instance_view(self) -> 'outputs.ExtensionInstanceViewResponse':
|
|
2320
|
+
"""
|
|
2321
|
+
The extension instance view.
|
|
2322
|
+
"""
|
|
2323
|
+
return pulumi.get(self, "instance_view")
|
|
2324
|
+
|
|
2325
|
+
@property
|
|
2326
|
+
@pulumi.getter
|
|
2327
|
+
def name(self) -> str:
|
|
2328
|
+
"""
|
|
2329
|
+
Name of the node in HCI Cluster.
|
|
2330
|
+
"""
|
|
2331
|
+
return pulumi.get(self, "name")
|
|
2332
|
+
|
|
2333
|
+
@property
|
|
2334
|
+
@pulumi.getter
|
|
2335
|
+
def state(self) -> str:
|
|
2336
|
+
"""
|
|
2337
|
+
State of Arc Extension in this node.
|
|
2338
|
+
"""
|
|
2339
|
+
return pulumi.get(self, "state")
|
|
2340
|
+
|
|
2341
|
+
@property
|
|
2342
|
+
@pulumi.getter(name="typeHandlerVersion")
|
|
2343
|
+
def type_handler_version(self) -> str:
|
|
2344
|
+
"""
|
|
2345
|
+
Specifies the version of the script handler.
|
|
2346
|
+
"""
|
|
2347
|
+
return pulumi.get(self, "type_handler_version")
|
|
2348
|
+
|
|
2349
|
+
|
|
2350
|
+
@pulumi.output_type
|
|
2351
|
+
class PerNodeStateResponse(dict):
|
|
2352
|
+
"""
|
|
2353
|
+
Status of Arc agent for a particular node in HCI Cluster.
|
|
2354
|
+
"""
|
|
2355
|
+
@staticmethod
|
|
2356
|
+
def __key_warning(key: str):
|
|
2357
|
+
suggest = None
|
|
2358
|
+
if key == "arcInstance":
|
|
2359
|
+
suggest = "arc_instance"
|
|
2360
|
+
elif key == "arcNodeServicePrincipalObjectId":
|
|
2361
|
+
suggest = "arc_node_service_principal_object_id"
|
|
2362
|
+
|
|
2363
|
+
if suggest:
|
|
2364
|
+
pulumi.log.warn(f"Key '{key}' not found in PerNodeStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2365
|
+
|
|
2366
|
+
def __getitem__(self, key: str) -> Any:
|
|
2367
|
+
PerNodeStateResponse.__key_warning(key)
|
|
2368
|
+
return super().__getitem__(key)
|
|
2369
|
+
|
|
2370
|
+
def get(self, key: str, default = None) -> Any:
|
|
2371
|
+
PerNodeStateResponse.__key_warning(key)
|
|
2372
|
+
return super().get(key, default)
|
|
2373
|
+
|
|
2374
|
+
def __init__(__self__, *,
|
|
2375
|
+
arc_instance: str,
|
|
2376
|
+
arc_node_service_principal_object_id: str,
|
|
2377
|
+
name: str,
|
|
2378
|
+
state: str):
|
|
2379
|
+
"""
|
|
2380
|
+
Status of Arc agent for a particular node in HCI Cluster.
|
|
2381
|
+
:param str arc_instance: Fully qualified resource ID for the Arc agent of this node.
|
|
2382
|
+
:param str arc_node_service_principal_object_id: The service principal id of the arc for server node
|
|
2383
|
+
:param str name: Name of the Node in HCI Cluster
|
|
2384
|
+
:param str state: State of Arc agent in this node.
|
|
2385
|
+
"""
|
|
2386
|
+
pulumi.set(__self__, "arc_instance", arc_instance)
|
|
2387
|
+
pulumi.set(__self__, "arc_node_service_principal_object_id", arc_node_service_principal_object_id)
|
|
2388
|
+
pulumi.set(__self__, "name", name)
|
|
2389
|
+
pulumi.set(__self__, "state", state)
|
|
2390
|
+
|
|
2391
|
+
@property
|
|
2392
|
+
@pulumi.getter(name="arcInstance")
|
|
2393
|
+
def arc_instance(self) -> str:
|
|
2394
|
+
"""
|
|
2395
|
+
Fully qualified resource ID for the Arc agent of this node.
|
|
2396
|
+
"""
|
|
2397
|
+
return pulumi.get(self, "arc_instance")
|
|
2398
|
+
|
|
2399
|
+
@property
|
|
2400
|
+
@pulumi.getter(name="arcNodeServicePrincipalObjectId")
|
|
2401
|
+
def arc_node_service_principal_object_id(self) -> str:
|
|
2402
|
+
"""
|
|
2403
|
+
The service principal id of the arc for server node
|
|
2404
|
+
"""
|
|
2405
|
+
return pulumi.get(self, "arc_node_service_principal_object_id")
|
|
2406
|
+
|
|
2407
|
+
@property
|
|
2408
|
+
@pulumi.getter
|
|
2409
|
+
def name(self) -> str:
|
|
2410
|
+
"""
|
|
2411
|
+
Name of the Node in HCI Cluster
|
|
2412
|
+
"""
|
|
2413
|
+
return pulumi.get(self, "name")
|
|
2414
|
+
|
|
2415
|
+
@property
|
|
2416
|
+
@pulumi.getter
|
|
2417
|
+
def state(self) -> str:
|
|
2418
|
+
"""
|
|
2419
|
+
State of Arc agent in this node.
|
|
2420
|
+
"""
|
|
2421
|
+
return pulumi.get(self, "state")
|
|
2422
|
+
|
|
2423
|
+
|
|
2424
|
+
@pulumi.output_type
|
|
2425
|
+
class PhysicalNodesResponse(dict):
|
|
2426
|
+
"""
|
|
2427
|
+
The PhysicalNodes of a cluster.
|
|
2428
|
+
"""
|
|
2429
|
+
@staticmethod
|
|
2430
|
+
def __key_warning(key: str):
|
|
2431
|
+
suggest = None
|
|
2432
|
+
if key == "ipv4Address":
|
|
2433
|
+
suggest = "ipv4_address"
|
|
2434
|
+
|
|
2435
|
+
if suggest:
|
|
2436
|
+
pulumi.log.warn(f"Key '{key}' not found in PhysicalNodesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2437
|
+
|
|
2438
|
+
def __getitem__(self, key: str) -> Any:
|
|
2439
|
+
PhysicalNodesResponse.__key_warning(key)
|
|
2440
|
+
return super().__getitem__(key)
|
|
2441
|
+
|
|
2442
|
+
def get(self, key: str, default = None) -> Any:
|
|
2443
|
+
PhysicalNodesResponse.__key_warning(key)
|
|
2444
|
+
return super().get(key, default)
|
|
2445
|
+
|
|
2446
|
+
def __init__(__self__, *,
|
|
2447
|
+
ipv4_address: Optional[str] = None,
|
|
2448
|
+
name: Optional[str] = None):
|
|
2449
|
+
"""
|
|
2450
|
+
The PhysicalNodes of a cluster.
|
|
2451
|
+
:param str ipv4_address: The IPv4 address assigned to each physical server on your Azure Stack HCI cluster.
|
|
2452
|
+
:param str name: NETBIOS name of each physical server on your Azure Stack HCI cluster.
|
|
2453
|
+
"""
|
|
2454
|
+
if ipv4_address is not None:
|
|
2455
|
+
pulumi.set(__self__, "ipv4_address", ipv4_address)
|
|
2456
|
+
if name is not None:
|
|
2457
|
+
pulumi.set(__self__, "name", name)
|
|
2458
|
+
|
|
2459
|
+
@property
|
|
2460
|
+
@pulumi.getter(name="ipv4Address")
|
|
2461
|
+
def ipv4_address(self) -> Optional[str]:
|
|
2462
|
+
"""
|
|
2463
|
+
The IPv4 address assigned to each physical server on your Azure Stack HCI cluster.
|
|
2464
|
+
"""
|
|
2465
|
+
return pulumi.get(self, "ipv4_address")
|
|
2466
|
+
|
|
2467
|
+
@property
|
|
2468
|
+
@pulumi.getter
|
|
2469
|
+
def name(self) -> Optional[str]:
|
|
2470
|
+
"""
|
|
2471
|
+
NETBIOS name of each physical server on your Azure Stack HCI cluster.
|
|
2472
|
+
"""
|
|
2473
|
+
return pulumi.get(self, "name")
|
|
2474
|
+
|
|
2475
|
+
|
|
2476
|
+
@pulumi.output_type
|
|
2477
|
+
class QosPolicyOverridesResponse(dict):
|
|
2478
|
+
"""
|
|
2479
|
+
The QoSPolicyOverrides of a cluster.
|
|
2480
|
+
"""
|
|
2481
|
+
@staticmethod
|
|
2482
|
+
def __key_warning(key: str):
|
|
2483
|
+
suggest = None
|
|
2484
|
+
if key == "bandwidthPercentageSMB":
|
|
2485
|
+
suggest = "bandwidth_percentage_smb"
|
|
2486
|
+
elif key == "priorityValue8021ActionCluster":
|
|
2487
|
+
suggest = "priority_value8021_action_cluster"
|
|
2488
|
+
elif key == "priorityValue8021ActionSMB":
|
|
2489
|
+
suggest = "priority_value8021_action_smb"
|
|
2490
|
+
|
|
2491
|
+
if suggest:
|
|
2492
|
+
pulumi.log.warn(f"Key '{key}' not found in QosPolicyOverridesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2493
|
+
|
|
2494
|
+
def __getitem__(self, key: str) -> Any:
|
|
2495
|
+
QosPolicyOverridesResponse.__key_warning(key)
|
|
2496
|
+
return super().__getitem__(key)
|
|
2497
|
+
|
|
2498
|
+
def get(self, key: str, default = None) -> Any:
|
|
2499
|
+
QosPolicyOverridesResponse.__key_warning(key)
|
|
2500
|
+
return super().get(key, default)
|
|
2501
|
+
|
|
2502
|
+
def __init__(__self__, *,
|
|
2503
|
+
bandwidth_percentage_smb: Optional[str] = None,
|
|
2504
|
+
priority_value8021_action_cluster: Optional[str] = None,
|
|
2505
|
+
priority_value8021_action_smb: Optional[str] = None):
|
|
2506
|
+
"""
|
|
2507
|
+
The QoSPolicyOverrides of a cluster.
|
|
2508
|
+
:param str bandwidth_percentage_smb: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
2509
|
+
:param str priority_value8021_action_cluster: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
2510
|
+
:param str priority_value8021_action_smb: This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
2511
|
+
"""
|
|
2512
|
+
if bandwidth_percentage_smb is not None:
|
|
2513
|
+
pulumi.set(__self__, "bandwidth_percentage_smb", bandwidth_percentage_smb)
|
|
2514
|
+
if priority_value8021_action_cluster is not None:
|
|
2515
|
+
pulumi.set(__self__, "priority_value8021_action_cluster", priority_value8021_action_cluster)
|
|
2516
|
+
if priority_value8021_action_smb is not None:
|
|
2517
|
+
pulumi.set(__self__, "priority_value8021_action_smb", priority_value8021_action_smb)
|
|
2518
|
+
|
|
2519
|
+
@property
|
|
2520
|
+
@pulumi.getter(name="bandwidthPercentageSMB")
|
|
2521
|
+
def bandwidth_percentage_smb(self) -> Optional[str]:
|
|
2522
|
+
"""
|
|
2523
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
2524
|
+
"""
|
|
2525
|
+
return pulumi.get(self, "bandwidth_percentage_smb")
|
|
2526
|
+
|
|
2527
|
+
@property
|
|
2528
|
+
@pulumi.getter(name="priorityValue8021ActionCluster")
|
|
2529
|
+
def priority_value8021_action_cluster(self) -> Optional[str]:
|
|
2530
|
+
"""
|
|
2531
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
2532
|
+
"""
|
|
2533
|
+
return pulumi.get(self, "priority_value8021_action_cluster")
|
|
2534
|
+
|
|
2535
|
+
@property
|
|
2536
|
+
@pulumi.getter(name="priorityValue8021ActionSMB")
|
|
2537
|
+
def priority_value8021_action_smb(self) -> Optional[str]:
|
|
2538
|
+
"""
|
|
2539
|
+
This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
|
|
2540
|
+
"""
|
|
2541
|
+
return pulumi.get(self, "priority_value8021_action_smb")
|
|
2542
|
+
|
|
2543
|
+
|
|
2544
|
+
@pulumi.output_type
|
|
2545
|
+
class ReportedPropertiesResponse(dict):
|
|
2546
|
+
"""
|
|
2547
|
+
The DeploymentStatus of AzureStackHCI Cluster.
|
|
2548
|
+
"""
|
|
2549
|
+
@staticmethod
|
|
2550
|
+
def __key_warning(key: str):
|
|
2551
|
+
suggest = None
|
|
2552
|
+
if key == "deploymentStatus":
|
|
2553
|
+
suggest = "deployment_status"
|
|
2554
|
+
elif key == "validationStatus":
|
|
2555
|
+
suggest = "validation_status"
|
|
2556
|
+
|
|
2557
|
+
if suggest:
|
|
2558
|
+
pulumi.log.warn(f"Key '{key}' not found in ReportedPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2559
|
+
|
|
2560
|
+
def __getitem__(self, key: str) -> Any:
|
|
2561
|
+
ReportedPropertiesResponse.__key_warning(key)
|
|
2562
|
+
return super().__getitem__(key)
|
|
2563
|
+
|
|
2564
|
+
def get(self, key: str, default = None) -> Any:
|
|
2565
|
+
ReportedPropertiesResponse.__key_warning(key)
|
|
2566
|
+
return super().get(key, default)
|
|
2567
|
+
|
|
2568
|
+
def __init__(__self__, *,
|
|
2569
|
+
deployment_status: 'outputs.DeploymentStatusResponse',
|
|
2570
|
+
validation_status: 'outputs.ValidationStatusResponse'):
|
|
2571
|
+
"""
|
|
2572
|
+
The DeploymentStatus of AzureStackHCI Cluster.
|
|
2573
|
+
:param 'DeploymentStatusResponse' deployment_status: Deployment status of AzureStackHCI Cluster Deployment.
|
|
2574
|
+
:param 'ValidationStatusResponse' validation_status: validation status of AzureStackHCI Cluster Deployment.
|
|
2575
|
+
"""
|
|
2576
|
+
pulumi.set(__self__, "deployment_status", deployment_status)
|
|
2577
|
+
pulumi.set(__self__, "validation_status", validation_status)
|
|
2578
|
+
|
|
2579
|
+
@property
|
|
2580
|
+
@pulumi.getter(name="deploymentStatus")
|
|
2581
|
+
def deployment_status(self) -> 'outputs.DeploymentStatusResponse':
|
|
2582
|
+
"""
|
|
2583
|
+
Deployment status of AzureStackHCI Cluster Deployment.
|
|
2584
|
+
"""
|
|
2585
|
+
return pulumi.get(self, "deployment_status")
|
|
2586
|
+
|
|
2587
|
+
@property
|
|
2588
|
+
@pulumi.getter(name="validationStatus")
|
|
2589
|
+
def validation_status(self) -> 'outputs.ValidationStatusResponse':
|
|
2590
|
+
"""
|
|
2591
|
+
validation status of AzureStackHCI Cluster Deployment.
|
|
2592
|
+
"""
|
|
2593
|
+
return pulumi.get(self, "validation_status")
|
|
2594
|
+
|
|
2595
|
+
|
|
2596
|
+
@pulumi.output_type
|
|
2597
|
+
class ScaleUnitsResponse(dict):
|
|
2598
|
+
"""
|
|
2599
|
+
Scale units will contains list of deployment data
|
|
2600
|
+
"""
|
|
2601
|
+
@staticmethod
|
|
2602
|
+
def __key_warning(key: str):
|
|
2603
|
+
suggest = None
|
|
2604
|
+
if key == "deploymentData":
|
|
2605
|
+
suggest = "deployment_data"
|
|
2606
|
+
|
|
2607
|
+
if suggest:
|
|
2608
|
+
pulumi.log.warn(f"Key '{key}' not found in ScaleUnitsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2609
|
+
|
|
2610
|
+
def __getitem__(self, key: str) -> Any:
|
|
2611
|
+
ScaleUnitsResponse.__key_warning(key)
|
|
2612
|
+
return super().__getitem__(key)
|
|
2613
|
+
|
|
2614
|
+
def get(self, key: str, default = None) -> Any:
|
|
2615
|
+
ScaleUnitsResponse.__key_warning(key)
|
|
2616
|
+
return super().get(key, default)
|
|
2617
|
+
|
|
2618
|
+
def __init__(__self__, *,
|
|
2619
|
+
deployment_data: 'outputs.DeploymentDataResponse'):
|
|
2620
|
+
"""
|
|
2621
|
+
Scale units will contains list of deployment data
|
|
2622
|
+
:param 'DeploymentDataResponse' deployment_data: Deployment Data to deploy AzureStackHCI Cluster.
|
|
2623
|
+
"""
|
|
2624
|
+
pulumi.set(__self__, "deployment_data", deployment_data)
|
|
2625
|
+
|
|
2626
|
+
@property
|
|
2627
|
+
@pulumi.getter(name="deploymentData")
|
|
2628
|
+
def deployment_data(self) -> 'outputs.DeploymentDataResponse':
|
|
2629
|
+
"""
|
|
2630
|
+
Deployment Data to deploy AzureStackHCI Cluster.
|
|
2631
|
+
"""
|
|
2632
|
+
return pulumi.get(self, "deployment_data")
|
|
2633
|
+
|
|
2634
|
+
|
|
2635
|
+
@pulumi.output_type
|
|
2636
|
+
class SecurityComplianceStatusResponse(dict):
|
|
2637
|
+
"""
|
|
2638
|
+
Security compliance properties of the resource
|
|
2639
|
+
"""
|
|
2640
|
+
@staticmethod
|
|
2641
|
+
def __key_warning(key: str):
|
|
2642
|
+
suggest = None
|
|
2643
|
+
if key == "dataAtRestEncrypted":
|
|
2644
|
+
suggest = "data_at_rest_encrypted"
|
|
2645
|
+
elif key == "dataInTransitProtected":
|
|
2646
|
+
suggest = "data_in_transit_protected"
|
|
2647
|
+
elif key == "lastUpdated":
|
|
2648
|
+
suggest = "last_updated"
|
|
2649
|
+
elif key == "securedCoreCompliance":
|
|
2650
|
+
suggest = "secured_core_compliance"
|
|
2651
|
+
elif key == "wdacCompliance":
|
|
2652
|
+
suggest = "wdac_compliance"
|
|
2653
|
+
|
|
2654
|
+
if suggest:
|
|
2655
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityComplianceStatusResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2656
|
+
|
|
2657
|
+
def __getitem__(self, key: str) -> Any:
|
|
2658
|
+
SecurityComplianceStatusResponse.__key_warning(key)
|
|
2659
|
+
return super().__getitem__(key)
|
|
2660
|
+
|
|
2661
|
+
def get(self, key: str, default = None) -> Any:
|
|
2662
|
+
SecurityComplianceStatusResponse.__key_warning(key)
|
|
2663
|
+
return super().get(key, default)
|
|
2664
|
+
|
|
2665
|
+
def __init__(__self__, *,
|
|
2666
|
+
data_at_rest_encrypted: str,
|
|
2667
|
+
data_in_transit_protected: str,
|
|
2668
|
+
last_updated: str,
|
|
2669
|
+
secured_core_compliance: str,
|
|
2670
|
+
wdac_compliance: str):
|
|
2671
|
+
"""
|
|
2672
|
+
Security compliance properties of the resource
|
|
2673
|
+
:param str data_at_rest_encrypted: Indicates whether data at-rest encryption is enabled on Azure Stack HCI clustered volumes.
|
|
2674
|
+
:param str data_in_transit_protected: Indicates whether HCI cluster has data in-transit protection.
|
|
2675
|
+
:param str last_updated: Time in UTC when compliance status was last updated.
|
|
2676
|
+
:param str secured_core_compliance: Indicates whether HCI hosts meets secured-core server requirements.
|
|
2677
|
+
:param str wdac_compliance: Indicates whether HCI hosts have enforced consistent Windows Defender Application Control.
|
|
2678
|
+
"""
|
|
2679
|
+
pulumi.set(__self__, "data_at_rest_encrypted", data_at_rest_encrypted)
|
|
2680
|
+
pulumi.set(__self__, "data_in_transit_protected", data_in_transit_protected)
|
|
2681
|
+
pulumi.set(__self__, "last_updated", last_updated)
|
|
2682
|
+
pulumi.set(__self__, "secured_core_compliance", secured_core_compliance)
|
|
2683
|
+
pulumi.set(__self__, "wdac_compliance", wdac_compliance)
|
|
2684
|
+
|
|
2685
|
+
@property
|
|
2686
|
+
@pulumi.getter(name="dataAtRestEncrypted")
|
|
2687
|
+
def data_at_rest_encrypted(self) -> str:
|
|
2688
|
+
"""
|
|
2689
|
+
Indicates whether data at-rest encryption is enabled on Azure Stack HCI clustered volumes.
|
|
2690
|
+
"""
|
|
2691
|
+
return pulumi.get(self, "data_at_rest_encrypted")
|
|
2692
|
+
|
|
2693
|
+
@property
|
|
2694
|
+
@pulumi.getter(name="dataInTransitProtected")
|
|
2695
|
+
def data_in_transit_protected(self) -> str:
|
|
2696
|
+
"""
|
|
2697
|
+
Indicates whether HCI cluster has data in-transit protection.
|
|
2698
|
+
"""
|
|
2699
|
+
return pulumi.get(self, "data_in_transit_protected")
|
|
2700
|
+
|
|
2701
|
+
@property
|
|
2702
|
+
@pulumi.getter(name="lastUpdated")
|
|
2703
|
+
def last_updated(self) -> str:
|
|
2704
|
+
"""
|
|
2705
|
+
Time in UTC when compliance status was last updated.
|
|
2706
|
+
"""
|
|
2707
|
+
return pulumi.get(self, "last_updated")
|
|
2708
|
+
|
|
2709
|
+
@property
|
|
2710
|
+
@pulumi.getter(name="securedCoreCompliance")
|
|
2711
|
+
def secured_core_compliance(self) -> str:
|
|
2712
|
+
"""
|
|
2713
|
+
Indicates whether HCI hosts meets secured-core server requirements.
|
|
2714
|
+
"""
|
|
2715
|
+
return pulumi.get(self, "secured_core_compliance")
|
|
2716
|
+
|
|
2717
|
+
@property
|
|
2718
|
+
@pulumi.getter(name="wdacCompliance")
|
|
2719
|
+
def wdac_compliance(self) -> str:
|
|
2720
|
+
"""
|
|
2721
|
+
Indicates whether HCI hosts have enforced consistent Windows Defender Application Control.
|
|
2722
|
+
"""
|
|
2723
|
+
return pulumi.get(self, "wdac_compliance")
|
|
2724
|
+
|
|
2725
|
+
|
|
2726
|
+
@pulumi.output_type
|
|
2727
|
+
class ServiceConfigurationResponse(dict):
|
|
2728
|
+
"""
|
|
2729
|
+
Service configuration details
|
|
2730
|
+
"""
|
|
2731
|
+
@staticmethod
|
|
2732
|
+
def __key_warning(key: str):
|
|
2733
|
+
suggest = None
|
|
2734
|
+
if key == "serviceName":
|
|
2735
|
+
suggest = "service_name"
|
|
2736
|
+
|
|
2737
|
+
if suggest:
|
|
2738
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2739
|
+
|
|
2740
|
+
def __getitem__(self, key: str) -> Any:
|
|
2741
|
+
ServiceConfigurationResponse.__key_warning(key)
|
|
2742
|
+
return super().__getitem__(key)
|
|
2743
|
+
|
|
2744
|
+
def get(self, key: str, default = None) -> Any:
|
|
2745
|
+
ServiceConfigurationResponse.__key_warning(key)
|
|
2746
|
+
return super().get(key, default)
|
|
2747
|
+
|
|
2748
|
+
def __init__(__self__, *,
|
|
2749
|
+
port: float,
|
|
2750
|
+
service_name: str):
|
|
2751
|
+
"""
|
|
2752
|
+
Service configuration details
|
|
2753
|
+
:param float port: The port on which service is enabled.
|
|
2754
|
+
:param str service_name: Name of the service.
|
|
2755
|
+
"""
|
|
2756
|
+
pulumi.set(__self__, "port", port)
|
|
2757
|
+
pulumi.set(__self__, "service_name", service_name)
|
|
2758
|
+
|
|
2759
|
+
@property
|
|
2760
|
+
@pulumi.getter
|
|
2761
|
+
def port(self) -> float:
|
|
2762
|
+
"""
|
|
2763
|
+
The port on which service is enabled.
|
|
2764
|
+
"""
|
|
2765
|
+
return pulumi.get(self, "port")
|
|
2766
|
+
|
|
2767
|
+
@property
|
|
2768
|
+
@pulumi.getter(name="serviceName")
|
|
2769
|
+
def service_name(self) -> str:
|
|
2770
|
+
"""
|
|
2771
|
+
Name of the service.
|
|
2772
|
+
"""
|
|
2773
|
+
return pulumi.get(self, "service_name")
|
|
2774
|
+
|
|
2775
|
+
|
|
2776
|
+
@pulumi.output_type
|
|
2777
|
+
class SoftwareAssurancePropertiesResponse(dict):
|
|
2778
|
+
"""
|
|
2779
|
+
Software Assurance properties of the cluster.
|
|
2780
|
+
"""
|
|
2781
|
+
@staticmethod
|
|
2782
|
+
def __key_warning(key: str):
|
|
2783
|
+
suggest = None
|
|
2784
|
+
if key == "lastUpdated":
|
|
2785
|
+
suggest = "last_updated"
|
|
2786
|
+
elif key == "softwareAssuranceStatus":
|
|
2787
|
+
suggest = "software_assurance_status"
|
|
2788
|
+
elif key == "softwareAssuranceIntent":
|
|
2789
|
+
suggest = "software_assurance_intent"
|
|
2790
|
+
|
|
2791
|
+
if suggest:
|
|
2792
|
+
pulumi.log.warn(f"Key '{key}' not found in SoftwareAssurancePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2793
|
+
|
|
2794
|
+
def __getitem__(self, key: str) -> Any:
|
|
2795
|
+
SoftwareAssurancePropertiesResponse.__key_warning(key)
|
|
2796
|
+
return super().__getitem__(key)
|
|
2797
|
+
|
|
2798
|
+
def get(self, key: str, default = None) -> Any:
|
|
2799
|
+
SoftwareAssurancePropertiesResponse.__key_warning(key)
|
|
2800
|
+
return super().get(key, default)
|
|
2801
|
+
|
|
2802
|
+
def __init__(__self__, *,
|
|
2803
|
+
last_updated: str,
|
|
2804
|
+
software_assurance_status: str,
|
|
2805
|
+
software_assurance_intent: Optional[str] = None):
|
|
2806
|
+
"""
|
|
2807
|
+
Software Assurance properties of the cluster.
|
|
2808
|
+
:param str last_updated: TimeStamp denoting the latest SA benefit applicability is validated.
|
|
2809
|
+
:param str software_assurance_status: Status of the Software Assurance for the cluster.
|
|
2810
|
+
:param str software_assurance_intent: Customer Intent for Software Assurance Benefit.
|
|
2811
|
+
"""
|
|
2812
|
+
pulumi.set(__self__, "last_updated", last_updated)
|
|
2813
|
+
pulumi.set(__self__, "software_assurance_status", software_assurance_status)
|
|
2814
|
+
if software_assurance_intent is not None:
|
|
2815
|
+
pulumi.set(__self__, "software_assurance_intent", software_assurance_intent)
|
|
2816
|
+
|
|
2817
|
+
@property
|
|
2818
|
+
@pulumi.getter(name="lastUpdated")
|
|
2819
|
+
def last_updated(self) -> str:
|
|
2820
|
+
"""
|
|
2821
|
+
TimeStamp denoting the latest SA benefit applicability is validated.
|
|
2822
|
+
"""
|
|
2823
|
+
return pulumi.get(self, "last_updated")
|
|
2824
|
+
|
|
2825
|
+
@property
|
|
2826
|
+
@pulumi.getter(name="softwareAssuranceStatus")
|
|
2827
|
+
def software_assurance_status(self) -> str:
|
|
2828
|
+
"""
|
|
2829
|
+
Status of the Software Assurance for the cluster.
|
|
2830
|
+
"""
|
|
2831
|
+
return pulumi.get(self, "software_assurance_status")
|
|
2832
|
+
|
|
2833
|
+
@property
|
|
2834
|
+
@pulumi.getter(name="softwareAssuranceIntent")
|
|
2835
|
+
def software_assurance_intent(self) -> Optional[str]:
|
|
2836
|
+
"""
|
|
2837
|
+
Customer Intent for Software Assurance Benefit.
|
|
2838
|
+
"""
|
|
2839
|
+
return pulumi.get(self, "software_assurance_intent")
|
|
2840
|
+
|
|
2841
|
+
|
|
2842
|
+
@pulumi.output_type
|
|
2843
|
+
class StepResponse(dict):
|
|
2844
|
+
"""
|
|
2845
|
+
Progress representation of the update run steps.
|
|
2846
|
+
"""
|
|
2847
|
+
@staticmethod
|
|
2848
|
+
def __key_warning(key: str):
|
|
2849
|
+
suggest = None
|
|
2850
|
+
if key == "endTimeUtc":
|
|
2851
|
+
suggest = "end_time_utc"
|
|
2852
|
+
elif key == "errorMessage":
|
|
2853
|
+
suggest = "error_message"
|
|
2854
|
+
elif key == "lastUpdatedTimeUtc":
|
|
2855
|
+
suggest = "last_updated_time_utc"
|
|
2856
|
+
elif key == "startTimeUtc":
|
|
2857
|
+
suggest = "start_time_utc"
|
|
2858
|
+
|
|
2859
|
+
if suggest:
|
|
2860
|
+
pulumi.log.warn(f"Key '{key}' not found in StepResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2861
|
+
|
|
2862
|
+
def __getitem__(self, key: str) -> Any:
|
|
2863
|
+
StepResponse.__key_warning(key)
|
|
2864
|
+
return super().__getitem__(key)
|
|
2865
|
+
|
|
2866
|
+
def get(self, key: str, default = None) -> Any:
|
|
2867
|
+
StepResponse.__key_warning(key)
|
|
2868
|
+
return super().get(key, default)
|
|
2869
|
+
|
|
2870
|
+
def __init__(__self__, *,
|
|
2871
|
+
description: Optional[str] = None,
|
|
2872
|
+
end_time_utc: Optional[str] = None,
|
|
2873
|
+
error_message: Optional[str] = None,
|
|
2874
|
+
last_updated_time_utc: Optional[str] = None,
|
|
2875
|
+
name: Optional[str] = None,
|
|
2876
|
+
start_time_utc: Optional[str] = None,
|
|
2877
|
+
status: Optional[str] = None,
|
|
2878
|
+
steps: Optional[Sequence['outputs.StepResponse']] = None):
|
|
2879
|
+
"""
|
|
2880
|
+
Progress representation of the update run steps.
|
|
2881
|
+
:param str description: More detailed description of the step.
|
|
2882
|
+
:param str end_time_utc: When the step reached a terminal state.
|
|
2883
|
+
:param str error_message: Error message, specified if the step is in a failed state.
|
|
2884
|
+
:param str last_updated_time_utc: Completion time of this step or the last completed sub-step.
|
|
2885
|
+
:param str name: Name of the step.
|
|
2886
|
+
:param str start_time_utc: When the step started, or empty if it has not started executing.
|
|
2887
|
+
:param str status: Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
|
|
2888
|
+
:param Sequence['StepResponse'] steps: Recursive model for child steps of this step.
|
|
2889
|
+
"""
|
|
2890
|
+
if description is not None:
|
|
2891
|
+
pulumi.set(__self__, "description", description)
|
|
2892
|
+
if end_time_utc is not None:
|
|
2893
|
+
pulumi.set(__self__, "end_time_utc", end_time_utc)
|
|
2894
|
+
if error_message is not None:
|
|
2895
|
+
pulumi.set(__self__, "error_message", error_message)
|
|
2896
|
+
if last_updated_time_utc is not None:
|
|
2897
|
+
pulumi.set(__self__, "last_updated_time_utc", last_updated_time_utc)
|
|
2898
|
+
if name is not None:
|
|
2899
|
+
pulumi.set(__self__, "name", name)
|
|
2900
|
+
if start_time_utc is not None:
|
|
2901
|
+
pulumi.set(__self__, "start_time_utc", start_time_utc)
|
|
2902
|
+
if status is not None:
|
|
2903
|
+
pulumi.set(__self__, "status", status)
|
|
2904
|
+
if steps is not None:
|
|
2905
|
+
pulumi.set(__self__, "steps", steps)
|
|
2906
|
+
|
|
2907
|
+
@property
|
|
2908
|
+
@pulumi.getter
|
|
2909
|
+
def description(self) -> Optional[str]:
|
|
2910
|
+
"""
|
|
2911
|
+
More detailed description of the step.
|
|
2912
|
+
"""
|
|
2913
|
+
return pulumi.get(self, "description")
|
|
2914
|
+
|
|
2915
|
+
@property
|
|
2916
|
+
@pulumi.getter(name="endTimeUtc")
|
|
2917
|
+
def end_time_utc(self) -> Optional[str]:
|
|
2918
|
+
"""
|
|
2919
|
+
When the step reached a terminal state.
|
|
2920
|
+
"""
|
|
2921
|
+
return pulumi.get(self, "end_time_utc")
|
|
2922
|
+
|
|
2923
|
+
@property
|
|
2924
|
+
@pulumi.getter(name="errorMessage")
|
|
2925
|
+
def error_message(self) -> Optional[str]:
|
|
2926
|
+
"""
|
|
2927
|
+
Error message, specified if the step is in a failed state.
|
|
2928
|
+
"""
|
|
2929
|
+
return pulumi.get(self, "error_message")
|
|
2930
|
+
|
|
2931
|
+
@property
|
|
2932
|
+
@pulumi.getter(name="lastUpdatedTimeUtc")
|
|
2933
|
+
def last_updated_time_utc(self) -> Optional[str]:
|
|
2934
|
+
"""
|
|
2935
|
+
Completion time of this step or the last completed sub-step.
|
|
2936
|
+
"""
|
|
2937
|
+
return pulumi.get(self, "last_updated_time_utc")
|
|
2938
|
+
|
|
2939
|
+
@property
|
|
2940
|
+
@pulumi.getter
|
|
2941
|
+
def name(self) -> Optional[str]:
|
|
2942
|
+
"""
|
|
2943
|
+
Name of the step.
|
|
2944
|
+
"""
|
|
2945
|
+
return pulumi.get(self, "name")
|
|
2946
|
+
|
|
2947
|
+
@property
|
|
2948
|
+
@pulumi.getter(name="startTimeUtc")
|
|
2949
|
+
def start_time_utc(self) -> Optional[str]:
|
|
2950
|
+
"""
|
|
2951
|
+
When the step started, or empty if it has not started executing.
|
|
2952
|
+
"""
|
|
2953
|
+
return pulumi.get(self, "start_time_utc")
|
|
2954
|
+
|
|
2955
|
+
@property
|
|
2956
|
+
@pulumi.getter
|
|
2957
|
+
def status(self) -> Optional[str]:
|
|
2958
|
+
"""
|
|
2959
|
+
Status of the step, bubbled up from the ECE action plan for installation attempts. Values are: 'Success', 'Error', 'InProgress', and 'Unknown status'.
|
|
2960
|
+
"""
|
|
2961
|
+
return pulumi.get(self, "status")
|
|
2962
|
+
|
|
2963
|
+
@property
|
|
2964
|
+
@pulumi.getter
|
|
2965
|
+
def steps(self) -> Optional[Sequence['outputs.StepResponse']]:
|
|
2966
|
+
"""
|
|
2967
|
+
Recursive model for child steps of this step.
|
|
2968
|
+
"""
|
|
2969
|
+
return pulumi.get(self, "steps")
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
@pulumi.output_type
|
|
2973
|
+
class StorageNetworksResponse(dict):
|
|
2974
|
+
"""
|
|
2975
|
+
The StorageNetworks of a cluster.
|
|
2976
|
+
"""
|
|
2977
|
+
@staticmethod
|
|
2978
|
+
def __key_warning(key: str):
|
|
2979
|
+
suggest = None
|
|
2980
|
+
if key == "networkAdapterName":
|
|
2981
|
+
suggest = "network_adapter_name"
|
|
2982
|
+
elif key == "vlanId":
|
|
2983
|
+
suggest = "vlan_id"
|
|
2984
|
+
|
|
2985
|
+
if suggest:
|
|
2986
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageNetworksResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2987
|
+
|
|
2988
|
+
def __getitem__(self, key: str) -> Any:
|
|
2989
|
+
StorageNetworksResponse.__key_warning(key)
|
|
2990
|
+
return super().__getitem__(key)
|
|
2991
|
+
|
|
2992
|
+
def get(self, key: str, default = None) -> Any:
|
|
2993
|
+
StorageNetworksResponse.__key_warning(key)
|
|
2994
|
+
return super().get(key, default)
|
|
2995
|
+
|
|
2996
|
+
def __init__(__self__, *,
|
|
2997
|
+
name: Optional[str] = None,
|
|
2998
|
+
network_adapter_name: Optional[str] = None,
|
|
2999
|
+
vlan_id: Optional[str] = None):
|
|
3000
|
+
"""
|
|
3001
|
+
The StorageNetworks of a cluster.
|
|
3002
|
+
:param str name: Name of the storage network.
|
|
3003
|
+
:param str network_adapter_name: Name of the storage network adapter.
|
|
3004
|
+
:param str vlan_id: ID specified for the VLAN storage network. This setting is applied to the network interfaces that route the storage and VM migration traffic.
|
|
3005
|
+
"""
|
|
3006
|
+
if name is not None:
|
|
3007
|
+
pulumi.set(__self__, "name", name)
|
|
3008
|
+
if network_adapter_name is not None:
|
|
3009
|
+
pulumi.set(__self__, "network_adapter_name", network_adapter_name)
|
|
3010
|
+
if vlan_id is not None:
|
|
3011
|
+
pulumi.set(__self__, "vlan_id", vlan_id)
|
|
3012
|
+
|
|
3013
|
+
@property
|
|
3014
|
+
@pulumi.getter
|
|
3015
|
+
def name(self) -> Optional[str]:
|
|
3016
|
+
"""
|
|
3017
|
+
Name of the storage network.
|
|
3018
|
+
"""
|
|
3019
|
+
return pulumi.get(self, "name")
|
|
3020
|
+
|
|
3021
|
+
@property
|
|
3022
|
+
@pulumi.getter(name="networkAdapterName")
|
|
3023
|
+
def network_adapter_name(self) -> Optional[str]:
|
|
3024
|
+
"""
|
|
3025
|
+
Name of the storage network adapter.
|
|
3026
|
+
"""
|
|
3027
|
+
return pulumi.get(self, "network_adapter_name")
|
|
3028
|
+
|
|
3029
|
+
@property
|
|
3030
|
+
@pulumi.getter(name="vlanId")
|
|
3031
|
+
def vlan_id(self) -> Optional[str]:
|
|
3032
|
+
"""
|
|
3033
|
+
ID specified for the VLAN storage network. This setting is applied to the network interfaces that route the storage and VM migration traffic.
|
|
3034
|
+
"""
|
|
3035
|
+
return pulumi.get(self, "vlan_id")
|
|
3036
|
+
|
|
3037
|
+
|
|
3038
|
+
@pulumi.output_type
|
|
3039
|
+
class StorageResponse(dict):
|
|
3040
|
+
"""
|
|
3041
|
+
The Storage config of AzureStackHCI Cluster.
|
|
3042
|
+
"""
|
|
3043
|
+
@staticmethod
|
|
3044
|
+
def __key_warning(key: str):
|
|
3045
|
+
suggest = None
|
|
3046
|
+
if key == "configurationMode":
|
|
3047
|
+
suggest = "configuration_mode"
|
|
3048
|
+
|
|
3049
|
+
if suggest:
|
|
3050
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3051
|
+
|
|
3052
|
+
def __getitem__(self, key: str) -> Any:
|
|
3053
|
+
StorageResponse.__key_warning(key)
|
|
3054
|
+
return super().__getitem__(key)
|
|
3055
|
+
|
|
3056
|
+
def get(self, key: str, default = None) -> Any:
|
|
3057
|
+
StorageResponse.__key_warning(key)
|
|
3058
|
+
return super().get(key, default)
|
|
3059
|
+
|
|
3060
|
+
def __init__(__self__, *,
|
|
3061
|
+
configuration_mode: Optional[str] = None):
|
|
3062
|
+
"""
|
|
3063
|
+
The Storage config of AzureStackHCI Cluster.
|
|
3064
|
+
:param str configuration_mode: By default, this mode is set to Express and your storage is configured as per best practices based on the number of nodes in the cluster. Allowed values are 'Express','InfraOnly', 'KeepStorage'
|
|
3065
|
+
"""
|
|
3066
|
+
if configuration_mode is None:
|
|
3067
|
+
configuration_mode = 'Express'
|
|
3068
|
+
if configuration_mode is not None:
|
|
3069
|
+
pulumi.set(__self__, "configuration_mode", configuration_mode)
|
|
3070
|
+
|
|
3071
|
+
@property
|
|
3072
|
+
@pulumi.getter(name="configurationMode")
|
|
3073
|
+
def configuration_mode(self) -> Optional[str]:
|
|
3074
|
+
"""
|
|
3075
|
+
By default, this mode is set to Express and your storage is configured as per best practices based on the number of nodes in the cluster. Allowed values are 'Express','InfraOnly', 'KeepStorage'
|
|
3076
|
+
"""
|
|
3077
|
+
return pulumi.get(self, "configuration_mode")
|
|
3078
|
+
|
|
3079
|
+
|
|
3080
|
+
@pulumi.output_type
|
|
3081
|
+
class SystemDataResponse(dict):
|
|
3082
|
+
"""
|
|
3083
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
3084
|
+
"""
|
|
3085
|
+
@staticmethod
|
|
3086
|
+
def __key_warning(key: str):
|
|
3087
|
+
suggest = None
|
|
3088
|
+
if key == "createdAt":
|
|
3089
|
+
suggest = "created_at"
|
|
3090
|
+
elif key == "createdBy":
|
|
3091
|
+
suggest = "created_by"
|
|
3092
|
+
elif key == "createdByType":
|
|
3093
|
+
suggest = "created_by_type"
|
|
3094
|
+
elif key == "lastModifiedAt":
|
|
3095
|
+
suggest = "last_modified_at"
|
|
3096
|
+
elif key == "lastModifiedBy":
|
|
3097
|
+
suggest = "last_modified_by"
|
|
3098
|
+
elif key == "lastModifiedByType":
|
|
3099
|
+
suggest = "last_modified_by_type"
|
|
3100
|
+
|
|
3101
|
+
if suggest:
|
|
3102
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3103
|
+
|
|
3104
|
+
def __getitem__(self, key: str) -> Any:
|
|
3105
|
+
SystemDataResponse.__key_warning(key)
|
|
3106
|
+
return super().__getitem__(key)
|
|
3107
|
+
|
|
3108
|
+
def get(self, key: str, default = None) -> Any:
|
|
3109
|
+
SystemDataResponse.__key_warning(key)
|
|
3110
|
+
return super().get(key, default)
|
|
3111
|
+
|
|
3112
|
+
def __init__(__self__, *,
|
|
3113
|
+
created_at: Optional[str] = None,
|
|
3114
|
+
created_by: Optional[str] = None,
|
|
3115
|
+
created_by_type: Optional[str] = None,
|
|
3116
|
+
last_modified_at: Optional[str] = None,
|
|
3117
|
+
last_modified_by: Optional[str] = None,
|
|
3118
|
+
last_modified_by_type: Optional[str] = None):
|
|
3119
|
+
"""
|
|
3120
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
3121
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
3122
|
+
:param str created_by: The identity that created the resource.
|
|
3123
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
3124
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
3125
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
3126
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
3127
|
+
"""
|
|
3128
|
+
if created_at is not None:
|
|
3129
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
3130
|
+
if created_by is not None:
|
|
3131
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
3132
|
+
if created_by_type is not None:
|
|
3133
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
3134
|
+
if last_modified_at is not None:
|
|
3135
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
3136
|
+
if last_modified_by is not None:
|
|
3137
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
3138
|
+
if last_modified_by_type is not None:
|
|
3139
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
3140
|
+
|
|
3141
|
+
@property
|
|
3142
|
+
@pulumi.getter(name="createdAt")
|
|
3143
|
+
def created_at(self) -> Optional[str]:
|
|
3144
|
+
"""
|
|
3145
|
+
The timestamp of resource creation (UTC).
|
|
3146
|
+
"""
|
|
3147
|
+
return pulumi.get(self, "created_at")
|
|
3148
|
+
|
|
3149
|
+
@property
|
|
3150
|
+
@pulumi.getter(name="createdBy")
|
|
3151
|
+
def created_by(self) -> Optional[str]:
|
|
3152
|
+
"""
|
|
3153
|
+
The identity that created the resource.
|
|
3154
|
+
"""
|
|
3155
|
+
return pulumi.get(self, "created_by")
|
|
3156
|
+
|
|
3157
|
+
@property
|
|
3158
|
+
@pulumi.getter(name="createdByType")
|
|
3159
|
+
def created_by_type(self) -> Optional[str]:
|
|
3160
|
+
"""
|
|
3161
|
+
The type of identity that created the resource.
|
|
3162
|
+
"""
|
|
3163
|
+
return pulumi.get(self, "created_by_type")
|
|
3164
|
+
|
|
3165
|
+
@property
|
|
3166
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
3167
|
+
def last_modified_at(self) -> Optional[str]:
|
|
3168
|
+
"""
|
|
3169
|
+
The timestamp of resource last modification (UTC)
|
|
3170
|
+
"""
|
|
3171
|
+
return pulumi.get(self, "last_modified_at")
|
|
3172
|
+
|
|
3173
|
+
@property
|
|
3174
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
3175
|
+
def last_modified_by(self) -> Optional[str]:
|
|
3176
|
+
"""
|
|
3177
|
+
The identity that last modified the resource.
|
|
3178
|
+
"""
|
|
3179
|
+
return pulumi.get(self, "last_modified_by")
|
|
3180
|
+
|
|
3181
|
+
@property
|
|
3182
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
3183
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
3184
|
+
"""
|
|
3185
|
+
The type of identity that last modified the resource.
|
|
3186
|
+
"""
|
|
3187
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
3188
|
+
|
|
3189
|
+
|
|
3190
|
+
@pulumi.output_type
|
|
3191
|
+
class UpdatePrerequisiteResponse(dict):
|
|
3192
|
+
"""
|
|
3193
|
+
If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
|
|
3194
|
+
"""
|
|
3195
|
+
@staticmethod
|
|
3196
|
+
def __key_warning(key: str):
|
|
3197
|
+
suggest = None
|
|
3198
|
+
if key == "packageName":
|
|
3199
|
+
suggest = "package_name"
|
|
3200
|
+
elif key == "updateType":
|
|
3201
|
+
suggest = "update_type"
|
|
3202
|
+
|
|
3203
|
+
if suggest:
|
|
3204
|
+
pulumi.log.warn(f"Key '{key}' not found in UpdatePrerequisiteResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3205
|
+
|
|
3206
|
+
def __getitem__(self, key: str) -> Any:
|
|
3207
|
+
UpdatePrerequisiteResponse.__key_warning(key)
|
|
3208
|
+
return super().__getitem__(key)
|
|
3209
|
+
|
|
3210
|
+
def get(self, key: str, default = None) -> Any:
|
|
3211
|
+
UpdatePrerequisiteResponse.__key_warning(key)
|
|
3212
|
+
return super().get(key, default)
|
|
3213
|
+
|
|
3214
|
+
def __init__(__self__, *,
|
|
3215
|
+
package_name: Optional[str] = None,
|
|
3216
|
+
update_type: Optional[str] = None,
|
|
3217
|
+
version: Optional[str] = None):
|
|
3218
|
+
"""
|
|
3219
|
+
If update State is HasPrerequisite, this property contains an array of objects describing prerequisite updates before installing this update. Otherwise, it is empty.
|
|
3220
|
+
:param str package_name: Friendly name of the prerequisite.
|
|
3221
|
+
:param str update_type: Updatable component type.
|
|
3222
|
+
:param str version: Version of the prerequisite.
|
|
3223
|
+
"""
|
|
3224
|
+
if package_name is not None:
|
|
3225
|
+
pulumi.set(__self__, "package_name", package_name)
|
|
3226
|
+
if update_type is not None:
|
|
3227
|
+
pulumi.set(__self__, "update_type", update_type)
|
|
3228
|
+
if version is not None:
|
|
3229
|
+
pulumi.set(__self__, "version", version)
|
|
3230
|
+
|
|
3231
|
+
@property
|
|
3232
|
+
@pulumi.getter(name="packageName")
|
|
3233
|
+
def package_name(self) -> Optional[str]:
|
|
3234
|
+
"""
|
|
3235
|
+
Friendly name of the prerequisite.
|
|
3236
|
+
"""
|
|
3237
|
+
return pulumi.get(self, "package_name")
|
|
3238
|
+
|
|
3239
|
+
@property
|
|
3240
|
+
@pulumi.getter(name="updateType")
|
|
3241
|
+
def update_type(self) -> Optional[str]:
|
|
3242
|
+
"""
|
|
3243
|
+
Updatable component type.
|
|
3244
|
+
"""
|
|
3245
|
+
return pulumi.get(self, "update_type")
|
|
3246
|
+
|
|
3247
|
+
@property
|
|
3248
|
+
@pulumi.getter
|
|
3249
|
+
def version(self) -> Optional[str]:
|
|
3250
|
+
"""
|
|
3251
|
+
Version of the prerequisite.
|
|
3252
|
+
"""
|
|
3253
|
+
return pulumi.get(self, "version")
|
|
3254
|
+
|
|
3255
|
+
|
|
3256
|
+
@pulumi.output_type
|
|
3257
|
+
class UserAssignedIdentityResponse(dict):
|
|
3258
|
+
"""
|
|
3259
|
+
User assigned identity properties
|
|
3260
|
+
"""
|
|
3261
|
+
@staticmethod
|
|
3262
|
+
def __key_warning(key: str):
|
|
3263
|
+
suggest = None
|
|
3264
|
+
if key == "clientId":
|
|
3265
|
+
suggest = "client_id"
|
|
3266
|
+
elif key == "principalId":
|
|
3267
|
+
suggest = "principal_id"
|
|
3268
|
+
|
|
3269
|
+
if suggest:
|
|
3270
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3271
|
+
|
|
3272
|
+
def __getitem__(self, key: str) -> Any:
|
|
3273
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
3274
|
+
return super().__getitem__(key)
|
|
3275
|
+
|
|
3276
|
+
def get(self, key: str, default = None) -> Any:
|
|
3277
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
3278
|
+
return super().get(key, default)
|
|
3279
|
+
|
|
3280
|
+
def __init__(__self__, *,
|
|
3281
|
+
client_id: str,
|
|
3282
|
+
principal_id: str):
|
|
3283
|
+
"""
|
|
3284
|
+
User assigned identity properties
|
|
3285
|
+
:param str client_id: The client ID of the assigned identity.
|
|
3286
|
+
:param str principal_id: The principal ID of the assigned identity.
|
|
3287
|
+
"""
|
|
3288
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
3289
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
3290
|
+
|
|
3291
|
+
@property
|
|
3292
|
+
@pulumi.getter(name="clientId")
|
|
3293
|
+
def client_id(self) -> str:
|
|
3294
|
+
"""
|
|
3295
|
+
The client ID of the assigned identity.
|
|
3296
|
+
"""
|
|
3297
|
+
return pulumi.get(self, "client_id")
|
|
3298
|
+
|
|
3299
|
+
@property
|
|
3300
|
+
@pulumi.getter(name="principalId")
|
|
3301
|
+
def principal_id(self) -> str:
|
|
3302
|
+
"""
|
|
3303
|
+
The principal ID of the assigned identity.
|
|
3304
|
+
"""
|
|
3305
|
+
return pulumi.get(self, "principal_id")
|
|
3306
|
+
|
|
3307
|
+
|
|
3308
|
+
@pulumi.output_type
|
|
3309
|
+
class ValidationStatusResponse(dict):
|
|
3310
|
+
"""
|
|
3311
|
+
The ValidationStatus of AzureStackHCI Cluster.
|
|
3312
|
+
"""
|
|
3313
|
+
def __init__(__self__, *,
|
|
3314
|
+
status: str,
|
|
3315
|
+
steps: Sequence['outputs.DeploymentStepResponse']):
|
|
3316
|
+
"""
|
|
3317
|
+
The ValidationStatus of AzureStackHCI Cluster.
|
|
3318
|
+
:param str status: Status of AzureStackHCI Cluster Deployment.
|
|
3319
|
+
:param Sequence['DeploymentStepResponse'] steps: List of steps of AzureStackHCI Cluster Deployment.
|
|
3320
|
+
"""
|
|
3321
|
+
pulumi.set(__self__, "status", status)
|
|
3322
|
+
pulumi.set(__self__, "steps", steps)
|
|
3323
|
+
|
|
3324
|
+
@property
|
|
3325
|
+
@pulumi.getter
|
|
3326
|
+
def status(self) -> str:
|
|
3327
|
+
"""
|
|
3328
|
+
Status of AzureStackHCI Cluster Deployment.
|
|
3329
|
+
"""
|
|
3330
|
+
return pulumi.get(self, "status")
|
|
3331
|
+
|
|
3332
|
+
@property
|
|
3333
|
+
@pulumi.getter
|
|
3334
|
+
def steps(self) -> Sequence['outputs.DeploymentStepResponse']:
|
|
3335
|
+
"""
|
|
3336
|
+
List of steps of AzureStackHCI Cluster Deployment.
|
|
3337
|
+
"""
|
|
3338
|
+
return pulumi.get(self, "steps")
|
|
3339
|
+
|
|
3340
|
+
|
|
3341
|
+
@pulumi.output_type
|
|
3342
|
+
class VirtualSwitchConfigurationOverridesResponse(dict):
|
|
3343
|
+
"""
|
|
3344
|
+
The VirtualSwitchConfigurationOverrides of a cluster.
|
|
3345
|
+
"""
|
|
3346
|
+
@staticmethod
|
|
3347
|
+
def __key_warning(key: str):
|
|
3348
|
+
suggest = None
|
|
3349
|
+
if key == "enableIov":
|
|
3350
|
+
suggest = "enable_iov"
|
|
3351
|
+
elif key == "loadBalancingAlgorithm":
|
|
3352
|
+
suggest = "load_balancing_algorithm"
|
|
3353
|
+
|
|
3354
|
+
if suggest:
|
|
3355
|
+
pulumi.log.warn(f"Key '{key}' not found in VirtualSwitchConfigurationOverridesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3356
|
+
|
|
3357
|
+
def __getitem__(self, key: str) -> Any:
|
|
3358
|
+
VirtualSwitchConfigurationOverridesResponse.__key_warning(key)
|
|
3359
|
+
return super().__getitem__(key)
|
|
3360
|
+
|
|
3361
|
+
def get(self, key: str, default = None) -> Any:
|
|
3362
|
+
VirtualSwitchConfigurationOverridesResponse.__key_warning(key)
|
|
3363
|
+
return super().get(key, default)
|
|
3364
|
+
|
|
3365
|
+
def __init__(__self__, *,
|
|
3366
|
+
enable_iov: Optional[str] = None,
|
|
3367
|
+
load_balancing_algorithm: Optional[str] = None):
|
|
3368
|
+
"""
|
|
3369
|
+
The VirtualSwitchConfigurationOverrides of a cluster.
|
|
3370
|
+
:param str enable_iov: Enable IoV for Virtual Switch
|
|
3371
|
+
:param str load_balancing_algorithm: Load Balancing Algorithm for Virtual Switch
|
|
3372
|
+
"""
|
|
3373
|
+
if enable_iov is not None:
|
|
3374
|
+
pulumi.set(__self__, "enable_iov", enable_iov)
|
|
3375
|
+
if load_balancing_algorithm is not None:
|
|
3376
|
+
pulumi.set(__self__, "load_balancing_algorithm", load_balancing_algorithm)
|
|
3377
|
+
|
|
3378
|
+
@property
|
|
3379
|
+
@pulumi.getter(name="enableIov")
|
|
3380
|
+
def enable_iov(self) -> Optional[str]:
|
|
3381
|
+
"""
|
|
3382
|
+
Enable IoV for Virtual Switch
|
|
3383
|
+
"""
|
|
3384
|
+
return pulumi.get(self, "enable_iov")
|
|
3385
|
+
|
|
3386
|
+
@property
|
|
3387
|
+
@pulumi.getter(name="loadBalancingAlgorithm")
|
|
3388
|
+
def load_balancing_algorithm(self) -> Optional[str]:
|
|
3389
|
+
"""
|
|
3390
|
+
Load Balancing Algorithm for Virtual Switch
|
|
3391
|
+
"""
|
|
3392
|
+
return pulumi.get(self, "load_balancing_algorithm")
|
|
3393
|
+
|
|
3394
|
+
|