Package version:

Interface NamespaceProperties

Represents the metadata related to a service bus namespace.

interface NamespaceProperties {
    createdAt: Date;
    messagingSku: "Basic" | "Premium" | "Standard";
    messagingUnits: undefined | number;
    modifiedAt: Date;
    name: string;
}

Properties

createdAt: Date

The time at which the namespace was created.

messagingSku: "Basic" | "Premium" | "Standard"

The SKU/tier of the namespace. "Basic", "Standard" and "Premium"

messagingUnits: undefined | number

Number of messaging units allocated for namespace. Valid only for Premium namespaces. messagingUnits would be set to undefined for Basic and Standard namespaces.

modifiedAt: Date

The last time at which the namespace was modified.

name: string

Name of the namespace.

Generated using TypeDoc