Skip to main content

slot_configuration_names

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

Overview

Nameslot_configuration_names
TypeResource
Idazure.app_service.slot_configuration_names

Fields

NameDatatypeDescription
idtextResource Id.
nametextResource Name.
app_setting_namestextfield from the properties object
azure_storage_config_namestextfield from the properties object
connection_string_namestextfield from the properties object
kindtextKind of resource.
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, resourceGroupName, subscriptionIdDescription for Gets the names of app settings and connection strings that stick to the slot (not swapped).
updateREPLACEname, resourceGroupName, subscriptionIdDescription for Updates the names of application settings and connection string that remain with the slot during swap operation.

SELECT examples

Description for Gets the names of app settings and connection strings that stick to the slot (not swapped).

SELECT
id,
name,
app_setting_names,
azure_storage_config_names,
connection_string_names,
kind,
resourceGroupName,
subscriptionId,
type
FROM azure.app_service.vw_slot_configuration_names
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

REPLACE example

Replaces all fields in the specified slot_configuration_names resource.

/*+ update */
REPLACE azure.app_service.slot_configuration_names
SET
kind = '{{ kind }}',
properties = '{{ properties }}'
WHERE
name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';