Source code for azure.ai.ml.entities._compute.unsupported_compute

# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
from typing import Dict
from azure.ai.ml.constants import TYPE
from azure.ai.ml.entities import Compute
from azure.ai.ml._restclient.v2022_01_01_preview.models import ComputeResource
from azure.ai.ml._ml_exceptions import ValidationException, ErrorCategory, ErrorTarget


[docs]class UnsupportedCompute(Compute): """Unsupported compute resource. Only for use displaying compute properties for resources not fully supported in the SDK. """ def __init__( self, **kwargs, ): kwargs[TYPE] = "*** Unsupported Compute Type ***" super().__init__(**kwargs) @classmethod def _load_from_rest(cls, rest_obj: ComputeResource) -> "UnsupportedCompute": prop = rest_obj.properties response = UnsupportedCompute( name=rest_obj.name, id=rest_obj.id, description=prop.description, location=rest_obj.location, resource_id=prop.resource_id, provisioning_state=prop.provisioning_state, created_on=prop.additional_properties.get("createdOn", None), ) return response @classmethod def _load_from_dict(cls, data: Dict, context: Dict, **kwargs) -> "UnsupportedCompute": msg = "Cannot create unsupported compute type." raise ValidationException( message=msg, target=ErrorTarget.COMPUTE, no_personal_data_message=msg, error_category=ErrorCategory.USER_ERROR, ) def _to_rest_object(self) -> ComputeResource: msg = "Cannot create unsupported compute type." raise ValidationException( message=msg, target=ErrorTarget.COMPUTE, no_personal_data_message=msg, error_category=ErrorCategory.USER_ERROR, )