import { APIResource } from "../../../resource.js";
import * as Core from "../../../core.js";
import * as ScriptsAPI from "./scripts.js";
import * as TailAPI from "./tail.js";
export declare class Settings extends APIResource {
    /**
     * Patch script-level settings when using
     * [Worker Versions](https://developers.cloudflare.com/api/operations/worker-versions-list-versions).
     * Including but not limited to Logpush and Tail Consumers.
     *
     * @example
     * ```ts
     * const scriptSetting =
     *   await client.workers.scripts.settings.edit(
     *     'this-is_my_script-01',
     *     { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
     *   );
     * ```
     */
    edit(scriptName: string, params: SettingEditParams, options?: Core.RequestOptions): Core.APIPromise<ScriptsAPI.ScriptSetting>;
    /**
     * Get script-level settings when using
     * [Worker Versions](https://developers.cloudflare.com/api/operations/worker-versions-list-versions).
     * Includes Logpush and Tail Consumers.
     *
     * @example
     * ```ts
     * const scriptSetting =
     *   await client.workers.scripts.settings.get(
     *     'this-is_my_script-01',
     *     { account_id: '023e105f4ecef8ad9ca31a8372d0c353' },
     *   );
     * ```
     */
    get(scriptName: string, params: SettingGetParams, options?: Core.RequestOptions): Core.APIPromise<ScriptsAPI.ScriptSetting>;
}
export interface SettingEditParams {
    /**
     * Path param: Identifier.
     */
    account_id: string;
    /**
     * Body param: Whether Logpush is turned on for the Worker.
     */
    logpush?: boolean;
    /**
     * Body param: Observability settings for the Worker.
     */
    observability?: SettingEditParams.Observability | null;
    /**
     * Body param: Tags associated with the Worker.
     */
    tags?: Array<string>;
    /**
     * Body param: List of Workers that will consume logs from the attached Worker.
     */
    tail_consumers?: Array<TailAPI.ConsumerScriptParam> | null;
}
export declare namespace SettingEditParams {
    /**
     * Observability settings for the Worker.
     */
    interface Observability {
        /**
         * Whether observability is enabled for the Worker.
         */
        enabled: boolean;
        /**
         * The sampling rate for incoming requests. From 0 to 1 (1 = 100%, 0.1 = 10%).
         * Default is 1.
         */
        head_sampling_rate?: number | null;
        /**
         * Log settings for the Worker.
         */
        logs?: Observability.Logs | null;
    }
    namespace Observability {
        /**
         * Log settings for the Worker.
         */
        interface Logs {
            /**
             * Whether logs are enabled for the Worker.
             */
            enabled: boolean;
            /**
             * Whether
             * [invocation logs](https://developers.cloudflare.com/workers/observability/logs/workers-logs/#invocation-logs)
             * are enabled for the Worker.
             */
            invocation_logs: boolean;
            /**
             * A list of destinations where logs will be exported to.
             */
            destinations?: Array<string>;
            /**
             * The sampling rate for logs. From 0 to 1 (1 = 100%, 0.1 = 10%). Default is 1.
             */
            head_sampling_rate?: number | null;
            /**
             * Whether log persistence is enabled for the Worker.
             */
            persist?: boolean;
        }
    }
}
export interface SettingGetParams {
    /**
     * Identifier.
     */
    account_id: string;
}
export declare namespace Settings {
    export { type SettingEditParams as SettingEditParams, type SettingGetParams as SettingGetParams };
}
//# sourceMappingURL=settings.d.ts.map