@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
63 lines (62 loc) • 2.45 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 internetservicecustom
*/
export declare function getInternetservicecustom(args: GetInternetservicecustomArgs, opts?: pulumi.InvokeOptions): Promise<GetInternetservicecustomResult>;
/**
* A collection of arguments for invoking getInternetservicecustom.
*/
export interface GetInternetservicecustomArgs {
/**
* Specify the name of the desired firewall internetservicecustom.
*/
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 getInternetservicecustom.
*/
export interface GetInternetservicecustomResult {
/**
* Comment.
*/
readonly comment: string;
/**
* Entries added to the Internet Service database and custom database. The structure of `entry` block is documented below.
*/
readonly entries: outputs.firewall.GetInternetservicecustomEntry[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Select the destination address6 or address group object from available options.
*/
readonly name: string;
/**
* Reputation level of the custom Internet Service.
*/
readonly reputation: number;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios firewall internetservicecustom
*/
export declare function getInternetservicecustomOutput(args: GetInternetservicecustomOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInternetservicecustomResult>;
/**
* A collection of arguments for invoking getInternetservicecustom.
*/
export interface GetInternetservicecustomOutputArgs {
/**
* Specify the name of the desired firewall internetservicecustom.
*/
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>;
}