1. Packages
  2. Packages
  3. DigitalOcean Provider
  4. API Docs
  5. VectorDatabase
Viewing docs for DigitalOcean v4.73.0
published on Friday, Jul 3, 2026 by Pulumi
digitalocean logo
Viewing docs for DigitalOcean v4.73.0
published on Friday, Jul 3, 2026 by Pulumi

    Provides a DigitalOcean vector database resource. Vector databases are powered by Weaviate and are managed independently from standard managed database clusters.

    Example Usage

    Create a new vector database

    import * as pulumi from "@pulumi/pulumi";
    import * as digitalocean from "@pulumi/digitalocean";
    
    const example = new digitalocean.VectorDatabase("example", {
        name: "example-vector-db",
        region: "nyc1",
        size: "db-s-1vcpu-1gb",
        tags: ["production"],
    });
    
    import pulumi
    import pulumi_digitalocean as digitalocean
    
    example = digitalocean.VectorDatabase("example",
        name="example-vector-db",
        region="nyc1",
        size="db-s-1vcpu-1gb",
        tags=["production"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := digitalocean.NewVectorDatabase(ctx, "example", &digitalocean.VectorDatabaseArgs{
    			Name:   pulumi.String("example-vector-db"),
    			Region: pulumi.String("nyc1"),
    			Size:   pulumi.String("db-s-1vcpu-1gb"),
    			Tags: pulumi.StringArray{
    				pulumi.String("production"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DigitalOcean = Pulumi.DigitalOcean;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new DigitalOcean.VectorDatabase("example", new()
        {
            Name = "example-vector-db",
            Region = "nyc1",
            Size = "db-s-1vcpu-1gb",
            Tags = new[]
            {
                "production",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.digitalocean.VectorDatabase;
    import com.pulumi.digitalocean.VectorDatabaseArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new VectorDatabase("example", VectorDatabaseArgs.builder()
                .name("example-vector-db")
                .region("nyc1")
                .size("db-s-1vcpu-1gb")
                .tags("production")
                .build());
    
        }
    }
    
    resources:
      example:
        type: digitalocean:VectorDatabase
        properties:
          name: example-vector-db
          region: nyc1
          size: db-s-1vcpu-1gb
          tags:
            - production
    
    pulumi {
      required_providers {
        digitalocean = {
          source = "pulumi/digitalocean"
        }
      }
    }
    
    resource "digitalocean_vectordatabase" "example" {
      name   = "example-vector-db"
      region = "nyc1"
      size   = "db-s-1vcpu-1gb"
      tags   = ["production"]
    }
    

    Create a vector database with advanced configuration

    import * as pulumi from "@pulumi/pulumi";
    import * as digitalocean from "@pulumi/digitalocean";
    
    const example = new digitalocean.VectorDatabase("example", {
        name: "example-vector-db",
        region: "nyc1",
        size: "db-s-2vcpu-2gb",
        config: {
            defaultQuantization: "none",
            enableAutoSchema: true,
            weaviateVersion: "1.25.0",
        },
    });
    
    import pulumi
    import pulumi_digitalocean as digitalocean
    
    example = digitalocean.VectorDatabase("example",
        name="example-vector-db",
        region="nyc1",
        size="db-s-2vcpu-2gb",
        config={
            "default_quantization": "none",
            "enable_auto_schema": True,
            "weaviate_version": "1.25.0",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-digitalocean/sdk/v4/go/digitalocean"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := digitalocean.NewVectorDatabase(ctx, "example", &digitalocean.VectorDatabaseArgs{
    			Name:   pulumi.String("example-vector-db"),
    			Region: pulumi.String("nyc1"),
    			Size:   pulumi.String("db-s-2vcpu-2gb"),
    			Config: &digitalocean.VectorDatabaseConfigArgs{
    				DefaultQuantization: pulumi.String("none"),
    				EnableAutoSchema:    pulumi.Bool(true),
    				WeaviateVersion:     pulumi.String("1.25.0"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using DigitalOcean = Pulumi.DigitalOcean;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new DigitalOcean.VectorDatabase("example", new()
        {
            Name = "example-vector-db",
            Region = "nyc1",
            Size = "db-s-2vcpu-2gb",
            Config = new DigitalOcean.Inputs.VectorDatabaseConfigArgs
            {
                DefaultQuantization = "none",
                EnableAutoSchema = true,
                WeaviateVersion = "1.25.0",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.digitalocean.VectorDatabase;
    import com.pulumi.digitalocean.VectorDatabaseArgs;
    import com.pulumi.digitalocean.inputs.VectorDatabaseConfigArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new VectorDatabase("example", VectorDatabaseArgs.builder()
                .name("example-vector-db")
                .region("nyc1")
                .size("db-s-2vcpu-2gb")
                .config(VectorDatabaseConfigArgs.builder()
                    .defaultQuantization("none")
                    .enableAutoSchema(true)
                    .weaviateVersion("1.25.0")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: digitalocean:VectorDatabase
        properties:
          name: example-vector-db
          region: nyc1
          size: db-s-2vcpu-2gb
          config:
            defaultQuantization: none
            enableAutoSchema: true
            weaviateVersion: 1.25.0
    
    pulumi {
      required_providers {
        digitalocean = {
          source = "pulumi/digitalocean"
        }
      }
    }
    
    resource "digitalocean_vectordatabase" "example" {
      name   = "example-vector-db"
      region = "nyc1"
      size   = "db-s-2vcpu-2gb"
      config = {
        default_quantization = "none"
        enable_auto_schema   = true
        weaviate_version     = "1.25.0"
      }
    }
    

    Create VectorDatabase Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VectorDatabase(name: string, args: VectorDatabaseArgs, opts?: CustomResourceOptions);
    @overload
    def VectorDatabase(resource_name: str,
                       args: VectorDatabaseArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def VectorDatabase(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       region: Optional[str] = None,
                       size: Optional[str] = None,
                       config: Optional[VectorDatabaseConfigArgs] = None,
                       name: Optional[str] = None,
                       project_id: Optional[str] = None,
                       tags: Optional[Sequence[str]] = None)
    func NewVectorDatabase(ctx *Context, name string, args VectorDatabaseArgs, opts ...ResourceOption) (*VectorDatabase, error)
    public VectorDatabase(string name, VectorDatabaseArgs args, CustomResourceOptions? opts = null)
    public VectorDatabase(String name, VectorDatabaseArgs args)
    public VectorDatabase(String name, VectorDatabaseArgs args, CustomResourceOptions options)
    
    type: digitalocean:VectorDatabase
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "digitalocean_vectordatabase" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args VectorDatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VectorDatabaseArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VectorDatabaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VectorDatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VectorDatabaseArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var vectorDatabaseResource = new DigitalOcean.VectorDatabase("vectorDatabaseResource", new()
    {
        Region = "string",
        Size = "string",
        Config = new DigitalOcean.Inputs.VectorDatabaseConfigArgs
        {
            DefaultQuantization = "string",
            EnableAutoSchema = false,
            WeaviateVersion = "string",
        },
        Name = "string",
        ProjectId = "string",
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := digitalocean.NewVectorDatabase(ctx, "vectorDatabaseResource", &digitalocean.VectorDatabaseArgs{
    	Region: pulumi.String("string"),
    	Size:   pulumi.String("string"),
    	Config: &digitalocean.VectorDatabaseConfigArgs{
    		DefaultQuantization: pulumi.String("string"),
    		EnableAutoSchema:    pulumi.Bool(false),
    		WeaviateVersion:     pulumi.String("string"),
    	},
    	Name:      pulumi.String("string"),
    	ProjectId: pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    resource "digitalocean_vectordatabase" "vectorDatabaseResource" {
      region = "string"
      size   = "string"
      config = {
        default_quantization = "string"
        enable_auto_schema   = false
        weaviate_version     = "string"
      }
      name       = "string"
      project_id = "string"
      tags       = ["string"]
    }
    
    var vectorDatabaseResource = new VectorDatabase("vectorDatabaseResource", VectorDatabaseArgs.builder()
        .region("string")
        .size("string")
        .config(VectorDatabaseConfigArgs.builder()
            .defaultQuantization("string")
            .enableAutoSchema(false)
            .weaviateVersion("string")
            .build())
        .name("string")
        .projectId("string")
        .tags("string")
        .build());
    
    vector_database_resource = digitalocean.VectorDatabase("vectorDatabaseResource",
        region="string",
        size="string",
        config={
            "default_quantization": "string",
            "enable_auto_schema": False,
            "weaviate_version": "string",
        },
        name="string",
        project_id="string",
        tags=["string"])
    
    const vectorDatabaseResource = new digitalocean.VectorDatabase("vectorDatabaseResource", {
        region: "string",
        size: "string",
        config: {
            defaultQuantization: "string",
            enableAutoSchema: false,
            weaviateVersion: "string",
        },
        name: "string",
        projectId: "string",
        tags: ["string"],
    });
    
    type: digitalocean:VectorDatabase
    properties:
        config:
            defaultQuantization: string
            enableAutoSchema: false
            weaviateVersion: string
        name: string
        projectId: string
        region: string
        size: string
        tags:
            - string
    

    VectorDatabase Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The VectorDatabase resource accepts the following input properties:

    Region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    Size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    Config Pulumi.DigitalOcean.Inputs.VectorDatabaseConfig
    Advanced configuration for the vector database. The structure is documented below.
    Name string
    The name of the vector database. Changing this forces a new resource to be created.
    ProjectId string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    Tags List<string>
    A list of tag names to be applied to the vector database.
    Region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    Size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    Config VectorDatabaseConfigArgs
    Advanced configuration for the vector database. The structure is documented below.
    Name string
    The name of the vector database. Changing this forces a new resource to be created.
    ProjectId string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    Tags []string
    A list of tag names to be applied to the vector database.
    region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    config object
    Advanced configuration for the vector database. The structure is documented below.
    name string
    The name of the vector database. Changing this forces a new resource to be created.
    project_id string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    tags list(string)
    A list of tag names to be applied to the vector database.
    region String
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size String
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    config VectorDatabaseConfig
    Advanced configuration for the vector database. The structure is documented below.
    name String
    The name of the vector database. Changing this forces a new resource to be created.
    projectId String
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    tags List<String>
    A list of tag names to be applied to the vector database.
    region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    config VectorDatabaseConfig
    Advanced configuration for the vector database. The structure is documented below.
    name string
    The name of the vector database. Changing this forces a new resource to be created.
    projectId string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    tags string[]
    A list of tag names to be applied to the vector database.
    region str
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size str
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    config VectorDatabaseConfigArgs
    Advanced configuration for the vector database. The structure is documented below.
    name str
    The name of the vector database. Changing this forces a new resource to be created.
    project_id str
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    tags Sequence[str]
    A list of tag names to be applied to the vector database.
    region String
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size String
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    config Property Map
    Advanced configuration for the vector database. The structure is documented below.
    name String
    The name of the vector database. Changing this forces a new resource to be created.
    projectId String
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    tags List<String>
    A list of tag names to be applied to the vector database.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VectorDatabase resource produces the following output properties:

    CreatedAt string
    The date and time when the vector database was created.
    Endpoints List<Pulumi.DigitalOcean.Outputs.VectorDatabaseEndpoint>
    The connection endpoints for the vector database. The structure is documented below.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerUuid string
    The UUID of the account that owns the vector database.
    Status string
    The current status of the vector database (ex. active).
    UpdatedAt string
    The date and time when the vector database was last updated.
    CreatedAt string
    The date and time when the vector database was created.
    Endpoints []VectorDatabaseEndpoint
    The connection endpoints for the vector database. The structure is documented below.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerUuid string
    The UUID of the account that owns the vector database.
    Status string
    The current status of the vector database (ex. active).
    UpdatedAt string
    The date and time when the vector database was last updated.
    created_at string
    The date and time when the vector database was created.
    endpoints list(object)
    The connection endpoints for the vector database. The structure is documented below.
    id string
    The provider-assigned unique ID for this managed resource.
    owner_uuid string
    The UUID of the account that owns the vector database.
    status string
    The current status of the vector database (ex. active).
    updated_at string
    The date and time when the vector database was last updated.
    createdAt String
    The date and time when the vector database was created.
    endpoints List<VectorDatabaseEndpoint>
    The connection endpoints for the vector database. The structure is documented below.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerUuid String
    The UUID of the account that owns the vector database.
    status String
    The current status of the vector database (ex. active).
    updatedAt String
    The date and time when the vector database was last updated.
    createdAt string
    The date and time when the vector database was created.
    endpoints VectorDatabaseEndpoint[]
    The connection endpoints for the vector database. The structure is documented below.
    id string
    The provider-assigned unique ID for this managed resource.
    ownerUuid string
    The UUID of the account that owns the vector database.
    status string
    The current status of the vector database (ex. active).
    updatedAt string
    The date and time when the vector database was last updated.
    created_at str
    The date and time when the vector database was created.
    endpoints Sequence[VectorDatabaseEndpoint]
    The connection endpoints for the vector database. The structure is documented below.
    id str
    The provider-assigned unique ID for this managed resource.
    owner_uuid str
    The UUID of the account that owns the vector database.
    status str
    The current status of the vector database (ex. active).
    updated_at str
    The date and time when the vector database was last updated.
    createdAt String
    The date and time when the vector database was created.
    endpoints List<Property Map>
    The connection endpoints for the vector database. The structure is documented below.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerUuid String
    The UUID of the account that owns the vector database.
    status String
    The current status of the vector database (ex. active).
    updatedAt String
    The date and time when the vector database was last updated.

    Look up Existing VectorDatabase Resource

    Get an existing VectorDatabase resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: VectorDatabaseState, opts?: CustomResourceOptions): VectorDatabase
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[VectorDatabaseConfigArgs] = None,
            created_at: Optional[str] = None,
            endpoints: Optional[Sequence[VectorDatabaseEndpointArgs]] = None,
            name: Optional[str] = None,
            owner_uuid: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            size: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[str] = None) -> VectorDatabase
    func GetVectorDatabase(ctx *Context, name string, id IDInput, state *VectorDatabaseState, opts ...ResourceOption) (*VectorDatabase, error)
    public static VectorDatabase Get(string name, Input<string> id, VectorDatabaseState? state, CustomResourceOptions? opts = null)
    public static VectorDatabase get(String name, Output<String> id, VectorDatabaseState state, CustomResourceOptions options)
    resources:  _:    type: digitalocean:VectorDatabase    get:      id: ${id}
    import {
      to = digitalocean_vectordatabase.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Config Pulumi.DigitalOcean.Inputs.VectorDatabaseConfig
    Advanced configuration for the vector database. The structure is documented below.
    CreatedAt string
    The date and time when the vector database was created.
    Endpoints List<Pulumi.DigitalOcean.Inputs.VectorDatabaseEndpoint>
    The connection endpoints for the vector database. The structure is documented below.
    Name string
    The name of the vector database. Changing this forces a new resource to be created.
    OwnerUuid string
    The UUID of the account that owns the vector database.
    ProjectId string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    Region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    Size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    Status string
    The current status of the vector database (ex. active).
    Tags List<string>
    A list of tag names to be applied to the vector database.
    UpdatedAt string
    The date and time when the vector database was last updated.
    Config VectorDatabaseConfigArgs
    Advanced configuration for the vector database. The structure is documented below.
    CreatedAt string
    The date and time when the vector database was created.
    Endpoints []VectorDatabaseEndpointArgs
    The connection endpoints for the vector database. The structure is documented below.
    Name string
    The name of the vector database. Changing this forces a new resource to be created.
    OwnerUuid string
    The UUID of the account that owns the vector database.
    ProjectId string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    Region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    Size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    Status string
    The current status of the vector database (ex. active).
    Tags []string
    A list of tag names to be applied to the vector database.
    UpdatedAt string
    The date and time when the vector database was last updated.
    config object
    Advanced configuration for the vector database. The structure is documented below.
    created_at string
    The date and time when the vector database was created.
    endpoints list(object)
    The connection endpoints for the vector database. The structure is documented below.
    name string
    The name of the vector database. Changing this forces a new resource to be created.
    owner_uuid string
    The UUID of the account that owns the vector database.
    project_id string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    status string
    The current status of the vector database (ex. active).
    tags list(string)
    A list of tag names to be applied to the vector database.
    updated_at string
    The date and time when the vector database was last updated.
    config VectorDatabaseConfig
    Advanced configuration for the vector database. The structure is documented below.
    createdAt String
    The date and time when the vector database was created.
    endpoints List<VectorDatabaseEndpoint>
    The connection endpoints for the vector database. The structure is documented below.
    name String
    The name of the vector database. Changing this forces a new resource to be created.
    ownerUuid String
    The UUID of the account that owns the vector database.
    projectId String
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    region String
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size String
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    status String
    The current status of the vector database (ex. active).
    tags List<String>
    A list of tag names to be applied to the vector database.
    updatedAt String
    The date and time when the vector database was last updated.
    config VectorDatabaseConfig
    Advanced configuration for the vector database. The structure is documented below.
    createdAt string
    The date and time when the vector database was created.
    endpoints VectorDatabaseEndpoint[]
    The connection endpoints for the vector database. The structure is documented below.
    name string
    The name of the vector database. Changing this forces a new resource to be created.
    ownerUuid string
    The UUID of the account that owns the vector database.
    projectId string
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    region string
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size string
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    status string
    The current status of the vector database (ex. active).
    tags string[]
    A list of tag names to be applied to the vector database.
    updatedAt string
    The date and time when the vector database was last updated.
    config VectorDatabaseConfigArgs
    Advanced configuration for the vector database. The structure is documented below.
    created_at str
    The date and time when the vector database was created.
    endpoints Sequence[VectorDatabaseEndpointArgs]
    The connection endpoints for the vector database. The structure is documented below.
    name str
    The name of the vector database. Changing this forces a new resource to be created.
    owner_uuid str
    The UUID of the account that owns the vector database.
    project_id str
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    region str
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size str
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    status str
    The current status of the vector database (ex. active).
    tags Sequence[str]
    A list of tag names to be applied to the vector database.
    updated_at str
    The date and time when the vector database was last updated.
    config Property Map
    Advanced configuration for the vector database. The structure is documented below.
    createdAt String
    The date and time when the vector database was created.
    endpoints List<Property Map>
    The connection endpoints for the vector database. The structure is documented below.
    name String
    The name of the vector database. Changing this forces a new resource to be created.
    ownerUuid String
    The UUID of the account that owns the vector database.
    projectId String
    The ID of the project that the vector database is assigned to. If excluded, the database will be assigned to your default project. Changing this forces a new resource to be created.
    region String
    The slug identifier for the region where the vector database will be created (ex. nyc1). Changing this forces a new resource to be created.
    size String
    The slug identifier representing the size of the vector database (ex. db-s-1vcpu-1gb).
    status String
    The current status of the vector database (ex. active).
    tags List<String>
    A list of tag names to be applied to the vector database.
    updatedAt String
    The date and time when the vector database was last updated.

    Supporting Types

    VectorDatabaseConfig, VectorDatabaseConfigArgs

    DefaultQuantization string
    The default vector quantization method applied to new collections.
    EnableAutoSchema bool
    Whether Weaviate's auto-schema feature is enabled.
    WeaviateVersion string
    The Weaviate engine version used by the vector database.
    DefaultQuantization string
    The default vector quantization method applied to new collections.
    EnableAutoSchema bool
    Whether Weaviate's auto-schema feature is enabled.
    WeaviateVersion string
    The Weaviate engine version used by the vector database.
    default_quantization string
    The default vector quantization method applied to new collections.
    enable_auto_schema bool
    Whether Weaviate's auto-schema feature is enabled.
    weaviate_version string
    The Weaviate engine version used by the vector database.
    defaultQuantization String
    The default vector quantization method applied to new collections.
    enableAutoSchema Boolean
    Whether Weaviate's auto-schema feature is enabled.
    weaviateVersion String
    The Weaviate engine version used by the vector database.
    defaultQuantization string
    The default vector quantization method applied to new collections.
    enableAutoSchema boolean
    Whether Weaviate's auto-schema feature is enabled.
    weaviateVersion string
    The Weaviate engine version used by the vector database.
    default_quantization str
    The default vector quantization method applied to new collections.
    enable_auto_schema bool
    Whether Weaviate's auto-schema feature is enabled.
    weaviate_version str
    The Weaviate engine version used by the vector database.
    defaultQuantization String
    The default vector quantization method applied to new collections.
    enableAutoSchema Boolean
    Whether Weaviate's auto-schema feature is enabled.
    weaviateVersion String
    The Weaviate engine version used by the vector database.

    VectorDatabaseEndpoint, VectorDatabaseEndpointArgs

    Grpc string
    The gRPC endpoint used to connect to the vector database.
    Http string
    The HTTP endpoint used to connect to the vector database.
    Grpc string
    The gRPC endpoint used to connect to the vector database.
    Http string
    The HTTP endpoint used to connect to the vector database.
    grpc string
    The gRPC endpoint used to connect to the vector database.
    http string
    The HTTP endpoint used to connect to the vector database.
    grpc String
    The gRPC endpoint used to connect to the vector database.
    http String
    The HTTP endpoint used to connect to the vector database.
    grpc string
    The gRPC endpoint used to connect to the vector database.
    http string
    The HTTP endpoint used to connect to the vector database.
    grpc str
    The gRPC endpoint used to connect to the vector database.
    http str
    The HTTP endpoint used to connect to the vector database.
    grpc String
    The gRPC endpoint used to connect to the vector database.
    http String
    The HTTP endpoint used to connect to the vector database.

    Import

    Vector databases can be imported using their id, e.g.

    $ pulumi import digitalocean:index/vectorDatabase:VectorDatabase example 245bcfd0-7f31-4ce6-a2bc-475a116cca97
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    DigitalOcean pulumi/pulumi-digitalocean
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the digitalocean Terraform Provider.
    digitalocean logo
    Viewing docs for DigitalOcean v4.73.0
    published on Friday, Jul 3, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial