Skip to main content

slot_differences_from_productions

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

Overview

Nameslot_differences_from_productions
TypeResource
Idazure.app_service.slot_differences_from_productions

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, resourceGroupName, subscriptionId, data__preserveVnet, data__targetSlotDescription for Get the difference in configuration settings between two web app slots.

SELECT examples

Description for Get the difference in configuration settings between two web app slots.

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