@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
78 lines (77 loc) • 2.49 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to get information on an fortios firewallschedule onetime
*/
export declare function getOnetime(args: GetOnetimeArgs, opts?: pulumi.InvokeOptions): Promise<GetOnetimeResult>;
/**
* A collection of arguments for invoking getOnetime.
*/
export interface GetOnetimeArgs {
/**
* Specify the name of the desired firewallschedule onetime.
*/
name: string;
/**
* Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: string;
}
/**
* A collection of values returned by getOnetime.
*/
export interface GetOnetimeResult {
/**
* Color of icon on the GUI.
*/
readonly color: number;
/**
* Schedule end date and time, format hh:mm yyyy/mm/dd.
*/
readonly end: string;
/**
* Schedule end date and time, in epoch format.
*/
readonly endUtc: string;
/**
* Write an event log message this many days before the schedule expires.
*/
readonly expirationDays: number;
/**
* Security Fabric global object setting.
*/
readonly fabricObject: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Onetime schedule name.
*/
readonly name: string;
/**
* Schedule start date and time, format hh:mm yyyy/mm/dd.
*/
readonly start: string;
/**
* Schedule start date and time, in epoch format.
*/
readonly startUtc: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios firewallschedule onetime
*/
export declare function getOnetimeOutput(args: GetOnetimeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetOnetimeResult>;
/**
* A collection of arguments for invoking getOnetime.
*/
export interface GetOnetimeOutputArgs {
/**
* Specify the name of the desired firewallschedule onetime.
*/
name: pulumi.Input<string>;
/**
* Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
*/
vdomparam?: pulumi.Input<string>;
}