import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemAutomationTrigger(args: GetSystemAutomationTriggerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemAutomationTrigger. */ export interface GetSystemAutomationTriggerArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemAutomationTrigger. */ export interface GetSystemAutomationTriggerResult { readonly description: string; readonly eventType: string; readonly fabricEventName: string; readonly fabricEventSeverity: string; readonly fazEventName: string; readonly fazEventSeverity: string; readonly fazEventTags: string; readonly fields: outputs.GetSystemAutomationTriggerField[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly iocLevel: string; readonly licenseType: string; readonly logid: number; readonly logidBlocks: outputs.GetSystemAutomationTriggerLogidBlock[]; readonly name: string; readonly reportType: string; readonly serial: string; readonly triggerDatetime: string; readonly triggerDay: number; readonly triggerFrequency: string; readonly triggerHour: number; readonly triggerMinute: number; readonly triggerType: string; readonly triggerWeekday: string; readonly vdomparam?: string; readonly vdoms: outputs.GetSystemAutomationTriggerVdom[]; } export declare function getSystemAutomationTriggerOutput(args: GetSystemAutomationTriggerOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemAutomationTrigger. */ export interface GetSystemAutomationTriggerOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }