import _m0 from 'protobufjs/minimal'; import { Status } from '../../../../../../yandex/cloud/loadtesting/api/v1/test/status'; import { ImbalancePoint } from '../../../../../../yandex/cloud/loadtesting/api/v1/test/imbalance_point'; import { FilePointer } from '../../../../../../yandex/cloud/loadtesting/api/v1/test/file_pointer'; export declare const protobufPackage = "yandex.cloud.loadtesting.api.v1.test"; /** Process of test and some results */ export interface Summary { /** Status of the test. */ status: Status; /** Creation timestamp. */ createdAt?: Date; /** UA or SA that created the test. */ createdBy: string; /** * Test start timestamp. * * Empty if the test has not been started yet. */ startedAt?: Date; /** * Test finish timestamp. * * Empty if the test has not been finished yet. */ finishedAt?: Date; /** Indicates whether the test is finished. */ isFinished: boolean; /** Error message. */ error: string; /** * Detected imbalance point. * * Contains information about a state at the moment it has been * [auto-stopped](/docs/load-testing/concepts/auto-stop). * * Empty if no auto-stop occured. */ imbalancePoint?: ImbalancePoint; /** ID of the agent that executed the test. */ assignedAgentId: string; /** * Test output artifacts. * * Link to the artifacts output target containing `.log` and other files collected * during test execution. */ artifacts?: FilePointer; } export declare const Summary: { encode(message: Summary, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Summary; fromJSON(object: any): Summary; toJSON(message: Summary): unknown; fromPartial, never>) | undefined; assignedAgentId?: string | undefined; artifacts?: ({ objectStorage?: { bucket?: string | undefined; name?: string | undefined; } | undefined; } & { objectStorage?: ({ bucket?: string | undefined; name?: string | undefined; } & { bucket?: string | undefined; name?: string | undefined; } & Record, never>) | undefined; } & Record, never>) | undefined; } & Record, never>>(object: I): Summary; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};