interface Namespace {
    createdAt?: Date;
    description?: string;
    environmentVariables: Record<string, string>;
    errorMessage?: string;
    id: string;
    name: string;
    organizationId: string;
    projectId: string;
    region: Region;
    registryEndpoint: string;
    registryNamespaceId: string;
    secretEnvironmentVariables: Container.v1beta1.SecretHashedValue[];
    status: Container.v1beta1.NamespaceStatus;
    tags: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of the namespace.

description?: string

Description of the endpoint.

environmentVariables: Record<string, string>

Environment variables of the namespace.

errorMessage?: string

Last error message of the namesace.

id: string

UUID of the namespace.

name: string

Name of the namespace.

organizationId: string

UUID of the Organization the namespace belongs to.

projectId: string

UUID of the Project the namespace belongs to.

region: Region

Region in which the namespace will be created.

registryEndpoint: string

Registry endpoint of the namespace.

registryNamespaceId: string

UUID of the registry namespace.

secretEnvironmentVariables: Container.v1beta1.SecretHashedValue[]

Secret environment variables of the namespace.

Status of the namespace.

tags: string[]

[ALPHA] List of tags applied to the Serverless Container Namespace.

updatedAt?: Date

Last update date of the namespace.