Type Alias Tenant

type Tenant = {
    autoAssignCreateSharedSpacesRoleToProfessionals?: boolean;
    autoAssignDataServicesContributorRoleToProfessionals?: boolean;
    autoAssignPrivateAnalyticsContentCreatorRoleToProfessionals?: boolean;
    created?: string;
    createdByUser?: string;
    datacenter?: string;
    enableAnalyticCreation?: boolean;
    enableAppOpeningFeedback?: boolean;
    hostnames?: string[];
    id: string;
    lastUpdated?: string;
    links?: { self: { href: string } };
    name: string;
    region?: string;
    status?: "active" | "disabled" | "deleted";
}
Index

Properties

autoAssignCreateSharedSpacesRoleToProfessionals?: boolean
autoAssignDataServicesContributorRoleToProfessionals?: boolean
autoAssignPrivateAnalyticsContentCreatorRoleToProfessionals?: boolean
created?: string

The timestamp for when the tenant record was created (1970-01-01T00:00:00.001Z for static tenants).

createdByUser?: string

The user ID who created the tenant.

datacenter?: string

The datacenter where the tenant is located.

enableAnalyticCreation?: boolean
enableAppOpeningFeedback?: boolean
hostnames?: string[]

List of case insensitive hostnames that are mapped to the tenant. The first record maps to the display name and the subsequent entries are aliases.

id: string

The unique tenant identifier.

lastUpdated?: string

The timestamp for when the tenant record was last updated (1970-01-01T00:00:00.001Z for static tenants).

links?: { self: { href: string } }

Type declaration

  • self: { href: string }

    A link to this tenant.

    • href: string

      URL that defines the resource.

name: string

The display name of the tenant.

region?: string

The region where the tenant is located.

status?: "active" | "disabled" | "deleted"

The status of the tenant.