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

fortimanager.ObjectRouterAccesslist6Rule

Explore with Pulumi AI

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

    Rule.

    This resource is a sub resource for variable rule of resource fortimanager.ObjectRouterAccesslist6. 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 trnameObjectRouterAccesslist6 = new fortimanager.ObjectRouterAccesslist6("trnameObjectRouterAccesslist6", {});
    const trnameObjectRouterAccesslist6Rule = new fortimanager.ObjectRouterAccesslist6Rule("trnameObjectRouterAccesslist6Rule", {
        accessList6: trnameObjectRouterAccesslist6.name,
        action: "permit",
        fosid: 1,
    }, {
        dependsOn: [trnameObjectRouterAccesslist6],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_router_accesslist6 = fortimanager.ObjectRouterAccesslist6("trnameObjectRouterAccesslist6")
    trname_object_router_accesslist6_rule = fortimanager.ObjectRouterAccesslist6Rule("trnameObjectRouterAccesslist6Rule",
        access_list6=trname_object_router_accesslist6.name,
        action="permit",
        fosid=1,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_router_accesslist6]))
    
    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 {
    		trnameObjectRouterAccesslist6, err := fortimanager.NewObjectRouterAccesslist6(ctx, "trnameObjectRouterAccesslist6", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectRouterAccesslist6Rule(ctx, "trnameObjectRouterAccesslist6Rule", &fortimanager.ObjectRouterAccesslist6RuleArgs{
    			AccessList6: trnameObjectRouterAccesslist6.Name,
    			Action:      pulumi.String("permit"),
    			Fosid:       pulumi.Float64(1),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectRouterAccesslist6,
    		}))
    		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 trnameObjectRouterAccesslist6 = new Fortimanager.ObjectRouterAccesslist6("trnameObjectRouterAccesslist6");
    
        var trnameObjectRouterAccesslist6Rule = new Fortimanager.ObjectRouterAccesslist6Rule("trnameObjectRouterAccesslist6Rule", new()
        {
            AccessList6 = trnameObjectRouterAccesslist6.Name,
            Action = "permit",
            Fosid = 1,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectRouterAccesslist6,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectRouterAccesslist6;
    import com.pulumi.fortimanager.ObjectRouterAccesslist6Rule;
    import com.pulumi.fortimanager.ObjectRouterAccesslist6RuleArgs;
    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 trnameObjectRouterAccesslist6 = new ObjectRouterAccesslist6("trnameObjectRouterAccesslist6");
    
            var trnameObjectRouterAccesslist6Rule = new ObjectRouterAccesslist6Rule("trnameObjectRouterAccesslist6Rule", ObjectRouterAccesslist6RuleArgs.builder()
                .accessList6(trnameObjectRouterAccesslist6.name())
                .action("permit")
                .fosid(1)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectRouterAccesslist6)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectRouterAccesslist6Rule:
        type: fortimanager:ObjectRouterAccesslist6Rule
        properties:
          accessList6: ${trnameObjectRouterAccesslist6.name}
          action: permit
          fosid: 1
        options:
          dependsOn:
            - ${trnameObjectRouterAccesslist6}
      trnameObjectRouterAccesslist6:
        type: fortimanager:ObjectRouterAccesslist6
    

    Create ObjectRouterAccesslist6Rule Resource

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

    Constructor syntax

    new ObjectRouterAccesslist6Rule(name: string, args: ObjectRouterAccesslist6RuleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectRouterAccesslist6Rule(resource_name: str,
                                    args: ObjectRouterAccesslist6RuleInitArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectRouterAccesslist6Rule(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    access_list6: Optional[str] = None,
                                    action: Optional[str] = None,
                                    adom: Optional[str] = None,
                                    exact_match: Optional[str] = None,
                                    flags: Optional[float] = None,
                                    fosid: Optional[float] = None,
                                    object_router_accesslist6_rule_id: Optional[str] = None,
                                    prefix6: Optional[str] = None,
                                    scopetype: Optional[str] = None)
    func NewObjectRouterAccesslist6Rule(ctx *Context, name string, args ObjectRouterAccesslist6RuleArgs, opts ...ResourceOption) (*ObjectRouterAccesslist6Rule, error)
    public ObjectRouterAccesslist6Rule(string name, ObjectRouterAccesslist6RuleArgs args, CustomResourceOptions? opts = null)
    public ObjectRouterAccesslist6Rule(String name, ObjectRouterAccesslist6RuleArgs args)
    public ObjectRouterAccesslist6Rule(String name, ObjectRouterAccesslist6RuleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectRouterAccesslist6Rule
    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 ObjectRouterAccesslist6RuleArgs
    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 ObjectRouterAccesslist6RuleInitArgs
    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 ObjectRouterAccesslist6RuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectRouterAccesslist6RuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectRouterAccesslist6RuleArgs
    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 objectRouterAccesslist6RuleResource = new Fortimanager.ObjectRouterAccesslist6Rule("objectRouterAccesslist6RuleResource", new()
    {
        AccessList6 = "string",
        Action = "string",
        Adom = "string",
        ExactMatch = "string",
        Flags = 0,
        Fosid = 0,
        ObjectRouterAccesslist6RuleId = "string",
        Prefix6 = "string",
        Scopetype = "string",
    });
    
    example, err := fortimanager.NewObjectRouterAccesslist6Rule(ctx, "objectRouterAccesslist6RuleResource", &fortimanager.ObjectRouterAccesslist6RuleArgs{
    AccessList6: pulumi.String("string"),
    Action: pulumi.String("string"),
    Adom: pulumi.String("string"),
    ExactMatch: pulumi.String("string"),
    Flags: pulumi.Float64(0),
    Fosid: pulumi.Float64(0),
    ObjectRouterAccesslist6RuleId: pulumi.String("string"),
    Prefix6: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    })
    
    var objectRouterAccesslist6RuleResource = new ObjectRouterAccesslist6Rule("objectRouterAccesslist6RuleResource", ObjectRouterAccesslist6RuleArgs.builder()
        .accessList6("string")
        .action("string")
        .adom("string")
        .exactMatch("string")
        .flags(0)
        .fosid(0)
        .objectRouterAccesslist6RuleId("string")
        .prefix6("string")
        .scopetype("string")
        .build());
    
    object_router_accesslist6_rule_resource = fortimanager.ObjectRouterAccesslist6Rule("objectRouterAccesslist6RuleResource",
        access_list6="string",
        action="string",
        adom="string",
        exact_match="string",
        flags=0,
        fosid=0,
        object_router_accesslist6_rule_id="string",
        prefix6="string",
        scopetype="string")
    
    const objectRouterAccesslist6RuleResource = new fortimanager.ObjectRouterAccesslist6Rule("objectRouterAccesslist6RuleResource", {
        accessList6: "string",
        action: "string",
        adom: "string",
        exactMatch: "string",
        flags: 0,
        fosid: 0,
        objectRouterAccesslist6RuleId: "string",
        prefix6: "string",
        scopetype: "string",
    });
    
    type: fortimanager:ObjectRouterAccesslist6Rule
    properties:
        accessList6: string
        action: string
        adom: string
        exactMatch: string
        flags: 0
        fosid: 0
        objectRouterAccesslist6RuleId: string
        prefix6: string
        scopetype: string
    

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

    AccessList6 string
    Access List6.
    Action string
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ExactMatch string
    Enable/disable exact prefix match. Valid values: disable, enable.
    Flags double
    Flags.
    Fosid double
    Rule ID.
    ObjectRouterAccesslist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    AccessList6 string
    Access List6.
    Action string
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ExactMatch string
    Enable/disable exact prefix match. Valid values: disable, enable.
    Flags float64
    Flags.
    Fosid float64
    Rule ID.
    ObjectRouterAccesslist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    accessList6 String
    Access List6.
    action String
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exactMatch String
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags Double
    Flags.
    fosid Double
    Rule ID.
    objectRouterAccesslist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    accessList6 string
    Access List6.
    action string
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exactMatch string
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags number
    Flags.
    fosid number
    Rule ID.
    objectRouterAccesslist6RuleId string
    an identifier for the resource with format {{fosid}}.
    prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    access_list6 str
    Access List6.
    action str
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exact_match str
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags float
    Flags.
    fosid float
    Rule ID.
    object_router_accesslist6_rule_id str
    an identifier for the resource with format {{fosid}}.
    prefix6 str
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    accessList6 String
    Access List6.
    action String
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exactMatch String
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags Number
    Flags.
    fosid Number
    Rule ID.
    objectRouterAccesslist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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 ObjectRouterAccesslist6Rule 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 ObjectRouterAccesslist6Rule Resource

    Get an existing ObjectRouterAccesslist6Rule 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?: ObjectRouterAccesslist6RuleState, opts?: CustomResourceOptions): ObjectRouterAccesslist6Rule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_list6: Optional[str] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            exact_match: Optional[str] = None,
            flags: Optional[float] = None,
            fosid: Optional[float] = None,
            object_router_accesslist6_rule_id: Optional[str] = None,
            prefix6: Optional[str] = None,
            scopetype: Optional[str] = None) -> ObjectRouterAccesslist6Rule
    func GetObjectRouterAccesslist6Rule(ctx *Context, name string, id IDInput, state *ObjectRouterAccesslist6RuleState, opts ...ResourceOption) (*ObjectRouterAccesslist6Rule, error)
    public static ObjectRouterAccesslist6Rule Get(string name, Input<string> id, ObjectRouterAccesslist6RuleState? state, CustomResourceOptions? opts = null)
    public static ObjectRouterAccesslist6Rule get(String name, Output<String> id, ObjectRouterAccesslist6RuleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectRouterAccesslist6Rule    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:
    AccessList6 string
    Access List6.
    Action string
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ExactMatch string
    Enable/disable exact prefix match. Valid values: disable, enable.
    Flags double
    Flags.
    Fosid double
    Rule ID.
    ObjectRouterAccesslist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    AccessList6 string
    Access List6.
    Action string
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ExactMatch string
    Enable/disable exact prefix match. Valid values: disable, enable.
    Flags float64
    Flags.
    Fosid float64
    Rule ID.
    ObjectRouterAccesslist6RuleId string
    an identifier for the resource with format {{fosid}}.
    Prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    accessList6 String
    Access List6.
    action String
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exactMatch String
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags Double
    Flags.
    fosid Double
    Rule ID.
    objectRouterAccesslist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    accessList6 string
    Access List6.
    action string
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exactMatch string
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags number
    Flags.
    fosid number
    Rule ID.
    objectRouterAccesslist6RuleId string
    an identifier for the resource with format {{fosid}}.
    prefix6 string
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    access_list6 str
    Access List6.
    action str
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exact_match str
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags float
    Flags.
    fosid float
    Rule ID.
    object_router_accesslist6_rule_id str
    an identifier for the resource with format {{fosid}}.
    prefix6 str
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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.
    accessList6 String
    Access List6.
    action String
    Permit or deny this IP address and netmask prefix. Valid values: permit, deny.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    exactMatch String
    Enable/disable exact prefix match. Valid values: disable, enable.
    flags Number
    Flags.
    fosid Number
    Rule ID.
    objectRouterAccesslist6RuleId String
    an identifier for the resource with format {{fosid}}.
    prefix6 String
    IPv6 prefix to define regular filter criteria, such as "any" or subnets.
    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

    ObjectRouter AccessList6Rule can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectRouterAccesslist6Rule:ObjectRouterAccesslist6Rule 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