@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
238 lines (237 loc) • 7.64 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Configure IPS custom signature.
*
* ## Import
*
* Ips Custom can be imported using any of these accepted formats:
*
* ```sh
* $ pulumi import fortios:ips/custom:Custom labelname {{tag}}
* ```
*
* If you do not want to import arguments of block:
*
* $ export "FORTIOS_IMPORT_TABLE"="false"
*
* ```sh
* $ pulumi import fortios:ips/custom:Custom labelname {{tag}}
* ```
*
* $ unset "FORTIOS_IMPORT_TABLE"
*/
export declare class Custom extends pulumi.CustomResource {
/**
* Get an existing Custom resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CustomState, opts?: pulumi.CustomResourceOptions): Custom;
/**
* Returns true if the given object is an instance of Custom. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is Custom;
/**
* Default action (pass or block) for this signature. Valid values: `pass`, `block`.
*/
readonly action: pulumi.Output<string>;
/**
* Applications to be protected. Blank for all applications.
*/
readonly application: pulumi.Output<string>;
/**
* Comment.
*/
readonly comment: pulumi.Output<string>;
/**
* Protect client or server traffic.
*/
readonly location: pulumi.Output<string>;
/**
* Enable/disable logging. Valid values: `disable`, `enable`.
*/
readonly log: pulumi.Output<string>;
/**
* Enable/disable packet logging. Valid values: `disable`, `enable`.
*/
readonly logPacket: pulumi.Output<string>;
/**
* Operating system(s) that the signature protects. Blank for all operating systems.
*/
readonly os: pulumi.Output<string>;
/**
* Protocol(s) that the signature scans. Blank for all protocols.
*/
readonly protocol: pulumi.Output<string>;
/**
* Signature ID.
*/
readonly ruleId: pulumi.Output<number>;
/**
* Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
*/
readonly severity: pulumi.Output<string>;
/**
* Signature name.
*/
readonly sigName: pulumi.Output<string>;
/**
* Custom signature enclosed in single quotes.
*/
readonly signature: pulumi.Output<string>;
/**
* Enable/disable this signature. Valid values: `disable`, `enable`.
*/
readonly status: pulumi.Output<string>;
/**
* Signature tag.
*/
readonly tag: pulumi.Output<string>;
/**
* Specifies the vdom to which the resource 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.
*/
readonly vdomparam: pulumi.Output<string>;
/**
* Create a Custom resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: CustomArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Custom resources.
*/
export interface CustomState {
/**
* Default action (pass or block) for this signature. Valid values: `pass`, `block`.
*/
action?: pulumi.Input<string>;
/**
* Applications to be protected. Blank for all applications.
*/
application?: pulumi.Input<string>;
/**
* Comment.
*/
comment?: pulumi.Input<string>;
/**
* Protect client or server traffic.
*/
location?: pulumi.Input<string>;
/**
* Enable/disable logging. Valid values: `disable`, `enable`.
*/
log?: pulumi.Input<string>;
/**
* Enable/disable packet logging. Valid values: `disable`, `enable`.
*/
logPacket?: pulumi.Input<string>;
/**
* Operating system(s) that the signature protects. Blank for all operating systems.
*/
os?: pulumi.Input<string>;
/**
* Protocol(s) that the signature scans. Blank for all protocols.
*/
protocol?: pulumi.Input<string>;
/**
* Signature ID.
*/
ruleId?: pulumi.Input<number>;
/**
* Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
*/
severity?: pulumi.Input<string>;
/**
* Signature name.
*/
sigName?: pulumi.Input<string>;
/**
* Custom signature enclosed in single quotes.
*/
signature?: pulumi.Input<string>;
/**
* Enable/disable this signature. Valid values: `disable`, `enable`.
*/
status?: pulumi.Input<string>;
/**
* Signature tag.
*/
tag?: pulumi.Input<string>;
/**
* Specifies the vdom to which the resource 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>;
}
/**
* The set of arguments for constructing a Custom resource.
*/
export interface CustomArgs {
/**
* Default action (pass or block) for this signature. Valid values: `pass`, `block`.
*/
action?: pulumi.Input<string>;
/**
* Applications to be protected. Blank for all applications.
*/
application?: pulumi.Input<string>;
/**
* Comment.
*/
comment?: pulumi.Input<string>;
/**
* Protect client or server traffic.
*/
location?: pulumi.Input<string>;
/**
* Enable/disable logging. Valid values: `disable`, `enable`.
*/
log?: pulumi.Input<string>;
/**
* Enable/disable packet logging. Valid values: `disable`, `enable`.
*/
logPacket?: pulumi.Input<string>;
/**
* Operating system(s) that the signature protects. Blank for all operating systems.
*/
os?: pulumi.Input<string>;
/**
* Protocol(s) that the signature scans. Blank for all protocols.
*/
protocol?: pulumi.Input<string>;
/**
* Signature ID.
*/
ruleId?: pulumi.Input<number>;
/**
* Relative severity of the signature, from info to critical. Log messages generated by the signature include the severity.
*/
severity?: pulumi.Input<string>;
/**
* Signature name.
*/
sigName?: pulumi.Input<string>;
/**
* Custom signature enclosed in single quotes.
*/
signature?: pulumi.Input<string>;
/**
* Enable/disable this signature. Valid values: `disable`, `enable`.
*/
status?: pulumi.Input<string>;
/**
* Signature tag.
*/
tag?: pulumi.Input<string>;
/**
* Specifies the vdom to which the resource 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>;
}