pulumi-azure-native 2.68.0a1729615467__py3-none-any.whl → 2.69.0__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 +121 -0
- pulumi_azure_native/app/get_managed_environment.py +1 -3
- pulumi_azure_native/app/managed_environment.py +4 -12
- pulumi_azure_native/app/v20220101preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20220101preview/managed_environment.py +4 -12
- pulumi_azure_native/app/v20221001/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20221001/managed_environment.py +4 -12
- pulumi_azure_native/app/v20230401preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20230401preview/managed_environment.py +4 -12
- pulumi_azure_native/app/v20230501/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20230501/managed_environment.py +4 -12
- pulumi_azure_native/app/v20230502preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20230502preview/managed_environment.py +4 -12
- pulumi_azure_native/app/v20230801preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20230801preview/managed_environment.py +4 -12
- pulumi_azure_native/app/v20231102preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20231102preview/managed_environment.py +4 -12
- pulumi_azure_native/app/v20240202preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20240202preview/managed_environment.py +4 -12
- pulumi_azure_native/app/v20240301/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20240301/managed_environment.py +4 -12
- pulumi_azure_native/app/v20240802preview/get_managed_environment.py +1 -3
- pulumi_azure_native/app/v20240802preview/managed_environment.py +4 -12
- pulumi_azure_native/azurefleet/v20241101/_inputs.py +3 -0
- pulumi_azure_native/azurefleet/v20241101/outputs.py +2 -0
- pulumi_azure_native/cache/__init__.py +3 -0
- pulumi_azure_native/cache/database.py +3 -3
- pulumi_azure_native/cache/enterprise_private_endpoint_connection.py +3 -3
- pulumi_azure_native/cache/get_database.py +2 -2
- pulumi_azure_native/cache/get_enterprise_private_endpoint_connection.py +2 -2
- pulumi_azure_native/cache/get_redis_enterprise.py +2 -2
- pulumi_azure_native/cache/list_database_keys.py +2 -2
- pulumi_azure_native/cache/redis_enterprise.py +3 -3
- pulumi_azure_native/cache/v20201001preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20230301preview/database.py +1 -1
- pulumi_azure_native/cache/v20230301preview/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20230301preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20230701/database.py +1 -1
- pulumi_azure_native/cache/v20230701/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20230701/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20230801preview/database.py +1 -1
- pulumi_azure_native/cache/v20230801preview/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20230801preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20231001preview/database.py +1 -1
- pulumi_azure_native/cache/v20231001preview/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20231001preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20231101/database.py +1 -1
- pulumi_azure_native/cache/v20231101/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20231101/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20240201/database.py +1 -1
- pulumi_azure_native/cache/v20240201/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20240201/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20240301preview/database.py +1 -1
- pulumi_azure_native/cache/v20240301preview/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20240301preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20240601preview/database.py +1 -1
- pulumi_azure_native/cache/v20240601preview/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20240601preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20240901preview/database.py +1 -1
- pulumi_azure_native/cache/v20240901preview/enterprise_private_endpoint_connection.py +1 -1
- pulumi_azure_native/cache/v20240901preview/redis_enterprise.py +1 -1
- pulumi_azure_native/cache/v20241001/__init__.py +17 -0
- pulumi_azure_native/cache/v20241001/_enums.py +118 -0
- pulumi_azure_native/cache/v20241001/_inputs.py +619 -0
- pulumi_azure_native/cache/v20241001/database.py +405 -0
- pulumi_azure_native/cache/v20241001/enterprise_private_endpoint_connection.py +232 -0
- pulumi_azure_native/cache/v20241001/get_database.py +247 -0
- pulumi_azure_native/cache/v20241001/get_enterprise_private_endpoint_connection.py +163 -0
- pulumi_azure_native/cache/v20241001/get_redis_enterprise.py +283 -0
- pulumi_azure_native/cache/v20241001/list_database_keys.py +106 -0
- pulumi_azure_native/cache/v20241001/outputs.py +745 -0
- pulumi_azure_native/cache/v20241001/redis_enterprise.py +415 -0
- pulumi_azure_native/desktopvirtualization/__init__.py +3 -0
- pulumi_azure_native/desktopvirtualization/app_attach_package.py +3 -3
- pulumi_azure_native/desktopvirtualization/application.py +3 -3
- pulumi_azure_native/desktopvirtualization/application_group.py +3 -3
- pulumi_azure_native/desktopvirtualization/get_app_attach_package.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_application.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_application_group.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_host_pool.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_host_pool_registration_token.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_msix_package.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_private_endpoint_connection_by_host_pool.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_private_endpoint_connection_by_workspace.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_scaling_plan.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_scaling_plan_personal_schedule.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_scaling_plan_pooled_schedule.py +2 -2
- pulumi_azure_native/desktopvirtualization/get_workspace.py +2 -2
- pulumi_azure_native/desktopvirtualization/host_pool.py +3 -3
- pulumi_azure_native/desktopvirtualization/list_host_pool_registration_tokens.py +2 -2
- pulumi_azure_native/desktopvirtualization/msix_package.py +3 -3
- pulumi_azure_native/desktopvirtualization/private_endpoint_connection_by_host_pool.py +3 -3
- pulumi_azure_native/desktopvirtualization/private_endpoint_connection_by_workspace.py +3 -3
- pulumi_azure_native/desktopvirtualization/scaling_plan.py +3 -3
- pulumi_azure_native/desktopvirtualization/scaling_plan_personal_schedule.py +3 -3
- pulumi_azure_native/desktopvirtualization/scaling_plan_pooled_schedule.py +3 -3
- pulumi_azure_native/desktopvirtualization/v20210201preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220210preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220401preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220401preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20220909/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20221014preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230707preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20230905/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/app_attach_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231004preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/app_attach_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20231101preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/app_attach_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240116preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/app_attach_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240306preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/app_attach_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240403/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/app_attach_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/application.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/application_group.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/msix_package.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/private_endpoint_connection_by_host_pool.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/private_endpoint_connection_by_workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/scaling_plan.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/scaling_plan_personal_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/scaling_plan_pooled_schedule.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240408preview/workspace.py +1 -1
- pulumi_azure_native/desktopvirtualization/v20240808preview/__init__.py +34 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/_enums.py +335 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/_inputs.py +1847 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/app_attach_package.py +259 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/application.py +541 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/application_group.py +561 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_app_attach_package.py +171 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_application.py +331 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_application_group.py +353 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_host_pool.py +647 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_host_pool_registration_token.py +114 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_msix_package.py +289 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_private_endpoint_connection_by_host_pool.py +191 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_private_endpoint_connection_by_workspace.py +191 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_scaling_plan.py +353 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_scaling_plan_personal_schedule.py +499 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_scaling_plan_pooled_schedule.py +373 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/get_workspace.py +339 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/host_pool.py +1133 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/list_host_pool_registration_tokens.py +101 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/msix_package.py +510 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/outputs.py +1812 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/private_endpoint_connection_by_host_pool.py +252 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/private_endpoint_connection_by_workspace.py +252 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/scaling_plan.py +602 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/scaling_plan_personal_schedule.py +967 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/scaling_plan_pooled_schedule.py +692 -0
- pulumi_azure_native/desktopvirtualization/v20240808preview/workspace.py +530 -0
- pulumi_azure_native/desktopvirtualization/workspace.py +3 -3
- pulumi_azure_native/edge/__init__.py +21 -0
- pulumi_azure_native/edge/_inputs.py +99 -0
- pulumi_azure_native/edge/get_site.py +145 -0
- pulumi_azure_native/edge/get_sites_by_subscription.py +139 -0
- pulumi_azure_native/edge/outputs.py +210 -0
- pulumi_azure_native/edge/site.py +201 -0
- pulumi_azure_native/edge/sites_by_subscription.py +180 -0
- pulumi_azure_native/edge/v20240201preview/__init__.py +13 -0
- pulumi_azure_native/edge/v20240201preview/_inputs.py +99 -0
- pulumi_azure_native/edge/v20240201preview/get_site.py +143 -0
- pulumi_azure_native/edge/v20240201preview/get_sites_by_subscription.py +137 -0
- pulumi_azure_native/edge/v20240201preview/outputs.py +210 -0
- pulumi_azure_native/edge/v20240201preview/site.py +199 -0
- pulumi_azure_native/edge/v20240201preview/sites_by_subscription.py +178 -0
- pulumi_azure_native/hardwaresecuritymodules/v20240630preview/cloud_hsm_cluster.py +0 -33
- pulumi_azure_native/hardwaresecuritymodules/v20240630preview/get_cloud_hsm_cluster.py +1 -15
- pulumi_azure_native/iotoperations/__init__.py +3 -0
- pulumi_azure_native/iotoperations/broker.py +3 -3
- pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
- pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
- pulumi_azure_native/iotoperations/broker_listener.py +3 -3
- pulumi_azure_native/iotoperations/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/get_broker.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
- pulumi_azure_native/iotoperations/get_instance.py +2 -2
- pulumi_azure_native/iotoperations/instance.py +3 -3
- pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20241101/__init__.py +26 -0
- pulumi_azure_native/iotoperations/v20241101/_enums.py +616 -0
- pulumi_azure_native/iotoperations/v20241101/_inputs.py +6402 -0
- pulumi_azure_native/iotoperations/v20241101/broker.py +251 -0
- pulumi_azure_native/iotoperations/v20241101/broker_authentication.py +272 -0
- pulumi_azure_native/iotoperations/v20241101/broker_authorization.py +272 -0
- pulumi_azure_native/iotoperations/v20241101/broker_listener.py +272 -0
- pulumi_azure_native/iotoperations/v20241101/dataflow.py +272 -0
- pulumi_azure_native/iotoperations/v20241101/dataflow_endpoint.py +251 -0
- pulumi_azure_native/iotoperations/v20241101/dataflow_profile.py +251 -0
- pulumi_azure_native/iotoperations/v20241101/get_broker.py +163 -0
- pulumi_azure_native/iotoperations/v20241101/get_broker_authentication.py +169 -0
- pulumi_azure_native/iotoperations/v20241101/get_broker_authorization.py +169 -0
- pulumi_azure_native/iotoperations/v20241101/get_broker_listener.py +169 -0
- pulumi_azure_native/iotoperations/v20241101/get_dataflow.py +169 -0
- pulumi_azure_native/iotoperations/v20241101/get_dataflow_endpoint.py +163 -0
- pulumi_azure_native/iotoperations/v20241101/get_dataflow_profile.py +163 -0
- pulumi_azure_native/iotoperations/v20241101/get_instance.py +199 -0
- pulumi_azure_native/iotoperations/v20241101/instance.py +317 -0
- pulumi_azure_native/iotoperations/v20241101/outputs.py +5387 -0
- pulumi_azure_native/migrate/__init__.py +3 -0
- pulumi_azure_native/migrate/aks_assessment_operation.py +3 -3
- pulumi_azure_native/migrate/assessment.py +1 -1
- pulumi_azure_native/migrate/assessment_projects_operation.py +3 -3
- pulumi_azure_native/migrate/assessments_operation.py +3 -3
- pulumi_azure_native/migrate/avs_assessments_operation.py +3 -3
- pulumi_azure_native/migrate/business_case_operation.py +3 -3
- pulumi_azure_native/migrate/get_aks_assessment_operation.py +2 -2
- pulumi_azure_native/migrate/get_assessment_projects_operation.py +2 -2
- pulumi_azure_native/migrate/get_assessments_operation.py +2 -2
- pulumi_azure_native/migrate/get_avs_assessments_operation.py +2 -2
- pulumi_azure_native/migrate/get_business_case_operation.py +2 -2
- pulumi_azure_native/migrate/get_business_case_operation_report_download_url.py +2 -2
- pulumi_azure_native/migrate/get_groups_operation.py +2 -2
- pulumi_azure_native/migrate/get_hyperv_collectors_operation.py +2 -2
- pulumi_azure_native/migrate/get_import_collectors_operation.py +2 -2
- pulumi_azure_native/migrate/get_private_endpoint_connection_operation.py +2 -2
- pulumi_azure_native/migrate/get_server_collectors_operation.py +2 -2
- pulumi_azure_native/migrate/get_sql_assessment_v2_operation.py +2 -2
- pulumi_azure_native/migrate/get_sql_collector_operation.py +2 -2
- pulumi_azure_native/migrate/get_vmware_collectors_operation.py +2 -2
- pulumi_azure_native/migrate/get_web_app_assessment_v2_operation.py +2 -2
- pulumi_azure_native/migrate/get_web_app_collector_operation.py +2 -2
- pulumi_azure_native/migrate/group.py +1 -1
- pulumi_azure_native/migrate/groups_operation.py +3 -3
- pulumi_azure_native/migrate/hyper_v_collector.py +1 -1
- pulumi_azure_native/migrate/hyperv_collectors_operation.py +3 -3
- pulumi_azure_native/migrate/import_collector.py +1 -1
- pulumi_azure_native/migrate/import_collectors_operation.py +3 -3
- pulumi_azure_native/migrate/private_endpoint_connection.py +1 -1
- pulumi_azure_native/migrate/private_endpoint_connection_operation.py +3 -3
- pulumi_azure_native/migrate/project.py +1 -1
- pulumi_azure_native/migrate/server_collector.py +1 -1
- pulumi_azure_native/migrate/server_collectors_operation.py +3 -3
- pulumi_azure_native/migrate/sql_assessment_v2_operation.py +3 -3
- pulumi_azure_native/migrate/sql_collector_operation.py +3 -3
- pulumi_azure_native/migrate/v20191001/assessment.py +1 -1
- pulumi_azure_native/migrate/v20191001/group.py +1 -1
- pulumi_azure_native/migrate/v20191001/hyper_v_collector.py +1 -1
- pulumi_azure_native/migrate/v20191001/import_collector.py +1 -1
- pulumi_azure_native/migrate/v20191001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/migrate/v20191001/project.py +1 -1
- pulumi_azure_native/migrate/v20191001/server_collector.py +1 -1
- pulumi_azure_native/migrate/v20191001/v_mware_collector.py +1 -1
- pulumi_azure_native/migrate/v20230315/assessment_projects_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/assessments_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/avs_assessments_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/groups_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/hyperv_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/import_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/private_endpoint_connection_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/server_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/sql_assessment_v2_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/sql_collector_operation.py +1 -1
- pulumi_azure_native/migrate/v20230315/vmware_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/aks_assessment_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/assessment_projects_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/assessments_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/avs_assessments_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/business_case_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/groups_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/hyperv_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/import_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/private_endpoint_connection_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/server_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/sql_assessment_v2_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/sql_collector_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/vmware_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/web_app_assessment_v2_operation.py +1 -1
- pulumi_azure_native/migrate/v20230401preview/web_app_collector_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/aks_assessment_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/assessment_projects_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/assessments_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/avs_assessments_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/business_case_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/groups_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/hyperv_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/import_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/private_endpoint_connection_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/server_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/sql_assessment_v2_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/sql_collector_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/vmware_collectors_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/web_app_assessment_v2_operation.py +1 -1
- pulumi_azure_native/migrate/v20230501preview/web_app_collector_operation.py +1 -1
- pulumi_azure_native/migrate/v20230909preview/__init__.py +41 -0
- pulumi_azure_native/migrate/v20230909preview/_enums.py +985 -0
- pulumi_azure_native/migrate/v20230909preview/_inputs.py +2931 -0
- pulumi_azure_native/migrate/v20230909preview/aks_assessment_operation.py +281 -0
- pulumi_azure_native/migrate/v20230909preview/assessment_projects_operation.py +488 -0
- pulumi_azure_native/migrate/v20230909preview/assessments_operation.py +1043 -0
- pulumi_azure_native/migrate/v20230909preview/avs_assessments_operation.py +1193 -0
- pulumi_azure_native/migrate/v20230909preview/business_case_operation.py +251 -0
- pulumi_azure_native/migrate/v20230909preview/get_aks_assessment_operation.py +205 -0
- pulumi_azure_native/migrate/v20230909preview/get_assessment_projects_operation.py +316 -0
- pulumi_azure_native/migrate/v20230909preview/get_assessments_operation.py +741 -0
- pulumi_azure_native/migrate/v20230909preview/get_avs_assessments_operation.py +861 -0
- pulumi_azure_native/migrate/v20230909preview/get_business_case_operation.py +191 -0
- pulumi_azure_native/migrate/v20230909preview/get_business_case_operation_report_download_url.py +106 -0
- pulumi_azure_native/migrate/v20230909preview/get_groups_operation.py +261 -0
- pulumi_azure_native/migrate/v20230909preview/get_hyperv_collectors_operation.py +205 -0
- pulumi_azure_native/migrate/v20230909preview/get_import_collectors_operation.py +191 -0
- pulumi_azure_native/migrate/v20230909preview/get_private_endpoint_connection_operation.py +191 -0
- pulumi_azure_native/migrate/v20230909preview/get_server_collectors_operation.py +205 -0
- pulumi_azure_native/migrate/v20230909preview/get_sql_assessment_v2_operation.py +678 -0
- pulumi_azure_native/migrate/v20230909preview/get_sql_collector_operation.py +205 -0
- pulumi_azure_native/migrate/v20230909preview/get_vmware_collectors_operation.py +205 -0
- pulumi_azure_native/migrate/v20230909preview/get_web_app_assessment_v2_operation.py +537 -0
- pulumi_azure_native/migrate/v20230909preview/get_web_app_collector_operation.py +205 -0
- pulumi_azure_native/migrate/v20230909preview/groups_operation.py +338 -0
- pulumi_azure_native/migrate/v20230909preview/hyperv_collectors_operation.py +299 -0
- pulumi_azure_native/migrate/v20230909preview/import_collectors_operation.py +269 -0
- pulumi_azure_native/migrate/v20230909preview/outputs.py +3341 -0
- pulumi_azure_native/migrate/v20230909preview/private_endpoint_connection_operation.py +252 -0
- pulumi_azure_native/migrate/v20230909preview/server_collectors_operation.py +299 -0
- pulumi_azure_native/migrate/v20230909preview/sql_assessment_v2_operation.py +1221 -0
- pulumi_azure_native/migrate/v20230909preview/sql_collector_operation.py +299 -0
- pulumi_azure_native/migrate/v20230909preview/vmware_collectors_operation.py +299 -0
- pulumi_azure_native/migrate/v20230909preview/web_app_assessment_v2_operation.py +908 -0
- pulumi_azure_native/migrate/v20230909preview/web_app_collector_operation.py +279 -0
- pulumi_azure_native/migrate/v_mware_collector.py +1 -1
- pulumi_azure_native/migrate/vmware_collectors_operation.py +3 -3
- pulumi_azure_native/migrate/web_app_assessment_v2_operation.py +3 -3
- pulumi_azure_native/migrate/web_app_collector_operation.py +3 -3
- pulumi_azure_native/netapp/__init__.py +3 -0
- pulumi_azure_native/netapp/account.py +3 -3
- pulumi_azure_native/netapp/backup.py +2 -2
- pulumi_azure_native/netapp/backup_policy.py +3 -3
- pulumi_azure_native/netapp/backup_vault.py +3 -3
- pulumi_azure_native/netapp/get_account.py +2 -2
- pulumi_azure_native/netapp/get_backup.py +2 -2
- pulumi_azure_native/netapp/get_backup_policy.py +2 -2
- pulumi_azure_native/netapp/get_backup_vault.py +2 -2
- pulumi_azure_native/netapp/get_pool.py +2 -2
- pulumi_azure_native/netapp/get_snapshot.py +2 -2
- pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure_native/netapp/get_subvolume.py +2 -2
- pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
- pulumi_azure_native/netapp/get_volume.py +2 -2
- pulumi_azure_native/netapp/get_volume_group.py +2 -2
- pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
- pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure_native/netapp/list_volume_quota_report.py +2 -2
- pulumi_azure_native/netapp/list_volume_replications.py +2 -2
- pulumi_azure_native/netapp/pool.py +3 -3
- pulumi_azure_native/netapp/snapshot.py +3 -3
- pulumi_azure_native/netapp/snapshot_policy.py +3 -3
- pulumi_azure_native/netapp/subvolume.py +3 -3
- pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20211001/volume.py +1 -1
- pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20220501/account.py +1 -1
- pulumi_azure_native/netapp/v20221101/account.py +1 -1
- pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101/pool.py +1 -1
- pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230501/account.py +1 -1
- pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501/pool.py +1 -1
- pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230701/account.py +1 -1
- pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701/pool.py +1 -1
- pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/account.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20231101/account.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20231101/pool.py +1 -1
- pulumi_azure_native/netapp/v20231101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20231101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/account.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240101/account.py +1 -1
- pulumi_azure_native/netapp/v20240101/backup.py +1 -1
- pulumi_azure_native/netapp/v20240101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240101/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240101/pool.py +1 -1
- pulumi_azure_native/netapp/v20240101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240101/volume.py +1 -1
- pulumi_azure_native/netapp/v20240101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240301/account.py +1 -1
- pulumi_azure_native/netapp/v20240301/backup.py +1 -1
- pulumi_azure_native/netapp/v20240301/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240301/pool.py +1 -1
- pulumi_azure_native/netapp/v20240301/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240301/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240301/volume.py +1 -1
- pulumi_azure_native/netapp/v20240301/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240301/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/account.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240501/account.py +1 -1
- pulumi_azure_native/netapp/v20240501/backup.py +1 -1
- pulumi_azure_native/netapp/v20240501/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240501/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240501/pool.py +1 -1
- pulumi_azure_native/netapp/v20240501/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240501/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240501/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240501/volume.py +1 -1
- pulumi_azure_native/netapp/v20240501/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240501/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/account.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240501preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240701/_inputs.py +20 -19
- pulumi_azure_native/netapp/v20240701/account.py +1 -1
- pulumi_azure_native/netapp/v20240701/backup.py +1 -1
- pulumi_azure_native/netapp/v20240701/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240701/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240701/outputs.py +15 -14
- pulumi_azure_native/netapp/v20240701/pool.py +1 -1
- pulumi_azure_native/netapp/v20240701/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240701/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240701/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240701/volume.py +1 -1
- pulumi_azure_native/netapp/v20240701/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240701/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240701preview/__init__.py +36 -0
- pulumi_azure_native/netapp/v20240701preview/_enums.py +569 -0
- pulumi_azure_native/netapp/v20240701preview/_inputs.py +3101 -0
- pulumi_azure_native/netapp/v20240701preview/account.py +385 -0
- pulumi_azure_native/netapp/v20240701preview/backup.py +412 -0
- pulumi_azure_native/netapp/v20240701preview/backup_policy.py +414 -0
- pulumi_azure_native/netapp/v20240701preview/backup_vault.py +258 -0
- pulumi_azure_native/netapp/v20240701preview/get_account.py +269 -0
- pulumi_azure_native/netapp/v20240701preview/get_backup.py +309 -0
- pulumi_azure_native/netapp/v20240701preview/get_backup_policy.py +289 -0
- pulumi_azure_native/netapp/v20240701preview/get_backup_vault.py +177 -0
- pulumi_azure_native/netapp/v20240701preview/get_pool.py +314 -0
- pulumi_azure_native/netapp/v20240701preview/get_snapshot.py +203 -0
- pulumi_azure_native/netapp/v20240701preview/get_snapshot_policy.py +261 -0
- pulumi_azure_native/netapp/v20240701preview/get_subvolume.py +203 -0
- pulumi_azure_native/netapp/v20240701preview/get_subvolume_metadata.py +272 -0
- pulumi_azure_native/netapp/v20240701preview/get_volume.py +1009 -0
- pulumi_azure_native/netapp/v20240701preview/get_volume_group.py +177 -0
- pulumi_azure_native/netapp/v20240701preview/get_volume_group_id_for_ldap_user.py +104 -0
- pulumi_azure_native/netapp/v20240701preview/get_volume_quota_rule.py +231 -0
- pulumi_azure_native/netapp/v20240701preview/list_volume_quota_report.py +113 -0
- pulumi_azure_native/netapp/v20240701preview/list_volume_replications.py +99 -0
- pulumi_azure_native/netapp/v20240701preview/outputs.py +3358 -0
- pulumi_azure_native/netapp/v20240701preview/pool.py +483 -0
- pulumi_azure_native/netapp/v20240701preview/snapshot.py +291 -0
- pulumi_azure_native/netapp/v20240701preview/snapshot_policy.py +414 -0
- pulumi_azure_native/netapp/v20240701preview/subvolume.py +329 -0
- pulumi_azure_native/netapp/v20240701preview/volume.py +1717 -0
- pulumi_azure_native/netapp/v20240701preview/volume_group.py +279 -0
- pulumi_azure_native/netapp/v20240701preview/volume_quota_rule.py +388 -0
- pulumi_azure_native/netapp/volume.py +3 -3
- pulumi_azure_native/netapp/volume_group.py +3 -3
- pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/quota/__init__.py +3 -0
- pulumi_azure_native/quota/get_group_quota.py +4 -0
- pulumi_azure_native/quota/get_group_quota_subscription.py +4 -0
- pulumi_azure_native/quota/group_quota.py +5 -1
- pulumi_azure_native/quota/group_quota_subscription.py +5 -1
- pulumi_azure_native/quota/v20230601preview/group_quota.py +1 -1
- pulumi_azure_native/quota/v20230601preview/group_quota_subscription.py +1 -1
- pulumi_azure_native/quota/v20241015preview/__init__.py +14 -0
- pulumi_azure_native/quota/v20241015preview/_enums.py +17 -0
- pulumi_azure_native/quota/v20241015preview/_inputs.py +188 -0
- pulumi_azure_native/quota/v20241015preview/get_group_quota.py +143 -0
- pulumi_azure_native/quota/v20241015preview/get_group_quota_subscription.py +140 -0
- pulumi_azure_native/quota/v20241015preview/group_quota.py +200 -0
- pulumi_azure_native/quota/v20241015preview/group_quota_subscription.py +177 -0
- pulumi_azure_native/quota/v20241015preview/outputs.py +350 -0
- pulumi_azure_native/security/__init__.py +3 -0
- pulumi_azure_native/security/defender_for_storage.py +5 -1
- pulumi_azure_native/security/get_defender_for_storage.py +4 -0
- pulumi_azure_native/security/v20221201preview/defender_for_storage.py +1 -1
- pulumi_azure_native/security/v20241001preview/__init__.py +11 -0
- pulumi_azure_native/security/v20241001preview/_inputs.py +273 -0
- pulumi_azure_native/security/v20241001preview/defender_for_storage.py +189 -0
- pulumi_azure_native/security/v20241001preview/get_defender_for_storage.py +129 -0
- pulumi_azure_native/security/v20241001preview/outputs.py +316 -0
- {pulumi_azure_native-2.68.0a1729615467.dist-info → pulumi_azure_native-2.69.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.68.0a1729615467.dist-info → pulumi_azure_native-2.69.0.dist-info}/RECORD +670 -519
- {pulumi_azure_native-2.68.0a1729615467.dist-info → pulumi_azure_native-2.69.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.68.0a1729615467.dist-info → pulumi_azure_native-2.69.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,741 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetAssessmentsOperationResult',
|
|
20
|
+
'AwaitableGetAssessmentsOperationResult',
|
|
21
|
+
'get_assessments_operation',
|
|
22
|
+
'get_assessments_operation_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetAssessmentsOperationResult:
|
|
27
|
+
"""
|
|
28
|
+
Machine assessment resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, assessment_error_summary=None, assessment_type=None, azure_disk_types=None, azure_hybrid_use_benefit=None, azure_location=None, azure_offer_code=None, azure_pricing_tier=None, azure_storage_redundancy=None, azure_vm_families=None, confidence_rating_in_percentage=None, cost_components=None, created_timestamp=None, currency=None, discount_percentage=None, distribution_by_os_name=None, distribution_by_service_pack_insight=None, distribution_by_support_status=None, ea_subscription_id=None, group_type=None, id=None, linux_azure_hybrid_use_benefit=None, monthly_bandwidth_cost=None, monthly_compute_cost=None, monthly_premium_storage_cost=None, monthly_standard_ssd_storage_cost=None, monthly_storage_cost=None, monthly_ultra_storage_cost=None, name=None, number_of_machines=None, percentile=None, perf_data_end_time=None, perf_data_start_time=None, prices_timestamp=None, provisioning_state=None, reserved_instance=None, scaling_factor=None, schema_version=None, sizing_criterion=None, stage=None, status=None, suitability_summary=None, system_data=None, time_range=None, type=None, updated_timestamp=None, vm_uptime=None):
|
|
31
|
+
if assessment_error_summary and not isinstance(assessment_error_summary, dict):
|
|
32
|
+
raise TypeError("Expected argument 'assessment_error_summary' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "assessment_error_summary", assessment_error_summary)
|
|
34
|
+
if assessment_type and not isinstance(assessment_type, str):
|
|
35
|
+
raise TypeError("Expected argument 'assessment_type' to be a str")
|
|
36
|
+
pulumi.set(__self__, "assessment_type", assessment_type)
|
|
37
|
+
if azure_disk_types and not isinstance(azure_disk_types, list):
|
|
38
|
+
raise TypeError("Expected argument 'azure_disk_types' to be a list")
|
|
39
|
+
pulumi.set(__self__, "azure_disk_types", azure_disk_types)
|
|
40
|
+
if azure_hybrid_use_benefit and not isinstance(azure_hybrid_use_benefit, str):
|
|
41
|
+
raise TypeError("Expected argument 'azure_hybrid_use_benefit' to be a str")
|
|
42
|
+
pulumi.set(__self__, "azure_hybrid_use_benefit", azure_hybrid_use_benefit)
|
|
43
|
+
if azure_location and not isinstance(azure_location, str):
|
|
44
|
+
raise TypeError("Expected argument 'azure_location' to be a str")
|
|
45
|
+
pulumi.set(__self__, "azure_location", azure_location)
|
|
46
|
+
if azure_offer_code and not isinstance(azure_offer_code, str):
|
|
47
|
+
raise TypeError("Expected argument 'azure_offer_code' to be a str")
|
|
48
|
+
pulumi.set(__self__, "azure_offer_code", azure_offer_code)
|
|
49
|
+
if azure_pricing_tier and not isinstance(azure_pricing_tier, str):
|
|
50
|
+
raise TypeError("Expected argument 'azure_pricing_tier' to be a str")
|
|
51
|
+
pulumi.set(__self__, "azure_pricing_tier", azure_pricing_tier)
|
|
52
|
+
if azure_storage_redundancy and not isinstance(azure_storage_redundancy, str):
|
|
53
|
+
raise TypeError("Expected argument 'azure_storage_redundancy' to be a str")
|
|
54
|
+
pulumi.set(__self__, "azure_storage_redundancy", azure_storage_redundancy)
|
|
55
|
+
if azure_vm_families and not isinstance(azure_vm_families, list):
|
|
56
|
+
raise TypeError("Expected argument 'azure_vm_families' to be a list")
|
|
57
|
+
pulumi.set(__self__, "azure_vm_families", azure_vm_families)
|
|
58
|
+
if confidence_rating_in_percentage and not isinstance(confidence_rating_in_percentage, float):
|
|
59
|
+
raise TypeError("Expected argument 'confidence_rating_in_percentage' to be a float")
|
|
60
|
+
pulumi.set(__self__, "confidence_rating_in_percentage", confidence_rating_in_percentage)
|
|
61
|
+
if cost_components and not isinstance(cost_components, list):
|
|
62
|
+
raise TypeError("Expected argument 'cost_components' to be a list")
|
|
63
|
+
pulumi.set(__self__, "cost_components", cost_components)
|
|
64
|
+
if created_timestamp and not isinstance(created_timestamp, str):
|
|
65
|
+
raise TypeError("Expected argument 'created_timestamp' to be a str")
|
|
66
|
+
pulumi.set(__self__, "created_timestamp", created_timestamp)
|
|
67
|
+
if currency and not isinstance(currency, str):
|
|
68
|
+
raise TypeError("Expected argument 'currency' to be a str")
|
|
69
|
+
pulumi.set(__self__, "currency", currency)
|
|
70
|
+
if discount_percentage and not isinstance(discount_percentage, float):
|
|
71
|
+
raise TypeError("Expected argument 'discount_percentage' to be a float")
|
|
72
|
+
pulumi.set(__self__, "discount_percentage", discount_percentage)
|
|
73
|
+
if distribution_by_os_name and not isinstance(distribution_by_os_name, dict):
|
|
74
|
+
raise TypeError("Expected argument 'distribution_by_os_name' to be a dict")
|
|
75
|
+
pulumi.set(__self__, "distribution_by_os_name", distribution_by_os_name)
|
|
76
|
+
if distribution_by_service_pack_insight and not isinstance(distribution_by_service_pack_insight, dict):
|
|
77
|
+
raise TypeError("Expected argument 'distribution_by_service_pack_insight' to be a dict")
|
|
78
|
+
pulumi.set(__self__, "distribution_by_service_pack_insight", distribution_by_service_pack_insight)
|
|
79
|
+
if distribution_by_support_status and not isinstance(distribution_by_support_status, dict):
|
|
80
|
+
raise TypeError("Expected argument 'distribution_by_support_status' to be a dict")
|
|
81
|
+
pulumi.set(__self__, "distribution_by_support_status", distribution_by_support_status)
|
|
82
|
+
if ea_subscription_id and not isinstance(ea_subscription_id, str):
|
|
83
|
+
raise TypeError("Expected argument 'ea_subscription_id' to be a str")
|
|
84
|
+
pulumi.set(__self__, "ea_subscription_id", ea_subscription_id)
|
|
85
|
+
if group_type and not isinstance(group_type, str):
|
|
86
|
+
raise TypeError("Expected argument 'group_type' to be a str")
|
|
87
|
+
pulumi.set(__self__, "group_type", group_type)
|
|
88
|
+
if id and not isinstance(id, str):
|
|
89
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
90
|
+
pulumi.set(__self__, "id", id)
|
|
91
|
+
if linux_azure_hybrid_use_benefit and not isinstance(linux_azure_hybrid_use_benefit, str):
|
|
92
|
+
raise TypeError("Expected argument 'linux_azure_hybrid_use_benefit' to be a str")
|
|
93
|
+
pulumi.set(__self__, "linux_azure_hybrid_use_benefit", linux_azure_hybrid_use_benefit)
|
|
94
|
+
if monthly_bandwidth_cost and not isinstance(monthly_bandwidth_cost, float):
|
|
95
|
+
raise TypeError("Expected argument 'monthly_bandwidth_cost' to be a float")
|
|
96
|
+
pulumi.set(__self__, "monthly_bandwidth_cost", monthly_bandwidth_cost)
|
|
97
|
+
if monthly_compute_cost and not isinstance(monthly_compute_cost, float):
|
|
98
|
+
raise TypeError("Expected argument 'monthly_compute_cost' to be a float")
|
|
99
|
+
pulumi.set(__self__, "monthly_compute_cost", monthly_compute_cost)
|
|
100
|
+
if monthly_premium_storage_cost and not isinstance(monthly_premium_storage_cost, float):
|
|
101
|
+
raise TypeError("Expected argument 'monthly_premium_storage_cost' to be a float")
|
|
102
|
+
pulumi.set(__self__, "monthly_premium_storage_cost", monthly_premium_storage_cost)
|
|
103
|
+
if monthly_standard_ssd_storage_cost and not isinstance(monthly_standard_ssd_storage_cost, float):
|
|
104
|
+
raise TypeError("Expected argument 'monthly_standard_ssd_storage_cost' to be a float")
|
|
105
|
+
pulumi.set(__self__, "monthly_standard_ssd_storage_cost", monthly_standard_ssd_storage_cost)
|
|
106
|
+
if monthly_storage_cost and not isinstance(monthly_storage_cost, float):
|
|
107
|
+
raise TypeError("Expected argument 'monthly_storage_cost' to be a float")
|
|
108
|
+
pulumi.set(__self__, "monthly_storage_cost", monthly_storage_cost)
|
|
109
|
+
if monthly_ultra_storage_cost and not isinstance(monthly_ultra_storage_cost, float):
|
|
110
|
+
raise TypeError("Expected argument 'monthly_ultra_storage_cost' to be a float")
|
|
111
|
+
pulumi.set(__self__, "monthly_ultra_storage_cost", monthly_ultra_storage_cost)
|
|
112
|
+
if name and not isinstance(name, str):
|
|
113
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
114
|
+
pulumi.set(__self__, "name", name)
|
|
115
|
+
if number_of_machines and not isinstance(number_of_machines, int):
|
|
116
|
+
raise TypeError("Expected argument 'number_of_machines' to be a int")
|
|
117
|
+
pulumi.set(__self__, "number_of_machines", number_of_machines)
|
|
118
|
+
if percentile and not isinstance(percentile, str):
|
|
119
|
+
raise TypeError("Expected argument 'percentile' to be a str")
|
|
120
|
+
pulumi.set(__self__, "percentile", percentile)
|
|
121
|
+
if perf_data_end_time and not isinstance(perf_data_end_time, str):
|
|
122
|
+
raise TypeError("Expected argument 'perf_data_end_time' to be a str")
|
|
123
|
+
pulumi.set(__self__, "perf_data_end_time", perf_data_end_time)
|
|
124
|
+
if perf_data_start_time and not isinstance(perf_data_start_time, str):
|
|
125
|
+
raise TypeError("Expected argument 'perf_data_start_time' to be a str")
|
|
126
|
+
pulumi.set(__self__, "perf_data_start_time", perf_data_start_time)
|
|
127
|
+
if prices_timestamp and not isinstance(prices_timestamp, str):
|
|
128
|
+
raise TypeError("Expected argument 'prices_timestamp' to be a str")
|
|
129
|
+
pulumi.set(__self__, "prices_timestamp", prices_timestamp)
|
|
130
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
131
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
132
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
133
|
+
if reserved_instance and not isinstance(reserved_instance, str):
|
|
134
|
+
raise TypeError("Expected argument 'reserved_instance' to be a str")
|
|
135
|
+
pulumi.set(__self__, "reserved_instance", reserved_instance)
|
|
136
|
+
if scaling_factor and not isinstance(scaling_factor, float):
|
|
137
|
+
raise TypeError("Expected argument 'scaling_factor' to be a float")
|
|
138
|
+
pulumi.set(__self__, "scaling_factor", scaling_factor)
|
|
139
|
+
if schema_version and not isinstance(schema_version, str):
|
|
140
|
+
raise TypeError("Expected argument 'schema_version' to be a str")
|
|
141
|
+
pulumi.set(__self__, "schema_version", schema_version)
|
|
142
|
+
if sizing_criterion and not isinstance(sizing_criterion, str):
|
|
143
|
+
raise TypeError("Expected argument 'sizing_criterion' to be a str")
|
|
144
|
+
pulumi.set(__self__, "sizing_criterion", sizing_criterion)
|
|
145
|
+
if stage and not isinstance(stage, str):
|
|
146
|
+
raise TypeError("Expected argument 'stage' to be a str")
|
|
147
|
+
pulumi.set(__self__, "stage", stage)
|
|
148
|
+
if status and not isinstance(status, str):
|
|
149
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
150
|
+
pulumi.set(__self__, "status", status)
|
|
151
|
+
if suitability_summary and not isinstance(suitability_summary, dict):
|
|
152
|
+
raise TypeError("Expected argument 'suitability_summary' to be a dict")
|
|
153
|
+
pulumi.set(__self__, "suitability_summary", suitability_summary)
|
|
154
|
+
if system_data and not isinstance(system_data, dict):
|
|
155
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
156
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
157
|
+
if time_range and not isinstance(time_range, str):
|
|
158
|
+
raise TypeError("Expected argument 'time_range' to be a str")
|
|
159
|
+
pulumi.set(__self__, "time_range", time_range)
|
|
160
|
+
if type and not isinstance(type, str):
|
|
161
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
162
|
+
pulumi.set(__self__, "type", type)
|
|
163
|
+
if updated_timestamp and not isinstance(updated_timestamp, str):
|
|
164
|
+
raise TypeError("Expected argument 'updated_timestamp' to be a str")
|
|
165
|
+
pulumi.set(__self__, "updated_timestamp", updated_timestamp)
|
|
166
|
+
if vm_uptime and not isinstance(vm_uptime, dict):
|
|
167
|
+
raise TypeError("Expected argument 'vm_uptime' to be a dict")
|
|
168
|
+
pulumi.set(__self__, "vm_uptime", vm_uptime)
|
|
169
|
+
|
|
170
|
+
@property
|
|
171
|
+
@pulumi.getter(name="assessmentErrorSummary")
|
|
172
|
+
def assessment_error_summary(self) -> Mapping[str, int]:
|
|
173
|
+
"""
|
|
174
|
+
Gets or sets the assessment error summary.
|
|
175
|
+
This is the number of
|
|
176
|
+
machines affected by each type of error in this assessment.
|
|
177
|
+
"""
|
|
178
|
+
return pulumi.get(self, "assessment_error_summary")
|
|
179
|
+
|
|
180
|
+
@property
|
|
181
|
+
@pulumi.getter(name="assessmentType")
|
|
182
|
+
def assessment_type(self) -> str:
|
|
183
|
+
"""
|
|
184
|
+
Assessment type of the assessment.
|
|
185
|
+
"""
|
|
186
|
+
return pulumi.get(self, "assessment_type")
|
|
187
|
+
|
|
188
|
+
@property
|
|
189
|
+
@pulumi.getter(name="azureDiskTypes")
|
|
190
|
+
def azure_disk_types(self) -> Optional[Sequence[str]]:
|
|
191
|
+
"""
|
|
192
|
+
Gets or sets the azure storage type. Premium, Standard etc.
|
|
193
|
+
"""
|
|
194
|
+
return pulumi.get(self, "azure_disk_types")
|
|
195
|
+
|
|
196
|
+
@property
|
|
197
|
+
@pulumi.getter(name="azureHybridUseBenefit")
|
|
198
|
+
def azure_hybrid_use_benefit(self) -> Optional[str]:
|
|
199
|
+
"""
|
|
200
|
+
Gets or sets the user configurable setting to display the azure hybrid use
|
|
201
|
+
benefit.
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "azure_hybrid_use_benefit")
|
|
204
|
+
|
|
205
|
+
@property
|
|
206
|
+
@pulumi.getter(name="azureLocation")
|
|
207
|
+
def azure_location(self) -> Optional[str]:
|
|
208
|
+
"""
|
|
209
|
+
Azure Location or Azure region where to which the machines will be migrated.
|
|
210
|
+
"""
|
|
211
|
+
return pulumi.get(self, "azure_location")
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
@pulumi.getter(name="azureOfferCode")
|
|
215
|
+
def azure_offer_code(self) -> Optional[str]:
|
|
216
|
+
"""
|
|
217
|
+
Azure Offer Code.
|
|
218
|
+
"""
|
|
219
|
+
return pulumi.get(self, "azure_offer_code")
|
|
220
|
+
|
|
221
|
+
@property
|
|
222
|
+
@pulumi.getter(name="azurePricingTier")
|
|
223
|
+
def azure_pricing_tier(self) -> Optional[str]:
|
|
224
|
+
"""
|
|
225
|
+
Gets or sets Azure Pricing Tier - Free, Basic, etc.
|
|
226
|
+
"""
|
|
227
|
+
return pulumi.get(self, "azure_pricing_tier")
|
|
228
|
+
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter(name="azureStorageRedundancy")
|
|
231
|
+
def azure_storage_redundancy(self) -> Optional[str]:
|
|
232
|
+
"""
|
|
233
|
+
Gets or sets the Azure Storage Redundancy. Example: Locally Redundant Storage.
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "azure_storage_redundancy")
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
@pulumi.getter(name="azureVmFamilies")
|
|
239
|
+
def azure_vm_families(self) -> Optional[Sequence[str]]:
|
|
240
|
+
"""
|
|
241
|
+
Gets or sets the Azure VM families.
|
|
242
|
+
"""
|
|
243
|
+
return pulumi.get(self, "azure_vm_families")
|
|
244
|
+
|
|
245
|
+
@property
|
|
246
|
+
@pulumi.getter(name="confidenceRatingInPercentage")
|
|
247
|
+
def confidence_rating_in_percentage(self) -> float:
|
|
248
|
+
"""
|
|
249
|
+
Confidence Rating in Percentage.
|
|
250
|
+
"""
|
|
251
|
+
return pulumi.get(self, "confidence_rating_in_percentage")
|
|
252
|
+
|
|
253
|
+
@property
|
|
254
|
+
@pulumi.getter(name="costComponents")
|
|
255
|
+
def cost_components(self) -> Sequence['outputs.CostComponentResponse']:
|
|
256
|
+
"""
|
|
257
|
+
Gets the collection of cost components.
|
|
258
|
+
"""
|
|
259
|
+
return pulumi.get(self, "cost_components")
|
|
260
|
+
|
|
261
|
+
@property
|
|
262
|
+
@pulumi.getter(name="createdTimestamp")
|
|
263
|
+
def created_timestamp(self) -> str:
|
|
264
|
+
"""
|
|
265
|
+
Date and Time when assessment was created.
|
|
266
|
+
"""
|
|
267
|
+
return pulumi.get(self, "created_timestamp")
|
|
268
|
+
|
|
269
|
+
@property
|
|
270
|
+
@pulumi.getter
|
|
271
|
+
def currency(self) -> Optional[str]:
|
|
272
|
+
"""
|
|
273
|
+
Currency in which prices should be reported.
|
|
274
|
+
"""
|
|
275
|
+
return pulumi.get(self, "currency")
|
|
276
|
+
|
|
277
|
+
@property
|
|
278
|
+
@pulumi.getter(name="discountPercentage")
|
|
279
|
+
def discount_percentage(self) -> Optional[float]:
|
|
280
|
+
"""
|
|
281
|
+
Custom discount percentage.
|
|
282
|
+
"""
|
|
283
|
+
return pulumi.get(self, "discount_percentage")
|
|
284
|
+
|
|
285
|
+
@property
|
|
286
|
+
@pulumi.getter(name="distributionByOsName")
|
|
287
|
+
def distribution_by_os_name(self) -> Mapping[str, int]:
|
|
288
|
+
"""
|
|
289
|
+
Gets the distribution by os name.
|
|
290
|
+
"""
|
|
291
|
+
return pulumi.get(self, "distribution_by_os_name")
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
@pulumi.getter(name="distributionByServicePackInsight")
|
|
295
|
+
def distribution_by_service_pack_insight(self) -> Mapping[str, int]:
|
|
296
|
+
"""
|
|
297
|
+
Gets the distribution distribution of sqlInstances by service pack insight.
|
|
298
|
+
"""
|
|
299
|
+
return pulumi.get(self, "distribution_by_service_pack_insight")
|
|
300
|
+
|
|
301
|
+
@property
|
|
302
|
+
@pulumi.getter(name="distributionBySupportStatus")
|
|
303
|
+
def distribution_by_support_status(self) -> Mapping[str, int]:
|
|
304
|
+
"""
|
|
305
|
+
Gets the distribution of sqlInstances by support status.
|
|
306
|
+
"""
|
|
307
|
+
return pulumi.get(self, "distribution_by_support_status")
|
|
308
|
+
|
|
309
|
+
@property
|
|
310
|
+
@pulumi.getter(name="eaSubscriptionId")
|
|
311
|
+
def ea_subscription_id(self) -> Optional[str]:
|
|
312
|
+
"""
|
|
313
|
+
Gets or sets enterprise agreement subscription id.
|
|
314
|
+
"""
|
|
315
|
+
return pulumi.get(self, "ea_subscription_id")
|
|
316
|
+
|
|
317
|
+
@property
|
|
318
|
+
@pulumi.getter(name="groupType")
|
|
319
|
+
def group_type(self) -> str:
|
|
320
|
+
"""
|
|
321
|
+
Gets the group type for the assessment.
|
|
322
|
+
"""
|
|
323
|
+
return pulumi.get(self, "group_type")
|
|
324
|
+
|
|
325
|
+
@property
|
|
326
|
+
@pulumi.getter
|
|
327
|
+
def id(self) -> str:
|
|
328
|
+
"""
|
|
329
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
330
|
+
"""
|
|
331
|
+
return pulumi.get(self, "id")
|
|
332
|
+
|
|
333
|
+
@property
|
|
334
|
+
@pulumi.getter(name="linuxAzureHybridUseBenefit")
|
|
335
|
+
def linux_azure_hybrid_use_benefit(self) -> Optional[str]:
|
|
336
|
+
"""
|
|
337
|
+
Gets or sets the user configurable setting to display the linux azure hybrid use
|
|
338
|
+
benefit.
|
|
339
|
+
"""
|
|
340
|
+
return pulumi.get(self, "linux_azure_hybrid_use_benefit")
|
|
341
|
+
|
|
342
|
+
@property
|
|
343
|
+
@pulumi.getter(name="monthlyBandwidthCost")
|
|
344
|
+
def monthly_bandwidth_cost(self) -> float:
|
|
345
|
+
"""
|
|
346
|
+
Gets or sets the aggregate Bandwidth Cost for all machines in the assessment.
|
|
347
|
+
"""
|
|
348
|
+
return pulumi.get(self, "monthly_bandwidth_cost")
|
|
349
|
+
|
|
350
|
+
@property
|
|
351
|
+
@pulumi.getter(name="monthlyComputeCost")
|
|
352
|
+
def monthly_compute_cost(self) -> float:
|
|
353
|
+
"""
|
|
354
|
+
Gets or sets the aggregate Compute Cost for all machines in the assessment.
|
|
355
|
+
"""
|
|
356
|
+
return pulumi.get(self, "monthly_compute_cost")
|
|
357
|
+
|
|
358
|
+
@property
|
|
359
|
+
@pulumi.getter(name="monthlyPremiumStorageCost")
|
|
360
|
+
def monthly_premium_storage_cost(self) -> float:
|
|
361
|
+
"""
|
|
362
|
+
Gets or sets the aggregate premium storage cost for all machines in the
|
|
363
|
+
assessment.
|
|
364
|
+
"""
|
|
365
|
+
return pulumi.get(self, "monthly_premium_storage_cost")
|
|
366
|
+
|
|
367
|
+
@property
|
|
368
|
+
@pulumi.getter(name="monthlyStandardSsdStorageCost")
|
|
369
|
+
def monthly_standard_ssd_storage_cost(self) -> float:
|
|
370
|
+
"""
|
|
371
|
+
Gets or sets the aggregate standard SSD storage cost for all the machines in
|
|
372
|
+
the assessment.
|
|
373
|
+
"""
|
|
374
|
+
return pulumi.get(self, "monthly_standard_ssd_storage_cost")
|
|
375
|
+
|
|
376
|
+
@property
|
|
377
|
+
@pulumi.getter(name="monthlyStorageCost")
|
|
378
|
+
def monthly_storage_cost(self) -> float:
|
|
379
|
+
"""
|
|
380
|
+
Gets or sets the aggregate Storage Cost for all machines in the assessment.
|
|
381
|
+
"""
|
|
382
|
+
return pulumi.get(self, "monthly_storage_cost")
|
|
383
|
+
|
|
384
|
+
@property
|
|
385
|
+
@pulumi.getter(name="monthlyUltraStorageCost")
|
|
386
|
+
def monthly_ultra_storage_cost(self) -> float:
|
|
387
|
+
"""
|
|
388
|
+
Gets or sets the aggregate ultra storage cost for all machines in the
|
|
389
|
+
assessment.
|
|
390
|
+
"""
|
|
391
|
+
return pulumi.get(self, "monthly_ultra_storage_cost")
|
|
392
|
+
|
|
393
|
+
@property
|
|
394
|
+
@pulumi.getter
|
|
395
|
+
def name(self) -> str:
|
|
396
|
+
"""
|
|
397
|
+
The name of the resource
|
|
398
|
+
"""
|
|
399
|
+
return pulumi.get(self, "name")
|
|
400
|
+
|
|
401
|
+
@property
|
|
402
|
+
@pulumi.getter(name="numberOfMachines")
|
|
403
|
+
def number_of_machines(self) -> int:
|
|
404
|
+
"""
|
|
405
|
+
Gets or sets the Number of machines part of the assessment.
|
|
406
|
+
"""
|
|
407
|
+
return pulumi.get(self, "number_of_machines")
|
|
408
|
+
|
|
409
|
+
@property
|
|
410
|
+
@pulumi.getter
|
|
411
|
+
def percentile(self) -> Optional[str]:
|
|
412
|
+
"""
|
|
413
|
+
Percentile of the utilization data values to be considered while assessing
|
|
414
|
+
machines.
|
|
415
|
+
"""
|
|
416
|
+
return pulumi.get(self, "percentile")
|
|
417
|
+
|
|
418
|
+
@property
|
|
419
|
+
@pulumi.getter(name="perfDataEndTime")
|
|
420
|
+
def perf_data_end_time(self) -> Optional[str]:
|
|
421
|
+
"""
|
|
422
|
+
Gets or sets the end time to consider performance data for assessment.
|
|
423
|
+
"""
|
|
424
|
+
return pulumi.get(self, "perf_data_end_time")
|
|
425
|
+
|
|
426
|
+
@property
|
|
427
|
+
@pulumi.getter(name="perfDataStartTime")
|
|
428
|
+
def perf_data_start_time(self) -> Optional[str]:
|
|
429
|
+
"""
|
|
430
|
+
Gets or sets the start time to consider performance data for assessment.
|
|
431
|
+
"""
|
|
432
|
+
return pulumi.get(self, "perf_data_start_time")
|
|
433
|
+
|
|
434
|
+
@property
|
|
435
|
+
@pulumi.getter(name="pricesTimestamp")
|
|
436
|
+
def prices_timestamp(self) -> str:
|
|
437
|
+
"""
|
|
438
|
+
Last time when rates were queried.
|
|
439
|
+
"""
|
|
440
|
+
return pulumi.get(self, "prices_timestamp")
|
|
441
|
+
|
|
442
|
+
@property
|
|
443
|
+
@pulumi.getter(name="provisioningState")
|
|
444
|
+
def provisioning_state(self) -> Optional[str]:
|
|
445
|
+
"""
|
|
446
|
+
The status of the last operation.
|
|
447
|
+
"""
|
|
448
|
+
return pulumi.get(self, "provisioning_state")
|
|
449
|
+
|
|
450
|
+
@property
|
|
451
|
+
@pulumi.getter(name="reservedInstance")
|
|
452
|
+
def reserved_instance(self) -> Optional[str]:
|
|
453
|
+
"""
|
|
454
|
+
Gets or sets the Azure Reserved Instance - 1-Year, 3-Year.
|
|
455
|
+
"""
|
|
456
|
+
return pulumi.get(self, "reserved_instance")
|
|
457
|
+
|
|
458
|
+
@property
|
|
459
|
+
@pulumi.getter(name="scalingFactor")
|
|
460
|
+
def scaling_factor(self) -> Optional[float]:
|
|
461
|
+
"""
|
|
462
|
+
Percentage of buffer that user wants on performance metrics when recommending
|
|
463
|
+
Azure sizes.
|
|
464
|
+
"""
|
|
465
|
+
return pulumi.get(self, "scaling_factor")
|
|
466
|
+
|
|
467
|
+
@property
|
|
468
|
+
@pulumi.getter(name="schemaVersion")
|
|
469
|
+
def schema_version(self) -> str:
|
|
470
|
+
"""
|
|
471
|
+
Schema version.
|
|
472
|
+
"""
|
|
473
|
+
return pulumi.get(self, "schema_version")
|
|
474
|
+
|
|
475
|
+
@property
|
|
476
|
+
@pulumi.getter(name="sizingCriterion")
|
|
477
|
+
def sizing_criterion(self) -> Optional[str]:
|
|
478
|
+
"""
|
|
479
|
+
Assessment sizing criterion.
|
|
480
|
+
"""
|
|
481
|
+
return pulumi.get(self, "sizing_criterion")
|
|
482
|
+
|
|
483
|
+
@property
|
|
484
|
+
@pulumi.getter
|
|
485
|
+
def stage(self) -> str:
|
|
486
|
+
"""
|
|
487
|
+
User configurable setting to display the Stage of Assessment.
|
|
488
|
+
"""
|
|
489
|
+
return pulumi.get(self, "stage")
|
|
490
|
+
|
|
491
|
+
@property
|
|
492
|
+
@pulumi.getter
|
|
493
|
+
def status(self) -> str:
|
|
494
|
+
"""
|
|
495
|
+
Whether assessment is in valid state and all machines have been assessed.
|
|
496
|
+
"""
|
|
497
|
+
return pulumi.get(self, "status")
|
|
498
|
+
|
|
499
|
+
@property
|
|
500
|
+
@pulumi.getter(name="suitabilitySummary")
|
|
501
|
+
def suitability_summary(self) -> Mapping[str, int]:
|
|
502
|
+
"""
|
|
503
|
+
Gets or sets the Cloud suitability summary for all the machines in the
|
|
504
|
+
assessment.
|
|
505
|
+
"""
|
|
506
|
+
return pulumi.get(self, "suitability_summary")
|
|
507
|
+
|
|
508
|
+
@property
|
|
509
|
+
@pulumi.getter(name="systemData")
|
|
510
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
511
|
+
"""
|
|
512
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
513
|
+
"""
|
|
514
|
+
return pulumi.get(self, "system_data")
|
|
515
|
+
|
|
516
|
+
@property
|
|
517
|
+
@pulumi.getter(name="timeRange")
|
|
518
|
+
def time_range(self) -> Optional[str]:
|
|
519
|
+
"""
|
|
520
|
+
Time Range for which the historic utilization data should be considered for
|
|
521
|
+
assessment.
|
|
522
|
+
"""
|
|
523
|
+
return pulumi.get(self, "time_range")
|
|
524
|
+
|
|
525
|
+
@property
|
|
526
|
+
@pulumi.getter
|
|
527
|
+
def type(self) -> str:
|
|
528
|
+
"""
|
|
529
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
530
|
+
"""
|
|
531
|
+
return pulumi.get(self, "type")
|
|
532
|
+
|
|
533
|
+
@property
|
|
534
|
+
@pulumi.getter(name="updatedTimestamp")
|
|
535
|
+
def updated_timestamp(self) -> str:
|
|
536
|
+
"""
|
|
537
|
+
Date and Time when assessment was last updated.
|
|
538
|
+
"""
|
|
539
|
+
return pulumi.get(self, "updated_timestamp")
|
|
540
|
+
|
|
541
|
+
@property
|
|
542
|
+
@pulumi.getter(name="vmUptime")
|
|
543
|
+
def vm_uptime(self) -> Optional['outputs.VmUptimeResponse']:
|
|
544
|
+
"""
|
|
545
|
+
Gets or sets the duration for which the VMs are up in the on-premises
|
|
546
|
+
environment.
|
|
547
|
+
"""
|
|
548
|
+
return pulumi.get(self, "vm_uptime")
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
class AwaitableGetAssessmentsOperationResult(GetAssessmentsOperationResult):
|
|
552
|
+
# pylint: disable=using-constant-test
|
|
553
|
+
def __await__(self):
|
|
554
|
+
if False:
|
|
555
|
+
yield self
|
|
556
|
+
return GetAssessmentsOperationResult(
|
|
557
|
+
assessment_error_summary=self.assessment_error_summary,
|
|
558
|
+
assessment_type=self.assessment_type,
|
|
559
|
+
azure_disk_types=self.azure_disk_types,
|
|
560
|
+
azure_hybrid_use_benefit=self.azure_hybrid_use_benefit,
|
|
561
|
+
azure_location=self.azure_location,
|
|
562
|
+
azure_offer_code=self.azure_offer_code,
|
|
563
|
+
azure_pricing_tier=self.azure_pricing_tier,
|
|
564
|
+
azure_storage_redundancy=self.azure_storage_redundancy,
|
|
565
|
+
azure_vm_families=self.azure_vm_families,
|
|
566
|
+
confidence_rating_in_percentage=self.confidence_rating_in_percentage,
|
|
567
|
+
cost_components=self.cost_components,
|
|
568
|
+
created_timestamp=self.created_timestamp,
|
|
569
|
+
currency=self.currency,
|
|
570
|
+
discount_percentage=self.discount_percentage,
|
|
571
|
+
distribution_by_os_name=self.distribution_by_os_name,
|
|
572
|
+
distribution_by_service_pack_insight=self.distribution_by_service_pack_insight,
|
|
573
|
+
distribution_by_support_status=self.distribution_by_support_status,
|
|
574
|
+
ea_subscription_id=self.ea_subscription_id,
|
|
575
|
+
group_type=self.group_type,
|
|
576
|
+
id=self.id,
|
|
577
|
+
linux_azure_hybrid_use_benefit=self.linux_azure_hybrid_use_benefit,
|
|
578
|
+
monthly_bandwidth_cost=self.monthly_bandwidth_cost,
|
|
579
|
+
monthly_compute_cost=self.monthly_compute_cost,
|
|
580
|
+
monthly_premium_storage_cost=self.monthly_premium_storage_cost,
|
|
581
|
+
monthly_standard_ssd_storage_cost=self.monthly_standard_ssd_storage_cost,
|
|
582
|
+
monthly_storage_cost=self.monthly_storage_cost,
|
|
583
|
+
monthly_ultra_storage_cost=self.monthly_ultra_storage_cost,
|
|
584
|
+
name=self.name,
|
|
585
|
+
number_of_machines=self.number_of_machines,
|
|
586
|
+
percentile=self.percentile,
|
|
587
|
+
perf_data_end_time=self.perf_data_end_time,
|
|
588
|
+
perf_data_start_time=self.perf_data_start_time,
|
|
589
|
+
prices_timestamp=self.prices_timestamp,
|
|
590
|
+
provisioning_state=self.provisioning_state,
|
|
591
|
+
reserved_instance=self.reserved_instance,
|
|
592
|
+
scaling_factor=self.scaling_factor,
|
|
593
|
+
schema_version=self.schema_version,
|
|
594
|
+
sizing_criterion=self.sizing_criterion,
|
|
595
|
+
stage=self.stage,
|
|
596
|
+
status=self.status,
|
|
597
|
+
suitability_summary=self.suitability_summary,
|
|
598
|
+
system_data=self.system_data,
|
|
599
|
+
time_range=self.time_range,
|
|
600
|
+
type=self.type,
|
|
601
|
+
updated_timestamp=self.updated_timestamp,
|
|
602
|
+
vm_uptime=self.vm_uptime)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
def get_assessments_operation(assessment_name: Optional[str] = None,
|
|
606
|
+
group_name: Optional[str] = None,
|
|
607
|
+
project_name: Optional[str] = None,
|
|
608
|
+
resource_group_name: Optional[str] = None,
|
|
609
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAssessmentsOperationResult:
|
|
610
|
+
"""
|
|
611
|
+
Get a Assessment
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
:param str assessment_name: Machine Assessment ARM name
|
|
615
|
+
:param str group_name: Group ARM name
|
|
616
|
+
:param str project_name: Assessment Project Name
|
|
617
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
618
|
+
"""
|
|
619
|
+
__args__ = dict()
|
|
620
|
+
__args__['assessmentName'] = assessment_name
|
|
621
|
+
__args__['groupName'] = group_name
|
|
622
|
+
__args__['projectName'] = project_name
|
|
623
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
624
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
625
|
+
__ret__ = pulumi.runtime.invoke('azure-native:migrate/v20230909preview:getAssessmentsOperation', __args__, opts=opts, typ=GetAssessmentsOperationResult).value
|
|
626
|
+
|
|
627
|
+
return AwaitableGetAssessmentsOperationResult(
|
|
628
|
+
assessment_error_summary=pulumi.get(__ret__, 'assessment_error_summary'),
|
|
629
|
+
assessment_type=pulumi.get(__ret__, 'assessment_type'),
|
|
630
|
+
azure_disk_types=pulumi.get(__ret__, 'azure_disk_types'),
|
|
631
|
+
azure_hybrid_use_benefit=pulumi.get(__ret__, 'azure_hybrid_use_benefit'),
|
|
632
|
+
azure_location=pulumi.get(__ret__, 'azure_location'),
|
|
633
|
+
azure_offer_code=pulumi.get(__ret__, 'azure_offer_code'),
|
|
634
|
+
azure_pricing_tier=pulumi.get(__ret__, 'azure_pricing_tier'),
|
|
635
|
+
azure_storage_redundancy=pulumi.get(__ret__, 'azure_storage_redundancy'),
|
|
636
|
+
azure_vm_families=pulumi.get(__ret__, 'azure_vm_families'),
|
|
637
|
+
confidence_rating_in_percentage=pulumi.get(__ret__, 'confidence_rating_in_percentage'),
|
|
638
|
+
cost_components=pulumi.get(__ret__, 'cost_components'),
|
|
639
|
+
created_timestamp=pulumi.get(__ret__, 'created_timestamp'),
|
|
640
|
+
currency=pulumi.get(__ret__, 'currency'),
|
|
641
|
+
discount_percentage=pulumi.get(__ret__, 'discount_percentage'),
|
|
642
|
+
distribution_by_os_name=pulumi.get(__ret__, 'distribution_by_os_name'),
|
|
643
|
+
distribution_by_service_pack_insight=pulumi.get(__ret__, 'distribution_by_service_pack_insight'),
|
|
644
|
+
distribution_by_support_status=pulumi.get(__ret__, 'distribution_by_support_status'),
|
|
645
|
+
ea_subscription_id=pulumi.get(__ret__, 'ea_subscription_id'),
|
|
646
|
+
group_type=pulumi.get(__ret__, 'group_type'),
|
|
647
|
+
id=pulumi.get(__ret__, 'id'),
|
|
648
|
+
linux_azure_hybrid_use_benefit=pulumi.get(__ret__, 'linux_azure_hybrid_use_benefit'),
|
|
649
|
+
monthly_bandwidth_cost=pulumi.get(__ret__, 'monthly_bandwidth_cost'),
|
|
650
|
+
monthly_compute_cost=pulumi.get(__ret__, 'monthly_compute_cost'),
|
|
651
|
+
monthly_premium_storage_cost=pulumi.get(__ret__, 'monthly_premium_storage_cost'),
|
|
652
|
+
monthly_standard_ssd_storage_cost=pulumi.get(__ret__, 'monthly_standard_ssd_storage_cost'),
|
|
653
|
+
monthly_storage_cost=pulumi.get(__ret__, 'monthly_storage_cost'),
|
|
654
|
+
monthly_ultra_storage_cost=pulumi.get(__ret__, 'monthly_ultra_storage_cost'),
|
|
655
|
+
name=pulumi.get(__ret__, 'name'),
|
|
656
|
+
number_of_machines=pulumi.get(__ret__, 'number_of_machines'),
|
|
657
|
+
percentile=pulumi.get(__ret__, 'percentile'),
|
|
658
|
+
perf_data_end_time=pulumi.get(__ret__, 'perf_data_end_time'),
|
|
659
|
+
perf_data_start_time=pulumi.get(__ret__, 'perf_data_start_time'),
|
|
660
|
+
prices_timestamp=pulumi.get(__ret__, 'prices_timestamp'),
|
|
661
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
662
|
+
reserved_instance=pulumi.get(__ret__, 'reserved_instance'),
|
|
663
|
+
scaling_factor=pulumi.get(__ret__, 'scaling_factor'),
|
|
664
|
+
schema_version=pulumi.get(__ret__, 'schema_version'),
|
|
665
|
+
sizing_criterion=pulumi.get(__ret__, 'sizing_criterion'),
|
|
666
|
+
stage=pulumi.get(__ret__, 'stage'),
|
|
667
|
+
status=pulumi.get(__ret__, 'status'),
|
|
668
|
+
suitability_summary=pulumi.get(__ret__, 'suitability_summary'),
|
|
669
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
670
|
+
time_range=pulumi.get(__ret__, 'time_range'),
|
|
671
|
+
type=pulumi.get(__ret__, 'type'),
|
|
672
|
+
updated_timestamp=pulumi.get(__ret__, 'updated_timestamp'),
|
|
673
|
+
vm_uptime=pulumi.get(__ret__, 'vm_uptime'))
|
|
674
|
+
def get_assessments_operation_output(assessment_name: Optional[pulumi.Input[str]] = None,
|
|
675
|
+
group_name: Optional[pulumi.Input[str]] = None,
|
|
676
|
+
project_name: Optional[pulumi.Input[str]] = None,
|
|
677
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
678
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAssessmentsOperationResult]:
|
|
679
|
+
"""
|
|
680
|
+
Get a Assessment
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
:param str assessment_name: Machine Assessment ARM name
|
|
684
|
+
:param str group_name: Group ARM name
|
|
685
|
+
:param str project_name: Assessment Project Name
|
|
686
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
687
|
+
"""
|
|
688
|
+
__args__ = dict()
|
|
689
|
+
__args__['assessmentName'] = assessment_name
|
|
690
|
+
__args__['groupName'] = group_name
|
|
691
|
+
__args__['projectName'] = project_name
|
|
692
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
693
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
694
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:migrate/v20230909preview:getAssessmentsOperation', __args__, opts=opts, typ=GetAssessmentsOperationResult)
|
|
695
|
+
return __ret__.apply(lambda __response__: GetAssessmentsOperationResult(
|
|
696
|
+
assessment_error_summary=pulumi.get(__response__, 'assessment_error_summary'),
|
|
697
|
+
assessment_type=pulumi.get(__response__, 'assessment_type'),
|
|
698
|
+
azure_disk_types=pulumi.get(__response__, 'azure_disk_types'),
|
|
699
|
+
azure_hybrid_use_benefit=pulumi.get(__response__, 'azure_hybrid_use_benefit'),
|
|
700
|
+
azure_location=pulumi.get(__response__, 'azure_location'),
|
|
701
|
+
azure_offer_code=pulumi.get(__response__, 'azure_offer_code'),
|
|
702
|
+
azure_pricing_tier=pulumi.get(__response__, 'azure_pricing_tier'),
|
|
703
|
+
azure_storage_redundancy=pulumi.get(__response__, 'azure_storage_redundancy'),
|
|
704
|
+
azure_vm_families=pulumi.get(__response__, 'azure_vm_families'),
|
|
705
|
+
confidence_rating_in_percentage=pulumi.get(__response__, 'confidence_rating_in_percentage'),
|
|
706
|
+
cost_components=pulumi.get(__response__, 'cost_components'),
|
|
707
|
+
created_timestamp=pulumi.get(__response__, 'created_timestamp'),
|
|
708
|
+
currency=pulumi.get(__response__, 'currency'),
|
|
709
|
+
discount_percentage=pulumi.get(__response__, 'discount_percentage'),
|
|
710
|
+
distribution_by_os_name=pulumi.get(__response__, 'distribution_by_os_name'),
|
|
711
|
+
distribution_by_service_pack_insight=pulumi.get(__response__, 'distribution_by_service_pack_insight'),
|
|
712
|
+
distribution_by_support_status=pulumi.get(__response__, 'distribution_by_support_status'),
|
|
713
|
+
ea_subscription_id=pulumi.get(__response__, 'ea_subscription_id'),
|
|
714
|
+
group_type=pulumi.get(__response__, 'group_type'),
|
|
715
|
+
id=pulumi.get(__response__, 'id'),
|
|
716
|
+
linux_azure_hybrid_use_benefit=pulumi.get(__response__, 'linux_azure_hybrid_use_benefit'),
|
|
717
|
+
monthly_bandwidth_cost=pulumi.get(__response__, 'monthly_bandwidth_cost'),
|
|
718
|
+
monthly_compute_cost=pulumi.get(__response__, 'monthly_compute_cost'),
|
|
719
|
+
monthly_premium_storage_cost=pulumi.get(__response__, 'monthly_premium_storage_cost'),
|
|
720
|
+
monthly_standard_ssd_storage_cost=pulumi.get(__response__, 'monthly_standard_ssd_storage_cost'),
|
|
721
|
+
monthly_storage_cost=pulumi.get(__response__, 'monthly_storage_cost'),
|
|
722
|
+
monthly_ultra_storage_cost=pulumi.get(__response__, 'monthly_ultra_storage_cost'),
|
|
723
|
+
name=pulumi.get(__response__, 'name'),
|
|
724
|
+
number_of_machines=pulumi.get(__response__, 'number_of_machines'),
|
|
725
|
+
percentile=pulumi.get(__response__, 'percentile'),
|
|
726
|
+
perf_data_end_time=pulumi.get(__response__, 'perf_data_end_time'),
|
|
727
|
+
perf_data_start_time=pulumi.get(__response__, 'perf_data_start_time'),
|
|
728
|
+
prices_timestamp=pulumi.get(__response__, 'prices_timestamp'),
|
|
729
|
+
provisioning_state=pulumi.get(__response__, 'provisioning_state'),
|
|
730
|
+
reserved_instance=pulumi.get(__response__, 'reserved_instance'),
|
|
731
|
+
scaling_factor=pulumi.get(__response__, 'scaling_factor'),
|
|
732
|
+
schema_version=pulumi.get(__response__, 'schema_version'),
|
|
733
|
+
sizing_criterion=pulumi.get(__response__, 'sizing_criterion'),
|
|
734
|
+
stage=pulumi.get(__response__, 'stage'),
|
|
735
|
+
status=pulumi.get(__response__, 'status'),
|
|
736
|
+
suitability_summary=pulumi.get(__response__, 'suitability_summary'),
|
|
737
|
+
system_data=pulumi.get(__response__, 'system_data'),
|
|
738
|
+
time_range=pulumi.get(__response__, 'time_range'),
|
|
739
|
+
type=pulumi.get(__response__, 'type'),
|
|
740
|
+
updated_timestamp=pulumi.get(__response__, 'updated_timestamp'),
|
|
741
|
+
vm_uptime=pulumi.get(__response__, 'vm_uptime')))
|