Skip to main content

backup_status_secrets

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

Overview

Namebackup_status_secrets
TypeResource
Idazure.app_service.backup_status_secrets

Fields

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectBackupItem resource specific properties
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTbackupId, name, resourceGroupName, subscriptionIdDescription 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
WHERE backupId = '{{ backupId }}'
AND name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';