-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74dbad8
commit 0e8799f
Showing
3 changed files
with
3 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
configured_endpoints: 1397 | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-eb646c11ed31a9e0730c5860d58b7ed8757c84c20012ea4e7d4a4750c8e908f2.yml | ||
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a139ab241e810768035bd12ba862cd60f33591339da49b4fb8bccb36e012802c.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from typing import List, Optional | ||
|
||
from ...._models import BaseModel | ||
|
||
__all__ = ["BulkDeleteResponse"] | ||
|
||
|
||
class BulkDeleteResponse(BaseModel): | ||
successful_key_count: Optional[float] = None | ||
"""Number of keys successfully updated""" | ||
|
||
unsuccessful_keys: Optional[List[str]] = None | ||
"""Name of the keys that failed to be fully updated""" | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from typing import List, Optional | ||
|
||
from ...._models import BaseModel | ||
|
||
__all__ = ["BulkUpdateResponse"] | ||
|
||
|
||
class BulkUpdateResponse(BaseModel): | ||
successful_key_count: Optional[float] = None | ||
"""Number of keys successfully updated""" | ||
|
||
unsuccessful_keys: Optional[List[str]] = None | ||
"""Name of the keys that failed to be fully updated""" | ||
pass |