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

fortimanager.ObjectFirewallIppool6DynamicMapping

Explore with Pulumi AI

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

    Configure IPv6 IP pools.

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

    Create ObjectFirewallIppool6DynamicMapping Resource

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

    Constructor syntax

    new ObjectFirewallIppool6DynamicMapping(name: string, args: ObjectFirewallIppool6DynamicMappingArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallIppool6DynamicMapping(resource_name: str,
                                            args: ObjectFirewallIppool6DynamicMappingInitArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallIppool6DynamicMapping(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            ippool6: Optional[str] = None,
                                            external_prefix: Optional[str] = None,
                                            adom: Optional[str] = None,
                                            comments: Optional[str] = None,
                                            dynamic_sort_subtable: Optional[str] = None,
                                            endip: Optional[str] = None,
                                            _scopes: Optional[Sequence[ObjectFirewallIppool6DynamicMapping_ScopeArgs]] = None,
                                            internal_prefix: Optional[str] = None,
                                            add_nat46_route: Optional[str] = None,
                                            nat46: Optional[str] = None,
                                            object_firewall_ippool6_dynamic_mapping_id: Optional[str] = None,
                                            scopetype: Optional[str] = None,
                                            startip: Optional[str] = None,
                                            type: Optional[str] = None)
    func NewObjectFirewallIppool6DynamicMapping(ctx *Context, name string, args ObjectFirewallIppool6DynamicMappingArgs, opts ...ResourceOption) (*ObjectFirewallIppool6DynamicMapping, error)
    public ObjectFirewallIppool6DynamicMapping(string name, ObjectFirewallIppool6DynamicMappingArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallIppool6DynamicMapping(String name, ObjectFirewallIppool6DynamicMappingArgs args)
    public ObjectFirewallIppool6DynamicMapping(String name, ObjectFirewallIppool6DynamicMappingArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallIppool6DynamicMapping
    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 ObjectFirewallIppool6DynamicMappingArgs
    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 ObjectFirewallIppool6DynamicMappingInitArgs
    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 ObjectFirewallIppool6DynamicMappingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallIppool6DynamicMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallIppool6DynamicMappingArgs
    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 objectFirewallIppool6DynamicMappingResource = new Fortimanager.ObjectFirewallIppool6DynamicMapping("objectFirewallIppool6DynamicMappingResource", new()
    {
        Ippool6 = "string",
        ExternalPrefix = "string",
        Adom = "string",
        Comments = "string",
        DynamicSortSubtable = "string",
        Endip = "string",
        _scopes = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallIppool6DynamicMapping_ScopeArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        InternalPrefix = "string",
        AddNat46Route = "string",
        Nat46 = "string",
        ObjectFirewallIppool6DynamicMappingId = "string",
        Scopetype = "string",
        Startip = "string",
        Type = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallIppool6DynamicMapping(ctx, "objectFirewallIppool6DynamicMappingResource", &fortimanager.ObjectFirewallIppool6DynamicMappingArgs{
    Ippool6: pulumi.String("string"),
    ExternalPrefix: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Comments: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Endip: pulumi.String("string"),
    _scopes: .ObjectFirewallIppool6DynamicMapping_ScopeArray{
    &.ObjectFirewallIppool6DynamicMapping_ScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    InternalPrefix: pulumi.String("string"),
    AddNat46Route: pulumi.String("string"),
    Nat46: pulumi.String("string"),
    ObjectFirewallIppool6DynamicMappingId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Startip: pulumi.String("string"),
    Type: pulumi.String("string"),
    })
    
    var objectFirewallIppool6DynamicMappingResource = new ObjectFirewallIppool6DynamicMapping("objectFirewallIppool6DynamicMappingResource", ObjectFirewallIppool6DynamicMappingArgs.builder()
        .ippool6("string")
        .externalPrefix("string")
        .adom("string")
        .comments("string")
        .dynamicSortSubtable("string")
        .endip("string")
        ._scopes(ObjectFirewallIppool6DynamicMapping_ScopeArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .internalPrefix("string")
        .addNat46Route("string")
        .nat46("string")
        .objectFirewallIppool6DynamicMappingId("string")
        .scopetype("string")
        .startip("string")
        .type("string")
        .build());
    
    object_firewall_ippool6_dynamic_mapping_resource = fortimanager.ObjectFirewallIppool6DynamicMapping("objectFirewallIppool6DynamicMappingResource",
        ippool6="string",
        external_prefix="string",
        adom="string",
        comments="string",
        dynamic_sort_subtable="string",
        endip="string",
        _scopes=[{
            "name": "string",
            "vdom": "string",
        }],
        internal_prefix="string",
        add_nat46_route="string",
        nat46="string",
        object_firewall_ippool6_dynamic_mapping_id="string",
        scopetype="string",
        startip="string",
        type="string")
    
    const objectFirewallIppool6DynamicMappingResource = new fortimanager.ObjectFirewallIppool6DynamicMapping("objectFirewallIppool6DynamicMappingResource", {
        ippool6: "string",
        externalPrefix: "string",
        adom: "string",
        comments: "string",
        dynamicSortSubtable: "string",
        endip: "string",
        _scopes: [{
            name: "string",
            vdom: "string",
        }],
        internalPrefix: "string",
        addNat46Route: "string",
        nat46: "string",
        objectFirewallIppool6DynamicMappingId: "string",
        scopetype: "string",
        startip: "string",
        type: "string",
    });
    
    type: fortimanager:ObjectFirewallIppool6DynamicMapping
    properties:
        _scopes:
            - name: string
              vdom: string
        addNat46Route: string
        adom: string
        comments: string
        dynamicSortSubtable: string
        endip: string
        externalPrefix: string
        internalPrefix: string
        ippool6: string
        nat46: string
        objectFirewallIppool6DynamicMappingId: string
        scopetype: string
        startip: string
        type: string
    

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

    Ippool6 string
    Ippool6.
    AddNat46Route string
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Endip string
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    ExternalPrefix string
    Support meta variable External NPTv6 prefix length (32 - 64).
    InternalPrefix string
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    Nat46 string
    Enable/disable NAT46. Valid values: disable, enable.
    ObjectFirewallIppool6DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    Startip string
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    Type string
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes List<ObjectFirewallIppool6DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    Ippool6 string
    Ippool6.
    AddNat46Route string
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Endip string
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    ExternalPrefix string
    Support meta variable External NPTv6 prefix length (32 - 64).
    InternalPrefix string
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    Nat46 string
    Enable/disable NAT46. Valid values: disable, enable.
    ObjectFirewallIppool6DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    Startip string
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    Type string
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes []ObjectFirewallIppool6DynamicMapping_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    ippool6 String
    Ippool6.
    _scopes List<ObjectFirewallIppool6DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    addNat46Route String
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip String
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    externalPrefix String
    Support meta variable External NPTv6 prefix length (32 - 64).
    internalPrefix String
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    nat46 String
    Enable/disable NAT46. Valid values: disable, enable.
    objectFirewallIppool6DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip String
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type String
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    ippool6 string
    Ippool6.
    _scopes ObjectFirewallIppool6DynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    addNat46Route string
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments string
    Comment.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip string
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    externalPrefix string
    Support meta variable External NPTv6 prefix length (32 - 64).
    internalPrefix string
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    nat46 string
    Enable/disable NAT46. Valid values: disable, enable.
    objectFirewallIppool6DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip string
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type string
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    ippool6 str
    Ippool6.
    _scopes Sequence[ObjectFirewallIppool6DynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    add_nat46_route str
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments str
    Comment.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip str
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    external_prefix str
    Support meta variable External NPTv6 prefix length (32 - 64).
    internal_prefix str
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    nat46 str
    Enable/disable NAT46. Valid values: disable, enable.
    object_firewall_ippool6_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip str
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type str
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    ippool6 String
    Ippool6.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    addNat46Route String
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip String
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    externalPrefix String
    Support meta variable External NPTv6 prefix length (32 - 64).
    internalPrefix String
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    nat46 String
    Enable/disable NAT46. Valid values: disable, enable.
    objectFirewallIppool6DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip String
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type String
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.

    Outputs

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

    Get an existing ObjectFirewallIppool6DynamicMapping 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?: ObjectFirewallIppool6DynamicMappingState, opts?: CustomResourceOptions): ObjectFirewallIppool6DynamicMapping
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _scopes: Optional[Sequence[ObjectFirewallIppool6DynamicMapping_ScopeArgs]] = None,
            add_nat46_route: Optional[str] = None,
            adom: Optional[str] = None,
            comments: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            endip: Optional[str] = None,
            external_prefix: Optional[str] = None,
            internal_prefix: Optional[str] = None,
            ippool6: Optional[str] = None,
            nat46: Optional[str] = None,
            object_firewall_ippool6_dynamic_mapping_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            startip: Optional[str] = None,
            type: Optional[str] = None) -> ObjectFirewallIppool6DynamicMapping
    func GetObjectFirewallIppool6DynamicMapping(ctx *Context, name string, id IDInput, state *ObjectFirewallIppool6DynamicMappingState, opts ...ResourceOption) (*ObjectFirewallIppool6DynamicMapping, error)
    public static ObjectFirewallIppool6DynamicMapping Get(string name, Input<string> id, ObjectFirewallIppool6DynamicMappingState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallIppool6DynamicMapping get(String name, Output<String> id, ObjectFirewallIppool6DynamicMappingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallIppool6DynamicMapping    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:
    AddNat46Route string
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Endip string
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    ExternalPrefix string
    Support meta variable External NPTv6 prefix length (32 - 64).
    InternalPrefix string
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    Ippool6 string
    Ippool6.
    Nat46 string
    Enable/disable NAT46. Valid values: disable, enable.
    ObjectFirewallIppool6DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    Startip string
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    Type string
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes List<ObjectFirewallIppool6DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    AddNat46Route string
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Endip string
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    ExternalPrefix string
    Support meta variable External NPTv6 prefix length (32 - 64).
    InternalPrefix string
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    Ippool6 string
    Ippool6.
    Nat46 string
    Enable/disable NAT46. Valid values: disable, enable.
    ObjectFirewallIppool6DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    Startip string
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    Type string
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes []ObjectFirewallIppool6DynamicMapping_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    _scopes List<ObjectFirewallIppool6DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    addNat46Route String
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip String
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    externalPrefix String
    Support meta variable External NPTv6 prefix length (32 - 64).
    internalPrefix String
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    ippool6 String
    Ippool6.
    nat46 String
    Enable/disable NAT46. Valid values: disable, enable.
    objectFirewallIppool6DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip String
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type String
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes ObjectFirewallIppool6DynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    addNat46Route string
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments string
    Comment.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip string
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    externalPrefix string
    Support meta variable External NPTv6 prefix length (32 - 64).
    internalPrefix string
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    ippool6 string
    Ippool6.
    nat46 string
    Enable/disable NAT46. Valid values: disable, enable.
    objectFirewallIppool6DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip string
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type string
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes Sequence[ObjectFirewallIppool6DynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    add_nat46_route str
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments str
    Comment.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip str
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    external_prefix str
    Support meta variable External NPTv6 prefix length (32 - 64).
    internal_prefix str
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    ippool6 str
    Ippool6.
    nat46 str
    Enable/disable NAT46. Valid values: disable, enable.
    object_firewall_ippool6_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip str
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type str
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    addNat46Route String
    Enable/disable adding NAT46 route. Valid values: disable, enable.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    endip String
    Final IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    externalPrefix String
    Support meta variable External NPTv6 prefix length (32 - 64).
    internalPrefix String
    Support meta variable Internal NPTv6 prefix length (32 - 64).
    ippool6 String
    Ippool6.
    nat46 String
    Enable/disable NAT46. Valid values: disable, enable.
    objectFirewallIppool6DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    startip String
    First IPv6 address (inclusive) in the range for the address pool (format xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx, Default: ::).
    type String
    Configure IPv6 pool type (overload or NPTv6). Valid values: overload, nptv6.

    Supporting Types

    ObjectFirewallIppool6DynamicMapping_Scope, ObjectFirewallIppool6DynamicMapping_ScopeArgs

    Name string
    Name.
    Vdom string
    Vdom.
    Name string
    Name.
    Vdom string
    Vdom.
    name String
    Name.
    vdom String
    Vdom.
    name string
    Name.
    vdom string
    Vdom.
    name str
    Name.
    vdom str
    Vdom.
    name String
    Name.
    vdom String
    Vdom.

    Import

    ObjectFirewall Ippool6DynamicMapping can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallIppool6DynamicMapping:ObjectFirewallIppool6DynamicMapping labelname {{_scope.name}}.{{_scope.vdom}}
    

    $ 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