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: Function.v1beta1.SecretHashedValue[];
    status: Function.v1beta1.NamespaceStatus;
    tags: string[];
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of the namespace.

description?: string

Description of the namespace.

environmentVariables: Record<string, string>

Environment variables of the namespace.

errorMessage?: string

Error message if the namespace is in "error" state.

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 is located.

registryEndpoint: string

Registry endpoint of the namespace.

registryNamespaceId: string

UUID of the registry namespace.

secretEnvironmentVariables: Function.v1beta1.SecretHashedValue[]

Secret environment variables of the namespace.

Status of the namespace.

tags: string[]

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

updatedAt?: Date

Last update date of the namespace.