1. Packages
  2. Fortios
  3. API Docs
  4. vpn
  5. vpn/ssl
  6. vpn/ssl/web
  7. Usergroupbookmark
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.vpn/ssl/web.Usergroupbookmark

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    Configure SSL VPN user group bookmark.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.vpn.ssl.web.Usergroupbookmark("trname", {bookmarks: [{
        apptype: "citrix",
        listeningPort: 0,
        name: "b1",
        port: 0,
        remotePort: 0,
        security: "rdp",
        serverLayout: "en-us-qwerty",
        showStatusWindow: "disable",
        sso: "disable",
        ssoCredential: "sslvpn-login",
        ssoCredentialSentOnce: "disable",
        url: "www.aaa.com",
    }]});
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.vpn.ssl.web.Usergroupbookmark("trname", bookmarks=[fortios.vpn.ssl.web.UsergroupbookmarkBookmarkArgs(
        apptype="citrix",
        listening_port=0,
        name="b1",
        port=0,
        remote_port=0,
        security="rdp",
        server_layout="en-us-qwerty",
        show_status_window="disable",
        sso="disable",
        sso_credential="sslvpn-login",
        sso_credential_sent_once="disable",
        url="www.aaa.com",
    )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/vpn"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vpn.NewUsergroupbookmark(ctx, "trname", &vpn.UsergroupbookmarkArgs{
    			Bookmarks: ssl / web.UsergroupbookmarkBookmarkArray{
    				&ssl / web.UsergroupbookmarkBookmarkArgs{
    					Apptype:               pulumi.String("citrix"),
    					ListeningPort:         pulumi.Int(0),
    					Name:                  pulumi.String("b1"),
    					Port:                  pulumi.Int(0),
    					RemotePort:            pulumi.Int(0),
    					Security:              pulumi.String("rdp"),
    					ServerLayout:          pulumi.String("en-us-qwerty"),
    					ShowStatusWindow:      pulumi.String("disable"),
    					Sso:                   pulumi.String("disable"),
    					SsoCredential:         pulumi.String("sslvpn-login"),
    					SsoCredentialSentOnce: pulumi.String("disable"),
    					Url:                   pulumi.String("www.aaa.com"),
    				},
    			},
    		})
    		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 trname = new Fortios.Vpn.Ssl.Web.Usergroupbookmark("trname", new()
        {
            Bookmarks = new[]
            {
                new Fortios.Vpn.Ssl.Web.Inputs.UsergroupbookmarkBookmarkArgs
                {
                    Apptype = "citrix",
                    ListeningPort = 0,
                    Name = "b1",
                    Port = 0,
                    RemotePort = 0,
                    Security = "rdp",
                    ServerLayout = "en-us-qwerty",
                    ShowStatusWindow = "disable",
                    Sso = "disable",
                    SsoCredential = "sslvpn-login",
                    SsoCredentialSentOnce = "disable",
                    Url = "www.aaa.com",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.vpn.Usergroupbookmark;
    import com.pulumi.fortios.vpn.UsergroupbookmarkArgs;
    import com.pulumi.fortios.vpn.inputs.UsergroupbookmarkBookmarkArgs;
    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 trname = new Usergroupbookmark("trname", UsergroupbookmarkArgs.builder()        
                .bookmarks(UsergroupbookmarkBookmarkArgs.builder()
                    .apptype("citrix")
                    .listeningPort(0)
                    .name("b1")
                    .port(0)
                    .remotePort(0)
                    .security("rdp")
                    .serverLayout("en-us-qwerty")
                    .showStatusWindow("disable")
                    .sso("disable")
                    .ssoCredential("sslvpn-login")
                    .ssoCredentialSentOnce("disable")
                    .url("www.aaa.com")
                    .build())
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:vpn/ssl/web:Usergroupbookmark
        properties:
          bookmarks:
            - apptype: citrix
              listeningPort: 0
              name: b1
              port: 0
              remotePort: 0
              security: rdp
              serverLayout: en-us-qwerty
              showStatusWindow: disable
              sso: disable
              ssoCredential: sslvpn-login
              ssoCredentialSentOnce: disable
              url: www.aaa.com
    

    Create Usergroupbookmark Resource

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

    Constructor syntax

    new Usergroupbookmark(name: string, args?: UsergroupbookmarkArgs, opts?: CustomResourceOptions);
    @overload
    def Usergroupbookmark(resource_name: str,
                          args: Optional[UsergroupbookmarkArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def Usergroupbookmark(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          bookmarks: Optional[Sequence[UsergroupbookmarkBookmarkArgs]] = None,
                          dynamic_sort_subtable: Optional[str] = None,
                          get_all_tables: Optional[str] = None,
                          name: Optional[str] = None,
                          vdomparam: Optional[str] = None)
    func NewUsergroupbookmark(ctx *Context, name string, args *UsergroupbookmarkArgs, opts ...ResourceOption) (*Usergroupbookmark, error)
    public Usergroupbookmark(string name, UsergroupbookmarkArgs? args = null, CustomResourceOptions? opts = null)
    public Usergroupbookmark(String name, UsergroupbookmarkArgs args)
    public Usergroupbookmark(String name, UsergroupbookmarkArgs args, CustomResourceOptions options)
    
    type: fortios:vpn/ssl/web/usergroupbookmark:Usergroupbookmark
    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 UsergroupbookmarkArgs
    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 UsergroupbookmarkArgs
    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 UsergroupbookmarkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UsergroupbookmarkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UsergroupbookmarkArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    Bookmarks List<Pulumiverse.Fortios.Vpn.Ssl.Web.Inputs.UsergroupbookmarkBookmark>
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    Bookmarks []UsergroupbookmarkBookmarkArgs
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks List<UsergroupbookmarkBookmark>
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks UsergroupbookmarkBookmark[]
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks Sequence[UsergroupbookmarkBookmarkArgs]
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks List<Property Map>
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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 Usergroupbookmark 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 Usergroupbookmark Resource

    Get an existing Usergroupbookmark 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?: UsergroupbookmarkState, opts?: CustomResourceOptions): Usergroupbookmark
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bookmarks: Optional[Sequence[UsergroupbookmarkBookmarkArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            name: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Usergroupbookmark
    func GetUsergroupbookmark(ctx *Context, name string, id IDInput, state *UsergroupbookmarkState, opts ...ResourceOption) (*Usergroupbookmark, error)
    public static Usergroupbookmark Get(string name, Input<string> id, UsergroupbookmarkState? state, CustomResourceOptions? opts = null)
    public static Usergroupbookmark get(String name, Output<String> id, UsergroupbookmarkState 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:
    Bookmarks List<Pulumiverse.Fortios.Vpn.Ssl.Web.Inputs.UsergroupbookmarkBookmark>
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    Bookmarks []UsergroupbookmarkBookmarkArgs
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks List<UsergroupbookmarkBookmark>
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks UsergroupbookmarkBookmark[]
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks Sequence[UsergroupbookmarkBookmarkArgs]
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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.
    bookmarks List<Property Map>
    Bookmark table. The structure of bookmarks block is documented below.
    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, otherwish 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
    Group name.
    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

    UsergroupbookmarkBookmark, UsergroupbookmarkBookmarkArgs

    AdditionalParams string
    Additional parameters.
    Apptype string
    Application type.
    ColorDepth string
    Color depth per pixel. Valid values: 32, 16, 8.
    Description string
    Description.
    Domain string
    Login domain.
    Folder string
    Network shared file folder parameter.
    FormDatas List<Pulumiverse.Fortios.Vpn.Ssl.Web.Inputs.UsergroupbookmarkBookmarkFormData>
    Form data. The structure of form_data block is documented below.
    Height int
    Screen height (range from 480 - 65535, default = 768).
    Host string
    Host name/IP parameter.
    KeyboardLayout string
    Keyboard layout.
    ListeningPort int
    Listening port (0 - 65535).
    LoadBalancingInfo string
    The load balancing information or cookie which should be provided to the connection broker.
    LogonPassword string
    Logon password.
    LogonUser string
    Logon user.
    Name string
    Bookmark name.
    Port int
    Remote port.
    PreconnectionBlob string
    An arbitrary string which identifies the RDP source.
    PreconnectionId int
    The numeric ID of the RDP source (0-2147483648).
    RemotePort int
    Remote port (0 - 65535).
    RestrictedAdmin string
    Enable/disable restricted admin mode for RDP. Valid values: enable, disable.
    Security string
    Security mode for RDP connection. Valid values: rdp, nla, tls, any.
    SendPreconnectionId string
    Enable/disable sending of preconnection ID. Valid values: enable, disable.
    ServerLayout string
    Server side keyboard layout.
    ShowStatusWindow string
    Enable/disable showing of status window. Valid values: enable, disable.
    Sso string
    Single Sign-On. Valid values: disable, static, auto.
    SsoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    SsoCredentialSentOnce string
    Single sign-on credentials are only sent once to remote server. Valid values: enable, disable.
    SsoPassword string
    SSO password.
    SsoUsername string
    SSO user name.
    Url string
    URL parameter.
    VncKeyboardLayout string
    Keyboard layout. Valid values: default, da, nl, en-uk, en-uk-ext, fi, fr, fr-be, fr-ca-mul, de, de-ch, it, it-142, pt, pt-br-abnt2, no, gd, es, sv, us-intl.
    Width int
    Screen width (range from 640 - 65535, default = 1024).
    AdditionalParams string
    Additional parameters.
    Apptype string
    Application type.
    ColorDepth string
    Color depth per pixel. Valid values: 32, 16, 8.
    Description string
    Description.
    Domain string
    Login domain.
    Folder string
    Network shared file folder parameter.
    FormDatas []UsergroupbookmarkBookmarkFormData
    Form data. The structure of form_data block is documented below.
    Height int
    Screen height (range from 480 - 65535, default = 768).
    Host string
    Host name/IP parameter.
    KeyboardLayout string
    Keyboard layout.
    ListeningPort int
    Listening port (0 - 65535).
    LoadBalancingInfo string
    The load balancing information or cookie which should be provided to the connection broker.
    LogonPassword string
    Logon password.
    LogonUser string
    Logon user.
    Name string
    Bookmark name.
    Port int
    Remote port.
    PreconnectionBlob string
    An arbitrary string which identifies the RDP source.
    PreconnectionId int
    The numeric ID of the RDP source (0-2147483648).
    RemotePort int
    Remote port (0 - 65535).
    RestrictedAdmin string
    Enable/disable restricted admin mode for RDP. Valid values: enable, disable.
    Security string
    Security mode for RDP connection. Valid values: rdp, nla, tls, any.
    SendPreconnectionId string
    Enable/disable sending of preconnection ID. Valid values: enable, disable.
    ServerLayout string
    Server side keyboard layout.
    ShowStatusWindow string
    Enable/disable showing of status window. Valid values: enable, disable.
    Sso string
    Single Sign-On. Valid values: disable, static, auto.
    SsoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    SsoCredentialSentOnce string
    Single sign-on credentials are only sent once to remote server. Valid values: enable, disable.
    SsoPassword string
    SSO password.
    SsoUsername string
    SSO user name.
    Url string
    URL parameter.
    VncKeyboardLayout string
    Keyboard layout. Valid values: default, da, nl, en-uk, en-uk-ext, fi, fr, fr-be, fr-ca-mul, de, de-ch, it, it-142, pt, pt-br-abnt2, no, gd, es, sv, us-intl.
    Width int
    Screen width (range from 640 - 65535, default = 1024).
    additionalParams String
    Additional parameters.
    apptype String
    Application type.
    colorDepth String
    Color depth per pixel. Valid values: 32, 16, 8.
    description String
    Description.
    domain String
    Login domain.
    folder String
    Network shared file folder parameter.
    formDatas List<UsergroupbookmarkBookmarkFormData>
    Form data. The structure of form_data block is documented below.
    height Integer
    Screen height (range from 480 - 65535, default = 768).
    host String
    Host name/IP parameter.
    keyboardLayout String
    Keyboard layout.
    listeningPort Integer
    Listening port (0 - 65535).
    loadBalancingInfo String
    The load balancing information or cookie which should be provided to the connection broker.
    logonPassword String
    Logon password.
    logonUser String
    Logon user.
    name String
    Bookmark name.
    port Integer
    Remote port.
    preconnectionBlob String
    An arbitrary string which identifies the RDP source.
    preconnectionId Integer
    The numeric ID of the RDP source (0-2147483648).
    remotePort Integer
    Remote port (0 - 65535).
    restrictedAdmin String
    Enable/disable restricted admin mode for RDP. Valid values: enable, disable.
    security String
    Security mode for RDP connection. Valid values: rdp, nla, tls, any.
    sendPreconnectionId String
    Enable/disable sending of preconnection ID. Valid values: enable, disable.
    serverLayout String
    Server side keyboard layout.
    showStatusWindow String
    Enable/disable showing of status window. Valid values: enable, disable.
    sso String
    Single Sign-On. Valid values: disable, static, auto.
    ssoCredential String
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoCredentialSentOnce String
    Single sign-on credentials are only sent once to remote server. Valid values: enable, disable.
    ssoPassword String
    SSO password.
    ssoUsername String
    SSO user name.
    url String
    URL parameter.
    vncKeyboardLayout String
    Keyboard layout. Valid values: default, da, nl, en-uk, en-uk-ext, fi, fr, fr-be, fr-ca-mul, de, de-ch, it, it-142, pt, pt-br-abnt2, no, gd, es, sv, us-intl.
    width Integer
    Screen width (range from 640 - 65535, default = 1024).
    additionalParams string
    Additional parameters.
    apptype string
    Application type.
    colorDepth string
    Color depth per pixel. Valid values: 32, 16, 8.
    description string
    Description.
    domain string
    Login domain.
    folder string
    Network shared file folder parameter.
    formDatas UsergroupbookmarkBookmarkFormData[]
    Form data. The structure of form_data block is documented below.
    height number
    Screen height (range from 480 - 65535, default = 768).
    host string
    Host name/IP parameter.
    keyboardLayout string
    Keyboard layout.
    listeningPort number
    Listening port (0 - 65535).
    loadBalancingInfo string
    The load balancing information or cookie which should be provided to the connection broker.
    logonPassword string
    Logon password.
    logonUser string
    Logon user.
    name string
    Bookmark name.
    port number
    Remote port.
    preconnectionBlob string
    An arbitrary string which identifies the RDP source.
    preconnectionId number
    The numeric ID of the RDP source (0-2147483648).
    remotePort number
    Remote port (0 - 65535).
    restrictedAdmin string
    Enable/disable restricted admin mode for RDP. Valid values: enable, disable.
    security string
    Security mode for RDP connection. Valid values: rdp, nla, tls, any.
    sendPreconnectionId string
    Enable/disable sending of preconnection ID. Valid values: enable, disable.
    serverLayout string
    Server side keyboard layout.
    showStatusWindow string
    Enable/disable showing of status window. Valid values: enable, disable.
    sso string
    Single Sign-On. Valid values: disable, static, auto.
    ssoCredential string
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoCredentialSentOnce string
    Single sign-on credentials are only sent once to remote server. Valid values: enable, disable.
    ssoPassword string
    SSO password.
    ssoUsername string
    SSO user name.
    url string
    URL parameter.
    vncKeyboardLayout string
    Keyboard layout. Valid values: default, da, nl, en-uk, en-uk-ext, fi, fr, fr-be, fr-ca-mul, de, de-ch, it, it-142, pt, pt-br-abnt2, no, gd, es, sv, us-intl.
    width number
    Screen width (range from 640 - 65535, default = 1024).
    additional_params str
    Additional parameters.
    apptype str
    Application type.
    color_depth str
    Color depth per pixel. Valid values: 32, 16, 8.
    description str
    Description.
    domain str
    Login domain.
    folder str
    Network shared file folder parameter.
    form_datas Sequence[UsergroupbookmarkBookmarkFormData]
    Form data. The structure of form_data block is documented below.
    height int
    Screen height (range from 480 - 65535, default = 768).
    host str
    Host name/IP parameter.
    keyboard_layout str
    Keyboard layout.
    listening_port int
    Listening port (0 - 65535).
    load_balancing_info str
    The load balancing information or cookie which should be provided to the connection broker.
    logon_password str
    Logon password.
    logon_user str
    Logon user.
    name str
    Bookmark name.
    port int
    Remote port.
    preconnection_blob str
    An arbitrary string which identifies the RDP source.
    preconnection_id int
    The numeric ID of the RDP source (0-2147483648).
    remote_port int
    Remote port (0 - 65535).
    restricted_admin str
    Enable/disable restricted admin mode for RDP. Valid values: enable, disable.
    security str
    Security mode for RDP connection. Valid values: rdp, nla, tls, any.
    send_preconnection_id str
    Enable/disable sending of preconnection ID. Valid values: enable, disable.
    server_layout str
    Server side keyboard layout.
    show_status_window str
    Enable/disable showing of status window. Valid values: enable, disable.
    sso str
    Single Sign-On. Valid values: disable, static, auto.
    sso_credential str
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    sso_credential_sent_once str
    Single sign-on credentials are only sent once to remote server. Valid values: enable, disable.
    sso_password str
    SSO password.
    sso_username str
    SSO user name.
    url str
    URL parameter.
    vnc_keyboard_layout str
    Keyboard layout. Valid values: default, da, nl, en-uk, en-uk-ext, fi, fr, fr-be, fr-ca-mul, de, de-ch, it, it-142, pt, pt-br-abnt2, no, gd, es, sv, us-intl.
    width int
    Screen width (range from 640 - 65535, default = 1024).
    additionalParams String
    Additional parameters.
    apptype String
    Application type.
    colorDepth String
    Color depth per pixel. Valid values: 32, 16, 8.
    description String
    Description.
    domain String
    Login domain.
    folder String
    Network shared file folder parameter.
    formDatas List<Property Map>
    Form data. The structure of form_data block is documented below.
    height Number
    Screen height (range from 480 - 65535, default = 768).
    host String
    Host name/IP parameter.
    keyboardLayout String
    Keyboard layout.
    listeningPort Number
    Listening port (0 - 65535).
    loadBalancingInfo String
    The load balancing information or cookie which should be provided to the connection broker.
    logonPassword String
    Logon password.
    logonUser String
    Logon user.
    name String
    Bookmark name.
    port Number
    Remote port.
    preconnectionBlob String
    An arbitrary string which identifies the RDP source.
    preconnectionId Number
    The numeric ID of the RDP source (0-2147483648).
    remotePort Number
    Remote port (0 - 65535).
    restrictedAdmin String
    Enable/disable restricted admin mode for RDP. Valid values: enable, disable.
    security String
    Security mode for RDP connection. Valid values: rdp, nla, tls, any.
    sendPreconnectionId String
    Enable/disable sending of preconnection ID. Valid values: enable, disable.
    serverLayout String
    Server side keyboard layout.
    showStatusWindow String
    Enable/disable showing of status window. Valid values: enable, disable.
    sso String
    Single Sign-On. Valid values: disable, static, auto.
    ssoCredential String
    Single sign-on credentials. Valid values: sslvpn-login, alternative.
    ssoCredentialSentOnce String
    Single sign-on credentials are only sent once to remote server. Valid values: enable, disable.
    ssoPassword String
    SSO password.
    ssoUsername String
    SSO user name.
    url String
    URL parameter.
    vncKeyboardLayout String
    Keyboard layout. Valid values: default, da, nl, en-uk, en-uk-ext, fi, fr, fr-be, fr-ca-mul, de, de-ch, it, it-142, pt, pt-br-abnt2, no, gd, es, sv, us-intl.
    width Number
    Screen width (range from 640 - 65535, default = 1024).

    UsergroupbookmarkBookmarkFormData, UsergroupbookmarkBookmarkFormDataArgs

    Name string
    Name.
    Value string
    Value.
    Name string
    Name.
    Value string
    Value.
    name String
    Name.
    value String
    Value.
    name string
    Name.
    value string
    Value.
    name str
    Name.
    value str
    Value.
    name String
    Name.
    value String
    Value.

    Import

    VpnSslWeb UserGroupBookmark can be imported using any of these accepted formats:

    $ pulumi import fortios:vpn/ssl/web/usergroupbookmark:Usergroupbookmark labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:vpn/ssl/web/usergroupbookmark:Usergroupbookmark 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.5 published on Tuesday, Apr 9, 2024 by pulumiverse