File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
src/cloudflare/types/kv/namespaces Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 1417
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-4396f2b615f2349cc28c23e9df6cf66c1c0fd8257d18df0ce54d7e74c839bf9f .yml
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-7d085f55544e992a7e3c3162951d86aac51322ac1cfaf8b50242484e69a0810d .yml
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
3+ from typing import List , Optional
34
45from ...._models import BaseModel
56
67__all__ = ["BulkDeleteResponse" ]
78
89
910class BulkDeleteResponse (BaseModel ):
10- pass
11+ successful_key_count : Optional [float ] = None
12+ """Number of keys successfully updated"""
13+
14+ unsuccessful_keys : Optional [List [str ]] = None
15+ """Name of the keys that failed to be fully updated. They should be retried."""
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
3+ from typing import List , Optional
34
45from ...._models import BaseModel
56
67__all__ = ["BulkUpdateResponse" ]
78
89
910class BulkUpdateResponse (BaseModel ):
10- pass
11+ successful_key_count : Optional [float ] = None
12+ """Number of keys successfully updated"""
13+
14+ unsuccessful_keys : Optional [List [str ]] = None
15+ """Name of the keys that failed to be fully updated. They should be retried."""
You can’t perform that action at this time.
0 commit comments