images_upload_url_for_data
Creates, updates, deletes, gets or lists an images_upload_url_for_data
resource.
Overview
Name | images_upload_url_for_data |
Type | Resource |
Id | azure_extras.customer_insights.images_upload_url_for_data |
Fields
The following fields are returned by SELECT
queries:
- get
OK. Successfully get the image upload URL for data.
Name | Datatype | Description |
---|---|---|
contentUrl | string | Content URL for the image blob. |
imageExists | boolean | Whether image exists already. |
relativePath | string | Relative path of the image. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , hubName , subscriptionId | Gets 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.
Name | Datatype | Description |
---|---|---|
hubName | string | The name of the hub. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
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
;