Back to Tooljet

MinIO

docs/versioned_docs/version-2.50.0-LTS/data-sources/minio.md

3.20.154-lts3.6 KB
Original Source

ToolJet can connect to minio and perform various operation on them.

<div style={{paddingTop:'24px'}}>

Connection

To establish a connection with the MiniIo data source, click on the + Add new data source button located on the query panel or navigate to the Data Sources page from the ToolJet dashboard.

ToolJet requires the following to connect to your DynamoDB:

  • Host
  • Port
  • Access key
  • Secret key
</div> <div style={{paddingTop:'24px'}}>

Querying Minio

  1. Click on + Add button of the query manager at the bottom panel of the editor.
  2. Select the data source added in the previous step as the data source.
  3. Select the operation that you want to perform.
  4. Click on the Run button to run the query

:::tip Query results can be transformed using transformations. Read our transformations documentation to see how: link :::

</div> <div style={{paddingTop:'24px'}}>

Supported Operations

Read Object

Retrieve an object from a bucket.

Required Parameter:

  • Bucket
  • Object Name

Put Object

Upload or update an object in a bucket.

Required Parameter:

  • Bucket
  • Object Name
  • Upload data

Optional Parameter:

  • Content Type

Remove Object

Delete an object from a bucket.

Required Parameter:

  • Bucket
  • Object Name

List Buckets

Retrieve a list of all buckets.

List Objects in a Bucket

List objects within a specified bucket.

Required Parameters

  • Bucket

Optional Parametes

  • Prefix

Presigned URL for Download

Generate a presigned URL for downloading an object.

Required Parameter:

  • Bucket
  • Object Name

Optional Parameter:

  • Expires in

Presigned URL for Upload

Generate a presigned URL for uploading an object.

Required Parameter:

  • Bucket
  • Object Name

Optional Parameter:

  • Expires in
</div>