import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.loadtesting.api.v1.test"; /** * Artifact upload settings. * * Defines where to upload test artifacts and which files should be included. */ export interface ArtifactSettings { /** Name of output object storage bucket in test's folder. */ objectStorageBucket: string | undefined; /** Setting which defines whether artifact files should be archived prior to uploading. */ isArchive: boolean; /** * Filter strings defining which files should be included to artifacts. GLOB format. * * Example: * - ['*'] - all files will be uploaded. * - ['*.log', '*.yaml] - all `.log` and `.yaml` files will be uploaded. */ filterInclude: string[]; /** * Filter strings defining which files should be excluded from artifacts. GLOB format. * * Example: * - filter_include=['*'], filter_exclude=['phout.log'] - upload all `.log` files excluding `phout.log`. */ filterExclude: string[]; } export declare const ArtifactSettings: { encode(message: ArtifactSettings, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ArtifactSettings; fromJSON(object: any): ArtifactSettings; toJSON(message: ArtifactSettings): unknown; fromPartial, never>) | undefined; filterExclude?: (string[] & string[] & Record, never>) | undefined; } & Record, never>>(object: I): ArtifactSettings; }; 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 {};