Skip to main content

online_deployments_logs

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

Overview

Nameonline_deployments_logs
TypeResource
Idazure.ml_services.online_deployments_logs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contentstringThe retrieved online deployment logs.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, workspaceName, endpointName, deploymentName

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
deploymentNamestringThe name and identifier for the endpoint.
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

SELECT examples

Success

SELECT
content
FROM azure.ml_services.online_deployments_logs
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND endpointName = '{{ endpointName }}' -- required
AND deploymentName = '{{ deploymentName }}' -- required
;