File tree 3 files changed +13
-3
lines changed
src/cloudflare/types/kv/namespaces
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
configured_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 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
+ from typing import List , Optional
3
4
4
5
from ...._models import BaseModel
5
6
6
7
__all__ = ["BulkDeleteResponse" ]
7
8
8
9
9
10
class 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 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
+ from typing import List , Optional
3
4
4
5
from ...._models import BaseModel
5
6
6
7
__all__ = ["BulkUpdateResponse" ]
7
8
8
9
9
10
class 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