Skip to main content

configuration_snapshot_info

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

Overview

Nameconfiguration_snapshot_info
TypeResource
Idazure.app_service.configuration_snapshot_info

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, resourceGroupName, subscriptionIdDescription for Gets a list of web app configuration snapshots identifiers. Each element of the list contains a timestamp and the ID of the snapshot.

SELECT examples

Description for Gets a list of web app configuration snapshots identifiers. Each element of the list contains a timestamp and the ID of the snapshot.

SELECT
id,
name,
kind,
properties,
type
FROM azure.app_service.configuration_snapshot_info
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';