email_registrations
Creates, updates, deletes, gets or lists an email_registrations
resource.
Overview
Name | email_registrations |
Type | Resource |
Id | azure.data_share.email_registrations |
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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
activate_email | exec | location | api-version | Activate the email registration for the current tenant |
register_email | exec | location | api-version | Register an email for the current tenant |
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 |
---|---|---|
location | string | Location of the registration |
api-version | string | The api version to use. |
Lifecycle Methods
- activate_email
- register_email
Activate the email registration for the current tenant
EXEC azure.data_share.email_registrations.activate_email
@location='{{ location }}' --required,
@api-version='{{ api-version }}'
@@json=
'{
"activationCode": "{{ activationCode }}"
}'
;
Register an email for the current tenant
EXEC azure.data_share.email_registrations.register_email
@location='{{ location }}' --required,
@api-version='{{ api-version }}'
;