diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_deployment/online_deployment.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_deployment/online_deployment.py index b66955b10ac0..daa963168e6c 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_deployment/online_deployment.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_deployment/online_deployment.py @@ -517,7 +517,7 @@ class ManagedOnlineDeployment(OnlineDeployment): :type scoring_script: Union[str, PathLike], optional :param egress_public_network_access: Whether to restrict communication between a deployment and the Azure resources used to by the deployment. Allowed values are: "enabled", "disabled" - :param egress_public_network_access: str + :type egress_public_network_access: str """ def __init__( diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_batch_deployment_operations.py b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_batch_deployment_operations.py index a62c62341e58..c43fa5564b9b 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_batch_deployment_operations.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_batch_deployment_operations.py @@ -74,12 +74,12 @@ def begin_create_or_update( :param deployment: The deployment entity. :type deployment: ~azure.ai.ml.entities.BatchDeployment - :raises ~azure.ai.ml.exceptions.ValidationException: Raised if OnlineDeployment cannot be + :raises ~azure.ai.ml.exceptions.ValidationException: Raised if BatchDeployment cannot be successfully validated. Details will be provided in the error message. - :raises ~azure.ai.ml.exceptions.AssetException: Raised if OnlineDeployment assets + :raises ~azure.ai.ml.exceptions.AssetException: Raised if BatchDeployment assets (e.g. Data, Code, Model, Environment) cannot be successfully validated. Details will be provided in the error message. - :raises ~azure.ai.ml.exceptions.ModelException: Raised if OnlineDeployment model + :raises ~azure.ai.ml.exceptions.ModelException: Raised if BatchDeployment model cannot be successfully validated. Details will be provided in the error message. :return: A poller to track the operation status. :rtype: ~azure.core.polling.LROPoller[~azure.ai.ml.entities.BatchDeployment] @@ -213,7 +213,7 @@ def list_jobs(self, endpoint_name: str, *, name: str = None) -> ItemPaged[BatchJ :type name: str :raise: Exception if endpoint_type is not BATCH_ENDPOINT_TYPE :return: List of jobs - :rtype: ItemPaged[BatchJob] + :rtype: ~azure.core.paging.ItemPaged[BatchJob] """ workspace_operations = self._all_operations.all_operations[AzureMLResourceType.WORKSPACE]