Skip to main content

online_endpoints

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

Overview

Nameonline_endpoints
TypeResource
Idazure.ml_services.online_endpoints

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
auth_modetextfield from the properties object
computetextfield from the properties object
endpointNametextfield from the properties object
identitytextManaged service identity (system assigned and/or user assigned identities)
keystextfield from the properties object
kindtextMetadata used by portal/tooling/etc to render different UX experiences for resources of the same type.
locationtextThe geo-location where the resource lives
mirror_traffictextfield from the properties object
propertiestextOnline endpoint configuration
provisioning_statetextfield from the properties object
public_network_accesstextfield from the properties object
resourceGroupNametextfield from the properties object
scoring_uritextfield from the properties object
skutextThe resource model definition representing SKU
subscriptionIdtextfield from the properties object
swagger_uritextfield from the properties object
tagstextResource tags.
traffictextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTendpointName, resourceGroupName, subscriptionId, workspaceName
listSELECTresourceGroupName, subscriptionId, workspaceName
create_or_updateINSERTendpointName, resourceGroupName, subscriptionId, workspaceName, data__location, data__properties
deleteDELETEendpointName, resourceGroupName, subscriptionId, workspaceName
updateUPDATEendpointName, resourceGroupName, subscriptionId, workspaceName
regenerate_keysEXECendpointName, resourceGroupName, subscriptionId, workspaceName, data__keyType

SELECT examples

SELECT
description,
auth_mode,
compute,
endpointName,
identity,
keys,
kind,
location,
mirror_traffic,
properties,
provisioning_state,
public_network_access,
resourceGroupName,
scoring_uri,
sku,
subscriptionId,
swagger_uri,
tags,
traffic,
workspaceName
FROM azure.ml_services.vw_online_endpoints
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

INSERT example

Use the following StackQL query and manifest file to create a new online_endpoints resource.

/*+ create */
INSERT INTO azure.ml_services.online_endpoints (
endpointName,
resourceGroupName,
subscriptionId,
workspaceName,
data__location,
data__properties,
tags,
location,
identity,
kind,
properties,
sku
)
SELECT
'{{ endpointName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ data__location }}',
'{{ data__properties }}',
'{{ tags }}',
'{{ location }}',
'{{ identity }}',
'{{ kind }}',
'{{ properties }}',
'{{ sku }}'
;

UPDATE example

Updates a online_endpoints resource.

/*+ update */
UPDATE azure.ml_services.online_endpoints
SET
tags = '{{ tags }}',
identity = '{{ identity }}'
WHERE
endpointName = '{{ endpointName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';

DELETE example

Deletes the specified online_endpoints resource.

/*+ delete */
DELETE FROM azure.ml_services.online_endpoints
WHERE endpointName = '{{ endpointName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';