/** * 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 { ColumnSecurityRuleGroupOperation } from '../models/ColumnSecurityRuleGroupOperation'; import { HttpFile } from '../http/http'; export class ColumnSecurityRuleUpdate { /** * Column identifier (col_id or name) */ 'column_identifier': string; /** * If true, the column will be marked as unprotected and all groups associated with it will be removed */ 'is_unsecured'?: boolean | null; /** * Array of group operation objects that specifies the actions for groups to be associated with a column */ 'group_access'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "column_identifier", "baseName": "column_identifier", "type": "string", "format": "" }, { "name": "is_unsecured", "baseName": "is_unsecured", "type": "boolean", "format": "" }, { "name": "group_access", "baseName": "group_access", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return ColumnSecurityRuleUpdate.attributeTypeMap; } public constructor() { } }