Module namespace_api

Module namespace_api 

Source

Enums§

CreateNamespaceError
struct for typed errors of method create_namespace
DescribeNamespaceError
struct for typed errors of method describe_namespace
DropNamespaceError
struct for typed errors of method drop_namespace
ListNamespacesError
struct for typed errors of method list_namespaces
ListTablesError
struct for typed errors of method list_tables
NamespaceExistsError
struct for typed errors of method namespace_exists

Functions§

create_namespace
Create new namespace id. During the creation process, the implementation may modify user-provided properties, such as adding additional properties like created_at to user-provided properties, omitting any specific property, or performing actions based on any property value.
describe_namespace
Describe the detailed information for namespace id.
drop_namespace
Drop namespace id from its parent namespace.
list_namespaces
List all child namespace names of the parent namespace id. REST NAMESPACE ONLY REST namespace uses GET to perform this operation without a request body. It passes in the ListNamespacesRequest information in the following way: - id: pass through path parameter of the same name - page_token: pass through query parameter of the same name - limit: pass through query parameter of the same name
list_tables
List all child table names of the parent namespace id. REST NAMESPACE ONLY REST namespace uses GET to perform this operation without a request body. It passes in the ListTablesRequest information in the following way: - id: pass through path parameter of the same name - page_token: pass through query parameter of the same name - limit: pass through query parameter of the same name
namespace_exists
Check if namespace id exists. This operation must behave exactly like the DescribeNamespace API, except it does not contain a response body.