Skip to main content

publishing_credentials

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

Overview

Namepublishing_credentials
TypeResource
Idazure.app_service.publishing_credentials

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTname, resourceGroupName, subscriptionIdDescription for Gets the Git/FTP publishing credentials of an app.

SELECT examples

Description for Gets the Git/FTP publishing credentials of an app.

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