backup_status_secrets_slots
Creates, updates, deletes, gets or lists a backup_status_secrets_slots
resource.
Overview
Name | backup_status_secrets_slots |
Type | Resource |
Id | azure.app_service.backup_status_secrets_slots |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | BackupItem resource specific properties |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | backupId, name, resourceGroupName, slot, subscriptionId | Description for Gets status of a web app backup that may be in progress, including secrets associated with the backup, such as the Azure Storage SAS URL. Also can be used to update the SAS URL for the backup if a new URL is passed in the request body. |
SELECT
examples
Description for Gets status of a web app backup that may be in progress, including secrets associated with the backup, such as the Azure Storage SAS URL. Also can be used to update the SAS URL for the backup if a new URL is passed in the request body.
SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.backup_status_secrets_slots
WHERE backupId = '{{ backupId }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND slot = '{{ slot }}'
AND subscriptionId = '{{ subscriptionId }}';