OperationState type
OperationState에 대한 값을 정의합니다. 가능한 값으로는 'Invalid', 'Running', 'RollingBack', 'Completed', 'Faulted', 'Cancelled', 'ForceCancelled' 등이 있습니다.
type OperationState =
| "Invalid"
| "Running"
| "RollingBack"
| "Completed"
| "Faulted"
| "Cancelled"
| "ForceCancelled"