ManagedOnlineEndpoint Class

Managed Online endpoint entity.

Inheritance
azure.ai.ml.entities._endpoint.online_endpoint.OnlineEndpoint
ManagedOnlineEndpoint

Constructor

ManagedOnlineEndpoint(*, name: str | None = None, tags: Dict[str, Any] | None = None, properties: Dict[str, Any] | None = None, auth_mode: str = 'key', description: str | None = None, location: str | None = None, traffic: Dict[str, int] | None = None, mirror_traffic: Dict[str, int] | None = None, identity: IdentityConfiguration | None = None, kind: str | None = None, public_network_access: str | None = None, **kwargs)

Parameters

name

Name of the resource, defaults to None

tags

Tag dictionary. Tags can be added, removed, and updated, defaults to None

properties

The asset property dictionary, defaults to None

auth_mode

Possible values include: "aml_token", "key", defaults to KEY

description

Description of the inference endpoint, defaults to None

location

Location of the resource, defaults to None

traffic

Traffic rules on how the traffic will be routed across deployments, defaults to None

mirror_traffic

Duplicated live traffic used to inference a single deployment, defaults to None

identity

Identity Configuration, defaults to SystemAssigned

kind

Kind of the resource, we have two kinds: K8s and Managed online endpoints, defaults to None.

public_network_access

Whether to allow public endpoint connectivity, defaults to None Allowed values are: "enabled", "disabled"

Methods

dump

Dump the object content into a file.

dump

Dump the object content into a file.

dump(dest: str | PathLike | IO | None = None, **kwargs) -> Dict[str, Any]

Parameters

dest
Union[str, PathLike, IO[AnyStr]]
default value: None

The destination to receive this object's data. Must be either a path to a local file, or an already-open file stream. If dest is a file path, a new file will be created, and an exception is raised if the file exists. If dest is an open file, the file will be written to directly, and an exception will be raised if the file is not writable.