@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
55 lines (54 loc) • 2.31 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to get information on an fortios firewall internetservicedefinition
*/
export declare function getInternetservicedefinition(args: GetInternetservicedefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetInternetservicedefinitionResult>;
/**
* A collection of arguments for invoking getInternetservicedefinition.
*/
export interface GetInternetservicedefinitionArgs {
/**
* Specify the fosid of the desired firewall internetservicedefinition.
*/
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 getInternetservicedefinition.
*/
export interface GetInternetservicedefinitionResult {
/**
* Protocol and port information in an Internet Service entry. The structure of `entry` block is documented below.
*/
readonly entries: outputs.firewall.GetInternetservicedefinitionEntry[];
/**
* Internet Service application list ID.
*/
readonly fosid: number;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios firewall internetservicedefinition
*/
export declare function getInternetservicedefinitionOutput(args: GetInternetservicedefinitionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInternetservicedefinitionResult>;
/**
* A collection of arguments for invoking getInternetservicedefinition.
*/
export interface GetInternetservicedefinitionOutputArgs {
/**
* Specify the fosid of the desired firewall internetservicedefinition.
*/
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>;
}