events
Creates, updates, deletes, gets or lists an events
resource.
Overview
Name | events |
Type | Resource |
Id | azure.data_replication.events |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Returns Event Model on success.
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the Id of the resource. |
name | string | Gets or sets the name of the resource. |
properties | object | Event model properties. |
systemData | object | System data required to be defined for Azure resources. |
type | string | Gets or sets the type of the resource. |
Returns Event Model Collection on success.
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the Id of the resource. |
name | string | Gets or sets the name of the resource. |
properties | object | Event model properties. |
systemData | object | System data required to be defined for Azure resources. |
type | string | Gets or sets the type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , vaultName , eventName | Gets the details of the event. | |
list | select | subscriptionId , resourceGroupName , vaultName | $filter , continuationToken | Gets the list of events in the given vault. |
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 |
---|---|---|
eventName | string | The event name. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
vaultName | string | The vault name. |
$filter | string | Filter string. |
continuationToken | string | Continuation token. |
SELECT
examples
- get
- list
Gets the details of the event.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.events
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND eventName = '{{ eventName }}' -- required
;
Gets the list of events in the given vault.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_replication.events
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND $filter = '{{ $filter }}'
AND continuationToken = '{{ continuationToken }}'
;