Endpoint Class
Endpoint base class.
Endpoint base class.
Constructor for Endpoint base class.
- Inheritance
-
azure.ai.ml.entities._resource.ResourceEndpoint
Constructor
Endpoint(auth_mode: str | None = None, location: str | None = None, name: str | None = None, tags: Dict[str, str] | None = None, properties: Dict[str, Any] | None = None, description: str | None = None, **kwargs: Any)
Parameters
Name | Description |
---|---|
auth_mode
|
The authentication mode, defaults to None Default value: None
|
location
|
The location of the endpoint, defaults to None Default value: None
|
name
|
Name of the resource. Default value: None
|
tags
|
Tag dictionary. Tags can be added, removed, and updated. Default value: None
|
properties
|
The asset property dictionary. Default value: None
|
description
|
Description of the resource. Default value: None
|
auth_mode
Required
|
The authentication mode, defaults to None |
location
Required
|
The location of the endpoint, defaults to None |
name
Required
|
Name of the resource. |
tags
Required
|
Tag dictionary. Tags can be added, removed, and updated. |
properties
Required
|
The asset property dictionary. |
description
Required
|
Description of the resource. |
Keyword-Only Parameters
Name | Description |
---|---|
traffic
|
Traffic rules on how the traffic will be routed across deployments, defaults to {} |
scoring_uri
|
str, Endpoint URI, readonly |
openapi_uri
|
str, Endpoint Open API URI, readonly |
provisioning_state
|
str, provisioning state, readonly |
traffic
|
Traffic rules on how the traffic will be routed across deployments, defaults to {} |
scoring_uri
|
str, Endpoint URI, readonly |
openapi_uri
|
str, Endpoint Open API URI, readonly |
provisioning_state
|
str, provisioning state, readonly |
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