Skip to main content

events_events

Creates, updates, deletes, gets or lists a events_events resource.

Overview

Nameevents_events
TypeResource
Idazure.migrate_projects.events_events

Fields

NameDatatypeDescription
idtextGets or sets the relative URL to get to this REST resource.
nametextGets or sets the name of this REST resource.
client_request_idtextfield from the properties object
error_codetextfield from the properties object
error_messagetextfield from the properties object
eventNametextfield from the properties object
instance_typetextfield from the properties object
migrateProjectNametextfield from the properties object
possible_causestextfield from the properties object
recommendationtextfield from the properties object
resourceGroupNametextfield from the properties object
solutiontextfield from the properties object
subscriptionIdtextfield from the properties object
typetextGets the type of this REST resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTeventName, migrateProjectName, resourceGroupName, subscriptionId
deleteDELETEeventName, migrateProjectName, resourceGroupName, subscriptionIdDelete the migrate event. Deleting non-existent migrate event is a no-operation.

SELECT examples

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 }}';

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 }}';