Skip to content

Commit

Permalink
feat(api): api update (#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Nov 7, 2024
1 parent 74dbad8 commit 0e8799f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
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
7 changes: 1 addition & 6 deletions src/cloudflare/types/kv/namespaces/bulk_delete_response.py
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
7 changes: 1 addition & 6 deletions src/cloudflare/types/kv/namespaces/bulk_update_response.py
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

0 comments on commit 0e8799f

Please sign in to comment.