Skip to content

Commit 2528e34

Browse files
feat(api): api update
1 parent 7ff4f2c commit 2528e34

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1782
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-fb3be60c71e334ffb9966b47725d9bb911d441063cd271a584ca5b163562189a.yml
3-
openapi_spec_hash: b4899f357099b018d879fec81272f6e3
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-3d3fc261af1dcfd29dc261b9693276ed85a63fd68bb9fd32f3338dc56890f487.yml
3+
openapi_spec_hash: 5b0319bba3aa3b4ee74ceb0c9a3e565a
44
config_hash: eda5b3d9487ce675d1fadf88153b457d

src/cloudflare/types/rules/lists/bulk_operation_get_response.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
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

4949
BulkOperationGetResponse: TypeAlias = Union[
50-
ListsPendingOrRunningBulkOperation, ListsCompletedBulkOperation, ListsFailedBulkOperation
50+
ListsBulkOperationPendingOrRunning, ListsBulkOperationCompleted, ListsBulkOperationFailed
5151
]

0 commit comments

Comments
 (0)