Skip to main content

endpoints

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

Overview

Nameendpoints
TypeResource
Idazure.ml_services.endpoints

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobject
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, endpointName
listselectsubscriptionId, resourceGroupName, workspaceNameendpointType, includeInferenceEndpoints, $skip, $expand
create_or_updateinsertsubscriptionId, resourceGroupName, workspaceName, endpointName, data__properties
regenerate_keysexecsubscriptionId, resourceGroupName, workspaceName, endpointName

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
endpointNamestringName of the endpoint resource.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringAzure Machine Learning Workspace Name
$expandstringWhether the endpoint resource will be expand to include deployment information, e.g. $expand=deployments
$skipstringContinuation token for pagination.
endpointTypestringEndpoint type filter
includeInferenceEndpointsboolean

SELECT examples

The request was successful; the request was well-formed and received properly.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.ml_services.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.endpoints (
data__properties,
subscriptionId,
resourceGroupName,
workspaceName,
endpointName
)
SELECT
'{{ properties }}' /* required */,
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ workspaceName }}',
'{{ endpointName }}'
RETURNING
id,
name,
properties,
systemData,
type
;

Lifecycle Methods

The request was successful; the request was well-formed and received properly.

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