/** * Netsparker 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. */ /** * Initializes a new instance of the {Netsparker.Cloud.Infrastructure.Models.AgentListApiModel} class. */ export declare class AgentListApiModel { /** * Gets or sets the unique identifier of agent. */ 'id'?: string; /** * Gets or sets the date and time at which the instance last notified its active status. */ 'heartbeat'?: Date; /** * Gets or sets the public ip address of the instance in which this agent runs. */ 'ipAddress'?: string; /** * Gets or sets the date and time at which the instance was launched. */ 'launched'?: Date; /** * Gets or sets the agent name. */ 'name'?: string; /** * Gets or sets a value that represents the status of this agent instance. */ 'state'?: AgentListApiModel.StateEnum; /** * Gets or sets the version of agent. */ 'version'?: string; /** * Determines whether is auto update enabled for the agent. */ 'autoUpdateEnabled'?: boolean; /** * Returns an agent has any uncompleted command. */ 'hasWaitingCommand'?: boolean; /** * Gets or sets the vdb version */ 'vdbVersion'?: string; /** * Gets or sets the OS Description */ 'osDescription'?: string; /** * Gets or sets the framework description. */ 'frameworkDescription'?: string; /** * Gets or sets the OS architecture */ 'osArchitecture'?: string; /** * Gets or sets the process architecture */ 'processArchitecture'?: string; /** * Gets the agent needs update */ 'isAgentNeedsUpdate'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace AgentListApiModel { enum StateEnum { Launching, Waiting, Scanning, Terminated, NotAvailable, Disabled, Updating } }