NAME

WebService::Chroma::Tenant - chromadb tenant

VERSION

Version 0.05

SYNOPSIS

use WebService::Chroma::Tenant;

my $tenant = WebService::Chroma::Tenant->new(
	ua => WebService::Chroma::UA->new(...),
	name => '...',
);

my $db = $tenant->create_database(
	name => 'test-database'
);

Methods

create_database

Create a new database. This returns a WebService::Chroma::DB object.

$tenant->create_database(
	name => 'test-database'
);

get_database

Retrieve an existing database. This returns a WebService::Chroma::DB object.

$tenant->get_database(
	name => 'test-database'
);

AUTHOR

LNATION, <email at lnation.org>

BUGS

Please report any bugs or feature requests to bug-webservice-chroma at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-Chroma. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc WebService::Chroma

You can also look for information at: