1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWebfilterProfileAntiphish
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectWebfilterProfileAntiphish

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    AntiPhishing profile.

    This resource is a sub resource for variable antiphish of resource fortimanager.ObjectWebfilterProfile. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • custom_patterns: fortimanager.ObjectWebfilterProfileAntiphishCustompatterns
    • inspection_entries: fortimanager.ObjectWebfilterProfileAntiphishInspectionentries

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectWebfilterProfile = new fortimanager.ObjectWebfilterProfile("trnameObjectWebfilterProfile", {});
    const trnameObjectWebfilterProfileAntiphish = new fortimanager.ObjectWebfilterProfileAntiphish("trnameObjectWebfilterProfileAntiphish", {
        checkBasicAuth: "enable",
        checkUri: "enable",
        profile: trnameObjectWebfilterProfile.name,
    }, {
        dependsOn: [trnameObjectWebfilterProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_webfilter_profile = fortimanager.ObjectWebfilterProfile("trnameObjectWebfilterProfile")
    trname_object_webfilter_profile_antiphish = fortimanager.ObjectWebfilterProfileAntiphish("trnameObjectWebfilterProfileAntiphish",
        check_basic_auth="enable",
        check_uri="enable",
        profile=trname_object_webfilter_profile.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_webfilter_profile]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trnameObjectWebfilterProfile, err := fortimanager.NewObjectWebfilterProfile(ctx, "trnameObjectWebfilterProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWebfilterProfileAntiphish(ctx, "trnameObjectWebfilterProfileAntiphish", &fortimanager.ObjectWebfilterProfileAntiphishArgs{
    			CheckBasicAuth: pulumi.String("enable"),
    			CheckUri:       pulumi.String("enable"),
    			Profile:        trnameObjectWebfilterProfile.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWebfilterProfile,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectWebfilterProfile = new Fortimanager.ObjectWebfilterProfile("trnameObjectWebfilterProfile");
    
        var trnameObjectWebfilterProfileAntiphish = new Fortimanager.ObjectWebfilterProfileAntiphish("trnameObjectWebfilterProfileAntiphish", new()
        {
            CheckBasicAuth = "enable",
            CheckUri = "enable",
            Profile = trnameObjectWebfilterProfile.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWebfilterProfile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterProfile;
    import com.pulumi.fortimanager.ObjectWebfilterProfileAntiphish;
    import com.pulumi.fortimanager.ObjectWebfilterProfileAntiphishArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trnameObjectWebfilterProfile = new ObjectWebfilterProfile("trnameObjectWebfilterProfile");
    
            var trnameObjectWebfilterProfileAntiphish = new ObjectWebfilterProfileAntiphish("trnameObjectWebfilterProfileAntiphish", ObjectWebfilterProfileAntiphishArgs.builder()
                .checkBasicAuth("enable")
                .checkUri("enable")
                .profile(trnameObjectWebfilterProfile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWebfilterProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWebfilterProfileAntiphish:
        type: fortimanager:ObjectWebfilterProfileAntiphish
        properties:
          checkBasicAuth: enable
          checkUri: enable
          profile: ${trnameObjectWebfilterProfile.name}
        options:
          dependsOn:
            - ${trnameObjectWebfilterProfile}
      trnameObjectWebfilterProfile:
        type: fortimanager:ObjectWebfilterProfile
    

    Create ObjectWebfilterProfileAntiphish Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObjectWebfilterProfileAntiphish(name: string, args: ObjectWebfilterProfileAntiphishArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterProfileAntiphish(resource_name: str,
                                        args: ObjectWebfilterProfileAntiphishInitArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterProfileAntiphish(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        profile: Optional[str] = None,
                                        dynamic_sort_subtable: Optional[str] = None,
                                        inspection_entries: Optional[Sequence[ObjectWebfilterProfileAntiphishInspectionEntryArgs]] = None,
                                        check_uri: Optional[str] = None,
                                        check_username_only: Optional[str] = None,
                                        custom_patterns: Optional[Sequence[ObjectWebfilterProfileAntiphishCustomPatternArgs]] = None,
                                        default_action: Optional[str] = None,
                                        check_basic_auth: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        domain_controller: Optional[str] = None,
                                        ldap: Optional[str] = None,
                                        max_body_len: Optional[float] = None,
                                        object_webfilter_profile_antiphish_id: Optional[str] = None,
                                        authentication: Optional[str] = None,
                                        scopetype: Optional[str] = None,
                                        status: Optional[str] = None)
    func NewObjectWebfilterProfileAntiphish(ctx *Context, name string, args ObjectWebfilterProfileAntiphishArgs, opts ...ResourceOption) (*ObjectWebfilterProfileAntiphish, error)
    public ObjectWebfilterProfileAntiphish(string name, ObjectWebfilterProfileAntiphishArgs args, CustomResourceOptions? opts = null)
    public ObjectWebfilterProfileAntiphish(String name, ObjectWebfilterProfileAntiphishArgs args)
    public ObjectWebfilterProfileAntiphish(String name, ObjectWebfilterProfileAntiphishArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterProfileAntiphish
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ObjectWebfilterProfileAntiphishArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ObjectWebfilterProfileAntiphishInitArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ObjectWebfilterProfileAntiphishArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterProfileAntiphishArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterProfileAntiphishArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var objectWebfilterProfileAntiphishResource = new Fortimanager.ObjectWebfilterProfileAntiphish("objectWebfilterProfileAntiphishResource", new()
    {
        Profile = "string",
        DynamicSortSubtable = "string",
        InspectionEntries = new[]
        {
            new Fortimanager.Inputs.ObjectWebfilterProfileAntiphishInspectionEntryArgs
            {
                Action = "string",
                FortiguardCategories = new[]
                {
                    "string",
                },
                Name = "string",
            },
        },
        CheckUri = "string",
        CheckUsernameOnly = "string",
        CustomPatterns = new[]
        {
            new Fortimanager.Inputs.ObjectWebfilterProfileAntiphishCustomPatternArgs
            {
                Category = "string",
                Pattern = "string",
                Type = "string",
            },
        },
        DefaultAction = "string",
        CheckBasicAuth = "string",
        Adom = "string",
        DomainController = "string",
        Ldap = "string",
        MaxBodyLen = 0,
        ObjectWebfilterProfileAntiphishId = "string",
        Authentication = "string",
        Scopetype = "string",
        Status = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterProfileAntiphish(ctx, "objectWebfilterProfileAntiphishResource", &fortimanager.ObjectWebfilterProfileAntiphishArgs{
    Profile: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    InspectionEntries: .ObjectWebfilterProfileAntiphishInspectionEntryArray{
    &.ObjectWebfilterProfileAntiphishInspectionEntryArgs{
    Action: pulumi.String("string"),
    FortiguardCategories: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    },
    },
    CheckUri: pulumi.String("string"),
    CheckUsernameOnly: pulumi.String("string"),
    CustomPatterns: .ObjectWebfilterProfileAntiphishCustomPatternArray{
    &.ObjectWebfilterProfileAntiphishCustomPatternArgs{
    Category: pulumi.String("string"),
    Pattern: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    },
    DefaultAction: pulumi.String("string"),
    CheckBasicAuth: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DomainController: pulumi.String("string"),
    Ldap: pulumi.String("string"),
    MaxBodyLen: pulumi.Float64(0),
    ObjectWebfilterProfileAntiphishId: pulumi.String("string"),
    Authentication: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    })
    
    var objectWebfilterProfileAntiphishResource = new ObjectWebfilterProfileAntiphish("objectWebfilterProfileAntiphishResource", ObjectWebfilterProfileAntiphishArgs.builder()
        .profile("string")
        .dynamicSortSubtable("string")
        .inspectionEntries(ObjectWebfilterProfileAntiphishInspectionEntryArgs.builder()
            .action("string")
            .fortiguardCategories("string")
            .name("string")
            .build())
        .checkUri("string")
        .checkUsernameOnly("string")
        .customPatterns(ObjectWebfilterProfileAntiphishCustomPatternArgs.builder()
            .category("string")
            .pattern("string")
            .type("string")
            .build())
        .defaultAction("string")
        .checkBasicAuth("string")
        .adom("string")
        .domainController("string")
        .ldap("string")
        .maxBodyLen(0)
        .objectWebfilterProfileAntiphishId("string")
        .authentication("string")
        .scopetype("string")
        .status("string")
        .build());
    
    object_webfilter_profile_antiphish_resource = fortimanager.ObjectWebfilterProfileAntiphish("objectWebfilterProfileAntiphishResource",
        profile="string",
        dynamic_sort_subtable="string",
        inspection_entries=[{
            "action": "string",
            "fortiguard_categories": ["string"],
            "name": "string",
        }],
        check_uri="string",
        check_username_only="string",
        custom_patterns=[{
            "category": "string",
            "pattern": "string",
            "type": "string",
        }],
        default_action="string",
        check_basic_auth="string",
        adom="string",
        domain_controller="string",
        ldap="string",
        max_body_len=0,
        object_webfilter_profile_antiphish_id="string",
        authentication="string",
        scopetype="string",
        status="string")
    
    const objectWebfilterProfileAntiphishResource = new fortimanager.ObjectWebfilterProfileAntiphish("objectWebfilterProfileAntiphishResource", {
        profile: "string",
        dynamicSortSubtable: "string",
        inspectionEntries: [{
            action: "string",
            fortiguardCategories: ["string"],
            name: "string",
        }],
        checkUri: "string",
        checkUsernameOnly: "string",
        customPatterns: [{
            category: "string",
            pattern: "string",
            type: "string",
        }],
        defaultAction: "string",
        checkBasicAuth: "string",
        adom: "string",
        domainController: "string",
        ldap: "string",
        maxBodyLen: 0,
        objectWebfilterProfileAntiphishId: "string",
        authentication: "string",
        scopetype: "string",
        status: "string",
    });
    
    type: fortimanager:ObjectWebfilterProfileAntiphish
    properties:
        adom: string
        authentication: string
        checkBasicAuth: string
        checkUri: string
        checkUsernameOnly: string
        customPatterns:
            - category: string
              pattern: string
              type: string
        defaultAction: string
        domainController: string
        dynamicSortSubtable: string
        inspectionEntries:
            - action: string
              fortiguardCategories:
                - string
              name: string
        ldap: string
        maxBodyLen: 0
        objectWebfilterProfileAntiphishId: string
        profile: string
        scopetype: string
        status: string
    

    ObjectWebfilterProfileAntiphish Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectWebfilterProfileAntiphish resource accepts the following input properties:

    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Authentication string
    Authentication methods. Valid values: domain-controller, ldap.
    CheckBasicAuth string
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    CheckUri string
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    CheckUsernameOnly string
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    CustomPatterns List<ObjectWebfilterProfileAntiphishCustomPattern>
    Custom-Patterns. The structure of custom_patterns block is documented below.
    DefaultAction string
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    DomainController string
    Domain for which to verify received credentials against.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    InspectionEntries List<ObjectWebfilterProfileAntiphishInspectionEntry>
    Inspection-Entries. The structure of inspection_entries block is documented below.
    Ldap string
    LDAP server for which to verify received credentials against.
    MaxBodyLen double
    Maximum size of a POST body to check for credentials.
    ObjectWebfilterProfileAntiphishId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Status string
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    Profile string
    Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Authentication string
    Authentication methods. Valid values: domain-controller, ldap.
    CheckBasicAuth string
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    CheckUri string
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    CheckUsernameOnly string
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    CustomPatterns []ObjectWebfilterProfileAntiphishCustomPatternArgs
    Custom-Patterns. The structure of custom_patterns block is documented below.
    DefaultAction string
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    DomainController string
    Domain for which to verify received credentials against.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    InspectionEntries []ObjectWebfilterProfileAntiphishInspectionEntryArgs
    Inspection-Entries. The structure of inspection_entries block is documented below.
    Ldap string
    LDAP server for which to verify received credentials against.
    MaxBodyLen float64
    Maximum size of a POST body to check for credentials.
    ObjectWebfilterProfileAntiphishId string
    an identifier for the resource.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Status string
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication String
    Authentication methods. Valid values: domain-controller, ldap.
    checkBasicAuth String
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    checkUri String
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    checkUsernameOnly String
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    customPatterns List<ObjectWebfilterProfileAntiphishCustomPattern>
    Custom-Patterns. The structure of custom_patterns block is documented below.
    defaultAction String
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domainController String
    Domain for which to verify received credentials against.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspectionEntries List<ObjectWebfilterProfileAntiphishInspectionEntry>
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap String
    LDAP server for which to verify received credentials against.
    maxBodyLen Double
    Maximum size of a POST body to check for credentials.
    objectWebfilterProfileAntiphishId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status String
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    profile string
    Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication string
    Authentication methods. Valid values: domain-controller, ldap.
    checkBasicAuth string
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    checkUri string
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    checkUsernameOnly string
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    customPatterns ObjectWebfilterProfileAntiphishCustomPattern[]
    Custom-Patterns. The structure of custom_patterns block is documented below.
    defaultAction string
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domainController string
    Domain for which to verify received credentials against.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspectionEntries ObjectWebfilterProfileAntiphishInspectionEntry[]
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap string
    LDAP server for which to verify received credentials against.
    maxBodyLen number
    Maximum size of a POST body to check for credentials.
    objectWebfilterProfileAntiphishId string
    an identifier for the resource.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status string
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    profile str
    Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication str
    Authentication methods. Valid values: domain-controller, ldap.
    check_basic_auth str
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    check_uri str
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    check_username_only str
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    custom_patterns Sequence[ObjectWebfilterProfileAntiphishCustomPatternArgs]
    Custom-Patterns. The structure of custom_patterns block is documented below.
    default_action str
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domain_controller str
    Domain for which to verify received credentials against.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspection_entries Sequence[ObjectWebfilterProfileAntiphishInspectionEntryArgs]
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap str
    LDAP server for which to verify received credentials against.
    max_body_len float
    Maximum size of a POST body to check for credentials.
    object_webfilter_profile_antiphish_id str
    an identifier for the resource.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status str
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    profile String
    Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication String
    Authentication methods. Valid values: domain-controller, ldap.
    checkBasicAuth String
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    checkUri String
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    checkUsernameOnly String
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    customPatterns List<Property Map>
    Custom-Patterns. The structure of custom_patterns block is documented below.
    defaultAction String
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domainController String
    Domain for which to verify received credentials against.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspectionEntries List<Property Map>
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap String
    LDAP server for which to verify received credentials against.
    maxBodyLen Number
    Maximum size of a POST body to check for credentials.
    objectWebfilterProfileAntiphishId String
    an identifier for the resource.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status String
    Toggle AntiPhishing functionality. Valid values: disable, enable.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectWebfilterProfileAntiphish resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectWebfilterProfileAntiphish Resource

    Get an existing ObjectWebfilterProfileAntiphish resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ObjectWebfilterProfileAntiphishState, opts?: CustomResourceOptions): ObjectWebfilterProfileAntiphish
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            authentication: Optional[str] = None,
            check_basic_auth: Optional[str] = None,
            check_uri: Optional[str] = None,
            check_username_only: Optional[str] = None,
            custom_patterns: Optional[Sequence[ObjectWebfilterProfileAntiphishCustomPatternArgs]] = None,
            default_action: Optional[str] = None,
            domain_controller: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            inspection_entries: Optional[Sequence[ObjectWebfilterProfileAntiphishInspectionEntryArgs]] = None,
            ldap: Optional[str] = None,
            max_body_len: Optional[float] = None,
            object_webfilter_profile_antiphish_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None) -> ObjectWebfilterProfileAntiphish
    func GetObjectWebfilterProfileAntiphish(ctx *Context, name string, id IDInput, state *ObjectWebfilterProfileAntiphishState, opts ...ResourceOption) (*ObjectWebfilterProfileAntiphish, error)
    public static ObjectWebfilterProfileAntiphish Get(string name, Input<string> id, ObjectWebfilterProfileAntiphishState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterProfileAntiphish get(String name, Output<String> id, ObjectWebfilterProfileAntiphishState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterProfileAntiphish    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Authentication string
    Authentication methods. Valid values: domain-controller, ldap.
    CheckBasicAuth string
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    CheckUri string
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    CheckUsernameOnly string
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    CustomPatterns List<ObjectWebfilterProfileAntiphishCustomPattern>
    Custom-Patterns. The structure of custom_patterns block is documented below.
    DefaultAction string
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    DomainController string
    Domain for which to verify received credentials against.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    InspectionEntries List<ObjectWebfilterProfileAntiphishInspectionEntry>
    Inspection-Entries. The structure of inspection_entries block is documented below.
    Ldap string
    LDAP server for which to verify received credentials against.
    MaxBodyLen double
    Maximum size of a POST body to check for credentials.
    ObjectWebfilterProfileAntiphishId string
    an identifier for the resource.
    Profile string
    Profile.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Status string
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Authentication string
    Authentication methods. Valid values: domain-controller, ldap.
    CheckBasicAuth string
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    CheckUri string
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    CheckUsernameOnly string
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    CustomPatterns []ObjectWebfilterProfileAntiphishCustomPatternArgs
    Custom-Patterns. The structure of custom_patterns block is documented below.
    DefaultAction string
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    DomainController string
    Domain for which to verify received credentials against.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    InspectionEntries []ObjectWebfilterProfileAntiphishInspectionEntryArgs
    Inspection-Entries. The structure of inspection_entries block is documented below.
    Ldap string
    LDAP server for which to verify received credentials against.
    MaxBodyLen float64
    Maximum size of a POST body to check for credentials.
    ObjectWebfilterProfileAntiphishId string
    an identifier for the resource.
    Profile string
    Profile.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Status string
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication String
    Authentication methods. Valid values: domain-controller, ldap.
    checkBasicAuth String
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    checkUri String
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    checkUsernameOnly String
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    customPatterns List<ObjectWebfilterProfileAntiphishCustomPattern>
    Custom-Patterns. The structure of custom_patterns block is documented below.
    defaultAction String
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domainController String
    Domain for which to verify received credentials against.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspectionEntries List<ObjectWebfilterProfileAntiphishInspectionEntry>
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap String
    LDAP server for which to verify received credentials against.
    maxBodyLen Double
    Maximum size of a POST body to check for credentials.
    objectWebfilterProfileAntiphishId String
    an identifier for the resource.
    profile String
    Profile.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status String
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication string
    Authentication methods. Valid values: domain-controller, ldap.
    checkBasicAuth string
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    checkUri string
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    checkUsernameOnly string
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    customPatterns ObjectWebfilterProfileAntiphishCustomPattern[]
    Custom-Patterns. The structure of custom_patterns block is documented below.
    defaultAction string
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domainController string
    Domain for which to verify received credentials against.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspectionEntries ObjectWebfilterProfileAntiphishInspectionEntry[]
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap string
    LDAP server for which to verify received credentials against.
    maxBodyLen number
    Maximum size of a POST body to check for credentials.
    objectWebfilterProfileAntiphishId string
    an identifier for the resource.
    profile string
    Profile.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status string
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication str
    Authentication methods. Valid values: domain-controller, ldap.
    check_basic_auth str
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    check_uri str
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    check_username_only str
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    custom_patterns Sequence[ObjectWebfilterProfileAntiphishCustomPatternArgs]
    Custom-Patterns. The structure of custom_patterns block is documented below.
    default_action str
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domain_controller str
    Domain for which to verify received credentials against.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspection_entries Sequence[ObjectWebfilterProfileAntiphishInspectionEntryArgs]
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap str
    LDAP server for which to verify received credentials against.
    max_body_len float
    Maximum size of a POST body to check for credentials.
    object_webfilter_profile_antiphish_id str
    an identifier for the resource.
    profile str
    Profile.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status str
    Toggle AntiPhishing functionality. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authentication String
    Authentication methods. Valid values: domain-controller, ldap.
    checkBasicAuth String
    Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values: disable, enable.
    checkUri String
    Enable/disable checking of GET URI parameters for known credentials. Valid values: disable, enable.
    checkUsernameOnly String
    Enable/disable acting only on valid username credentials. Action will be taken for valid usernames regardless of password validity. Valid values: disable, enable.
    customPatterns List<Property Map>
    Custom-Patterns. The structure of custom_patterns block is documented below.
    defaultAction String
    Action to be taken when there is no matching rule. Valid values: log, block, exempt.
    domainController String
    Domain for which to verify received credentials against.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    inspectionEntries List<Property Map>
    Inspection-Entries. The structure of inspection_entries block is documented below.
    ldap String
    LDAP server for which to verify received credentials against.
    maxBodyLen Number
    Maximum size of a POST body to check for credentials.
    objectWebfilterProfileAntiphishId String
    an identifier for the resource.
    profile String
    Profile.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    status String
    Toggle AntiPhishing functionality. Valid values: disable, enable.

    Supporting Types

    ObjectWebfilterProfileAntiphishCustomPattern, ObjectWebfilterProfileAntiphishCustomPatternArgs

    Category string
    Category that the pattern matches. Valid values: username, password.
    Pattern string
    Target pattern.
    Type string
    Pattern will be treated either as a regex pattern or literal string. Valid values: regex, literal.
    Category string
    Category that the pattern matches. Valid values: username, password.
    Pattern string
    Target pattern.
    Type string
    Pattern will be treated either as a regex pattern or literal string. Valid values: regex, literal.
    category String
    Category that the pattern matches. Valid values: username, password.
    pattern String
    Target pattern.
    type String
    Pattern will be treated either as a regex pattern or literal string. Valid values: regex, literal.
    category string
    Category that the pattern matches. Valid values: username, password.
    pattern string
    Target pattern.
    type string
    Pattern will be treated either as a regex pattern or literal string. Valid values: regex, literal.
    category str
    Category that the pattern matches. Valid values: username, password.
    pattern str
    Target pattern.
    type str
    Pattern will be treated either as a regex pattern or literal string. Valid values: regex, literal.
    category String
    Category that the pattern matches. Valid values: username, password.
    pattern String
    Target pattern.
    type String
    Pattern will be treated either as a regex pattern or literal string. Valid values: regex, literal.

    ObjectWebfilterProfileAntiphishInspectionEntry, ObjectWebfilterProfileAntiphishInspectionEntryArgs

    Action string
    Action to be taken upon an AntiPhishing match. Valid values: log, block, exempt.
    FortiguardCategories List<string>
    FortiGuard category to match.
    Name string
    Inspection target name.
    Action string
    Action to be taken upon an AntiPhishing match. Valid values: log, block, exempt.
    FortiguardCategories []string
    FortiGuard category to match.
    Name string
    Inspection target name.
    action String
    Action to be taken upon an AntiPhishing match. Valid values: log, block, exempt.
    fortiguardCategories List<String>
    FortiGuard category to match.
    name String
    Inspection target name.
    action string
    Action to be taken upon an AntiPhishing match. Valid values: log, block, exempt.
    fortiguardCategories string[]
    FortiGuard category to match.
    name string
    Inspection target name.
    action str
    Action to be taken upon an AntiPhishing match. Valid values: log, block, exempt.
    fortiguard_categories Sequence[str]
    FortiGuard category to match.
    name str
    Inspection target name.
    action String
    Action to be taken upon an AntiPhishing match. Valid values: log, block, exempt.
    fortiguardCategories List<String>
    FortiGuard category to match.
    name String
    Inspection target name.

    Import

    ObjectWebfilter ProfileAntiphish can be imported using any of these accepted formats:

    Set import_options = [“profile=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebfilterProfileAntiphish:ObjectWebfilterProfileAntiphish labelname ObjectWebfilterProfileAntiphish
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev