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

fortimanager.ObjectWebfilterFtgdlocalrating

Explore with Pulumi AI

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

    Configure local FortiGuard Web Filter local ratings.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectWebfilterFtgdlocalrating("trname", {
        comment: "This is a Terraform example",
        ratings: ["0"],
        status: "enable",
        url: "terr-webfilter-ftgd-local-rating",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectWebfilterFtgdlocalrating("trname",
        comment="This is a Terraform example",
        ratings=["0"],
        status="enable",
        url="terr-webfilter-ftgd-local-rating")
    
    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 {
    		_, err := fortimanager.NewObjectWebfilterFtgdlocalrating(ctx, "trname", &fortimanager.ObjectWebfilterFtgdlocalratingArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Ratings: pulumi.StringArray{
    				pulumi.String("0"),
    			},
    			Status: pulumi.String("enable"),
    			Url:    pulumi.String("terr-webfilter-ftgd-local-rating"),
    		})
    		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 trname = new Fortimanager.ObjectWebfilterFtgdlocalrating("trname", new()
        {
            Comment = "This is a Terraform example",
            Ratings = new[]
            {
                "0",
            },
            Status = "enable",
            Url = "terr-webfilter-ftgd-local-rating",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebfilterFtgdlocalrating;
    import com.pulumi.fortimanager.ObjectWebfilterFtgdlocalratingArgs;
    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 trname = new ObjectWebfilterFtgdlocalrating("trname", ObjectWebfilterFtgdlocalratingArgs.builder()
                .comment("This is a Terraform example")
                .ratings("0")
                .status("enable")
                .url("terr-webfilter-ftgd-local-rating")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWebfilterFtgdlocalrating
        properties:
          comment: This is a Terraform example
          ratings:
            - '0'
          status: enable
          url: terr-webfilter-ftgd-local-rating
    

    Create ObjectWebfilterFtgdlocalrating Resource

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

    Constructor syntax

    new ObjectWebfilterFtgdlocalrating(name: string, args?: ObjectWebfilterFtgdlocalratingArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebfilterFtgdlocalrating(resource_name: str,
                                       args: Optional[ObjectWebfilterFtgdlocalratingArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebfilterFtgdlocalrating(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       adom: Optional[str] = None,
                                       comment: Optional[str] = None,
                                       object_webfilter_ftgdlocalrating_id: Optional[str] = None,
                                       ratings: Optional[Sequence[str]] = None,
                                       scopetype: Optional[str] = None,
                                       status: Optional[str] = None,
                                       url: Optional[str] = None)
    func NewObjectWebfilterFtgdlocalrating(ctx *Context, name string, args *ObjectWebfilterFtgdlocalratingArgs, opts ...ResourceOption) (*ObjectWebfilterFtgdlocalrating, error)
    public ObjectWebfilterFtgdlocalrating(string name, ObjectWebfilterFtgdlocalratingArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWebfilterFtgdlocalrating(String name, ObjectWebfilterFtgdlocalratingArgs args)
    public ObjectWebfilterFtgdlocalrating(String name, ObjectWebfilterFtgdlocalratingArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebfilterFtgdlocalrating
    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 ObjectWebfilterFtgdlocalratingArgs
    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 ObjectWebfilterFtgdlocalratingArgs
    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 ObjectWebfilterFtgdlocalratingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebfilterFtgdlocalratingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebfilterFtgdlocalratingArgs
    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 objectWebfilterFtgdlocalratingResource = new Fortimanager.ObjectWebfilterFtgdlocalrating("objectWebfilterFtgdlocalratingResource", new()
    {
        Adom = "string",
        Comment = "string",
        ObjectWebfilterFtgdlocalratingId = "string",
        Ratings = new[]
        {
            "string",
        },
        Scopetype = "string",
        Status = "string",
        Url = "string",
    });
    
    example, err := fortimanager.NewObjectWebfilterFtgdlocalrating(ctx, "objectWebfilterFtgdlocalratingResource", &fortimanager.ObjectWebfilterFtgdlocalratingArgs{
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    ObjectWebfilterFtgdlocalratingId: pulumi.String("string"),
    Ratings: pulumi.StringArray{
    pulumi.String("string"),
    },
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    Url: pulumi.String("string"),
    })
    
    var objectWebfilterFtgdlocalratingResource = new ObjectWebfilterFtgdlocalrating("objectWebfilterFtgdlocalratingResource", ObjectWebfilterFtgdlocalratingArgs.builder()
        .adom("string")
        .comment("string")
        .objectWebfilterFtgdlocalratingId("string")
        .ratings("string")
        .scopetype("string")
        .status("string")
        .url("string")
        .build());
    
    object_webfilter_ftgdlocalrating_resource = fortimanager.ObjectWebfilterFtgdlocalrating("objectWebfilterFtgdlocalratingResource",
        adom="string",
        comment="string",
        object_webfilter_ftgdlocalrating_id="string",
        ratings=["string"],
        scopetype="string",
        status="string",
        url="string")
    
    const objectWebfilterFtgdlocalratingResource = new fortimanager.ObjectWebfilterFtgdlocalrating("objectWebfilterFtgdlocalratingResource", {
        adom: "string",
        comment: "string",
        objectWebfilterFtgdlocalratingId: "string",
        ratings: ["string"],
        scopetype: "string",
        status: "string",
        url: "string",
    });
    
    type: fortimanager:ObjectWebfilterFtgdlocalrating
    properties:
        adom: string
        comment: string
        objectWebfilterFtgdlocalratingId: string
        ratings:
            - string
        scopetype: string
        status: string
        url: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    ObjectWebfilterFtgdlocalratingId string
    an identifier for the resource with format {{url}}.
    Ratings List<string>
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    Url string
    URL to rate locally.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    ObjectWebfilterFtgdlocalratingId string
    an identifier for the resource with format {{url}}.
    Ratings []string
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    Url string
    URL to rate locally.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    objectWebfilterFtgdlocalratingId String
    an identifier for the resource with format {{url}}.
    ratings List<String>
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url String
    URL to rate locally.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    objectWebfilterFtgdlocalratingId string
    an identifier for the resource with format {{url}}.
    ratings string[]
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url string
    URL to rate locally.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    object_webfilter_ftgdlocalrating_id str
    an identifier for the resource with format {{url}}.
    ratings Sequence[str]
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url str
    URL to rate locally.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    objectWebfilterFtgdlocalratingId String
    an identifier for the resource with format {{url}}.
    ratings List<String>
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url String
    URL to rate locally.

    Outputs

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

    Get an existing ObjectWebfilterFtgdlocalrating 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?: ObjectWebfilterFtgdlocalratingState, opts?: CustomResourceOptions): ObjectWebfilterFtgdlocalrating
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            object_webfilter_ftgdlocalrating_id: Optional[str] = None,
            ratings: Optional[Sequence[str]] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None,
            url: Optional[str] = None) -> ObjectWebfilterFtgdlocalrating
    func GetObjectWebfilterFtgdlocalrating(ctx *Context, name string, id IDInput, state *ObjectWebfilterFtgdlocalratingState, opts ...ResourceOption) (*ObjectWebfilterFtgdlocalrating, error)
    public static ObjectWebfilterFtgdlocalrating Get(string name, Input<string> id, ObjectWebfilterFtgdlocalratingState? state, CustomResourceOptions? opts = null)
    public static ObjectWebfilterFtgdlocalrating get(String name, Output<String> id, ObjectWebfilterFtgdlocalratingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebfilterFtgdlocalrating    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.
    Comment string
    Comment.
    ObjectWebfilterFtgdlocalratingId string
    an identifier for the resource with format {{url}}.
    Ratings List<string>
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    Url string
    URL to rate locally.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    ObjectWebfilterFtgdlocalratingId string
    an identifier for the resource with format {{url}}.
    Ratings []string
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    Url string
    URL to rate locally.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    objectWebfilterFtgdlocalratingId String
    an identifier for the resource with format {{url}}.
    ratings List<String>
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url String
    URL to rate locally.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    objectWebfilterFtgdlocalratingId string
    an identifier for the resource with format {{url}}.
    ratings string[]
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url string
    URL to rate locally.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    object_webfilter_ftgdlocalrating_id str
    an identifier for the resource with format {{url}}.
    ratings Sequence[str]
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url str
    URL to rate locally.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    objectWebfilterFtgdlocalratingId String
    an identifier for the resource with format {{url}}.
    ratings List<String>
    Local rating.
    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
    Enable/disable local rating. Valid values: disable, enable.
    url String
    URL to rate locally.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebfilterFtgdlocalrating:ObjectWebfilterFtgdlocalrating labelname {{url}}
    

    $ 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