Skip to main content

publishing_users

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

Overview

Namepublishing_users
TypeResource
Idazure.web.publishing_users

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
kindstringKind of resource.
publishingPasswordstringPassword used for publishing.
publishingPasswordHashstringPassword hash used for publishing.
publishingPasswordHashSaltstringPassword hash salt used for publishing.
publishingUserNamestringUsername used for publishing. Required.
scmUristringUrl of SCM site.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_publishing_userselectGets publishing user. Description for Gets publishing user.
update_publishing_userupdateUpdates publishing user. Description for Updates publishing user.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

SELECT examples

Gets publishing user. Description for Gets publishing user.

SELECT
id,
name,
kind,
publishingPassword,
publishingPasswordHash,
publishingPasswordHashSalt,
publishingUserName,
scmUri,
systemData,
type
FROM azure.web.publishing_users
;

UPDATE examples

Updates publishing user. Description for Updates publishing user.

UPDATE azure.web.publishing_users
SET
properties = '{{ properties }}',
kind = '{{ kind }}'
RETURNING
id,
name,
kind,
properties,
systemData,
type;