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

fortios.firewall.Vipgrp64

Explore with Pulumi AI

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

    Configure IPv6 to IPv4 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.Vip64("trname1", {
        arpReply: "enable",
        color: 0,
        extip: "2001:db8:99:503::22",
        extport: "0-65535",
        fosid: 0,
        ldbMethod: "static",
        mappedip: "1.1.3.1",
        mappedport: "0-65535",
        portforward: "disable",
        protocol: "tcp",
        type: "static-nat",
    });
    const trname = new fortios.firewall.Vipgrp64("trname", {
        color: 0,
        members: [{
            name: trname1.name,
        }],
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname1 = fortios.firewall.Vip64("trname1",
        arp_reply="enable",
        color=0,
        extip="2001:db8:99:503::22",
        extport="0-65535",
        fosid=0,
        ldb_method="static",
        mappedip="1.1.3.1",
        mappedport="0-65535",
        portforward="disable",
        protocol="tcp",
        type="static-nat")
    trname = fortios.firewall.Vipgrp64("trname",
        color=0,
        members=[fortios.firewall.Vipgrp64MemberArgs(
            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.NewVip64(ctx, "trname1", &firewall.Vip64Args{
    			ArpReply:    pulumi.String("enable"),
    			Color:       pulumi.Int(0),
    			Extip:       pulumi.String("2001:db8:99:503::22"),
    			Extport:     pulumi.String("0-65535"),
    			Fosid:       pulumi.Int(0),
    			LdbMethod:   pulumi.String("static"),
    			Mappedip:    pulumi.String("1.1.3.1"),
    			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.NewVipgrp64(ctx, "trname", &firewall.Vipgrp64Args{
    			Color: pulumi.Int(0),
    			Members: firewall.Vipgrp64MemberArray{
    				&firewall.Vipgrp64MemberArgs{
    					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.Vip64("trname1", new()
        {
            ArpReply = "enable",
            Color = 0,
            Extip = "2001:db8:99:503::22",
            Extport = "0-65535",
            Fosid = 0,
            LdbMethod = "static",
            Mappedip = "1.1.3.1",
            Mappedport = "0-65535",
            Portforward = "disable",
            Protocol = "tcp",
            Type = "static-nat",
        });
    
        var trname = new Fortios.Firewall.Vipgrp64("trname", new()
        {
            Color = 0,
            Members = new[]
            {
                new Fortios.Firewall.Inputs.Vipgrp64MemberArgs
                {
                    Name = trname1.Name,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.firewall.Vip64;
    import com.pulumi.fortios.firewall.Vip64Args;
    import com.pulumi.fortios.firewall.Vipgrp64;
    import com.pulumi.fortios.firewall.Vipgrp64Args;
    import com.pulumi.fortios.firewall.inputs.Vipgrp64MemberArgs;
    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 Vip64("trname1", Vip64Args.builder()
                .arpReply("enable")
                .color(0)
                .extip("2001:db8:99:503::22")
                .extport("0-65535")
                .fosid(0)
                .ldbMethod("static")
                .mappedip("1.1.3.1")
                .mappedport("0-65535")
                .portforward("disable")
                .protocol("tcp")
                .type("static-nat")
                .build());
    
            var trname = new Vipgrp64("trname", Vipgrp64Args.builder()
                .color(0)
                .members(Vipgrp64MemberArgs.builder()
                    .name(trname1.name())
                    .build())
                .build());
    
        }
    }
    
    resources:
      trname1:
        type: fortios:firewall:Vip64
        properties:
          arpReply: enable
          color: 0
          extip: 2001:db8:99:503::22
          extport: 0-65535
          fosid: 0
          ldbMethod: static
          mappedip: 1.1.3.1
          mappedport: 0-65535
          portforward: disable
          protocol: tcp
          type: static-nat
      trname:
        type: fortios:firewall:Vipgrp64
        properties:
          color: 0
          members:
            - name: ${trname1.name}
    

    Create Vipgrp64 Resource

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

    Constructor syntax

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

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

    Members List<Pulumiverse.Fortios.Firewall.Inputs.Vipgrp64Member>
    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
    VIP64 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 []Vipgrp64MemberArgs
    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
    VIP64 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<Vipgrp64Member>
    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
    VIP64 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 Vipgrp64Member[]
    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
    VIP64 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[Vipgrp64MemberArgs]
    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
    VIP64 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
    VIP64 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 Vipgrp64 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 Vipgrp64 Resource

    Get an existing Vipgrp64 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?: Vipgrp64State, opts?: CustomResourceOptions): Vipgrp64
    @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[Vipgrp64MemberArgs]] = None,
            name: Optional[str] = None,
            uuid: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Vipgrp64
    func GetVipgrp64(ctx *Context, name string, id IDInput, state *Vipgrp64State, opts ...ResourceOption) (*Vipgrp64, error)
    public static Vipgrp64 Get(string name, Input<string> id, Vipgrp64State? state, CustomResourceOptions? opts = null)
    public static Vipgrp64 get(String name, Output<String> id, Vipgrp64State 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.Vipgrp64Member>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    Name string
    VIP64 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 []Vipgrp64MemberArgs
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    Name string
    VIP64 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<Vipgrp64Member>
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name String
    VIP64 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 Vipgrp64Member[]
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name string
    VIP64 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[Vipgrp64MemberArgs]
    Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
    name str
    VIP64 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
    VIP64 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

    Vipgrp64Member, Vipgrp64MemberArgs

    Name string
    VIP64 name.
    Name string
    VIP64 name.
    name String
    VIP64 name.
    name string
    VIP64 name.
    name str
    VIP64 name.
    name String
    VIP64 name.

    Import

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

    $ pulumi import fortios:firewall/vipgrp64:Vipgrp64 labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:firewall/vipgrp64:Vipgrp64 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