deletelistCertified

Delete a list of keys on a MinIO bucket.

Delete a list of keys on a MinIO bucket.

yaml
type: "io.kestra.plugin.minio.deletelist"
yaml
id: minio_delete_objects
namespace: company.team

tasks:
  - id: delete_objects
    type: io.kestra.plugin.minio.DeleteList
    accessKeyId: "<access-key>"
    secretKeyId: "<secret-key>"
    region: "eu-central-1"
    bucket: "my-bucket"
    prefix: "sub-dir"

Delete files from an S3-compatible storage — here, Spaces Object Storage from Digital Ocean.

yaml
id: s3_compatible_delete_objects
namespace: company.team

tasks:
  - id: delete_objects
    type: io.kestra.plugin.minio.DeleteList
    accessKeyId: "<access-key>"
    secretKeyId: "<secret-key>"
    endpoint: https://<region>.digitaloceanspaces.com
    bucket: "kestra-test-bucket"
    prefix: "sub-dir"
Properties

Access Key Id for authentication.

The bucket name.

CA PEM certificate content

CA certificate as text, used to verify SSL/TLS connections to custom MinIO endpoints.

Client PEM certificate content

PEM client certificate as text, used to authenticate the connection to MinIO (mTLS).

Minimum>= 2

Number of concurrent parallels deletion

A delimiter is a character you use to group keys.

URL to the MinIO endpoint.

Defaultfalse

raise an error if the file is not found

DefaultBOTH
Possible Values
FILESDIRECTORYBOTH

The type of objects to filter: files, directory, or both.

Marker is where you want to start listing from.

Start listing after this specified key. Marker can be any key in the bucket.

Default1000

Sets the maximum number of keys returned in the response.

By default, the action returns up to 1,000 key names. The response might contain fewer keys but will never contain more.

Limits the response to keys that begin with the specified prefix.

A regexp to filter on full key.

ex: regExp: .* to match all files regExp: .*2020-01-0.\\.csv to match files between 01 and 09 of january ending with .csv

MinIO region with which the SDK should communicate.

Secret Key Id for authentication.

SSL/TLS configuration options

Definitions
insecureTrustAllCertificatesbooleanstring

Whether to disable checking of the remote SSL certificate.

Only applies if no trust store is configured. Note: This makes the SSL connection insecure and should only be used for testing. If you are using a self-signed certificate, set up a trust store instead.

Default0

The count of blobs deleted

Default0

The size of all blobs deleted

Unitcount

The number of objects deleted from the MinIO bucket.

Unitbytes

The total size in bytes of all objects deleted from the MinIO bucket.