import * as pulumi from "@pulumi/pulumi";
/**
 * Updates the scheduled scan configuration for an Insights account, such as scan frequency and schedule.
 */
export declare class ScheduledScanSettings extends pulumi.CustomResource {
    /**
     * Get an existing ScheduledScanSettings resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ScheduledScanSettings;
    /**
     * Returns true if the given object is an instance of ScheduledScanSettings.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is ScheduledScanSettings;
    /**
     * The batch size for processing resources during the scan.
     */
    readonly batchSize: pulumi.Output<number | undefined>;
    /**
     * The concurrency level for list operations during the scan.
     */
    readonly listConcurrency: pulumi.Output<number | undefined>;
    /**
     * Whether the scheduled scan is paused.
     */
    readonly paused: pulumi.Output<boolean>;
    /**
     * The concurrency level for read operations during the scan.
     */
    readonly readConcurrency: pulumi.Output<number | undefined>;
    /**
     * The timeout duration for read operations, as a Go duration string (e.g., '30s', '5m').
     */
    readonly readTimeout: pulumi.Output<string | undefined>;
    /**
     * The cron expression defining the scan schedule.
     */
    readonly scheduleCron: pulumi.Output<string>;
    /**
     * Create a ScheduledScanSettings resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: ScheduledScanSettingsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a ScheduledScanSettings resource.
 */
export interface ScheduledScanSettingsArgs {
    /**
     * The Insights account name
     */
    accountName: pulumi.Input<string>;
    /**
     * The batch size for processing resources during the scan.
     */
    batchSize?: pulumi.Input<number | undefined>;
    /**
     * The concurrency level for list operations during the scan.
     */
    listConcurrency?: pulumi.Input<number | undefined>;
    /**
     * The organization name
     */
    orgName: pulumi.Input<string>;
    /**
     * Whether the scheduled scan is paused.
     */
    paused: pulumi.Input<boolean>;
    /**
     * The concurrency level for read operations during the scan.
     */
    readConcurrency?: pulumi.Input<number | undefined>;
    /**
     * The timeout duration for read operations, as a Go duration string (e.g., '30s', '5m').
     */
    readTimeout?: pulumi.Input<string | undefined>;
    /**
     * The cron expression defining the scan schedule.
     */
    scheduleCron?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=scheduledScanSettings.d.ts.map