consumer_invitations
Creates, updates, deletes, gets or lists a consumer_invitations
resource.
Overview
Name | consumer_invitations |
Type | Resource |
Id | azure.data_share.consumer_invitations |
Fields
- vw_consumer_invitations
- consumer_invitations
Name | Datatype | Description |
---|---|---|
id | text | The resource id of the azure resource |
name | text | Name of the azure resource |
description | text | field from the properties object |
data_set_count | text | field from the properties object |
expiration_date | text | field from the properties object |
invitationId | text | field from the properties object |
invitation_id | text | field from the properties object |
invitation_status | text | field from the properties object |
location | text | field from the properties object |
provider_email | text | field from the properties object |
provider_name | text | field from the properties object |
provider_tenant_name | text | field from the properties object |
responded_at | text | field from the properties object |
sent_at | text | field from the properties object |
share_name | text | field from the properties object |
system_data | text | field from the properties object |
terms_of_use | text | field from the properties object |
type | text | Type of the azure resource |
user_email | text | field from the properties object |
user_name | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The resource id of the azure resource |
name | string | Name of the azure resource |
properties | object | Properties of consumer invitation |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | Type of the azure resource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | invitationId, location | Get an invitation |
list_invitations | SELECT |
| Lists invitations |
reject_invitation | EXEC | location, data__properties | Reject an invitation |
SELECT
examples
Lists invitations
- vw_consumer_invitations
- consumer_invitations
SELECT
id,
name,
description,
data_set_count,
expiration_date,
invitationId,
invitation_id,
invitation_status,
location,
provider_email,
provider_name,
provider_tenant_name,
responded_at,
sent_at,
share_name,
system_data,
terms_of_use,
type,
user_email,
user_name
FROM azure.data_share.vw_consumer_invitations
;
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_share.consumer_invitations
;