Skip to main content

configuration_snapshot_info_slots

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

Overview

Nameconfiguration_snapshot_info_slots
TypeResource
Idazure.app_service.configuration_snapshot_info_slots

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, resourceGroupName, slot, 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_slots
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND slot = '{{ slot }}'
AND subscriptionId = '{{ subscriptionId }}';