/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ClusterNonEmbedAccess } from '../models/ClusterNonEmbedAccess'; import { CspSettings } from '../models/CspSettings'; import { HttpFile } from '../http/http'; /** * Cluster-level security preferences. */ export class SecuritySettingsClusterPreferences { /** * Support embedded access when third-party cookies are blocked. */ 'enable_partitioned_cookies'?: boolean | null; /** * Allowed origins for CORS. */ 'cors_whitelisted_urls'?: Array | null; 'csp_settings'?: CspSettings; /** * Allowed redirect hosts for SAML login. */ 'saml_redirect_urls'?: Array | null; 'non_embed_access'?: ClusterNonEmbedAccess; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "enable_partitioned_cookies", "baseName": "enable_partitioned_cookies", "type": "boolean", "format": "" }, { "name": "cors_whitelisted_urls", "baseName": "cors_whitelisted_urls", "type": "Array", "format": "" }, { "name": "csp_settings", "baseName": "csp_settings", "type": "CspSettings", "format": "" }, { "name": "saml_redirect_urls", "baseName": "saml_redirect_urls", "type": "Array", "format": "" }, { "name": "non_embed_access", "baseName": "non_embed_access", "type": "ClusterNonEmbedAccess", "format": "" } ]; static getAttributeTypeMap() { return SecuritySettingsClusterPreferences.attributeTypeMap; } public constructor() { } }