publishing_users
Creates, updates, deletes, gets or lists a publishing_users resource.
Overview
| Name | publishing_users |
| Type | Resource |
| Id | azure.web.publishing_users |
Fields
The following fields are returned by SELECT queries:
- get_publishing_user
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
kind | string | Kind of resource. |
publishingPassword | string | Password used for publishing. |
publishingPasswordHash | string | Password hash used for publishing. |
publishingPasswordHashSalt | string | Password hash salt used for publishing. |
publishingUserName | string | Username used for publishing. Required. |
scmUri | string | Url of SCM site. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_publishing_user | select | Gets publishing user. Description for Gets publishing user. | ||
update_publishing_user | update | Updates 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.
| Name | Datatype | Description |
|---|
SELECT examples
- get_publishing_user
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
- update_publishing_user
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;