UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

37 lines 1.12 kB
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { TenantSamlSpecAttribute } from './tenantSamlSpecAttribute'; /** * Tenant */ export type TenantSamlSpec = { acsUrl?: string; attributes?: TenantSamlSpecAttribute[]; /** same as entity id */ audienceUrl?: string; /** certificate for slo */ certificate?: string; defaultTeams?: string[]; entityId?: string; federationMetadata?: string; identityProvider?: string; isSingleLogoutEnabled?: boolean; isSsoEnabled?: boolean; /** same as entity id */ issuer?: string; nameIdFormat?: string; serviceProviderMetadata?: string; /** slo url */ singleLogoutUrl?: string; /** When syncSsoTeams is set to true, all the teams from the OIDC configuration are pulled and saved in palette whereas when set to false, only the teams which are part of palette are pulled and saved */ syncSsoTeams?: boolean; }; //# sourceMappingURL=tenantSamlSpec.d.ts.map