Skip to main content

user_roles_invitation_links

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

Overview

Nameuser_roles_invitation_links
TypeResource
Idazure.app_service.user_roles_invitation_links

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertresourceGroupName, name, subscriptionIdDescription for Creates an invitation link for a user with the role

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
namestringName of the static site.
resourceGroupNamestringName of the resource group to which the resource belongs.
subscriptionIdstringYour Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

INSERT examples

Description for Creates an invitation link for a user with the role

INSERT INTO azure.app_service.user_roles_invitation_links (
data__kind,
data__properties,
resourceGroupName,
name,
subscriptionId
)
SELECT
'{{ kind }}',
'{{ properties }}',
'{{ resourceGroupName }}',
'{{ name }}',
'{{ subscriptionId }}'
RETURNING
id,
name,
kind,
properties,
type
;