rai_external_safety_providers
Creates, updates, deletes, gets or lists a rai_external_safety_providers resource.
Overview
| Name | rai_external_safety_providers |
| Type | Resource |
| Id | azure.cognitive_services.rai_external_safety_providers |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
createdAt | string (date-time) | Creation time of the safety provider. |
etag | string | Resource Etag. |
keyVaultUri | string | The Key Vault URI that contains the api key for safety provider urls. |
lastModifiedAt | string (date-time) | Last modified time of the safety provider. |
managedIdentity | string | The managed identity to access the Key Vault. |
mode | string | Safety provider mode sync/async. |
providerId | string | The unique identifier of the safety provider. |
providerName | string | Name of the safety provider. |
secretName | string | The name of the secret in Key Vault that contains the api key to access the webhook. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
url | string | Webhook URL for the safety provider. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscription_id | Gets 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.
| Name | Datatype | Description |
|---|---|---|
subscription_id | string |
SELECT examples
- list
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
;