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

fortimanager.ObjectFirewallVip64DynamicMapping

Explore with Pulumi AI

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

    Configure IPv6 to IPv4 virtual IPs.

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

    Create ObjectFirewallVip64DynamicMapping Resource

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

    Constructor syntax

    new ObjectFirewallVip64DynamicMapping(name: string, args: ObjectFirewallVip64DynamicMappingArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallVip64DynamicMapping(resource_name: str,
                                          args: ObjectFirewallVip64DynamicMappingInitArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallVip64DynamicMapping(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          vip64: Optional[str] = None,
                                          mappedip: Optional[str] = None,
                                          dynamic_sort_subtable: Optional[str] = None,
                                          mappedport: Optional[str] = None,
                                          object_firewall_vip64_dynamic_mapping_id: Optional[str] = None,
                                          monitor: Optional[str] = None,
                                          extip: Optional[str] = None,
                                          extport: Optional[str] = None,
                                          fosid: Optional[float] = None,
                                          ldb_method: Optional[str] = None,
                                          _scopes: Optional[Sequence[ObjectFirewallVip64DynamicMapping_ScopeArgs]] = None,
                                          color: Optional[float] = None,
                                          arp_reply: Optional[str] = None,
                                          comment: Optional[str] = None,
                                          portforward: Optional[str] = None,
                                          protocol: Optional[str] = None,
                                          scopetype: Optional[str] = None,
                                          server_type: Optional[str] = None,
                                          src_filters: Optional[Sequence[str]] = None,
                                          type: Optional[str] = None,
                                          uuid: Optional[str] = None,
                                          adom: Optional[str] = None)
    func NewObjectFirewallVip64DynamicMapping(ctx *Context, name string, args ObjectFirewallVip64DynamicMappingArgs, opts ...ResourceOption) (*ObjectFirewallVip64DynamicMapping, error)
    public ObjectFirewallVip64DynamicMapping(string name, ObjectFirewallVip64DynamicMappingArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallVip64DynamicMapping(String name, ObjectFirewallVip64DynamicMappingArgs args)
    public ObjectFirewallVip64DynamicMapping(String name, ObjectFirewallVip64DynamicMappingArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallVip64DynamicMapping
    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 ObjectFirewallVip64DynamicMappingArgs
    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 ObjectFirewallVip64DynamicMappingInitArgs
    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 ObjectFirewallVip64DynamicMappingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallVip64DynamicMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallVip64DynamicMappingArgs
    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 objectFirewallVip64DynamicMappingResource = new Fortimanager.ObjectFirewallVip64DynamicMapping("objectFirewallVip64DynamicMappingResource", new()
    {
        Vip64 = "string",
        Mappedip = "string",
        DynamicSortSubtable = "string",
        Mappedport = "string",
        ObjectFirewallVip64DynamicMappingId = "string",
        Monitor = "string",
        Extip = "string",
        Extport = "string",
        Fosid = 0,
        LdbMethod = "string",
        _scopes = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallVip64DynamicMapping_ScopeArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        Color = 0,
        ArpReply = "string",
        Comment = "string",
        Portforward = "string",
        Protocol = "string",
        Scopetype = "string",
        ServerType = "string",
        SrcFilters = new[]
        {
            "string",
        },
        Type = "string",
        Uuid = "string",
        Adom = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallVip64DynamicMapping(ctx, "objectFirewallVip64DynamicMappingResource", &fortimanager.ObjectFirewallVip64DynamicMappingArgs{
    Vip64: pulumi.String("string"),
    Mappedip: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Mappedport: pulumi.String("string"),
    ObjectFirewallVip64DynamicMappingId: pulumi.String("string"),
    Monitor: pulumi.String("string"),
    Extip: pulumi.String("string"),
    Extport: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    LdbMethod: pulumi.String("string"),
    _scopes: .ObjectFirewallVip64DynamicMapping_ScopeArray{
    &.ObjectFirewallVip64DynamicMapping_ScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    Color: pulumi.Float64(0),
    ArpReply: pulumi.String("string"),
    Comment: pulumi.String("string"),
    Portforward: pulumi.String("string"),
    Protocol: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    ServerType: pulumi.String("string"),
    SrcFilters: pulumi.StringArray{
    pulumi.String("string"),
    },
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Adom: pulumi.String("string"),
    })
    
    var objectFirewallVip64DynamicMappingResource = new ObjectFirewallVip64DynamicMapping("objectFirewallVip64DynamicMappingResource", ObjectFirewallVip64DynamicMappingArgs.builder()
        .vip64("string")
        .mappedip("string")
        .dynamicSortSubtable("string")
        .mappedport("string")
        .objectFirewallVip64DynamicMappingId("string")
        .monitor("string")
        .extip("string")
        .extport("string")
        .fosid(0)
        .ldbMethod("string")
        ._scopes(ObjectFirewallVip64DynamicMapping_ScopeArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .color(0)
        .arpReply("string")
        .comment("string")
        .portforward("string")
        .protocol("string")
        .scopetype("string")
        .serverType("string")
        .srcFilters("string")
        .type("string")
        .uuid("string")
        .adom("string")
        .build());
    
    object_firewall_vip64_dynamic_mapping_resource = fortimanager.ObjectFirewallVip64DynamicMapping("objectFirewallVip64DynamicMappingResource",
        vip64="string",
        mappedip="string",
        dynamic_sort_subtable="string",
        mappedport="string",
        object_firewall_vip64_dynamic_mapping_id="string",
        monitor="string",
        extip="string",
        extport="string",
        fosid=0,
        ldb_method="string",
        _scopes=[{
            "name": "string",
            "vdom": "string",
        }],
        color=0,
        arp_reply="string",
        comment="string",
        portforward="string",
        protocol="string",
        scopetype="string",
        server_type="string",
        src_filters=["string"],
        type="string",
        uuid="string",
        adom="string")
    
    const objectFirewallVip64DynamicMappingResource = new fortimanager.ObjectFirewallVip64DynamicMapping("objectFirewallVip64DynamicMappingResource", {
        vip64: "string",
        mappedip: "string",
        dynamicSortSubtable: "string",
        mappedport: "string",
        objectFirewallVip64DynamicMappingId: "string",
        monitor: "string",
        extip: "string",
        extport: "string",
        fosid: 0,
        ldbMethod: "string",
        _scopes: [{
            name: "string",
            vdom: "string",
        }],
        color: 0,
        arpReply: "string",
        comment: "string",
        portforward: "string",
        protocol: "string",
        scopetype: "string",
        serverType: "string",
        srcFilters: ["string"],
        type: "string",
        uuid: "string",
        adom: "string",
    });
    
    type: fortimanager:ObjectFirewallVip64DynamicMapping
    properties:
        _scopes:
            - name: string
              vdom: string
        adom: string
        arpReply: string
        color: 0
        comment: string
        dynamicSortSubtable: string
        extip: string
        extport: string
        fosid: 0
        ldbMethod: string
        mappedip: string
        mappedport: string
        monitor: string
        objectFirewallVip64DynamicMappingId: string
        portforward: string
        protocol: string
        scopetype: string
        serverType: string
        srcFilters:
            - string
        type: string
        uuid: string
        vip64: string
    

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

    Vip64 string
    Vip64.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArpReply string
    Enable ARP reply. Valid values: disable, enable.
    Color double
    Color of icon on the GUI.
    Comment 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.
    Extip string
    Start-external-IP [-end-external-IP].
    Extport string
    External service port.
    Fosid double
    Custom defined id.
    LdbMethod string
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    Mappedip string
    Start-mapped-IP [-end-mapped-IP].
    Mappedport string
    Mapped service port.
    Monitor string
    Health monitors.
    ObjectFirewallVip64DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    Portforward string
    Enable port forwarding. Valid values: disable, enable.
    Protocol string
    Mapped port protocol. Valid values: tcp, udp.
    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.
    ServerType string
    Server type. Valid values: http, tcp, udp, ip.
    SrcFilters List<string>
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    Type string
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _scopes List<ObjectFirewallVip64DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    Vip64 string
    Vip64.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArpReply string
    Enable ARP reply. Valid values: disable, enable.
    Color float64
    Color of icon on the GUI.
    Comment 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.
    Extip string
    Start-external-IP [-end-external-IP].
    Extport string
    External service port.
    Fosid float64
    Custom defined id.
    LdbMethod string
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    Mappedip string
    Start-mapped-IP [-end-mapped-IP].
    Mappedport string
    Mapped service port.
    Monitor string
    Health monitors.
    ObjectFirewallVip64DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    Portforward string
    Enable port forwarding. Valid values: disable, enable.
    Protocol string
    Mapped port protocol. Valid values: tcp, udp.
    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.
    ServerType string
    Server type. Valid values: http, tcp, udp, ip.
    SrcFilters []string
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    Type string
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    _scopes []ObjectFirewallVip64DynamicMapping_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    vip64 String
    Vip64.
    _scopes List<ObjectFirewallVip64DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arpReply String
    Enable ARP reply. Valid values: disable, enable.
    color Double
    Color of icon on the GUI.
    comment 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.
    extip String
    Start-external-IP [-end-external-IP].
    extport String
    External service port.
    fosid Double
    Custom defined id.
    ldbMethod String
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip String
    Start-mapped-IP [-end-mapped-IP].
    mappedport String
    Mapped service port.
    monitor String
    Health monitors.
    objectFirewallVip64DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward String
    Enable port forwarding. Valid values: disable, enable.
    protocol String
    Mapped port protocol. Valid values: tcp, udp.
    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.
    serverType String
    Server type. Valid values: http, tcp, udp, ip.
    srcFilters List<String>
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type String
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 string
    Vip64.
    _scopes ObjectFirewallVip64DynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arpReply string
    Enable ARP reply. Valid values: disable, enable.
    color number
    Color of icon on the GUI.
    comment 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.
    extip string
    Start-external-IP [-end-external-IP].
    extport string
    External service port.
    fosid number
    Custom defined id.
    ldbMethod string
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip string
    Start-mapped-IP [-end-mapped-IP].
    mappedport string
    Mapped service port.
    monitor string
    Health monitors.
    objectFirewallVip64DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward string
    Enable port forwarding. Valid values: disable, enable.
    protocol string
    Mapped port protocol. Valid values: tcp, udp.
    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.
    serverType string
    Server type. Valid values: http, tcp, udp, ip.
    srcFilters string[]
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type string
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 str
    Vip64.
    _scopes Sequence[ObjectFirewallVip64DynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arp_reply str
    Enable ARP reply. Valid values: disable, enable.
    color float
    Color of icon on the GUI.
    comment 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.
    extip str
    Start-external-IP [-end-external-IP].
    extport str
    External service port.
    fosid float
    Custom defined id.
    ldb_method str
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip str
    Start-mapped-IP [-end-mapped-IP].
    mappedport str
    Mapped service port.
    monitor str
    Health monitors.
    object_firewall_vip64_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward str
    Enable port forwarding. Valid values: disable, enable.
    protocol str
    Mapped port protocol. Valid values: tcp, udp.
    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.
    server_type str
    Server type. Valid values: http, tcp, udp, ip.
    src_filters Sequence[str]
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type str
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 String
    Vip64.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arpReply String
    Enable ARP reply. Valid values: disable, enable.
    color Number
    Color of icon on the GUI.
    comment 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.
    extip String
    Start-external-IP [-end-external-IP].
    extport String
    External service port.
    fosid Number
    Custom defined id.
    ldbMethod String
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip String
    Start-mapped-IP [-end-mapped-IP].
    mappedport String
    Mapped service port.
    monitor String
    Health monitors.
    objectFirewallVip64DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward String
    Enable port forwarding. Valid values: disable, enable.
    protocol String
    Mapped port protocol. Valid values: tcp, udp.
    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.
    serverType String
    Server type. Valid values: http, tcp, udp, ip.
    srcFilters List<String>
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type String
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).

    Outputs

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

    Get an existing ObjectFirewallVip64DynamicMapping 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?: ObjectFirewallVip64DynamicMappingState, opts?: CustomResourceOptions): ObjectFirewallVip64DynamicMapping
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _scopes: Optional[Sequence[ObjectFirewallVip64DynamicMapping_ScopeArgs]] = None,
            adom: Optional[str] = None,
            arp_reply: Optional[str] = None,
            color: Optional[float] = None,
            comment: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            extip: Optional[str] = None,
            extport: Optional[str] = None,
            fosid: Optional[float] = None,
            ldb_method: Optional[str] = None,
            mappedip: Optional[str] = None,
            mappedport: Optional[str] = None,
            monitor: Optional[str] = None,
            object_firewall_vip64_dynamic_mapping_id: Optional[str] = None,
            portforward: Optional[str] = None,
            protocol: Optional[str] = None,
            scopetype: Optional[str] = None,
            server_type: Optional[str] = None,
            src_filters: Optional[Sequence[str]] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            vip64: Optional[str] = None) -> ObjectFirewallVip64DynamicMapping
    func GetObjectFirewallVip64DynamicMapping(ctx *Context, name string, id IDInput, state *ObjectFirewallVip64DynamicMappingState, opts ...ResourceOption) (*ObjectFirewallVip64DynamicMapping, error)
    public static ObjectFirewallVip64DynamicMapping Get(string name, Input<string> id, ObjectFirewallVip64DynamicMappingState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallVip64DynamicMapping get(String name, Output<String> id, ObjectFirewallVip64DynamicMappingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallVip64DynamicMapping    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.
    ArpReply string
    Enable ARP reply. Valid values: disable, enable.
    Color double
    Color of icon on the GUI.
    Comment 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.
    Extip string
    Start-external-IP [-end-external-IP].
    Extport string
    External service port.
    Fosid double
    Custom defined id.
    LdbMethod string
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    Mappedip string
    Start-mapped-IP [-end-mapped-IP].
    Mappedport string
    Mapped service port.
    Monitor string
    Health monitors.
    ObjectFirewallVip64DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    Portforward string
    Enable port forwarding. Valid values: disable, enable.
    Protocol string
    Mapped port protocol. Valid values: tcp, udp.
    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.
    ServerType string
    Server type. Valid values: http, tcp, udp, ip.
    SrcFilters List<string>
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    Type string
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vip64 string
    Vip64.
    _scopes List<ObjectFirewallVip64DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ArpReply string
    Enable ARP reply. Valid values: disable, enable.
    Color float64
    Color of icon on the GUI.
    Comment 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.
    Extip string
    Start-external-IP [-end-external-IP].
    Extport string
    External service port.
    Fosid float64
    Custom defined id.
    LdbMethod string
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    Mappedip string
    Start-mapped-IP [-end-mapped-IP].
    Mappedport string
    Mapped service port.
    Monitor string
    Health monitors.
    ObjectFirewallVip64DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    Portforward string
    Enable port forwarding. Valid values: disable, enable.
    Protocol string
    Mapped port protocol. Valid values: tcp, udp.
    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.
    ServerType string
    Server type. Valid values: http, tcp, udp, ip.
    SrcFilters []string
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    Type string
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vip64 string
    Vip64.
    _scopes []ObjectFirewallVip64DynamicMapping_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    _scopes List<ObjectFirewallVip64DynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arpReply String
    Enable ARP reply. Valid values: disable, enable.
    color Double
    Color of icon on the GUI.
    comment 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.
    extip String
    Start-external-IP [-end-external-IP].
    extport String
    External service port.
    fosid Double
    Custom defined id.
    ldbMethod String
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip String
    Start-mapped-IP [-end-mapped-IP].
    mappedport String
    Mapped service port.
    monitor String
    Health monitors.
    objectFirewallVip64DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward String
    Enable port forwarding. Valid values: disable, enable.
    protocol String
    Mapped port protocol. Valid values: tcp, udp.
    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.
    serverType String
    Server type. Valid values: http, tcp, udp, ip.
    srcFilters List<String>
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type String
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 String
    Vip64.
    _scopes ObjectFirewallVip64DynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arpReply string
    Enable ARP reply. Valid values: disable, enable.
    color number
    Color of icon on the GUI.
    comment 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.
    extip string
    Start-external-IP [-end-external-IP].
    extport string
    External service port.
    fosid number
    Custom defined id.
    ldbMethod string
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip string
    Start-mapped-IP [-end-mapped-IP].
    mappedport string
    Mapped service port.
    monitor string
    Health monitors.
    objectFirewallVip64DynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward string
    Enable port forwarding. Valid values: disable, enable.
    protocol string
    Mapped port protocol. Valid values: tcp, udp.
    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.
    serverType string
    Server type. Valid values: http, tcp, udp, ip.
    srcFilters string[]
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type string
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 string
    Vip64.
    _scopes Sequence[ObjectFirewallVip64DynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arp_reply str
    Enable ARP reply. Valid values: disable, enable.
    color float
    Color of icon on the GUI.
    comment 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.
    extip str
    Start-external-IP [-end-external-IP].
    extport str
    External service port.
    fosid float
    Custom defined id.
    ldb_method str
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip str
    Start-mapped-IP [-end-mapped-IP].
    mappedport str
    Mapped service port.
    monitor str
    Health monitors.
    object_firewall_vip64_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward str
    Enable port forwarding. Valid values: disable, enable.
    protocol str
    Mapped port protocol. Valid values: tcp, udp.
    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.
    server_type str
    Server type. Valid values: http, tcp, udp, ip.
    src_filters Sequence[str]
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type str
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 str
    Vip64.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    arpReply String
    Enable ARP reply. Valid values: disable, enable.
    color Number
    Color of icon on the GUI.
    comment 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.
    extip String
    Start-external-IP [-end-external-IP].
    extport String
    External service port.
    fosid Number
    Custom defined id.
    ldbMethod String
    Load balance method. Valid values: static, round-robin, weighted, least-session, least-rtt, first-alive.
    mappedip String
    Start-mapped-IP [-end-mapped-IP].
    mappedport String
    Mapped service port.
    monitor String
    Health monitors.
    objectFirewallVip64DynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    portforward String
    Enable port forwarding. Valid values: disable, enable.
    protocol String
    Mapped port protocol. Valid values: tcp, udp.
    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.
    serverType String
    Server type. Valid values: http, tcp, udp, ip.
    srcFilters List<String>
    Source IP6 filter (x:x:x:x:x:x:x:x/x).
    type String
    VIP type: static NAT or server load balance. Valid values: static-nat, server-load-balance.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vip64 String
    Vip64.

    Supporting Types

    ObjectFirewallVip64DynamicMapping_Scope, ObjectFirewallVip64DynamicMapping_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 Vip64DynamicMapping can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallVip64DynamicMapping:ObjectFirewallVip64DynamicMapping 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