Skip to content

Fix online deployment and batch deployment documentation #27086

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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__(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down