export declare const protobufPackage = "yandex.cloud.loadtesting.api.v1.test"; export declare enum Status { /** STATUS_UNSPECIFIED - Status is unspecified. */ STATUS_UNSPECIFIED = 0, /** CREATED - Test has been created, but not started by any agent. */ CREATED = 1, /** INITIATED - Execution stage: initialization. */ INITIATED = 2, /** PREPARING - Execution stage: data preparation and warm-up. */ PREPARING = 3, /** RUNNING - Execution stage: load generation. */ RUNNING = 4, /** FINISHING - Execution stage: termination. */ FINISHING = 5, /** DONE - Test is done. */ DONE = 6, /** POST_PROCESSING - Execution stage: results post-processing. */ POST_PROCESSING = 7, /** FAILED - Test has failed due to some error. */ FAILED = 8, /** STOPPING - Test is being stopped. */ STOPPING = 9, /** STOPPED - Test has been stopped by user. */ STOPPED = 10, /** AUTOSTOPPED - Test has been stopped automatically by satisfying autostop condition. */ AUTOSTOPPED = 11, /** WAITING - Execution stage: waiting for a trigger to start. */ WAITING = 12, /** DELETING - Test is being deleted. */ DELETING = 13, /** * LOST - Test status has not been reported in a while during execution stage. * * Means that either an agent is too busy to send it, got offline, or failed without * reporting a final status. */ LOST = 14, /** CANCELLED - Test has been cancelled. */ CANCELLED = 15, UNRECOGNIZED = -1 } export declare function statusFromJSON(object: any): Status; export declare function statusToJSON(object: Status): string;