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

fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle

Explore with Pulumi AI

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

    ESL SES-imagotag dongle configuration.

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname2 = new fortimanager.ObjectWirelesscontrollerWtpprofile("trname2", {});
    const trname = new fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle("trname", {
        apcAddrType: "ip",
        apcIp: "10.160.88.123",
        apcPort: 67,
        wtpProfile: trname2.name,
    }, {
        dependsOn: [trname2],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname2 = fortimanager.ObjectWirelesscontrollerWtpprofile("trname2")
    trname = fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle("trname",
        apc_addr_type="ip",
        apc_ip="10.160.88.123",
        apc_port=67,
        wtp_profile=trname2.name,
        opts = pulumi.ResourceOptions(depends_on=[trname2]))
    
    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 {
    		trname2, err := fortimanager.NewObjectWirelesscontrollerWtpprofile(ctx, "trname2", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWirelesscontrollerWtpprofileEslsesdongle(ctx, "trname", &fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongleArgs{
    			ApcAddrType: pulumi.String("ip"),
    			ApcIp:       pulumi.String("10.160.88.123"),
    			ApcPort:     pulumi.Float64(67),
    			WtpProfile:  trname2.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname2,
    		}))
    		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 trname2 = new Fortimanager.ObjectWirelesscontrollerWtpprofile("trname2");
    
        var trname = new Fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle("trname", new()
        {
            ApcAddrType = "ip",
            ApcIp = "10.160.88.123",
            ApcPort = 67,
            WtpProfile = trname2.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname2,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofile;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle;
    import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongleArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trname2 = new ObjectWirelesscontrollerWtpprofile("trname2");
    
            var trname = new ObjectWirelesscontrollerWtpprofileEslsesdongle("trname", ObjectWirelesscontrollerWtpprofileEslsesdongleArgs.builder()
                .apcAddrType("ip")
                .apcIp("10.160.88.123")
                .apcPort(67)
                .wtpProfile(trname2.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname2)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWirelesscontrollerWtpprofileEslsesdongle
        properties:
          apcAddrType: ip
          apcIp: 10.160.88.123
          apcPort: 67
          wtpProfile: ${trname2.name}
        options:
          dependsOn:
            - ${trname2}
      trname2:
        type: fortimanager:ObjectWirelesscontrollerWtpprofile
    

    Create ObjectWirelesscontrollerWtpprofileEslsesdongle Resource

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

    Constructor syntax

    new ObjectWirelesscontrollerWtpprofileEslsesdongle(name: string, args: ObjectWirelesscontrollerWtpprofileEslsesdongleArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWirelesscontrollerWtpprofileEslsesdongle(resource_name: str,
                                                       args: ObjectWirelesscontrollerWtpprofileEslsesdongleArgs,
                                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWirelesscontrollerWtpprofileEslsesdongle(resource_name: str,
                                                       opts: Optional[ResourceOptions] = None,
                                                       wtp_profile: Optional[str] = None,
                                                       compliance_level: Optional[str] = None,
                                                       object_wirelesscontroller_wtpprofile_eslsesdongle_id: Optional[str] = None,
                                                       apc_ip: Optional[str] = None,
                                                       apc_port: Optional[float] = None,
                                                       coex_level: Optional[str] = None,
                                                       adom: Optional[str] = None,
                                                       esl_channel: Optional[str] = None,
                                                       apc_fqdn: Optional[str] = None,
                                                       output_power: Optional[str] = None,
                                                       scd_enable: Optional[str] = None,
                                                       scopetype: Optional[str] = None,
                                                       tls_cert_verification: Optional[str] = None,
                                                       tls_fqdn_verification: Optional[str] = None,
                                                       apc_addr_type: Optional[str] = None)
    func NewObjectWirelesscontrollerWtpprofileEslsesdongle(ctx *Context, name string, args ObjectWirelesscontrollerWtpprofileEslsesdongleArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofileEslsesdongle, error)
    public ObjectWirelesscontrollerWtpprofileEslsesdongle(string name, ObjectWirelesscontrollerWtpprofileEslsesdongleArgs args, CustomResourceOptions? opts = null)
    public ObjectWirelesscontrollerWtpprofileEslsesdongle(String name, ObjectWirelesscontrollerWtpprofileEslsesdongleArgs args)
    public ObjectWirelesscontrollerWtpprofileEslsesdongle(String name, ObjectWirelesscontrollerWtpprofileEslsesdongleArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWirelesscontrollerWtpprofileEslsesdongle
    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 ObjectWirelesscontrollerWtpprofileEslsesdongleArgs
    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 ObjectWirelesscontrollerWtpprofileEslsesdongleArgs
    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 ObjectWirelesscontrollerWtpprofileEslsesdongleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWirelesscontrollerWtpprofileEslsesdongleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWirelesscontrollerWtpprofileEslsesdongleArgs
    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 objectWirelesscontrollerWtpprofileEslsesdongleResource = new Fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle("objectWirelesscontrollerWtpprofileEslsesdongleResource", new()
    {
        WtpProfile = "string",
        ComplianceLevel = "string",
        ObjectWirelesscontrollerWtpprofileEslsesdongleId = "string",
        ApcIp = "string",
        ApcPort = 0,
        CoexLevel = "string",
        Adom = "string",
        EslChannel = "string",
        ApcFqdn = "string",
        OutputPower = "string",
        ScdEnable = "string",
        Scopetype = "string",
        TlsCertVerification = "string",
        TlsFqdnVerification = "string",
        ApcAddrType = "string",
    });
    
    example, err := fortimanager.NewObjectWirelesscontrollerWtpprofileEslsesdongle(ctx, "objectWirelesscontrollerWtpprofileEslsesdongleResource", &fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongleArgs{
    WtpProfile: pulumi.String("string"),
    ComplianceLevel: pulumi.String("string"),
    ObjectWirelesscontrollerWtpprofileEslsesdongleId: pulumi.String("string"),
    ApcIp: pulumi.String("string"),
    ApcPort: pulumi.Float64(0),
    CoexLevel: pulumi.String("string"),
    Adom: pulumi.String("string"),
    EslChannel: pulumi.String("string"),
    ApcFqdn: pulumi.String("string"),
    OutputPower: pulumi.String("string"),
    ScdEnable: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    TlsCertVerification: pulumi.String("string"),
    TlsFqdnVerification: pulumi.String("string"),
    ApcAddrType: pulumi.String("string"),
    })
    
    var objectWirelesscontrollerWtpprofileEslsesdongleResource = new ObjectWirelesscontrollerWtpprofileEslsesdongle("objectWirelesscontrollerWtpprofileEslsesdongleResource", ObjectWirelesscontrollerWtpprofileEslsesdongleArgs.builder()
        .wtpProfile("string")
        .complianceLevel("string")
        .objectWirelesscontrollerWtpprofileEslsesdongleId("string")
        .apcIp("string")
        .apcPort(0)
        .coexLevel("string")
        .adom("string")
        .eslChannel("string")
        .apcFqdn("string")
        .outputPower("string")
        .scdEnable("string")
        .scopetype("string")
        .tlsCertVerification("string")
        .tlsFqdnVerification("string")
        .apcAddrType("string")
        .build());
    
    object_wirelesscontroller_wtpprofile_eslsesdongle_resource = fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle("objectWirelesscontrollerWtpprofileEslsesdongleResource",
        wtp_profile="string",
        compliance_level="string",
        object_wirelesscontroller_wtpprofile_eslsesdongle_id="string",
        apc_ip="string",
        apc_port=0,
        coex_level="string",
        adom="string",
        esl_channel="string",
        apc_fqdn="string",
        output_power="string",
        scd_enable="string",
        scopetype="string",
        tls_cert_verification="string",
        tls_fqdn_verification="string",
        apc_addr_type="string")
    
    const objectWirelesscontrollerWtpprofileEslsesdongleResource = new fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle("objectWirelesscontrollerWtpprofileEslsesdongleResource", {
        wtpProfile: "string",
        complianceLevel: "string",
        objectWirelesscontrollerWtpprofileEslsesdongleId: "string",
        apcIp: "string",
        apcPort: 0,
        coexLevel: "string",
        adom: "string",
        eslChannel: "string",
        apcFqdn: "string",
        outputPower: "string",
        scdEnable: "string",
        scopetype: "string",
        tlsCertVerification: "string",
        tlsFqdnVerification: "string",
        apcAddrType: "string",
    });
    
    type: fortimanager:ObjectWirelesscontrollerWtpprofileEslsesdongle
    properties:
        adom: string
        apcAddrType: string
        apcFqdn: string
        apcIp: string
        apcPort: 0
        coexLevel: string
        complianceLevel: string
        eslChannel: string
        objectWirelesscontrollerWtpprofileEslsesdongleId: string
        outputPower: string
        scdEnable: string
        scopetype: string
        tlsCertVerification: string
        tlsFqdnVerification: string
        wtpProfile: string
    

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

    WtpProfile string
    Wtp Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApcAddrType string
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    ApcFqdn string
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    ApcIp string
    IP address of ESL SES-imagotag Access Point Controller (APC).
    ApcPort double
    Port of ESL SES-imagotag Access Point Controller (APC).
    CoexLevel string
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    ComplianceLevel string
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    EslChannel string
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    ObjectWirelesscontrollerWtpprofileEslsesdongleId string
    an identifier for the resource.
    OutputPower string
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    ScdEnable string
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    TlsCertVerification string
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    TlsFqdnVerification string
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    WtpProfile string
    Wtp Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApcAddrType string
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    ApcFqdn string
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    ApcIp string
    IP address of ESL SES-imagotag Access Point Controller (APC).
    ApcPort float64
    Port of ESL SES-imagotag Access Point Controller (APC).
    CoexLevel string
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    ComplianceLevel string
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    EslChannel string
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    ObjectWirelesscontrollerWtpprofileEslsesdongleId string
    an identifier for the resource.
    OutputPower string
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    ScdEnable string
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    TlsCertVerification string
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    TlsFqdnVerification string
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtpProfile String
    Wtp Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apcAddrType String
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apcFqdn String
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apcIp String
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apcPort Double
    Port of ESL SES-imagotag Access Point Controller (APC).
    coexLevel String
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    complianceLevel String
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    eslChannel String
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    objectWirelesscontrollerWtpprofileEslsesdongleId String
    an identifier for the resource.
    outputPower String
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scdEnable String
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tlsCertVerification String
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tlsFqdnVerification String
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtpProfile string
    Wtp Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apcAddrType string
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apcFqdn string
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apcIp string
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apcPort number
    Port of ESL SES-imagotag Access Point Controller (APC).
    coexLevel string
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    complianceLevel string
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    eslChannel string
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    objectWirelesscontrollerWtpprofileEslsesdongleId string
    an identifier for the resource.
    outputPower string
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scdEnable string
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tlsCertVerification string
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tlsFqdnVerification string
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtp_profile str
    Wtp Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apc_addr_type str
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apc_fqdn str
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apc_ip str
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apc_port float
    Port of ESL SES-imagotag Access Point Controller (APC).
    coex_level str
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    compliance_level str
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    esl_channel str
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    object_wirelesscontroller_wtpprofile_eslsesdongle_id str
    an identifier for the resource.
    output_power str
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scd_enable str
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tls_cert_verification str
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tls_fqdn_verification str
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtpProfile String
    Wtp Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apcAddrType String
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apcFqdn String
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apcIp String
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apcPort Number
    Port of ESL SES-imagotag Access Point Controller (APC).
    coexLevel String
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    complianceLevel String
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    eslChannel String
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    objectWirelesscontrollerWtpprofileEslsesdongleId String
    an identifier for the resource.
    outputPower String
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scdEnable String
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tlsCertVerification String
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tlsFqdnVerification String
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectWirelesscontrollerWtpprofileEslsesdongle 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?: ObjectWirelesscontrollerWtpprofileEslsesdongleState, opts?: CustomResourceOptions): ObjectWirelesscontrollerWtpprofileEslsesdongle
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            apc_addr_type: Optional[str] = None,
            apc_fqdn: Optional[str] = None,
            apc_ip: Optional[str] = None,
            apc_port: Optional[float] = None,
            coex_level: Optional[str] = None,
            compliance_level: Optional[str] = None,
            esl_channel: Optional[str] = None,
            object_wirelesscontroller_wtpprofile_eslsesdongle_id: Optional[str] = None,
            output_power: Optional[str] = None,
            scd_enable: Optional[str] = None,
            scopetype: Optional[str] = None,
            tls_cert_verification: Optional[str] = None,
            tls_fqdn_verification: Optional[str] = None,
            wtp_profile: Optional[str] = None) -> ObjectWirelesscontrollerWtpprofileEslsesdongle
    func GetObjectWirelesscontrollerWtpprofileEslsesdongle(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerWtpprofileEslsesdongleState, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofileEslsesdongle, error)
    public static ObjectWirelesscontrollerWtpprofileEslsesdongle Get(string name, Input<string> id, ObjectWirelesscontrollerWtpprofileEslsesdongleState? state, CustomResourceOptions? opts = null)
    public static ObjectWirelesscontrollerWtpprofileEslsesdongle get(String name, Output<String> id, ObjectWirelesscontrollerWtpprofileEslsesdongleState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWirelesscontrollerWtpprofileEslsesdongle    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApcAddrType string
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    ApcFqdn string
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    ApcIp string
    IP address of ESL SES-imagotag Access Point Controller (APC).
    ApcPort double
    Port of ESL SES-imagotag Access Point Controller (APC).
    CoexLevel string
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    ComplianceLevel string
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    EslChannel string
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    ObjectWirelesscontrollerWtpprofileEslsesdongleId string
    an identifier for the resource.
    OutputPower string
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    ScdEnable string
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    TlsCertVerification string
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    TlsFqdnVerification string
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    WtpProfile string
    Wtp Profile.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApcAddrType string
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    ApcFqdn string
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    ApcIp string
    IP address of ESL SES-imagotag Access Point Controller (APC).
    ApcPort float64
    Port of ESL SES-imagotag Access Point Controller (APC).
    CoexLevel string
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    ComplianceLevel string
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    EslChannel string
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    ObjectWirelesscontrollerWtpprofileEslsesdongleId string
    an identifier for the resource.
    OutputPower string
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    ScdEnable string
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    TlsCertVerification string
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    TlsFqdnVerification string
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    WtpProfile string
    Wtp Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apcAddrType String
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apcFqdn String
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apcIp String
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apcPort Double
    Port of ESL SES-imagotag Access Point Controller (APC).
    coexLevel String
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    complianceLevel String
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    eslChannel String
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    objectWirelesscontrollerWtpprofileEslsesdongleId String
    an identifier for the resource.
    outputPower String
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scdEnable String
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tlsCertVerification String
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tlsFqdnVerification String
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtpProfile String
    Wtp Profile.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apcAddrType string
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apcFqdn string
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apcIp string
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apcPort number
    Port of ESL SES-imagotag Access Point Controller (APC).
    coexLevel string
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    complianceLevel string
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    eslChannel string
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    objectWirelesscontrollerWtpprofileEslsesdongleId string
    an identifier for the resource.
    outputPower string
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scdEnable string
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tlsCertVerification string
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tlsFqdnVerification string
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtpProfile string
    Wtp Profile.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apc_addr_type str
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apc_fqdn str
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apc_ip str
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apc_port float
    Port of ESL SES-imagotag Access Point Controller (APC).
    coex_level str
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    compliance_level str
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    esl_channel str
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    object_wirelesscontroller_wtpprofile_eslsesdongle_id str
    an identifier for the resource.
    output_power str
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scd_enable str
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tls_cert_verification str
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tls_fqdn_verification str
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtp_profile str
    Wtp Profile.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    apcAddrType String
    ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
    apcFqdn String
    FQDN of ESL SES-imagotag Access Point Controller (APC).
    apcIp String
    IP address of ESL SES-imagotag Access Point Controller (APC).
    apcPort Number
    Port of ESL SES-imagotag Access Point Controller (APC).
    coexLevel String
    ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
    complianceLevel String
    Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
    eslChannel String
    ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
    objectWirelesscontrollerWtpprofileEslsesdongleId String
    an identifier for the resource.
    outputPower String
    ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
    scdEnable String
    Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
    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.
    tlsCertVerification String
    Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
    tlsFqdnVerification String
    Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
    wtpProfile String
    Wtp Profile.

    Import

    ObjectWirelessController WtpProfileEslSesDongle can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWirelesscontrollerWtpprofileEslsesdongle:ObjectWirelesscontrollerWtpprofileEslsesdongle labelname ObjectWirelessControllerWtpProfileEslSesDongle
    

    $ 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