Pinecone DeleteIndex

Pinecone DeleteIndex

Certified

Delete a Pinecone index

Permanently deletes a Pinecone index and all its data. This operation is irreversible.

yaml
type: io.kestra.plugin.pinecone.DeleteIndex

Delete an index.

yaml
id: pinecone_delete_index
namespace: company.team

tasks:
  - id: delete_index
    type: io.kestra.plugin.pinecone.DeleteIndex
    apiKey: "{{ secret('PINECONE_API_KEY') }}"
    indexName: my-embeddings
Properties

Pinecone API key

Index name

Name of the Pinecone index to operate on.

Control-plane host override

Optional URL override for the Pinecone control-plane API. Defaults to https://api.pinecone.io when unset. Set this to point to a local emulator (e.g. http://localhost: 5080).

Reference (ref) of the pluginDefaults to apply to this task.

Defaulttrue

Enable TLS for gRPC data-plane connections

Set to false when connecting to a local emulator that does not support TLS. Defaults to true (production Pinecone always requires TLS).