@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) • 1.95 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to get information on an fortios firewallservice category
*/
export declare function getCategory(args: GetCategoryArgs, opts?: pulumi.InvokeOptions): Promise<GetCategoryResult>;
/**
* A collection of arguments for invoking getCategory.
*/
export interface GetCategoryArgs {
/**
* Specify the name of the desired firewallservice category.
*/
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 getCategory.
*/
export interface GetCategoryResult {
/**
* Comment.
*/
readonly comment: string;
/**
* Security Fabric global object setting.
*/
readonly fabricObject: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* Service category name.
*/
readonly name: string;
readonly vdomparam?: string;
}
/**
* Use this data source to get information on an fortios firewallservice category
*/
export declare function getCategoryOutput(args: GetCategoryOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCategoryResult>;
/**
* A collection of arguments for invoking getCategory.
*/
export interface GetCategoryOutputArgs {
/**
* Specify the name of the desired firewallservice category.
*/
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>;
}