@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
58 lines (57 loc) • 2.28 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to get information on an fortios system tosbasedpriority
*/
export declare function getTosbasedpriority(args: GetTosbasedpriorityArgs, opts?: pulumi.InvokeOptions): Promise<GetTosbasedpriorityResult>;
/**
* A collection of arguments for invoking getTosbasedpriority.
*/
export interface GetTosbasedpriorityArgs {
/**
* Specify the fosid of the desired system tosbasedpriority.
*/
fosid: number;
/**
* 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 getTosbasedpriority.
*/
export interface GetTosbasedpriorityResult {
/**
* Item ID.
*/
readonly fosid: number;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* ToS based priority level to low, medium or high (these priorities match firewall traffic shaping priorities) (default = medium).
*/
readonly priority: string;
/**
* Value of the ToS byte in the IP datagram header (0-15, 8: minimize delay, 4: maximize throughput, 2: maximize reliability, 1: minimize monetary cost, and 0: default service).
*/
readonly tos: number;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios system tosbasedpriority
*/
export declare function getTosbasedpriorityOutput(args: GetTosbasedpriorityOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTosbasedpriorityResult>;
/**
* A collection of arguments for invoking getTosbasedpriority.
*/
export interface GetTosbasedpriorityOutputArgs {
/**
* Specify the fosid of the desired system tosbasedpriority.
*/
fosid: pulumi.Input<number>;
/**
* 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>;
}