import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a firewall time window by ID or name. */ export declare function getTimeWindow(args?: GetTimeWindowArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTimeWindowArgs { /** * The name of the time window to look up. */ name?: string; /** * The ID of the time window to look up. */ resourceId?: number; } export interface GetTimeWindowResult { /** * The days of the week the time window applies to. */ readonly dayOfWeek: string[]; /** * The end time of the time window (minutes from midnight). */ readonly endTime: number; /** * The name of the time window. */ readonly name: string; /** * The ID of the time window. */ readonly resourceId: number; /** * The start time of the time window (minutes from midnight). */ readonly startTime: number; } /** * Use this data source to look up a firewall time window by ID or name. */ export declare function getTimeWindowOutput(args?: GetTimeWindowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetTimeWindowOutputArgs { /** * The name of the time window to look up. */ name?: pulumi.Input; /** * The ID of the time window to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getTimeWindow.d.ts.map