publishing_credentials_slots
Creates, updates, deletes, gets or lists a publishing_credentials_slots
resource.
Overview
Name | publishing_credentials_slots |
Type | Resource |
Id | azure.app_service.publishing_credentials_slots |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id. |
name | string | Resource Name. |
kind | string | Kind of resource. |
properties | object | User resource specific properties |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | name, resourceGroupName, slot, subscriptionId | Description 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_slots
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND slot = '{{ slot }}'
AND subscriptionId = '{{ subscriptionId }}';