Skip to main content

batch_endpoints

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

Overview

Namebatch_endpoints
TypeResource
Idazure.ml_services.batch_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: BatchEndpointProperties)
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, workspaceNamecount, $skip
create_or_updateinsertsubscriptionId, resourceGroupName, workspaceName, endpointName, data__location, data__properties
updateupdatesubscriptionId, resourceGroupName, workspaceName, endpointName
deletedeletesubscriptionId, 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
endpointNamestringInference 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.
countinteger (int32)Number of endpoints to be retrieved in a page of results.

SELECT examples

Success

SELECT
identity,
kind,
location,
properties,
sku,
tags
FROM azure.ml_services.batch_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.batch_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.batch_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.batch_endpoints
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND workspaceName = '{{ workspaceName }}' --required
AND endpointName = '{{ endpointName }}' --required
;