다음을 통해 공유


Event Grid 원본으로서의 Azure Storage Actions

이 문서에서는 Azure Storage Actions 이벤트에 대한 속성과 스키마를 제공합니다. 이벤트 스키마에 대한 소개는 Azure Event Grid 이벤트 스키마를 참조하세요. Azure Storage Actions에 대한 자세한 내용은 Azure Storage Actions란?을 참조하세요.

Important

Azure Storage Actions는 현재 미리 보기 버전이며 다음 지역에서 사용할 수 있습니다. 베타, 미리 보기로 제공되거나 아직 일반 공급으로 릴리스되지 않은 Azure 기능에 적용되는 약관은 Microsoft Azure 미리 보기에 대한 추가 사용 약관을 참조하세요.

사용할 수 있는 이벤트 유형

Storage Actions 이벤트

이러한 이벤트는 스토리지 작업이 큐에 대기되고 스토리지 작업 실행이 완료될 때 트리거됩니다.

이벤트 이름 설명
Microsoft.StorageActions.StorageTaskQueued 스토리지 작업 할당 실행이 큐에 대기될 때 트리거됩니다. 이 이벤트는 할당이 큐에 대기 중인 경우와 같은 할당 실행 상태와 추적 용도에 해당하는 실행 ID를 제공합니다.
Microsoft.StorageActions.StorageTaskCompleted 스토리지 작업 할당 실행이 완료될 때 트리거됩니다. 이 이벤트는 할당이 완료된 경우, 할당 상태, 배정과 연결된 작업, 요약 보고서 파일에 대한 링크와 같은 할당 실행 상태를 제공합니다.

예제 이벤트

Microsoft.StorageActions.StorageTaskQueued 이벤트

[{
  "source": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/BlobInventory/providers/Microsoft.StorageActions/storageAccounts/my-storage-account",
  "subject": "DataManagement/StorageTasks",
  "type": "Microsoft.StorageActions.StorageTaskQueued",
  "time": "2023-08-07T21:35:23Z",
  "id": "8eb4656c-5c4a-4541-91e0-685558acbb1d",
  "data": {
    "queuedDateTime":"2023-08-07T21:35:23Z",
    "taskExecutionId":"testdelete-2023-08-07T21:35:16.9494934Z_2023-08-07T21:35:17.5432186Z"
  },
  "specversion": "1.0"
}]

Microsoft.StorageActions.StorageTaskCompleted 이벤트

[{
  "source": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/BlobInventory/providers/Microsoft.StorageActions/storageAccounts/my-storage-account",
  "subject": "DataManagement/StorageTasks",
  "type": "Microsoft.StorageActions.StorageTaskCompleted",
  "time": "2023-08-07T21:35:34Z",
  "id": "dee33d3b-0b39-42f2-b2be-76f2fb94b852",
  "data": {
    "status":"Succeeded",
    "completedDateTime":"2023-08-07T21:35:34Z",
    "taskExecutionId":"testdelete-2023-08-07T21:35:16.9494934Z_2023-08-07T21:35:17.5432186Z",
    "taskName":"deleteallcentraleu",
    "summaryReportBlobUrl":"https://my-storage-account.blob.core.windows.net/result-container/deleteallcentraleu_testdelete_2023-08-07T21:35:23/SummaryReport.json"
  },
  "specversion": "1.0"
}]

이벤트 속성

이벤트에는 다음과 같은 최상위 데이터가 있습니다.

속성 Type Description
source string 이벤트 원본에 대한 전체 리소스 경로입니다. 이 필드는 쓸 수 없습니다. Event Grid는 이 값을 제공합니다.
subject string 게시자가 정의한 이벤트 주체의 경로입니다.
type string 이 이벤트 원본에 대해 등록된 이벤트 유형 중 하나입니다.
id string 이벤트에 대한 고유 식별자입니다.
data 개체 스토리지 작업 이벤트 데이터입니다.
specversion string CloudEvents 스키마 사양 버전입니다.

데이터 개체의 속성은 다음과 같습니다.

속성 Type Description
queuedDateTime string 스토리지 작업 할당이 대기 중인 시간입니다.
status string 스토리지 작업 할당 완료 상태(Succeeded 또는 Failed)
completedDateTime string 스토리지 작업 할당이 완료된 시간입니다.
taskExecutionId string 스토리지 작업 할당과 연결된 고유 ID입니다.
taskName string 스토리지 작업 할당과 연결된 스토리지 작업입니다.
summaryReportBlobUrl string 스토리지 작업 할당 요약 보고서 파일에 대한 링크입니다.

다음 단계