Skip to main content

rai_external_safety_providers

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

Overview

Namerai_external_safety_providers
TypeResource
Idazure.cognitive_services.rai_external_safety_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
createdAtstring (date-time)Creation time of the safety provider.
etagstringResource Etag.
keyVaultUristringThe Key Vault URI that contains the api key for safety provider urls.
lastModifiedAtstring (date-time)Last modified time of the safety provider.
managedIdentitystringThe managed identity to access the Key Vault.
modestringSafety provider mode sync/async.
providerIdstringThe unique identifier of the safety provider.
providerNamestringName of the safety provider.
secretNamestringThe name of the secret in Key Vault that contains the api key to access the webhook.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".
urlstringWebhook URL for the safety provider.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idGets the safety providers associated with the subscription.

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
subscription_idstring

SELECT examples

Gets the safety providers associated with the subscription.

SELECT
id,
name,
createdAt,
etag,
keyVaultUri,
lastModifiedAt,
managedIdentity,
mode,
providerId,
providerName,
secretName,
systemData,
tags,
type,
url
FROM azure.cognitive_services.rai_external_safety_providers
WHERE subscription_id = '{{ subscription_id }}' -- required
;