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

fortimanager.ObjectDnsfilterProfileFtgddnsFilters

Explore with Pulumi AI

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

    FortiGuard DNS domain filters.

    This resource is a sub resource for variable filters of resource fortimanager.ObjectDnsfilterProfileFtgddns. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectDnsfilterProfile = new fortimanager.ObjectDnsfilterProfile("trnameObjectDnsfilterProfile", {});
    const trnameObjectDnsfilterProfileFtgddnsFilters = new fortimanager.ObjectDnsfilterProfileFtgddnsFilters("trnameObjectDnsfilterProfileFtgddnsFilters", {
        profile: trnameObjectDnsfilterProfile.name,
        category: "2",
        fosid: 1,
        log: "enable",
    }, {
        dependsOn: [trnameObjectDnsfilterProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_dnsfilter_profile = fortimanager.ObjectDnsfilterProfile("trnameObjectDnsfilterProfile")
    trname_object_dnsfilter_profile_ftgddns_filters = fortimanager.ObjectDnsfilterProfileFtgddnsFilters("trnameObjectDnsfilterProfileFtgddnsFilters",
        profile=trname_object_dnsfilter_profile.name,
        category="2",
        fosid=1,
        log="enable",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_dnsfilter_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 {
    		trnameObjectDnsfilterProfile, err := fortimanager.NewObjectDnsfilterProfile(ctx, "trnameObjectDnsfilterProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectDnsfilterProfileFtgddnsFilters(ctx, "trnameObjectDnsfilterProfileFtgddnsFilters", &fortimanager.ObjectDnsfilterProfileFtgddnsFiltersArgs{
    			Profile:  trnameObjectDnsfilterProfile.Name,
    			Category: pulumi.String("2"),
    			Fosid:    pulumi.Float64(1),
    			Log:      pulumi.String("enable"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectDnsfilterProfile,
    		}))
    		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 trnameObjectDnsfilterProfile = new Fortimanager.ObjectDnsfilterProfile("trnameObjectDnsfilterProfile");
    
        var trnameObjectDnsfilterProfileFtgddnsFilters = new Fortimanager.ObjectDnsfilterProfileFtgddnsFilters("trnameObjectDnsfilterProfileFtgddnsFilters", new()
        {
            Profile = trnameObjectDnsfilterProfile.Name,
            Category = "2",
            Fosid = 1,
            Log = "enable",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectDnsfilterProfile,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectDnsfilterProfile;
    import com.pulumi.fortimanager.ObjectDnsfilterProfileFtgddnsFilters;
    import com.pulumi.fortimanager.ObjectDnsfilterProfileFtgddnsFiltersArgs;
    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 trnameObjectDnsfilterProfile = new ObjectDnsfilterProfile("trnameObjectDnsfilterProfile");
    
            var trnameObjectDnsfilterProfileFtgddnsFilters = new ObjectDnsfilterProfileFtgddnsFilters("trnameObjectDnsfilterProfileFtgddnsFilters", ObjectDnsfilterProfileFtgddnsFiltersArgs.builder()
                .profile(trnameObjectDnsfilterProfile.name())
                .category(2)
                .fosid(1)
                .log("enable")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectDnsfilterProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectDnsfilterProfileFtgddnsFilters:
        type: fortimanager:ObjectDnsfilterProfileFtgddnsFilters
        properties:
          profile: ${trnameObjectDnsfilterProfile.name}
          category: 2
          fosid: 1
          log: enable
        options:
          dependsOn:
            - ${trnameObjectDnsfilterProfile}
      trnameObjectDnsfilterProfile:
        type: fortimanager:ObjectDnsfilterProfile
    

    Create ObjectDnsfilterProfileFtgddnsFilters Resource

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

    Constructor syntax

    new ObjectDnsfilterProfileFtgddnsFilters(name: string, args: ObjectDnsfilterProfileFtgddnsFiltersArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectDnsfilterProfileFtgddnsFilters(resource_name: str,
                                             args: ObjectDnsfilterProfileFtgddnsFiltersArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectDnsfilterProfileFtgddnsFilters(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             profile: Optional[str] = None,
                                             action: Optional[str] = None,
                                             adom: Optional[str] = None,
                                             category: Optional[str] = None,
                                             fosid: Optional[float] = None,
                                             log: Optional[str] = None,
                                             object_dnsfilter_profile_ftgddns_filters_id: Optional[str] = None,
                                             scopetype: Optional[str] = None)
    func NewObjectDnsfilterProfileFtgddnsFilters(ctx *Context, name string, args ObjectDnsfilterProfileFtgddnsFiltersArgs, opts ...ResourceOption) (*ObjectDnsfilterProfileFtgddnsFilters, error)
    public ObjectDnsfilterProfileFtgddnsFilters(string name, ObjectDnsfilterProfileFtgddnsFiltersArgs args, CustomResourceOptions? opts = null)
    public ObjectDnsfilterProfileFtgddnsFilters(String name, ObjectDnsfilterProfileFtgddnsFiltersArgs args)
    public ObjectDnsfilterProfileFtgddnsFilters(String name, ObjectDnsfilterProfileFtgddnsFiltersArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectDnsfilterProfileFtgddnsFilters
    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 ObjectDnsfilterProfileFtgddnsFiltersArgs
    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 ObjectDnsfilterProfileFtgddnsFiltersArgs
    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 ObjectDnsfilterProfileFtgddnsFiltersArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectDnsfilterProfileFtgddnsFiltersArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectDnsfilterProfileFtgddnsFiltersArgs
    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 objectDnsfilterProfileFtgddnsFiltersResource = new Fortimanager.ObjectDnsfilterProfileFtgddnsFilters("objectDnsfilterProfileFtgddnsFiltersResource", new()
    {
        Profile = "string",
        Action = "string",
        Adom = "string",
        Category = "string",
        Fosid = 0,
        Log = "string",
        ObjectDnsfilterProfileFtgddnsFiltersId = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectDnsfilterProfileFtgddnsFilters(ctx, "objectDnsfilterProfileFtgddnsFiltersResource", &fortimanager.ObjectDnsfilterProfileFtgddnsFiltersArgs{
    Profile: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Category: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Log: pulumi.String("string"),
    ObjectDnsfilterProfileFtgddnsFiltersId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectDnsfilterProfileFtgddnsFiltersResource = new ObjectDnsfilterProfileFtgddnsFilters("objectDnsfilterProfileFtgddnsFiltersResource", ObjectDnsfilterProfileFtgddnsFiltersArgs.builder()
        .profile("string")
        .action("string")
        .adom("string")
        .category("string")
        .fosid(0)
        .log("string")
        .objectDnsfilterProfileFtgddnsFiltersId("string")
        .scopetype("string")
        .build());
    
    object_dnsfilter_profile_ftgddns_filters_resource = fortimanager.ObjectDnsfilterProfileFtgddnsFilters("objectDnsfilterProfileFtgddnsFiltersResource",
        profile="string",
        action="string",
        adom="string",
        category="string",
        fosid=0,
        log="string",
        object_dnsfilter_profile_ftgddns_filters_id="string",
        scopetype="string")
    
    const objectDnsfilterProfileFtgddnsFiltersResource = new fortimanager.ObjectDnsfilterProfileFtgddnsFilters("objectDnsfilterProfileFtgddnsFiltersResource", {
        profile: "string",
        action: "string",
        adom: "string",
        category: "string",
        fosid: 0,
        log: "string",
        objectDnsfilterProfileFtgddnsFiltersId: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectDnsfilterProfileFtgddnsFilters
    properties:
        action: string
        adom: string
        category: string
        fosid: 0
        log: string
        objectDnsfilterProfileFtgddnsFiltersId: string
        profile: string
        scopetype: string
    

    ObjectDnsfilterProfileFtgddnsFilters 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 ObjectDnsfilterProfileFtgddnsFilters resource accepts the following input properties:

    Profile string
    Profile.
    Action string
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category number.
    Fosid double
    ID number.
    Log string
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    ObjectDnsfilterProfileFtgddnsFiltersId string
    an identifier for the resource with format {{fosid}}.
    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.
    Profile string
    Profile.
    Action string
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category number.
    Fosid float64
    ID number.
    Log string
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    ObjectDnsfilterProfileFtgddnsFiltersId string
    an identifier for the resource with format {{fosid}}.
    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.
    profile String
    Profile.
    action String
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category number.
    fosid Double
    ID number.
    log String
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    objectDnsfilterProfileFtgddnsFiltersId String
    an identifier for the resource with format {{fosid}}.
    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.
    profile string
    Profile.
    action string
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category string
    Category number.
    fosid number
    ID number.
    log string
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    objectDnsfilterProfileFtgddnsFiltersId string
    an identifier for the resource with format {{fosid}}.
    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.
    profile str
    Profile.
    action str
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category str
    Category number.
    fosid float
    ID number.
    log str
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    object_dnsfilter_profile_ftgddns_filters_id str
    an identifier for the resource with format {{fosid}}.
    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.
    profile String
    Profile.
    action String
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category number.
    fosid Number
    ID number.
    log String
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    objectDnsfilterProfileFtgddnsFiltersId String
    an identifier for the resource with format {{fosid}}.
    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.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectDnsfilterProfileFtgddnsFilters 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 ObjectDnsfilterProfileFtgddnsFilters Resource

    Get an existing ObjectDnsfilterProfileFtgddnsFilters 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?: ObjectDnsfilterProfileFtgddnsFiltersState, opts?: CustomResourceOptions): ObjectDnsfilterProfileFtgddnsFilters
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            category: Optional[str] = None,
            fosid: Optional[float] = None,
            log: Optional[str] = None,
            object_dnsfilter_profile_ftgddns_filters_id: Optional[str] = None,
            profile: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectDnsfilterProfileFtgddnsFilters
    func GetObjectDnsfilterProfileFtgddnsFilters(ctx *Context, name string, id IDInput, state *ObjectDnsfilterProfileFtgddnsFiltersState, opts ...ResourceOption) (*ObjectDnsfilterProfileFtgddnsFilters, error)
    public static ObjectDnsfilterProfileFtgddnsFilters Get(string name, Input<string> id, ObjectDnsfilterProfileFtgddnsFiltersState? state, CustomResourceOptions? opts = null)
    public static ObjectDnsfilterProfileFtgddnsFilters get(String name, Output<String> id, ObjectDnsfilterProfileFtgddnsFiltersState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectDnsfilterProfileFtgddnsFilters    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:
    Action string
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category number.
    Fosid double
    ID number.
    Log string
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    ObjectDnsfilterProfileFtgddnsFiltersId string
    an identifier for the resource with format {{fosid}}.
    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.
    Action string
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Category string
    Category number.
    Fosid float64
    ID number.
    Log string
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    ObjectDnsfilterProfileFtgddnsFiltersId string
    an identifier for the resource with format {{fosid}}.
    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.
    action String
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category number.
    fosid Double
    ID number.
    log String
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    objectDnsfilterProfileFtgddnsFiltersId String
    an identifier for the resource with format {{fosid}}.
    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.
    action string
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category string
    Category number.
    fosid number
    ID number.
    log string
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    objectDnsfilterProfileFtgddnsFiltersId string
    an identifier for the resource with format {{fosid}}.
    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.
    action str
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category str
    Category number.
    fosid float
    ID number.
    log str
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    object_dnsfilter_profile_ftgddns_filters_id str
    an identifier for the resource with format {{fosid}}.
    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.
    action String
    Action to take for DNS requests matching the category. Valid values: monitor, block.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    category String
    Category number.
    fosid Number
    ID number.
    log String
    Enable/disable DNS filter logging for this DNS profile. Valid values: disable, enable.
    objectDnsfilterProfileFtgddnsFiltersId String
    an identifier for the resource with format {{fosid}}.
    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.

    Import

    ObjectDnsfilter ProfileFtgdDnsFilters 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/objectDnsfilterProfileFtgddnsFilters:ObjectDnsfilterProfileFtgddnsFilters labelname {{fosid}}
    

    $ 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