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

NameDatatypeDescription
descriptiontextfield from the properties object
auth_modetextfield from the properties object
defaultstextfield 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
propertiestextBatch endpoint configuration.
provisioning_statetextfield 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.
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

SELECT examples

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

INSERT example

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

/*+ create */
INSERT INTO azure.ml_services.batch_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 batch_endpoints resource.

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

DELETE example

Deletes the specified batch_endpoints resource.

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