1. Packages
  2. Fortios
  3. API Docs
  4. firewall
  5. Vipgrp46
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.firewall.Vipgrp46

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    Configure IPv4 to IPv6 virtual IP groups. Applies to FortiOS Version <= 7.0.0.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname1 = new fortios.firewall.Vip46("trname1", {
        arpReply: "enable",
        color: 0,
        extip: "10.202.1.100",
        extport: "0-65535",
        fosid: 0,
        ldbMethod: "static",
        mappedip: "2001:1:1:2::100",
        mappedport: "0-65535",
        portforward: "disable",
        protocol: "tcp",
        type: "static-nat",
    });
    const trname = new fortios.firewall.Vipgrp46("trname", {
        color: 0,
        members: [{
            name: trname1.name,
        }],
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname1 = fortios.firewall.Vip46("trname1",
        arp_reply="enable",
        color=0,
        extip="10.202.1.100",
        extport="0-65535",
        fosid=0,
        ldb_method="static",
        mappedip="2001:1:1:2::100",
        mappedport="0-65535",
        portforward="disable",
        protocol="tcp",
        type="static-nat")
    trname = fortios.firewall.Vipgrp46("trname",
        color=0,
        members=[fortios.firewall.Vipgrp46MemberArgs(
            name=trname1.name,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/firewall"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		trname1, err := firewall.NewVip46(ctx, "trname1", &firewall.Vip46Args{
    			ArpReply:    pulumi.String("enable"),
    			Color:       pulumi.Int(0),
    			Extip:       pulumi.String("10.202.1.100"),
    			Extport:     pulumi.String("0-65535"),
    			Fosid:       pulumi.Int(0),
    			LdbMethod:   pulumi.String("static"),
    			Mappedip:    pulumi.String("2001:1:1:2::100"),
    			Mappedport:  pulumi.String("0-65535"),
    			Portforward: pulumi.String("disable"),
    			Protocol:    pulumi.String("tcp"),
    			Type:        pulumi.String("static-nat"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = firewall.NewVipgrp46(ctx, "trname", &firewall.Vipgrp46Args{
    			Color: pulumi.Int(0),
    			Members: firewall.Vipgrp46MemberArray{
    				&firewall.Vipgrp46MemberArgs{
    					Name: trname1.Name,
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname1 = new Fortios.Firewall.Vip46("trname1", new()
        {
            ArpReply = "enable",
            Color = 0,
            Extip = "10.202.1.100",
            Extport = "0-65535",
            Fosid = 0,
            LdbMethod = "static",
            Mappedip = "2001:1:1:2::100",
            Mappedport = "0-65535",
            Portforward = "disable",
            Protocol = "tcp",
            Type = "static-nat",
        });
    
        var trname = new Fortios.Firewall.Vipgrp46("trname", new()
        {
            Color = 0,
            Members = new[]
            {
                new Fortios.Firewall.Inputs.Vipgrp46MemberArgs
                {
                    Name = trname1.Name,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.firewall.Vip46;
    import com.pulumi.fortios.firewall.Vip46Args;
    import com.pulumi.fortios.firewall.Vipgrp46;
    import com.pulumi.fortios.firewall.Vipgrp46Args;
    import com.pulumi.fortios.firewall.inputs.Vipgrp46MemberArgs;
    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 trname1 = new Vip46("trname1", Vip46Args.builder()
                .arpReply("enable")
                .color(0)
                .extip("10.202.1.100")
                .extport("0-65535")
                .fosid(0)
                .ldbMethod("static")
                .mappedip("2001:1:1:2::100")
                .mappedport("0-65535")
                .portforward("disable")
                .protocol("tcp")
                .type("static-nat")
                .build());
    
            var trname = new Vipgrp46("trname", Vipgrp46Args.builder()
                .color(0)
                .members(Vipgrp46MemberArgs.builder()
                    .name(trname1.name())
                    .build())
                .build());
    
        }
    }
    
    resources:
      trname1:
        type: fortios:firewall:Vip46
        properties:
          arpReply: enable
          color: 0
          extip: 10.202.1.100
          extport: 0-65535
          fosid: 0
          ldbMethod: static
          mappedip: 2001:1:1:2::100
          mappedport: 0-65535
          portforward: disable
          protocol: tcp
          type: static-nat
      trname:
        type: fortios:firewall:Vipgrp46
        properties:
          color: 0
          members:
            - name: ${trname1.name}
    

    Create Vipgrp46 Resource

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

    Constructor syntax

    new Vipgrp46(name: string, args: Vipgrp46Args, opts?: CustomResourceOptions);
    @overload
    def Vipgrp46(resource_name: str,
                 args: Vipgrp46Args,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Vipgrp46(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 members: Optional[Sequence[Vipgrp46MemberArgs]] = None,
                 color: Optional[int] = None,
                 comments: Optional[str] = None,
                 dynamic_sort_subtable: Optional[str] = None,
                 get_all_tables: Optional[str] = None,
                 name: Optional[str] = None,
                 uuid: Optional[str] = None,
                 vdomparam: Optional[str] = None)
    func NewVipgrp46(ctx *Context, name string, args Vipgrp46Args, opts ...ResourceOption) (*Vipgrp46, error)
    public Vipgrp46(string name, Vipgrp46Args args, CustomResourceOptions? opts = null)
    public Vipgrp46(String name, Vipgrp46Args args)
    public Vipgrp46(String name, Vipgrp46Args args, CustomResourceOptions options)
    
    type: fortios:firewall:Vipgrp46
    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 Vipgrp46Args
    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 Vipgrp46Args
    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 Vipgrp46Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args Vipgrp46Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args Vipgrp46Args
    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 vipgrp46Resource = new Fortios.Firewall.Vipgrp46("vipgrp46Resource", new()
    {
        Members = new[]
        {
            new Fortios.Firewall.Inputs.Vipgrp46MemberArgs
            {
                Name = "string",
            },
        },
        Color = 0,
        Comments = "string",
        DynamicSortSubtable = "string",
        GetAllTables = "string",
        Name = "string",
        Uuid = "string",
        Vdomparam = "string",
    });
    
    example, err := firewall.NewVipgrp46(ctx, "vipgrp46Resource", &firewall.Vipgrp46Args{
    	Members: firewall.Vipgrp46MemberArray{
    		&firewall.Vipgrp46MemberArgs{
    			Name: pulumi.String("string"),
    		},
    	},
    	Color:               pulumi.Int(0),
    	Comments:            pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	GetAllTables:        pulumi.String("string"),
    	Name:                pulumi.String("string"),
    	Uuid:                pulumi.String("string"),
    	Vdomparam:           pulumi.String("string"),
    })
    
    var vipgrp46Resource = new Vipgrp46("vipgrp46Resource", Vipgrp46Args.builder()
        .members(Vipgrp46MemberArgs.builder()
            .name("string")
            .build())
        .color(0)
        .comments("string")
        .dynamicSortSubtable("string")
        .getAllTables("string")
        .name("string")
        .uuid("string")
        .vdomparam("string")
        .build());
    
    vipgrp46_resource = fortios.firewall.Vipgrp46("vipgrp46Resource",
        members=[fortios.firewall.Vipgrp46MemberArgs(
            name="string",
        )],
        color=0,
        comments="string",
        dynamic_sort_subtable="string",
        get_all_tables="string",
        name="string",
        uuid="string",
        vdomparam="string")
    
    const vipgrp46Resource = new fortios.firewall.Vipgrp46("vipgrp46Resource", {
        members: [{
            name: "string",
        }],
        color: 0,
        comments: "string",
        dynamicSortSubtable: "string",
        getAllTables: "string",
        name: "string",
        uuid: "string",
        vdomparam: "string",
    });
    
    type: fortios:firewall:Vipgrp46
    properties:
        color: 0
        comments: string
        dynamicSortSubtable: string
        getAllTables: string
        members:
            - name: string
        name: string
        uuid: string
        vdomparam: string
    

    Vipgrp46 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Vipgrp46 resource accepts the following input properties:

    Members List<Pulumiverse.Fortios.Firewall.Inputs.Vipgrp46Member>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comments string
    Comment.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    VIP46 group name.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Members []Vipgrp46MemberArgs
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comments string
    Comment.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Name string
    VIP46 group name.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    members List<Vipgrp46Member>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    color Integer
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments String
    Comment.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    VIP46 group name.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    members Vipgrp46Member[]
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    color number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments string
    Comment.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name string
    VIP46 group name.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    members Sequence[Vipgrp46MemberArgs]
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments str
    Comment.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name str
    VIP46 group name.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    members List<Property Map>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    color Number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments String
    Comment.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    name String
    VIP46 group name.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Outputs

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

    Get an existing Vipgrp46 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?: Vipgrp46State, opts?: CustomResourceOptions): Vipgrp46
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            color: Optional[int] = None,
            comments: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            members: Optional[Sequence[Vipgrp46MemberArgs]] = None,
            name: Optional[str] = None,
            uuid: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Vipgrp46
    func GetVipgrp46(ctx *Context, name string, id IDInput, state *Vipgrp46State, opts ...ResourceOption) (*Vipgrp46, error)
    public static Vipgrp46 Get(string name, Input<string> id, Vipgrp46State? state, CustomResourceOptions? opts = null)
    public static Vipgrp46 get(String name, Output<String> id, Vipgrp46State state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comments string
    Comment.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Members List<Pulumiverse.Fortios.Firewall.Inputs.Vipgrp46Member>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    Name string
    VIP46 group name.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    Comments string
    Comment.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Members []Vipgrp46MemberArgs
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    Name string
    VIP46 group name.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    color Integer
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments String
    Comment.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    members List<Vipgrp46Member>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name String
    VIP46 group name.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    color number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments string
    Comment.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    members Vipgrp46Member[]
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name string
    VIP46 group name.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    color int
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments str
    Comment.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    members Sequence[Vipgrp46MemberArgs]
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name str
    VIP46 group name.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    color Number
    Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
    comments String
    Comment.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    members List<Property Map>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name String
    VIP46 group name.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Supporting Types

    Vipgrp46Member, Vipgrp46MemberArgs

    Name string
    VIP46 name.
    Name string
    VIP46 name.
    name String
    VIP46 name.
    name string
    VIP46 name.
    name str
    VIP46 name.
    name String
    VIP46 name.

    Import

    Firewall Vipgrp46 can be imported using any of these accepted formats:

    $ pulumi import fortios:firewall/vipgrp46:Vipgrp46 labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:firewall/vipgrp46:Vipgrp46 labelname {{name}}
    

    $ unset “FORTIOS_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse