fortimanager.ObjectWebfilterProfileAntiphish
Explore with Pulumi AI
AntiPhishing profile.
This resource is a sub resource for variable
antiphish
of resourcefortimanager.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
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Authentication methods. Valid values:
domain-controller
,ldap
. - Check
Basic stringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - Check
Uri string - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - Check
Username stringOnly - 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 List<ObjectWebfilter Profile Antiphish Custom Pattern> - Custom-Patterns. The structure of
custom_patterns
block is documented below. - Default
Action string - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - Domain
Controller string - Domain for which to verify received credentials against.
- Dynamic
Sort stringSubtable - 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 List<ObjectWebfilter Profile Antiphish Inspection Entry> - Inspection-Entries. The structure of
inspection_entries
block is documented below. - Ldap string
- LDAP server for which to verify received credentials against.
- Max
Body doubleLen - Maximum size of a POST body to check for credentials.
- Object
Webfilter stringProfile Antiphish Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Authentication methods. Valid values:
domain-controller
,ldap
. - Check
Basic stringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - Check
Uri string - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - Check
Username stringOnly - 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 []ObjectWebfilter Profile Antiphish Custom Pattern Args - Custom-Patterns. The structure of
custom_patterns
block is documented below. - Default
Action string - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - Domain
Controller string - Domain for which to verify received credentials against.
- Dynamic
Sort stringSubtable - 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 []ObjectWebfilter Profile Antiphish Inspection Entry Args - Inspection-Entries. The structure of
inspection_entries
block is documented below. - Ldap string
- LDAP server for which to verify received credentials against.
- Max
Body float64Len - Maximum size of a POST body to check for credentials.
- Object
Webfilter stringProfile Antiphish Id - an identifier for the resource.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Authentication methods. Valid values:
domain-controller
,ldap
. - check
Basic StringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - check
Uri String - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - check
Username StringOnly - 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 List<ObjectWebfilter Profile Antiphish Custom Pattern> - Custom-Patterns. The structure of
custom_patterns
block is documented below. - default
Action String - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - domain
Controller String - Domain for which to verify received credentials against.
- dynamic
Sort StringSubtable - 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 List<ObjectWebfilter Profile Antiphish Inspection Entry> - Inspection-Entries. The structure of
inspection_entries
block is documented below. - ldap String
- LDAP server for which to verify received credentials against.
- max
Body DoubleLen - Maximum size of a POST body to check for credentials.
- object
Webfilter StringProfile Antiphish Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- profile string
- Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication string
- Authentication methods. Valid values:
domain-controller
,ldap
. - check
Basic stringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - check
Uri string - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - check
Username stringOnly - 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 ObjectWebfilter Profile Antiphish Custom Pattern[] - Custom-Patterns. The structure of
custom_patterns
block is documented below. - default
Action string - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - domain
Controller string - Domain for which to verify received credentials against.
- dynamic
Sort stringSubtable - 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 ObjectWebfilter Profile Antiphish Inspection Entry[] - Inspection-Entries. The structure of
inspection_entries
block is documented below. - ldap string
- LDAP server for which to verify received credentials against.
- max
Body numberLen - Maximum size of a POST body to check for credentials.
- object
Webfilter stringProfile Antiphish Id - an identifier for the resource.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- profile str
- Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication str
- Authentication methods. Valid values:
domain-controller
,ldap
. - check_
basic_ strauth - 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_ stronly - 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[ObjectWebfilter Profile Antiphish Custom Pattern Args] - 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_ strsubtable - 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[ObjectWebfilter Profile Antiphish Inspection Entry Args] - Inspection-Entries. The structure of
inspection_entries
block is documented below. - ldap str
- LDAP server for which to verify received credentials against.
- max_
body_ floatlen - Maximum size of a POST body to check for credentials.
- object_
webfilter_ strprofile_ antiphish_ id - an identifier for the resource.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Authentication methods. Valid values:
domain-controller
,ldap
. - check
Basic StringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - check
Uri String - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - check
Username StringOnly - 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 List<Property Map> - Custom-Patterns. The structure of
custom_patterns
block is documented below. - default
Action String - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - domain
Controller String - Domain for which to verify received credentials against.
- dynamic
Sort StringSubtable - 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 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.
- max
Body NumberLen - Maximum size of a POST body to check for credentials.
- object
Webfilter StringProfile Antiphish Id - an identifier for the resource.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Authentication methods. Valid values:
domain-controller
,ldap
. - Check
Basic stringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - Check
Uri string - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - Check
Username stringOnly - 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 List<ObjectWebfilter Profile Antiphish Custom Pattern> - Custom-Patterns. The structure of
custom_patterns
block is documented below. - Default
Action string - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - Domain
Controller string - Domain for which to verify received credentials against.
- Dynamic
Sort stringSubtable - 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 List<ObjectWebfilter Profile Antiphish Inspection Entry> - Inspection-Entries. The structure of
inspection_entries
block is documented below. - Ldap string
- LDAP server for which to verify received credentials against.
- Max
Body doubleLen - Maximum size of a POST body to check for credentials.
- Object
Webfilter stringProfile Antiphish Id - an identifier for the resource.
- Profile string
- Profile.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Authentication string
- Authentication methods. Valid values:
domain-controller
,ldap
. - Check
Basic stringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - Check
Uri string - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - Check
Username stringOnly - 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 []ObjectWebfilter Profile Antiphish Custom Pattern Args - Custom-Patterns. The structure of
custom_patterns
block is documented below. - Default
Action string - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - Domain
Controller string - Domain for which to verify received credentials against.
- Dynamic
Sort stringSubtable - 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 []ObjectWebfilter Profile Antiphish Inspection Entry Args - Inspection-Entries. The structure of
inspection_entries
block is documented below. - Ldap string
- LDAP server for which to verify received credentials against.
- Max
Body float64Len - Maximum size of a POST body to check for credentials.
- Object
Webfilter stringProfile Antiphish Id - an identifier for the resource.
- Profile string
- Profile.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Status string
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Authentication methods. Valid values:
domain-controller
,ldap
. - check
Basic StringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - check
Uri String - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - check
Username StringOnly - 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 List<ObjectWebfilter Profile Antiphish Custom Pattern> - Custom-Patterns. The structure of
custom_patterns
block is documented below. - default
Action String - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - domain
Controller String - Domain for which to verify received credentials against.
- dynamic
Sort StringSubtable - 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 List<ObjectWebfilter Profile Antiphish Inspection Entry> - Inspection-Entries. The structure of
inspection_entries
block is documented below. - ldap String
- LDAP server for which to verify received credentials against.
- max
Body DoubleLen - Maximum size of a POST body to check for credentials.
- object
Webfilter StringProfile Antiphish Id - an identifier for the resource.
- profile String
- Profile.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication string
- Authentication methods. Valid values:
domain-controller
,ldap
. - check
Basic stringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - check
Uri string - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - check
Username stringOnly - 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 ObjectWebfilter Profile Antiphish Custom Pattern[] - Custom-Patterns. The structure of
custom_patterns
block is documented below. - default
Action string - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - domain
Controller string - Domain for which to verify received credentials against.
- dynamic
Sort stringSubtable - 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 ObjectWebfilter Profile Antiphish Inspection Entry[] - Inspection-Entries. The structure of
inspection_entries
block is documented below. - ldap string
- LDAP server for which to verify received credentials against.
- max
Body numberLen - Maximum size of a POST body to check for credentials.
- object
Webfilter stringProfile Antiphish Id - an identifier for the resource.
- profile string
- Profile.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status string
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication str
- Authentication methods. Valid values:
domain-controller
,ldap
. - check_
basic_ strauth - 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_ stronly - 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[ObjectWebfilter Profile Antiphish Custom Pattern Args] - 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_ strsubtable - 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[ObjectWebfilter Profile Antiphish Inspection Entry Args] - Inspection-Entries. The structure of
inspection_entries
block is documented below. - ldap str
- LDAP server for which to verify received credentials against.
- max_
body_ floatlen - Maximum size of a POST body to check for credentials.
- object_
webfilter_ strprofile_ antiphish_ id - an identifier for the resource.
- profile str
- Profile.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status str
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - authentication String
- Authentication methods. Valid values:
domain-controller
,ldap
. - check
Basic StringAuth - Enable/disable checking of HTTP Basic Auth field for known credentials. Valid values:
disable
,enable
. - check
Uri String - Enable/disable checking of GET URI parameters for known credentials. Valid values:
disable
,enable
. - check
Username StringOnly - 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 List<Property Map> - Custom-Patterns. The structure of
custom_patterns
block is documented below. - default
Action String - Action to be taken when there is no matching rule. Valid values:
log
,block
,exempt
. - domain
Controller String - Domain for which to verify received credentials against.
- dynamic
Sort StringSubtable - 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 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.
- max
Body NumberLen - Maximum size of a POST body to check for credentials.
- object
Webfilter StringProfile Antiphish Id - an identifier for the resource.
- profile String
- Profile.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - status String
- Toggle AntiPhishing functionality. Valid values:
disable
,enable
.
Supporting Types
ObjectWebfilterProfileAntiphishCustomPattern, ObjectWebfilterProfileAntiphishCustomPatternArgs
ObjectWebfilterProfileAntiphishInspectionEntry, ObjectWebfilterProfileAntiphishInspectionEntryArgs
- Action string
- Action to be taken upon an AntiPhishing match. Valid values:
log
,block
,exempt
. - Fortiguard
Categories 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
. - Fortiguard
Categories []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
. - fortiguard
Categories 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
. - fortiguard
Categories 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
. - fortiguard
Categories 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.