Skip to main content

email_events

Creates, updates, deletes, gets or lists an email_events resource.

Overview

Nameemail_events
TypeResource
Idazure_extras.test_base.email_events

Fields

The following fields are returned by SELECT queries:

The operation is completed.

NameDatatypeDescription
propertiesobjectEmail Event properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, testBaseAccountName, emailEventResourceNameGets a email event of a Test Base Account.
listselectsubscriptionId, resourceGroupName, testBaseAccountNameLists all the email events of a Test Base Account.

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
emailEventResourceNamestringThe resource name of an email event.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
testBaseAccountNamestringThe resource name of the Test Base Account.

SELECT examples

Gets a email event of a Test Base Account.

SELECT
properties
FROM azure_extras.test_base.email_events
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND testBaseAccountName = '{{ testBaseAccountName }}' -- required
AND emailEventResourceName = '{{ emailEventResourceName }}' -- required
;