Skip to main content

images_upload_url_for_data

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

Overview

Nameimages_upload_url_for_data
TypeResource
Idazure_extras.customer_insights.images_upload_url_for_data

Fields

The following fields are returned by SELECT queries:

OK. Successfully get the image upload URL for data.

NameDatatypeDescription
contentUrlstringContent URL for the image blob.
imageExistsbooleanWhether image exists already.
relativePathstringRelative path of the image.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, hubName, subscriptionIdGets data image upload URL.

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
hubNamestringThe name of the hub.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets data image upload URL.

SELECT
contentUrl,
imageExists,
relativePath
FROM azure_extras.customer_insights.images_upload_url_for_data
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND hubName = '{{ hubName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;