@lubyou/pulumi-fortios
Version:
A Pulumi package for creating and managing fortios cloud resources.
67 lines (66 loc) • 2.86 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class DlpDataType extends pulumi.CustomResource {
/**
* Get an existing DlpDataType 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?: DlpDataTypeState, opts?: pulumi.CustomResourceOptions): DlpDataType;
/**
* Returns true if the given object is an instance of DlpDataType. 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 DlpDataType;
readonly comment: pulumi.Output<string | undefined>;
readonly lookAhead: pulumi.Output<number>;
readonly lookBack: pulumi.Output<number>;
readonly matchAround: pulumi.Output<string>;
readonly name: pulumi.Output<string>;
readonly pattern: pulumi.Output<string>;
readonly transform: pulumi.Output<string>;
readonly vdomparam: pulumi.Output<string | undefined>;
readonly verify: pulumi.Output<string>;
readonly verifyTransformedPattern: pulumi.Output<string>;
/**
* Create a DlpDataType 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?: DlpDataTypeArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering DlpDataType resources.
*/
export interface DlpDataTypeState {
comment?: pulumi.Input<string>;
lookAhead?: pulumi.Input<number>;
lookBack?: pulumi.Input<number>;
matchAround?: pulumi.Input<string>;
name?: pulumi.Input<string>;
pattern?: pulumi.Input<string>;
transform?: pulumi.Input<string>;
vdomparam?: pulumi.Input<string>;
verify?: pulumi.Input<string>;
verifyTransformedPattern?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a DlpDataType resource.
*/
export interface DlpDataTypeArgs {
comment?: pulumi.Input<string>;
lookAhead?: pulumi.Input<number>;
lookBack?: pulumi.Input<number>;
matchAround?: pulumi.Input<string>;
name?: pulumi.Input<string>;
pattern?: pulumi.Input<string>;
transform?: pulumi.Input<string>;
vdomparam?: pulumi.Input<string>;
verify?: pulumi.Input<string>;
verifyTransformedPattern?: pulumi.Input<string>;
}