We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.81.0
https://developers.cloudflare.com/api/operations/cloudflare-images-list-images-v2 describes the new v2 api for listing images.
The current ListImages call doesn't return any pagination info however.
I want to list all images, match them against those I still reference, and delete the rest.
var cursor string for { imgs, info, err := cf.ListImagesV2(ctx, rc, cloudflare.ListImagesParams{Cursor: cursor}) if err != nil {} stuff(imgs) if info.Cursor == "" { break } cursor = info.Cursor }
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current cloudflare-go version
0.81.0
Description
https://developers.cloudflare.com/api/operations/cloudflare-images-list-images-v2 describes the new v2 api for listing images.
The current ListImages call doesn't return any pagination info however.
Use cases
I want to list all images, match them against those I still reference, and delete the rest.
Potential cloudflare-go usage
References
No response
The text was updated successfully, but these errors were encountered: