/** * 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'; export class SearchSecuritySettingsRequest { /** * Scope of security settings to retrieve. CLUSTER returns cluster-level settings, ORG returns org-level settings for the current org. If not specified, returns both cluster and org settings based on user privileges. */ 'scope'?: SearchSecuritySettingsRequestScopeEnum; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "scope", "baseName": "scope", "type": "SearchSecuritySettingsRequestScopeEnum", "format": "" } ]; static getAttributeTypeMap() { return SearchSecuritySettingsRequest.attributeTypeMap; } public constructor() { } } export type SearchSecuritySettingsRequestScopeEnum = "CLUSTER" | "ORG" ;