Description

This service allows for managing tenants.

Hierarchy

Constructors

Methods

  • Creates a new tenant.

    Returns

    Returns promise object that is resolved with the details of newly created tenant.

    Example


    const tenantObject = {
    id: "sample_tenant",
    company: "sample_company",
    domain: "sample_domain.com",
    contactName: "Mr. Doe",
    ...
    };

    (async () => {
    const {data, res} = await tenantService.create(tenantObject);
    })();

    Required role: ROLE_TENANT_MANAGEMENT_ADMIN or ROLE_TENANT_MANAGEMENT_CREATE

    Note that creating a tenant with adminName, adminPass and adminEmail, creates an admin user with these settings. For the tenant id SQL keywords (e.g., select, cross, where) are not allowed.

    Parameters

    Returns Promise<IResult<ITenant>>

  • Delete a representation of a tenant.

    Returns

    Returns promise object that is resolved with the IResult.

    Example


    const tenantId: string = "uniqueTenantId";

    (async () => {
    const {data, res} = await tenantService.delete(tenantId);
    })();

    Required role: ROLE_TENANT_MANAGEMENT_ADMIN

    Parameters

    • entityOrId: string | number | ITenant

      Tenant's id or tenant object.

    Returns Promise<IResult<null>>

  • Get a representation of a tenant.

    Returns

    Returns promise object that is resolved with the IIdentified wrapped by IResult.

    Example


    const tenantId: number = 1;

    (async () => {
    const {data, res} = await tenantService.detail(tenantId);
    })();

    Required role: ROLE_TENANT_MANAGEMENT_READ

    User password is never returned in GET response. Authentication mechanism is provided by another interface.

    Parameters

    • entityOrId: string | number | ITenant

      Tenant's id or tenant object.

    Returns Promise<IResult<ITenant>>

  • disable support user for current tenant.

    Returns

    Returns promise object that is resolved with the IResult.

    Example

       (async () => {
    const {res} = await tenantService.disableSupportUser();
    })();

    Returns Promise<IResult<null>>

  • enable support user for current tenant.

    Returns

    Returns promise object that is resolved with the IResult.

    Example

       (async () => {
    const {res} = await tenantService.enableSupportUser();
    })();

    Returns Promise<IResult<null>>

  • Returns two factor-authentication settings for given tenant.

    Returns

    Promise which resolves with the object with TFA settings.

    Example

      (async () => {
    const currentTenant = (await tenantService.current()).data;
    const currentTenantTfaSettings = await tenantService.getTfaSettings(currentTenant);

    const subtenant = (await tenantService.detail('t12345')).data;
    const subtenantTfaSettings = await tenantService.getTfaSettings(subtenant);
    })();

    Parameters

    Returns Promise<ITfaSettings>

  • Gets the list of tenants filtered by parameters.

    Returns

    Returns promise object that is resolved with the IIdentified wrapped by IResultList.

    Example


    const filter: object = {
    severity: Severity.MAJOR,
    pageSize: 100,
    withTotalPages: true
    };

    (async () => {
    const {data, res, paging} = await tenantService.list(filter);
    })();

    Required role: ROLE_TENANT_MANAGEMENT_READ

    Parameters

    • filter: object = {}

      Object containing filters for querying tenants.

    Returns Promise<IResultList<ITenant>>

  • Subscribes a given application to a given tenant.

    Returns

    Returns promise object that is resolved with the IResult.

    Example

        const newApp = {
    name: 'New application',
    type: 'HOSTED',
    key: 'new-app'
    };

    const application = (await applicationService.create(newApp)).data;
    const currentTenant = (await tenantService.current()).data;

    const {data, res} = await tenantService.subscribeApplication(currentTenant, application);
    })();

    Parameters

    Returns Promise<IResult<null>>

  • Unsubscribes a given application from a given tenant.

    Returns

    Returns promise object that is resolved with the IResult.

    Example

        const newApp = {
    name: 'New application',
    type: 'HOSTED',
    key: 'new-app'
    };

    const application = (await applicationService.create(newApp)).data;
    const currentTenant = (await tenantService.current()).data;
    await tenantService.addApplication(currentTenant, application);

    await tenantService.unsubscribeApplication(currentTenant, application);
    })();

    Parameters

    Returns Promise<IResult<null>>

  • Updates tenant data.

    Returns

    Returns promise object that is resolved with the saved tenant object.

    Example


    const partialUpdateObject: IIdentified = {
    adminName : "newAdmin"
    ...
    }

    (async () => {
    const {data, res} = await tenantService.update(partialUpdateObject);
    })();

    Required role: ROLE_TENANT_MANAGEMENT_ADMIN or ROLE_TENANT_MANAGEMENT_UPDATE

    Note that updating adminPass and adminEmail updates these settings in the admin user of the tenant. Updating adminName has no effect.

    Parameters

    • entity: ITenant

      Tenant is partially updatable.

    Returns Promise<IResult<ITenant>>