/** * 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 { HttpFile } from '../http/http'; /** * Input for cluster-level non-embed access configuration. */ export class ClusterNonEmbedAccessInput { /** * Block full application access for non-embedded usage. */ 'block_full_app_access'?: boolean | null; /** * Group identifiers that are allowed non-embed full app access. Can only be set when orgs feature is disabled and block_full_app_access is true. */ 'groups_identifiers_with_access'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "block_full_app_access", "baseName": "block_full_app_access", "type": "boolean", "format": "" }, { "name": "groups_identifiers_with_access", "baseName": "groups_identifiers_with_access", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return ClusterNonEmbedAccessInput.attributeTypeMap; } public constructor() { } }