Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4c39384

Browse files
committedMar 14, 2025·
feat(api): api update (#4030)
1 parent 5269532 commit 4c39384

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 1608
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-5c38fb33973e8a1c8c9dfed0597fce81a92cf4386366d4f58dce66b03910b51a.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-1262c056c1a957a9f964d7845c8042860f6402b5861d1d44f16a4185bfb2638f.yml

‎cloudforce_one/scanconfig.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (r *ScanConfigService) New(ctx context.Context, params ScanConfigNewParams,
5252
return
5353
}
5454

55-
// Get the Scan Config for An Account
55+
// List Scan Configs
5656
func (r *ScanConfigService) List(ctx context.Context, query ScanConfigListParams, opts ...option.RequestOption) (res *pagination.SinglePage[ScanConfigListResponse], err error) {
5757
var raw *http.Response
5858
opts = append(r.Options[:], opts...)
@@ -74,7 +74,7 @@ func (r *ScanConfigService) List(ctx context.Context, query ScanConfigListParams
7474
return res, nil
7575
}
7676

77-
// Get the Scan Config for An Account
77+
// List Scan Configs
7878
func (r *ScanConfigService) ListAutoPaging(ctx context.Context, query ScanConfigListParams, opts ...option.RequestOption) *pagination.SinglePageAutoPager[ScanConfigListResponse] {
7979
return pagination.NewSinglePageAutoPager(r.List(ctx, query, opts...))
8080
}

0 commit comments

Comments
 (0)
Please sign in to comment.