/** * Invicti Enterprise API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; import { ScanPolicyPatternModel } from './scanPolicyPatternModel'; import { SecurityCheckSetting } from './securityCheckSetting'; /** * Represents a model for carrying out security check groups. */ export class SecurityCheckGroupModel { /** * Gets or sets the scan policy patterns. */ 'patterns'?: Array; /** * Gets or sets the settings. */ 'settings'?: Array; /** * Gets or sets the security check group type. */ 'type'?: SecurityCheckGroupModel.TypeEnum; /** * Engine group identifier */ 'engineGroup'?: SecurityCheckGroupModel.EngineGroupEnum; /** * Gets or sets the description of the security check. */ 'description'?: string; /** * Gets or sets a value indicating whether this instance is enabled. */ 'enabled'?: boolean; /** * Gets or sets the id of the security check. */ 'id'?: string; /** * Gets or sets the name of the security check. */ 'name'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "patterns", "baseName": "Patterns", "type": "Array" }, { "name": "settings", "baseName": "Settings", "type": "Array" }, { "name": "type", "baseName": "Type", "type": "SecurityCheckGroupModel.TypeEnum" }, { "name": "engineGroup", "baseName": "EngineGroup", "type": "SecurityCheckGroupModel.EngineGroupEnum" }, { "name": "description", "baseName": "Description", "type": "string" }, { "name": "enabled", "baseName": "Enabled", "type": "boolean" }, { "name": "id", "baseName": "Id", "type": "string" }, { "name": "name", "baseName": "Name", "type": "string" } ]; static getAttributeTypeMap() { return SecurityCheckGroupModel.attributeTypeMap; } } export namespace SecurityCheckGroupModel { export enum TypeEnum { Engine = 'Engine', ResourceModifier = 'ResourceModifier' } export enum EngineGroupEnum { SqlInjection = 'SqlInjection', Xss = 'Xss', CommandInjection = 'CommandInjection', FileInclusion = 'FileInclusion', Ssrf = 'Ssrf', Xxe = 'Xxe', StaticResources = 'StaticResources', ResourceFinder = 'ResourceFinder', ApacheStrutsRce = 'ApacheStrutsRce', CodeEvaluation = 'CodeEvaluation', CustomScriptChecks = 'CustomScriptChecks', HeaderInjection = 'HeaderInjection' } }