Skip to main content

ftp_allowed

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

Overview

Nameftp_allowed
TypeResource
Idazure.app_service.ftp_allowed

Fields

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

Methods

NameAccessible byRequired ParamsDescription
getSELECTname, resourceGroupName, subscriptionIdDescription for Returns whether FTP is allowed on the site or not.
updateREPLACEname, resourceGroupName, subscriptionIdDescription for Updates whether FTP is allowed on the site or not.

SELECT examples

Description for Returns whether FTP is allowed on the site or not.

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

REPLACE example

Replaces all fields in the specified ftp_allowed resource.

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