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

fortimanager.ObjectUserFssopolling

Explore with Pulumi AI

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

    Configure FSSO active directory servers for polling mode.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • adgrp: fortimanager.ObjectUserFssopollingAdgrp

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectUserFssopolling("trname", {
        defaultDomain: "terr-user-fsso-polling",
        fosid: 1,
        logonHistory: 8,
        passwords: ["fortinet"],
        pollingFrequency: 10,
        server: "terraform-server",
        smbNtlmv1Auth: "disable",
        smbv1: "disable",
        status: "enable",
        user: "admin",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectUserFssopolling("trname",
        default_domain="terr-user-fsso-polling",
        fosid=1,
        logon_history=8,
        passwords=["fortinet"],
        polling_frequency=10,
        server="terraform-server",
        smb_ntlmv1_auth="disable",
        smbv1="disable",
        status="enable",
        user="admin")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectUserFssopolling(ctx, "trname", &fortimanager.ObjectUserFssopollingArgs{
    			DefaultDomain: pulumi.String("terr-user-fsso-polling"),
    			Fosid:         pulumi.Float64(1),
    			LogonHistory:  pulumi.Float64(8),
    			Passwords: pulumi.StringArray{
    				pulumi.String("fortinet"),
    			},
    			PollingFrequency: pulumi.Float64(10),
    			Server:           pulumi.String("terraform-server"),
    			SmbNtlmv1Auth:    pulumi.String("disable"),
    			Smbv1:            pulumi.String("disable"),
    			Status:           pulumi.String("enable"),
    			User:             pulumi.String("admin"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.ObjectUserFssopolling("trname", new()
        {
            DefaultDomain = "terr-user-fsso-polling",
            Fosid = 1,
            LogonHistory = 8,
            Passwords = new[]
            {
                "fortinet",
            },
            PollingFrequency = 10,
            Server = "terraform-server",
            SmbNtlmv1Auth = "disable",
            Smbv1 = "disable",
            Status = "enable",
            User = "admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectUserFssopolling;
    import com.pulumi.fortimanager.ObjectUserFssopollingArgs;
    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 ObjectUserFssopolling("trname", ObjectUserFssopollingArgs.builder()
                .defaultDomain("terr-user-fsso-polling")
                .fosid(1)
                .logonHistory(8)
                .passwords("fortinet")
                .pollingFrequency(10)
                .server("terraform-server")
                .smbNtlmv1Auth("disable")
                .smbv1("disable")
                .status("enable")
                .user("admin")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectUserFssopolling
        properties:
          defaultDomain: terr-user-fsso-polling
          fosid: 1
          logonHistory: 8
          passwords:
            - fortinet
          pollingFrequency: 10
          server: terraform-server
          smbNtlmv1Auth: disable
          smbv1: disable
          status: enable
          user: admin
    

    Create ObjectUserFssopolling Resource

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

    Constructor syntax

    new ObjectUserFssopolling(name: string, args?: ObjectUserFssopollingArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserFssopolling(resource_name: str,
                              args: Optional[ObjectUserFssopollingArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserFssopolling(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              _gui_meta: Optional[str] = None,
                              adgrps: Optional[Sequence[ObjectUserFssopollingAdgrpArgs]] = None,
                              adom: Optional[str] = None,
                              default_domain: Optional[str] = None,
                              dynamic_sort_subtable: Optional[str] = None,
                              fosid: Optional[float] = None,
                              ldap_server: Optional[str] = None,
                              logon_history: Optional[float] = None,
                              object_user_fssopolling_id: Optional[str] = None,
                              passwords: Optional[Sequence[str]] = None,
                              polling_frequency: Optional[float] = None,
                              port: Optional[float] = None,
                              scopetype: Optional[str] = None,
                              server: Optional[str] = None,
                              smb_ntlmv1_auth: Optional[str] = None,
                              smbv1: Optional[str] = None,
                              status: Optional[str] = None,
                              user: Optional[str] = None)
    func NewObjectUserFssopolling(ctx *Context, name string, args *ObjectUserFssopollingArgs, opts ...ResourceOption) (*ObjectUserFssopolling, error)
    public ObjectUserFssopolling(string name, ObjectUserFssopollingArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectUserFssopolling(String name, ObjectUserFssopollingArgs args)
    public ObjectUserFssopolling(String name, ObjectUserFssopollingArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserFssopolling
    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 ObjectUserFssopollingArgs
    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 ObjectUserFssopollingArgs
    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 ObjectUserFssopollingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserFssopollingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserFssopollingArgs
    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 objectUserFssopollingResource = new Fortimanager.ObjectUserFssopolling("objectUserFssopollingResource", new()
    {
        _guiMeta = "string",
        Adgrps = new[]
        {
            new Fortimanager.Inputs.ObjectUserFssopollingAdgrpArgs
            {
                Name = "string",
            },
        },
        Adom = "string",
        DefaultDomain = "string",
        DynamicSortSubtable = "string",
        Fosid = 0,
        LdapServer = "string",
        LogonHistory = 0,
        ObjectUserFssopollingId = "string",
        Passwords = new[]
        {
            "string",
        },
        PollingFrequency = 0,
        Port = 0,
        Scopetype = "string",
        Server = "string",
        SmbNtlmv1Auth = "string",
        Smbv1 = "string",
        Status = "string",
        User = "string",
    });
    
    example, err := fortimanager.NewObjectUserFssopolling(ctx, "objectUserFssopollingResource", &fortimanager.ObjectUserFssopollingArgs{
    _guiMeta: pulumi.String("string"),
    Adgrps: .ObjectUserFssopollingAdgrpTypeArray{
    &.ObjectUserFssopollingAdgrpTypeArgs{
    Name: pulumi.String("string"),
    },
    },
    Adom: pulumi.String("string"),
    DefaultDomain: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    LdapServer: pulumi.String("string"),
    LogonHistory: pulumi.Float64(0),
    ObjectUserFssopollingId: pulumi.String("string"),
    Passwords: pulumi.StringArray{
    pulumi.String("string"),
    },
    PollingFrequency: pulumi.Float64(0),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Server: pulumi.String("string"),
    SmbNtlmv1Auth: pulumi.String("string"),
    Smbv1: pulumi.String("string"),
    Status: pulumi.String("string"),
    User: pulumi.String("string"),
    })
    
    var objectUserFssopollingResource = new ObjectUserFssopolling("objectUserFssopollingResource", ObjectUserFssopollingArgs.builder()
        ._guiMeta("string")
        .adgrps(ObjectUserFssopollingAdgrpArgs.builder()
            .name("string")
            .build())
        .adom("string")
        .defaultDomain("string")
        .dynamicSortSubtable("string")
        .fosid(0)
        .ldapServer("string")
        .logonHistory(0)
        .objectUserFssopollingId("string")
        .passwords("string")
        .pollingFrequency(0)
        .port(0)
        .scopetype("string")
        .server("string")
        .smbNtlmv1Auth("string")
        .smbv1("string")
        .status("string")
        .user("string")
        .build());
    
    object_user_fssopolling_resource = fortimanager.ObjectUserFssopolling("objectUserFssopollingResource",
        _gui_meta="string",
        adgrps=[{
            "name": "string",
        }],
        adom="string",
        default_domain="string",
        dynamic_sort_subtable="string",
        fosid=0,
        ldap_server="string",
        logon_history=0,
        object_user_fssopolling_id="string",
        passwords=["string"],
        polling_frequency=0,
        port=0,
        scopetype="string",
        server="string",
        smb_ntlmv1_auth="string",
        smbv1="string",
        status="string",
        user="string")
    
    const objectUserFssopollingResource = new fortimanager.ObjectUserFssopolling("objectUserFssopollingResource", {
        _guiMeta: "string",
        adgrps: [{
            name: "string",
        }],
        adom: "string",
        defaultDomain: "string",
        dynamicSortSubtable: "string",
        fosid: 0,
        ldapServer: "string",
        logonHistory: 0,
        objectUserFssopollingId: "string",
        passwords: ["string"],
        pollingFrequency: 0,
        port: 0,
        scopetype: "string",
        server: "string",
        smbNtlmv1Auth: "string",
        smbv1: "string",
        status: "string",
        user: "string",
    });
    
    type: fortimanager:ObjectUserFssopolling
    properties:
        _guiMeta: string
        adgrps:
            - name: string
        adom: string
        defaultDomain: string
        dynamicSortSubtable: string
        fosid: 0
        ldapServer: string
        logonHistory: 0
        objectUserFssopollingId: string
        passwords:
            - string
        pollingFrequency: 0
        port: 0
        scopetype: string
        server: string
        smbNtlmv1Auth: string
        smbv1: string
        status: string
        user: string
    

    ObjectUserFssopolling Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectUserFssopolling resource accepts the following input properties:

    Adgrps List<ObjectUserFssopollingAdgrp>
    Adgrp. The structure of adgrp block is documented below.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DefaultDomain string
    Default domain managed by this Active Directory server.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid double
    Active Directory server ID.
    LdapServer string
    LDAP server name used in LDAP connection strings.
    LogonHistory double
    Number of hours of logon history to keep, 0 means keep all history.
    ObjectUserFssopollingId string
    an identifier for the resource with format {{fosid}}.
    Passwords List<string>
    Password required to log into this Active Directory server
    PollingFrequency double
    Polling frequency (every 1 to 30 seconds).
    Port double
    Port to communicate with this Active Directory server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Server string
    Host name or IP address of the Active Directory server.
    SmbNtlmv1Auth string
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    Smbv1 string
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    Status string
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    User string
    User name required to log into this Active Directory server.
    _guiMeta string
    _Gui_Meta.
    Adgrps []ObjectUserFssopollingAdgrpTypeArgs
    Adgrp. The structure of adgrp block is documented below.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DefaultDomain string
    Default domain managed by this Active Directory server.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid float64
    Active Directory server ID.
    LdapServer string
    LDAP server name used in LDAP connection strings.
    LogonHistory float64
    Number of hours of logon history to keep, 0 means keep all history.
    ObjectUserFssopollingId string
    an identifier for the resource with format {{fosid}}.
    Passwords []string
    Password required to log into this Active Directory server
    PollingFrequency float64
    Polling frequency (every 1 to 30 seconds).
    Port float64
    Port to communicate with this Active Directory server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Server string
    Host name or IP address of the Active Directory server.
    SmbNtlmv1Auth string
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    Smbv1 string
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    Status string
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    User string
    User name required to log into this Active Directory server.
    _guiMeta string
    _Gui_Meta.
    _guiMeta String
    _Gui_Meta.
    adgrps List<ObjectUserFssopollingAdgrp>
    Adgrp. The structure of adgrp block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    defaultDomain String
    Default domain managed by this Active Directory server.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Double
    Active Directory server ID.
    ldapServer String
    LDAP server name used in LDAP connection strings.
    logonHistory Double
    Number of hours of logon history to keep, 0 means keep all history.
    objectUserFssopollingId String
    an identifier for the resource with format {{fosid}}.
    passwords List<String>
    Password required to log into this Active Directory server
    pollingFrequency Double
    Polling frequency (every 1 to 30 seconds).
    port Double
    Port to communicate with this Active Directory server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server String
    Host name or IP address of the Active Directory server.
    smbNtlmv1Auth String
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 String
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status String
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user String
    User name required to log into this Active Directory server.
    _guiMeta string
    _Gui_Meta.
    adgrps ObjectUserFssopollingAdgrp[]
    Adgrp. The structure of adgrp block is documented below.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    defaultDomain string
    Default domain managed by this Active Directory server.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid number
    Active Directory server ID.
    ldapServer string
    LDAP server name used in LDAP connection strings.
    logonHistory number
    Number of hours of logon history to keep, 0 means keep all history.
    objectUserFssopollingId string
    an identifier for the resource with format {{fosid}}.
    passwords string[]
    Password required to log into this Active Directory server
    pollingFrequency number
    Polling frequency (every 1 to 30 seconds).
    port number
    Port to communicate with this Active Directory server.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server string
    Host name or IP address of the Active Directory server.
    smbNtlmv1Auth string
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 string
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status string
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user string
    User name required to log into this Active Directory server.
    _gui_meta str
    _Gui_Meta.
    adgrps Sequence[ObjectUserFssopollingAdgrpArgs]
    Adgrp. The structure of adgrp block is documented below.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    default_domain str
    Default domain managed by this Active Directory server.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid float
    Active Directory server ID.
    ldap_server str
    LDAP server name used in LDAP connection strings.
    logon_history float
    Number of hours of logon history to keep, 0 means keep all history.
    object_user_fssopolling_id str
    an identifier for the resource with format {{fosid}}.
    passwords Sequence[str]
    Password required to log into this Active Directory server
    polling_frequency float
    Polling frequency (every 1 to 30 seconds).
    port float
    Port to communicate with this Active Directory server.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server str
    Host name or IP address of the Active Directory server.
    smb_ntlmv1_auth str
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 str
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status str
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user str
    User name required to log into this Active Directory server.
    _guiMeta String
    _Gui_Meta.
    adgrps List<Property Map>
    Adgrp. The structure of adgrp block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    defaultDomain String
    Default domain managed by this Active Directory server.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Number
    Active Directory server ID.
    ldapServer String
    LDAP server name used in LDAP connection strings.
    logonHistory Number
    Number of hours of logon history to keep, 0 means keep all history.
    objectUserFssopollingId String
    an identifier for the resource with format {{fosid}}.
    passwords List<String>
    Password required to log into this Active Directory server
    pollingFrequency Number
    Polling frequency (every 1 to 30 seconds).
    port Number
    Port to communicate with this Active Directory server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server String
    Host name or IP address of the Active Directory server.
    smbNtlmv1Auth String
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 String
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status String
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user String
    User name required to log into this Active Directory server.

    Outputs

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

    Get an existing ObjectUserFssopolling 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?: ObjectUserFssopollingState, opts?: CustomResourceOptions): ObjectUserFssopolling
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _gui_meta: Optional[str] = None,
            adgrps: Optional[Sequence[ObjectUserFssopollingAdgrpArgs]] = None,
            adom: Optional[str] = None,
            default_domain: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            fosid: Optional[float] = None,
            ldap_server: Optional[str] = None,
            logon_history: Optional[float] = None,
            object_user_fssopolling_id: Optional[str] = None,
            passwords: Optional[Sequence[str]] = None,
            polling_frequency: Optional[float] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            server: Optional[str] = None,
            smb_ntlmv1_auth: Optional[str] = None,
            smbv1: Optional[str] = None,
            status: Optional[str] = None,
            user: Optional[str] = None) -> ObjectUserFssopolling
    func GetObjectUserFssopolling(ctx *Context, name string, id IDInput, state *ObjectUserFssopollingState, opts ...ResourceOption) (*ObjectUserFssopolling, error)
    public static ObjectUserFssopolling Get(string name, Input<string> id, ObjectUserFssopollingState? state, CustomResourceOptions? opts = null)
    public static ObjectUserFssopolling get(String name, Output<String> id, ObjectUserFssopollingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserFssopolling    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adgrps List<ObjectUserFssopollingAdgrp>
    Adgrp. The structure of adgrp block is documented below.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DefaultDomain string
    Default domain managed by this Active Directory server.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid double
    Active Directory server ID.
    LdapServer string
    LDAP server name used in LDAP connection strings.
    LogonHistory double
    Number of hours of logon history to keep, 0 means keep all history.
    ObjectUserFssopollingId string
    an identifier for the resource with format {{fosid}}.
    Passwords List<string>
    Password required to log into this Active Directory server
    PollingFrequency double
    Polling frequency (every 1 to 30 seconds).
    Port double
    Port to communicate with this Active Directory server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Server string
    Host name or IP address of the Active Directory server.
    SmbNtlmv1Auth string
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    Smbv1 string
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    Status string
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    User string
    User name required to log into this Active Directory server.
    _guiMeta string
    _Gui_Meta.
    Adgrps []ObjectUserFssopollingAdgrpTypeArgs
    Adgrp. The structure of adgrp block is documented below.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DefaultDomain string
    Default domain managed by this Active Directory server.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Fosid float64
    Active Directory server ID.
    LdapServer string
    LDAP server name used in LDAP connection strings.
    LogonHistory float64
    Number of hours of logon history to keep, 0 means keep all history.
    ObjectUserFssopollingId string
    an identifier for the resource with format {{fosid}}.
    Passwords []string
    Password required to log into this Active Directory server
    PollingFrequency float64
    Polling frequency (every 1 to 30 seconds).
    Port float64
    Port to communicate with this Active Directory server.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Server string
    Host name or IP address of the Active Directory server.
    SmbNtlmv1Auth string
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    Smbv1 string
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    Status string
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    User string
    User name required to log into this Active Directory server.
    _guiMeta string
    _Gui_Meta.
    _guiMeta String
    _Gui_Meta.
    adgrps List<ObjectUserFssopollingAdgrp>
    Adgrp. The structure of adgrp block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    defaultDomain String
    Default domain managed by this Active Directory server.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Double
    Active Directory server ID.
    ldapServer String
    LDAP server name used in LDAP connection strings.
    logonHistory Double
    Number of hours of logon history to keep, 0 means keep all history.
    objectUserFssopollingId String
    an identifier for the resource with format {{fosid}}.
    passwords List<String>
    Password required to log into this Active Directory server
    pollingFrequency Double
    Polling frequency (every 1 to 30 seconds).
    port Double
    Port to communicate with this Active Directory server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server String
    Host name or IP address of the Active Directory server.
    smbNtlmv1Auth String
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 String
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status String
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user String
    User name required to log into this Active Directory server.
    _guiMeta string
    _Gui_Meta.
    adgrps ObjectUserFssopollingAdgrp[]
    Adgrp. The structure of adgrp block is documented below.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    defaultDomain string
    Default domain managed by this Active Directory server.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid number
    Active Directory server ID.
    ldapServer string
    LDAP server name used in LDAP connection strings.
    logonHistory number
    Number of hours of logon history to keep, 0 means keep all history.
    objectUserFssopollingId string
    an identifier for the resource with format {{fosid}}.
    passwords string[]
    Password required to log into this Active Directory server
    pollingFrequency number
    Polling frequency (every 1 to 30 seconds).
    port number
    Port to communicate with this Active Directory server.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server string
    Host name or IP address of the Active Directory server.
    smbNtlmv1Auth string
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 string
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status string
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user string
    User name required to log into this Active Directory server.
    _gui_meta str
    _Gui_Meta.
    adgrps Sequence[ObjectUserFssopollingAdgrpArgs]
    Adgrp. The structure of adgrp block is documented below.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    default_domain str
    Default domain managed by this Active Directory server.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid float
    Active Directory server ID.
    ldap_server str
    LDAP server name used in LDAP connection strings.
    logon_history float
    Number of hours of logon history to keep, 0 means keep all history.
    object_user_fssopolling_id str
    an identifier for the resource with format {{fosid}}.
    passwords Sequence[str]
    Password required to log into this Active Directory server
    polling_frequency float
    Polling frequency (every 1 to 30 seconds).
    port float
    Port to communicate with this Active Directory server.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server str
    Host name or IP address of the Active Directory server.
    smb_ntlmv1_auth str
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 str
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status str
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user str
    User name required to log into this Active Directory server.
    _guiMeta String
    _Gui_Meta.
    adgrps List<Property Map>
    Adgrp. The structure of adgrp block is documented below.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    defaultDomain String
    Default domain managed by this Active Directory server.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fosid Number
    Active Directory server ID.
    ldapServer String
    LDAP server name used in LDAP connection strings.
    logonHistory Number
    Number of hours of logon history to keep, 0 means keep all history.
    objectUserFssopollingId String
    an identifier for the resource with format {{fosid}}.
    passwords List<String>
    Password required to log into this Active Directory server
    pollingFrequency Number
    Polling frequency (every 1 to 30 seconds).
    port Number
    Port to communicate with this Active Directory server.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server String
    Host name or IP address of the Active Directory server.
    smbNtlmv1Auth String
    Enable/disable support of NTLMv1 for Samba authentication. Valid values: disable, enable.
    smbv1 String
    Enable/disable support of SMBv1 for Samba. Valid values: disable, enable.
    status String
    Enable/disable polling for the status of this Active Directory server. Valid values: disable, enable.
    user String
    User name required to log into this Active Directory server.

    Supporting Types

    ObjectUserFssopollingAdgrp, ObjectUserFssopollingAdgrpArgs

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

    Import

    ObjectUser FssoPolling can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectUserFssopolling:ObjectUserFssopolling labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev