import * as pulumi from "@pulumi/pulumi"; export declare function getSystemAutoupdateSchedule(args?: GetSystemAutoupdateScheduleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemAutoupdateSchedule. */ export interface GetSystemAutoupdateScheduleArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemAutoupdateSchedule. */ export interface GetSystemAutoupdateScheduleResult { readonly day: string; readonly frequency: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly status: string; readonly time: string; readonly vdomparam?: string; } export declare function getSystemAutoupdateScheduleOutput(args?: GetSystemAutoupdateScheduleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemAutoupdateSchedule. */ export interface GetSystemAutoupdateScheduleOutputArgs { vdomparam?: pulumi.Input; }