Skip to main content

application_settings

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

Overview

Nameapplication_settings
TypeResource
Idazure.app_service.application_settings

Fields

NameDatatypeDescription
idstringResource Id.
namestringResource Name.
kindstringKind of resource.
propertiesobjectSettings.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, resourceGroupName, subscriptionIdDescription for Gets the application settings of an app.
updateREPLACEname, resourceGroupName, subscriptionIdDescription for Replaces the application settings of an app.

SELECT examples

Description for Gets the application settings of an app.

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

REPLACE example

Replaces all fields in the specified application_settings resource.

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