Skip to content

Commit 2392214

Browse files
chore(api): update composite API spec
1 parent e5f23cc commit 2392214

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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: 1897
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-169205aac6384edee549e952e3e6e117db516d39096e488b29e38be4698139ee.yml
3-
openapi_spec_hash: efba00c8f82f78e47c9a9873d051fef1
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-b49291fb9b262da2527d224ad3c09cbdf9299a2c3db3057af9643cfe10e5c0f0.yml
3+
openapi_spec_hash: 881d08033d23545c7ce8f1088356d1c0
44
config_hash: f02bc3ad56bdede6c515f996ca86012c

abuse_reports/abusereport.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func (r *AbuseReportService) New(ctx context.Context, reportParam string, params
6161
return
6262
}
6363

64-
// List the abuse reports for a given account.
64+
// List the abuse reports for a given account
6565
func (r *AbuseReportService) List(ctx context.Context, params AbuseReportListParams, opts ...option.RequestOption) (res *pagination.V4PagePagination[AbuseReportListResponse], err error) {
6666
var raw *http.Response
6767
opts = slices.Concat(r.Options, opts)
@@ -83,12 +83,12 @@ func (r *AbuseReportService) List(ctx context.Context, params AbuseReportListPar
8383
return res, nil
8484
}
8585

86-
// List the abuse reports for a given account.
86+
// List the abuse reports for a given account
8787
func (r *AbuseReportService) ListAutoPaging(ctx context.Context, params AbuseReportListParams, opts ...option.RequestOption) *pagination.V4PagePaginationAutoPager[AbuseReportListResponse] {
8888
return pagination.NewV4PagePaginationAutoPager(r.List(ctx, params, opts...))
8989
}
9090

91-
// Retrieve an abuse report.
91+
// Retrieve the details of an abuse report.
9292
func (r *AbuseReportService) Get(ctx context.Context, reportParam string, query AbuseReportGetParams, opts ...option.RequestOption) (res *AbuseReportGetResponse, err error) {
9393
var env AbuseReportGetResponseEnvelope
9494
opts = slices.Concat(r.Options, opts)

0 commit comments

Comments
 (0)