OnlineEndpoint Class
Online endpoint entity.
Online endpoint entity.
Constructor for an Online endpoint entity.
- Inheritance
-
azure.ai.ml.entities._endpoint.endpoint.EndpointOnlineEndpoint
Constructor
OnlineEndpoint(*, 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, scoring_uri: str | None = None, openapi_uri: str | None = None, provisioning_state: str | None = None, kind: str | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
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 Default value: 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 |
scoring_uri
|
Scoring URI, defaults to None |
openapi_uri
|
OpenAPI URI, defaults to None |
provisioning_state
|
Provisioning state of an endpoint, defaults to None |
kind
|
Kind of the resource, we have two kinds: K8s and Managed online endpoints, defaults to None |
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 |
scoring_uri
|
Scoring URI, defaults to None |
openapi_uri
|
OpenAPI URI, defaults to None |
provisioning_state
|
Provisioning state of an endpoint, defaults to None |
kind
|
Kind of the resource, we have two kinds: K8s and Managed online endpoints, defaults to None |
Methods
dump |
dump
abstract dump(dest: str | PathLike | IO | None = None, **kwargs: Any) -> Dict
Parameters
Name | Description |
---|---|
dest
|
Default value: None
|
Attributes
base_path
creation_context
The creation context of the resource.
Returns
Type | Description |
---|---|
The creation metadata for the resource. |
id
The resource ID.
Returns
Type | Description |
---|---|
The global ID of the resource, an Azure Resource Manager (ARM) ID. |
openapi_uri
URI to check the open api definition of the endpoint.
Returns
Type | Description |
---|---|
The open API URI |
provisioning_state
Endpoint provisioning state, readonly.
Returns
Type | Description |
---|---|
Endpoint provisioning state. |
scoring_uri
Azure SDK for Python