77
88__all__ = [
99 "BulkOperationGetResponse" ,
10- "ListsPendingOrRunningBulkOperation " ,
11- "ListsCompletedBulkOperation " ,
12- "ListsFailedBulkOperation " ,
10+ "ListsBulkOperationPendingOrRunning " ,
11+ "ListsBulkOperationCompleted " ,
12+ "ListsBulkOperationFailed " ,
1313]
1414
1515
16- class ListsPendingOrRunningBulkOperation (BaseModel ):
16+ class ListsBulkOperationPendingOrRunning (BaseModel ):
1717 id : str
1818 """The unique operation ID of the asynchronous action."""
1919
2020 status : Literal ["pending" , "running" ]
2121 """The current status of the asynchronous operation."""
2222
2323
24- class ListsCompletedBulkOperation (BaseModel ):
24+ class ListsBulkOperationCompleted (BaseModel ):
2525 id : str
2626 """The unique operation ID of the asynchronous action."""
2727
@@ -32,7 +32,7 @@ class ListsCompletedBulkOperation(BaseModel):
3232 """The current status of the asynchronous operation."""
3333
3434
35- class ListsFailedBulkOperation (BaseModel ):
35+ class ListsBulkOperationFailed (BaseModel ):
3636 id : str
3737 """The unique operation ID of the asynchronous action."""
3838
@@ -47,5 +47,5 @@ class ListsFailedBulkOperation(BaseModel):
4747
4848
4949BulkOperationGetResponse : TypeAlias = Union [
50- ListsPendingOrRunningBulkOperation , ListsCompletedBulkOperation , ListsFailedBulkOperation
50+ ListsBulkOperationPendingOrRunning , ListsBulkOperationCompleted , ListsBulkOperationFailed
5151]
0 commit comments