Skip to content

Commit 9388bec

Browse files
chore(api): update composite API spec
1 parent ce66577 commit 9388bec

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1808
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-b08a35a63683017799c83c43638e762a8d8713aeb0fa1096c5a3cb2559fc2fc0.yml
3-
openapi_spec_hash: c1cea4e797a400442ace625428030919
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-6653a288880508e29f7e8838a096128a148db0bb790d4d5f5056ae0f5246438d.yml
3+
openapi_spec_hash: 219767bc76245b5f8f4be1761bf7a785
44
config_hash: 22d1fdacde5ac0fd404d3b7c095aac71

rules/listitem.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ func NewListItemService(opts ...option.RequestOption) (r *ListItemService) {
4444
//
4545
// This operation is asynchronous. To get current the operation status, invoke the
4646
// `Get bulk operation status` endpoint with the returned `operation_id`.
47+
//
48+
// There is a limit of 1 pending bulk operation per account. If an outstanding bulk
49+
// operation is in progress, the request will be rejected.
4750
func (r *ListItemService) New(ctx context.Context, listID string, params ListItemNewParams, opts ...option.RequestOption) (res *ListItemNewResponse, err error) {
4851
var env ListItemNewResponseEnvelope
4952
opts = slices.Concat(r.Options, opts)
@@ -69,6 +72,9 @@ func (r *ListItemService) New(ctx context.Context, listID string, params ListIte
6972
//
7073
// This operation is asynchronous. To get current the operation status, invoke the
7174
// `Get bulk operation status` endpoint with the returned `operation_id`.
75+
//
76+
// There is a limit of 1 pending bulk operation per account. If an outstanding bulk
77+
// operation is in progress, the request will be rejected.
7278
func (r *ListItemService) Update(ctx context.Context, listID string, params ListItemUpdateParams, opts ...option.RequestOption) (res *ListItemUpdateResponse, err error) {
7379
var env ListItemUpdateResponseEnvelope
7480
opts = slices.Concat(r.Options, opts)
@@ -124,6 +130,9 @@ func (r *ListItemService) ListAutoPaging(ctx context.Context, listID string, par
124130
//
125131
// This operation is asynchronous. To get current the operation status, invoke the
126132
// `Get bulk operation status` endpoint with the returned `operation_id`.
133+
//
134+
// There is a limit of 1 pending bulk operation per account. If an outstanding bulk
135+
// operation is in progress, the request will be rejected.
127136
func (r *ListItemService) Delete(ctx context.Context, listID string, params ListItemDeleteParams, opts ...option.RequestOption) (res *ListItemDeleteResponse, err error) {
128137
var env ListItemDeleteResponseEnvelope
129138
opts = slices.Concat(r.Options, opts)

0 commit comments

Comments
 (0)