Skip to main content

online_endpoints

Creates, updates, deletes, gets or lists an online_endpoints resource.

Overview

Nameonline_endpoints
TypeResource
Idazure.ml_services.online_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
identityobjectManaged service identity (system assigned and/or user assigned identities)
kindstringMetadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
locationstringThe geo-location where the resource lives
propertiesobject[Required] Additional attributes of the entity. (x-ms-client-name: OnlineEndpointProperties)
skuobjectThe resource model definition representing SKU
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, endpointName
listselectsubscriptionId, resourceGroupName, workspaceNamename, count, computeType, $skip, tags, properties, orderBy
create_or_updateinsertsubscriptionId, resourceGroupName, workspaceName, endpointName, data__location, data__properties
updateupdatesubscriptionId, resourceGroupName, workspaceName, endpointName
deletedeletesubscriptionId, resourceGroupName, workspaceName, endpointName
regenerate_keysexecsubscriptionId, resourceGroupName, workspaceName, endpointName, keyType

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
endpointNamestringOnline Endpoint name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringAzure Machine Learning Workspace Name
$skipstringContinuation token for pagination.
computeTypestringEndpointComputeType to be filtered by.
countinteger (int32)Number of endpoints to be retrieved in a page of results.
namestringName of the endpoint.
orderBystringThe option to order the response.
propertiesstringA set of properties with which to filter the returned models. It is a comma separated string of properties key and/or properties key=value Example: propKey1,propKey2,propKey3=value3 .
tagsstringA set of tags with which to filter the returned models. It is a comma separated string of tags key or tags key=value. Example: tagKey1,tagKey2,tagKey3=value3 .

SELECT examples

Success

SELECT
identity,
kind,
location,
properties,
sku,
tags
FROM azure.ml_services.online_endpoints
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND endpointName = '{{ endpointName }}' -- required
;

INSERT examples

No description available.

INSERT INTO azure.ml_services.online_endpoints (
data__tags,
data__location,
data__identity,
data__kind,
data__properties,
data__sku,
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ identity }}',
'{{ kind }}',
'{{ properties }}' /* required */,
'{{ sku }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ workspaceName }}',
'{{ endpointName }}'
RETURNING
identity,
kind,
location,
properties,
sku,
tags
;

UPDATE examples

No description available.

UPDATE azure.ml_services.online_endpoints
SET
data__tags = '{{ tags }}',
data__identity = '{{ identity }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
AND endpointName = '{{ endpointName }}' --required
RETURNING
identity,
kind,
location,
properties,
sku,
tags;

DELETE examples

No description available.

DELETE FROM azure.ml_services.online_endpoints
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
AND endpointName = '{{ endpointName }}' --required
;

Lifecycle Methods

Success

EXEC azure.ml_services.online_endpoints.regenerate_keys 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@workspaceName='{{ workspaceName }}' --required,
@endpointName='{{ endpointName }}' --required
@@json=
'{
"keyType": "{{ keyType }}",
"keyValue": "{{ keyValue }}"
}'
;