events_events
Creates, updates, deletes, gets or lists a events_events
resource.
Overview
Name | events_events |
Type | Resource |
Id | azure.migrate_projects.events_events |
Fields
- vw_events_events
- events_events
Name | Datatype | Description |
---|---|---|
id | text | Gets or sets the relative URL to get to this REST resource. |
name | text | Gets or sets the name of this REST resource. |
client_request_id | text | field from the properties object |
error_code | text | field from the properties object |
error_message | text | field from the properties object |
eventName | text | field from the properties object |
instance_type | text | field from the properties object |
migrateProjectName | text | field from the properties object |
possible_causes | text | field from the properties object |
recommendation | text | field from the properties object |
resourceGroupName | text | field from the properties object |
solution | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Gets the type of this REST resource. |
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the relative URL to get to this REST resource. |
name | string | Gets or sets the name of this REST resource. |
properties | object | Properties of the error resource. |
type | string | Gets the type of this REST resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | eventName, migrateProjectName, resourceGroupName, subscriptionId | |
delete | DELETE | eventName, migrateProjectName, resourceGroupName, subscriptionId | Delete the migrate event. Deleting non-existent migrate event is a no-operation. |
SELECT
examples
- vw_events_events
- events_events
SELECT
id,
name,
client_request_id,
error_code,
error_message,
eventName,
instance_type,
migrateProjectName,
possible_causes,
recommendation,
resourceGroupName,
solution,
subscriptionId,
type
FROM azure.migrate_projects.vw_events_events
WHERE eventName = '{{ eventName }}'
AND migrateProjectName = '{{ migrateProjectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.migrate_projects.events_events
WHERE eventName = '{{ eventName }}'
AND migrateProjectName = '{{ migrateProjectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified events_events
resource.
/*+ delete */
DELETE FROM azure.migrate_projects.events_events
WHERE eventName = '{{ eventName }}'
AND migrateProjectName = '{{ migrateProjectName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';