fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle
Explore with Pulumi AI
ESL SES-imagotag dongle configuration.
This resource is a sub resource for variable
esl_ses_dongle
of resourcefortimanager.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:
- Wtp
Profile string - Wtp Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - Apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- Apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- Apc
Port double - Port of ESL SES-imagotag Access Point Controller (APC).
- Coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - Compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - Esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - Object
Wirelesscontroller stringWtpprofile Eslsesdongle Id - an identifier for the resource.
- Output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - Scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - Tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- Wtp
Profile string - Wtp Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - Apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- Apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- Apc
Port float64 - Port of ESL SES-imagotag Access Point Controller (APC).
- Coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - Compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - Esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - Object
Wirelesscontroller stringWtpprofile Eslsesdongle Id - an identifier for the resource.
- Output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - Scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - Tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- wtp
Profile String - Wtp Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - apc
Addr StringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn String - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip String - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port Double - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level String - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level String - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel String - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - object
Wirelesscontroller StringWtpprofile Eslsesdongle Id - an identifier for the resource.
- output
Power String - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls
Cert StringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn StringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- wtp
Profile string - Wtp Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port number - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - object
Wirelesscontroller stringWtpprofile Eslsesdongle Id - an identifier for the resource.
- output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn stringVerification - 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
isadom
, otherwise the value of adom in the provider will be inherited. - apc_
addr_ strtype - 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_ strwtpprofile_ eslsesdongle_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls_
cert_ strverification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls_
fqdn_ strverification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- wtp
Profile String - Wtp Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - apc
Addr StringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn String - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip String - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port Number - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level String - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level String - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel String - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - object
Wirelesscontroller StringWtpprofile Eslsesdongle Id - an identifier for the resource.
- output
Power String - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls
Cert StringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn StringVerification - 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - Apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- Apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- Apc
Port double - Port of ESL SES-imagotag Access Point Controller (APC).
- Coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - Compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - Esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - Object
Wirelesscontroller stringWtpprofile Eslsesdongle Id - an identifier for the resource.
- Output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - Scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - Tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
. - Wtp
Profile string - Wtp Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - Apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- Apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- Apc
Port float64 - Port of ESL SES-imagotag Access Point Controller (APC).
- Coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - Compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - Esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - Object
Wirelesscontroller stringWtpprofile Eslsesdongle Id - an identifier for the resource.
- Output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - Scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - Tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
. - Wtp
Profile string - Wtp Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - apc
Addr StringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn String - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip String - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port Double - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level String - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level String - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel String - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - object
Wirelesscontroller StringWtpprofile Eslsesdongle Id - an identifier for the resource.
- output
Power String - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls
Cert StringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn StringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
. - wtp
Profile String - Wtp Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port number - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - object
Wirelesscontroller stringWtpprofile Eslsesdongle Id - an identifier for the resource.
- output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
. - wtp
Profile string - Wtp Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - apc_
addr_ strtype - 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_ strwtpprofile_ eslsesdongle_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls_
cert_ strverification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls_
fqdn_ strverification - 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
isadom
, otherwise the value of adom in the provider will be inherited. - apc
Addr StringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn String - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip String - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port Number - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level String - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level String - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel String - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - object
Wirelesscontroller StringWtpprofile Eslsesdongle Id - an identifier for the resource.
- output
Power String - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - tls
Cert StringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn StringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
. - wtp
Profile 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.