fortimanager.ObjectSwitchcontrollerLldpprofile
Explore with Pulumi AI
Configure FortiSwitch LLDP profiles.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
custom_tlvs
:fortimanager.ObjectSwitchcontrollerLldpprofileCustomtlvs
med_location_service
:fortimanager_object_switchcontroller_lldpprofile_medlocationservice
med_network_policy
:fortimanager_object_switchcontroller_lldpprofile_mednetworkpolicy
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectSwitchcontrollerLldpprofile("trname", {
autoIsl: "enable",
autoIslHelloTimer: 3,
autoIslReceiveTimeout: 60,
autoMclagIcl: "disable",
medTlvs: ["location-identification"],
n8021Tlvs: ["port-vlan-id"],
n8023Tlvs: ["max-frame-size"],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSwitchcontrollerLldpprofile("trname",
auto_isl="enable",
auto_isl_hello_timer=3,
auto_isl_receive_timeout=60,
auto_mclag_icl="disable",
med_tlvs=["location-identification"],
n8021_tlvs=["port-vlan-id"],
n8023_tlvs=["max-frame-size"])
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.NewObjectSwitchcontrollerLldpprofile(ctx, "trname", &fortimanager.ObjectSwitchcontrollerLldpprofileArgs{
AutoIsl: pulumi.String("enable"),
AutoIslHelloTimer: pulumi.Float64(3),
AutoIslReceiveTimeout: pulumi.Float64(60),
AutoMclagIcl: pulumi.String("disable"),
MedTlvs: pulumi.StringArray{
pulumi.String("location-identification"),
},
N8021Tlvs: pulumi.StringArray{
pulumi.String("port-vlan-id"),
},
N8023Tlvs: pulumi.StringArray{
pulumi.String("max-frame-size"),
},
})
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.ObjectSwitchcontrollerLldpprofile("trname", new()
{
AutoIsl = "enable",
AutoIslHelloTimer = 3,
AutoIslReceiveTimeout = 60,
AutoMclagIcl = "disable",
MedTlvs = new[]
{
"location-identification",
},
N8021Tlvs = new[]
{
"port-vlan-id",
},
N8023Tlvs = new[]
{
"max-frame-size",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSwitchcontrollerLldpprofile;
import com.pulumi.fortimanager.ObjectSwitchcontrollerLldpprofileArgs;
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 ObjectSwitchcontrollerLldpprofile("trname", ObjectSwitchcontrollerLldpprofileArgs.builder()
.autoIsl("enable")
.autoIslHelloTimer(3)
.autoIslReceiveTimeout(60)
.autoMclagIcl("disable")
.medTlvs("location-identification")
.n8021Tlvs("port-vlan-id")
.n8023Tlvs("max-frame-size")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSwitchcontrollerLldpprofile
properties:
autoIsl: enable
autoIslHelloTimer: 3
autoIslReceiveTimeout: 60
autoMclagIcl: disable
medTlvs:
- location-identification
n8021Tlvs:
- port-vlan-id
n8023Tlvs:
- max-frame-size
Create ObjectSwitchcontrollerLldpprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSwitchcontrollerLldpprofile(name: string, args?: ObjectSwitchcontrollerLldpprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectSwitchcontrollerLldpprofile(resource_name: str,
args: Optional[ObjectSwitchcontrollerLldpprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSwitchcontrollerLldpprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auto_isl: Optional[str] = None,
auto_isl_auth: Optional[str] = None,
auto_isl_auth_encrypt: Optional[str] = None,
auto_isl_auth_identity: Optional[str] = None,
auto_isl_auth_macsec_profile: Optional[str] = None,
auto_isl_auth_reauth: Optional[float] = None,
auto_isl_auth_user: Optional[str] = None,
auto_isl_hello_timer: Optional[float] = None,
auto_isl_port_group: Optional[float] = None,
auto_isl_receive_timeout: Optional[float] = None,
auto_mclag_icl: Optional[str] = None,
custom_tlvs: Optional[Sequence[ObjectSwitchcontrollerLldpprofileCustomTlvArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
med_location_services: Optional[Sequence[ObjectSwitchcontrollerLldpprofileMedLocationServiceArgs]] = None,
med_network_policies: Optional[Sequence[ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArgs]] = None,
med_tlvs: Optional[Sequence[str]] = None,
n8021_tlvs: Optional[Sequence[str]] = None,
n8023_tlvs: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_switchcontroller_lldpprofile_id: Optional[str] = None,
scopetype: Optional[str] = None)
func NewObjectSwitchcontrollerLldpprofile(ctx *Context, name string, args *ObjectSwitchcontrollerLldpprofileArgs, opts ...ResourceOption) (*ObjectSwitchcontrollerLldpprofile, error)
public ObjectSwitchcontrollerLldpprofile(string name, ObjectSwitchcontrollerLldpprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSwitchcontrollerLldpprofile(String name, ObjectSwitchcontrollerLldpprofileArgs args)
public ObjectSwitchcontrollerLldpprofile(String name, ObjectSwitchcontrollerLldpprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSwitchcontrollerLldpprofile
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 ObjectSwitchcontrollerLldpprofileArgs
- 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 ObjectSwitchcontrollerLldpprofileArgs
- 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 ObjectSwitchcontrollerLldpprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSwitchcontrollerLldpprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSwitchcontrollerLldpprofileArgs
- 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 objectSwitchcontrollerLldpprofileResource = new Fortimanager.ObjectSwitchcontrollerLldpprofile("objectSwitchcontrollerLldpprofileResource", new()
{
Adom = "string",
AutoIsl = "string",
AutoIslAuth = "string",
AutoIslAuthEncrypt = "string",
AutoIslAuthIdentity = "string",
AutoIslAuthMacsecProfile = "string",
AutoIslAuthReauth = 0,
AutoIslAuthUser = "string",
AutoIslHelloTimer = 0,
AutoIslPortGroup = 0,
AutoIslReceiveTimeout = 0,
AutoMclagIcl = "string",
CustomTlvs = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerLldpprofileCustomTlvArgs
{
InformationString = "string",
Name = "string",
Oui = "string",
Subtype = 0,
},
},
DynamicSortSubtable = "string",
MedLocationServices = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerLldpprofileMedLocationServiceArgs
{
Name = "string",
Status = "string",
SysLocationId = "string",
},
},
MedNetworkPolicies = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArgs
{
AssignVlan = "string",
Dscp = 0,
Name = "string",
Priority = 0,
Status = "string",
Vlan = 0,
VlanIntf = "string",
},
},
MedTlvs = new[]
{
"string",
},
N8021Tlvs = new[]
{
"string",
},
N8023Tlvs = new[]
{
"string",
},
Name = "string",
ObjectSwitchcontrollerLldpprofileId = "string",
Scopetype = "string",
});
example, err := fortimanager.NewObjectSwitchcontrollerLldpprofile(ctx, "objectSwitchcontrollerLldpprofileResource", &fortimanager.ObjectSwitchcontrollerLldpprofileArgs{
Adom: pulumi.String("string"),
AutoIsl: pulumi.String("string"),
AutoIslAuth: pulumi.String("string"),
AutoIslAuthEncrypt: pulumi.String("string"),
AutoIslAuthIdentity: pulumi.String("string"),
AutoIslAuthMacsecProfile: pulumi.String("string"),
AutoIslAuthReauth: pulumi.Float64(0),
AutoIslAuthUser: pulumi.String("string"),
AutoIslHelloTimer: pulumi.Float64(0),
AutoIslPortGroup: pulumi.Float64(0),
AutoIslReceiveTimeout: pulumi.Float64(0),
AutoMclagIcl: pulumi.String("string"),
CustomTlvs: .ObjectSwitchcontrollerLldpprofileCustomTlvArray{
&.ObjectSwitchcontrollerLldpprofileCustomTlvArgs{
InformationString: pulumi.String("string"),
Name: pulumi.String("string"),
Oui: pulumi.String("string"),
Subtype: pulumi.Float64(0),
},
},
DynamicSortSubtable: pulumi.String("string"),
MedLocationServices: .ObjectSwitchcontrollerLldpprofileMedLocationServiceArray{
&.ObjectSwitchcontrollerLldpprofileMedLocationServiceArgs{
Name: pulumi.String("string"),
Status: pulumi.String("string"),
SysLocationId: pulumi.String("string"),
},
},
MedNetworkPolicies: .ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArray{
&.ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArgs{
AssignVlan: pulumi.String("string"),
Dscp: pulumi.Float64(0),
Name: pulumi.String("string"),
Priority: pulumi.Float64(0),
Status: pulumi.String("string"),
Vlan: pulumi.Float64(0),
VlanIntf: pulumi.String("string"),
},
},
MedTlvs: pulumi.StringArray{
pulumi.String("string"),
},
N8021Tlvs: pulumi.StringArray{
pulumi.String("string"),
},
N8023Tlvs: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectSwitchcontrollerLldpprofileId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
})
var objectSwitchcontrollerLldpprofileResource = new ObjectSwitchcontrollerLldpprofile("objectSwitchcontrollerLldpprofileResource", ObjectSwitchcontrollerLldpprofileArgs.builder()
.adom("string")
.autoIsl("string")
.autoIslAuth("string")
.autoIslAuthEncrypt("string")
.autoIslAuthIdentity("string")
.autoIslAuthMacsecProfile("string")
.autoIslAuthReauth(0)
.autoIslAuthUser("string")
.autoIslHelloTimer(0)
.autoIslPortGroup(0)
.autoIslReceiveTimeout(0)
.autoMclagIcl("string")
.customTlvs(ObjectSwitchcontrollerLldpprofileCustomTlvArgs.builder()
.informationString("string")
.name("string")
.oui("string")
.subtype(0)
.build())
.dynamicSortSubtable("string")
.medLocationServices(ObjectSwitchcontrollerLldpprofileMedLocationServiceArgs.builder()
.name("string")
.status("string")
.sysLocationId("string")
.build())
.medNetworkPolicies(ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArgs.builder()
.assignVlan("string")
.dscp(0)
.name("string")
.priority(0)
.status("string")
.vlan(0)
.vlanIntf("string")
.build())
.medTlvs("string")
.n8021Tlvs("string")
.n8023Tlvs("string")
.name("string")
.objectSwitchcontrollerLldpprofileId("string")
.scopetype("string")
.build());
object_switchcontroller_lldpprofile_resource = fortimanager.ObjectSwitchcontrollerLldpprofile("objectSwitchcontrollerLldpprofileResource",
adom="string",
auto_isl="string",
auto_isl_auth="string",
auto_isl_auth_encrypt="string",
auto_isl_auth_identity="string",
auto_isl_auth_macsec_profile="string",
auto_isl_auth_reauth=0,
auto_isl_auth_user="string",
auto_isl_hello_timer=0,
auto_isl_port_group=0,
auto_isl_receive_timeout=0,
auto_mclag_icl="string",
custom_tlvs=[{
"information_string": "string",
"name": "string",
"oui": "string",
"subtype": 0,
}],
dynamic_sort_subtable="string",
med_location_services=[{
"name": "string",
"status": "string",
"sys_location_id": "string",
}],
med_network_policies=[{
"assign_vlan": "string",
"dscp": 0,
"name": "string",
"priority": 0,
"status": "string",
"vlan": 0,
"vlan_intf": "string",
}],
med_tlvs=["string"],
n8021_tlvs=["string"],
n8023_tlvs=["string"],
name="string",
object_switchcontroller_lldpprofile_id="string",
scopetype="string")
const objectSwitchcontrollerLldpprofileResource = new fortimanager.ObjectSwitchcontrollerLldpprofile("objectSwitchcontrollerLldpprofileResource", {
adom: "string",
autoIsl: "string",
autoIslAuth: "string",
autoIslAuthEncrypt: "string",
autoIslAuthIdentity: "string",
autoIslAuthMacsecProfile: "string",
autoIslAuthReauth: 0,
autoIslAuthUser: "string",
autoIslHelloTimer: 0,
autoIslPortGroup: 0,
autoIslReceiveTimeout: 0,
autoMclagIcl: "string",
customTlvs: [{
informationString: "string",
name: "string",
oui: "string",
subtype: 0,
}],
dynamicSortSubtable: "string",
medLocationServices: [{
name: "string",
status: "string",
sysLocationId: "string",
}],
medNetworkPolicies: [{
assignVlan: "string",
dscp: 0,
name: "string",
priority: 0,
status: "string",
vlan: 0,
vlanIntf: "string",
}],
medTlvs: ["string"],
n8021Tlvs: ["string"],
n8023Tlvs: ["string"],
name: "string",
objectSwitchcontrollerLldpprofileId: "string",
scopetype: "string",
});
type: fortimanager:ObjectSwitchcontrollerLldpprofile
properties:
adom: string
autoIsl: string
autoIslAuth: string
autoIslAuthEncrypt: string
autoIslAuthIdentity: string
autoIslAuthMacsecProfile: string
autoIslAuthReauth: 0
autoIslAuthUser: string
autoIslHelloTimer: 0
autoIslPortGroup: 0
autoIslReceiveTimeout: 0
autoMclagIcl: string
customTlvs:
- informationString: string
name: string
oui: string
subtype: 0
dynamicSortSubtable: string
medLocationServices:
- name: string
status: string
sysLocationId: string
medNetworkPolicies:
- assignVlan: string
dscp: 0
name: string
priority: 0
status: string
vlan: 0
vlanIntf: string
medTlvs:
- string
n8021Tlvs:
- string
n8023Tlvs:
- string
name: string
objectSwitchcontrollerLldpprofileId: string
scopetype: string
ObjectSwitchcontrollerLldpprofile 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 ObjectSwitchcontrollerLldpprofile resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Isl string - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - Auto
Isl stringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - Auto
Isl stringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - Auto
Isl stringAuth Identity - Auto inter-switch LAG authentication identity.
- Auto
Isl stringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- Auto
Isl doubleAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- Auto
Isl stringAuth User - Auto inter-switch LAG authentication user certificate.
- Auto
Isl doubleHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- Auto
Isl doublePort Group - Auto inter-switch LAG port group ID (0 - 9).
- Auto
Isl doubleReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- Auto
Mclag stringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - Custom
Tlvs List<ObjectSwitchcontroller Lldpprofile Custom Tlv> - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Med
Location List<ObjectServices Switchcontroller Lldpprofile Med Location Service> - Med-Location-Service. The structure of
med_location_service
block is documented below. - Med
Network List<ObjectPolicies Switchcontroller Lldpprofile Med Network Policy> - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - Med
Tlvs List<string> - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - N8021Tlvs List<string>
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - N8023Tlvs List<string>
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - Name string
- Profile name.
- Object
Switchcontroller stringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Isl string - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - Auto
Isl stringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - Auto
Isl stringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - Auto
Isl stringAuth Identity - Auto inter-switch LAG authentication identity.
- Auto
Isl stringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- Auto
Isl float64Auth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- Auto
Isl stringAuth User - Auto inter-switch LAG authentication user certificate.
- Auto
Isl float64Hello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- Auto
Isl float64Port Group - Auto inter-switch LAG port group ID (0 - 9).
- Auto
Isl float64Receive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- Auto
Mclag stringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - Custom
Tlvs []ObjectSwitchcontroller Lldpprofile Custom Tlv Args - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Med
Location []ObjectServices Switchcontroller Lldpprofile Med Location Service Args - Med-Location-Service. The structure of
med_location_service
block is documented below. - Med
Network []ObjectPolicies Switchcontroller Lldpprofile Med Network Policy Args - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - Med
Tlvs []string - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - N8021Tlvs []string
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - N8023Tlvs []string
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - Name string
- Profile name.
- Object
Switchcontroller stringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Isl String - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto
Isl StringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto
Isl StringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto
Isl StringAuth Identity - Auto inter-switch LAG authentication identity.
- auto
Isl StringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- auto
Isl DoubleAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto
Isl StringAuth User - Auto inter-switch LAG authentication user certificate.
- auto
Isl DoubleHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto
Isl DoublePort Group - Auto inter-switch LAG port group ID (0 - 9).
- auto
Isl DoubleReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto
Mclag StringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom
Tlvs List<ObjectSwitchcontroller Lldpprofile Custom Tlv> - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic
Sort StringSubtable - 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.
- med
Location List<ObjectServices Switchcontroller Lldpprofile Med Location Service> - Med-Location-Service. The structure of
med_location_service
block is documented below. - med
Network List<ObjectPolicies Switchcontroller Lldpprofile Med Network Policy> - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med
Tlvs List<String> - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021Tlvs List<String>
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023Tlvs List<String>
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name String
- Profile name.
- object
Switchcontroller StringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Isl string - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto
Isl stringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto
Isl stringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto
Isl stringAuth Identity - Auto inter-switch LAG authentication identity.
- auto
Isl stringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- auto
Isl numberAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto
Isl stringAuth User - Auto inter-switch LAG authentication user certificate.
- auto
Isl numberHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto
Isl numberPort Group - Auto inter-switch LAG port group ID (0 - 9).
- auto
Isl numberReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto
Mclag stringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom
Tlvs ObjectSwitchcontroller Lldpprofile Custom Tlv[] - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic
Sort stringSubtable - 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.
- med
Location ObjectServices Switchcontroller Lldpprofile Med Location Service[] - Med-Location-Service. The structure of
med_location_service
block is documented below. - med
Network ObjectPolicies Switchcontroller Lldpprofile Med Network Policy[] - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med
Tlvs string[] - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021Tlvs string[]
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023Tlvs string[]
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name string
- Profile name.
- object
Switchcontroller stringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
isl str - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto_
isl_ strauth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto_
isl_ strauth_ encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto_
isl_ strauth_ identity - Auto inter-switch LAG authentication identity.
- auto_
isl_ strauth_ macsec_ profile - Auto inter-switch LAG macsec profile for encryption.
- auto_
isl_ floatauth_ reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto_
isl_ strauth_ user - Auto inter-switch LAG authentication user certificate.
- auto_
isl_ floathello_ timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto_
isl_ floatport_ group - Auto inter-switch LAG port group ID (0 - 9).
- auto_
isl_ floatreceive_ timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto_
mclag_ stricl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom_
tlvs Sequence[ObjectSwitchcontroller Lldpprofile Custom Tlv Args] - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic_
sort_ strsubtable - 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.
- med_
location_ Sequence[Objectservices Switchcontroller Lldpprofile Med Location Service Args] - Med-Location-Service. The structure of
med_location_service
block is documented below. - med_
network_ Sequence[Objectpolicies Switchcontroller Lldpprofile Med Network Policy Args] - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med_
tlvs Sequence[str] - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021_
tlvs Sequence[str] - Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023_
tlvs Sequence[str] - Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name str
- Profile name.
- object_
switchcontroller_ strlldpprofile_ id - an identifier for the resource with format {{name}}.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Isl String - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto
Isl StringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto
Isl StringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto
Isl StringAuth Identity - Auto inter-switch LAG authentication identity.
- auto
Isl StringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- auto
Isl NumberAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto
Isl StringAuth User - Auto inter-switch LAG authentication user certificate.
- auto
Isl NumberHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto
Isl NumberPort Group - Auto inter-switch LAG port group ID (0 - 9).
- auto
Isl NumberReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto
Mclag StringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom
Tlvs List<Property Map> - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic
Sort StringSubtable - 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.
- med
Location List<Property Map>Services - Med-Location-Service. The structure of
med_location_service
block is documented below. - med
Network List<Property Map>Policies - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med
Tlvs List<String> - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021Tlvs List<String>
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023Tlvs List<String>
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name String
- Profile name.
- object
Switchcontroller StringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSwitchcontrollerLldpprofile 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 ObjectSwitchcontrollerLldpprofile Resource
Get an existing ObjectSwitchcontrollerLldpprofile 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?: ObjectSwitchcontrollerLldpprofileState, opts?: CustomResourceOptions): ObjectSwitchcontrollerLldpprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auto_isl: Optional[str] = None,
auto_isl_auth: Optional[str] = None,
auto_isl_auth_encrypt: Optional[str] = None,
auto_isl_auth_identity: Optional[str] = None,
auto_isl_auth_macsec_profile: Optional[str] = None,
auto_isl_auth_reauth: Optional[float] = None,
auto_isl_auth_user: Optional[str] = None,
auto_isl_hello_timer: Optional[float] = None,
auto_isl_port_group: Optional[float] = None,
auto_isl_receive_timeout: Optional[float] = None,
auto_mclag_icl: Optional[str] = None,
custom_tlvs: Optional[Sequence[ObjectSwitchcontrollerLldpprofileCustomTlvArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
med_location_services: Optional[Sequence[ObjectSwitchcontrollerLldpprofileMedLocationServiceArgs]] = None,
med_network_policies: Optional[Sequence[ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArgs]] = None,
med_tlvs: Optional[Sequence[str]] = None,
n8021_tlvs: Optional[Sequence[str]] = None,
n8023_tlvs: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_switchcontroller_lldpprofile_id: Optional[str] = None,
scopetype: Optional[str] = None) -> ObjectSwitchcontrollerLldpprofile
func GetObjectSwitchcontrollerLldpprofile(ctx *Context, name string, id IDInput, state *ObjectSwitchcontrollerLldpprofileState, opts ...ResourceOption) (*ObjectSwitchcontrollerLldpprofile, error)
public static ObjectSwitchcontrollerLldpprofile Get(string name, Input<string> id, ObjectSwitchcontrollerLldpprofileState? state, CustomResourceOptions? opts = null)
public static ObjectSwitchcontrollerLldpprofile get(String name, Output<String> id, ObjectSwitchcontrollerLldpprofileState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSwitchcontrollerLldpprofile 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. - Auto
Isl string - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - Auto
Isl stringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - Auto
Isl stringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - Auto
Isl stringAuth Identity - Auto inter-switch LAG authentication identity.
- Auto
Isl stringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- Auto
Isl doubleAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- Auto
Isl stringAuth User - Auto inter-switch LAG authentication user certificate.
- Auto
Isl doubleHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- Auto
Isl doublePort Group - Auto inter-switch LAG port group ID (0 - 9).
- Auto
Isl doubleReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- Auto
Mclag stringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - Custom
Tlvs List<ObjectSwitchcontroller Lldpprofile Custom Tlv> - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Med
Location List<ObjectServices Switchcontroller Lldpprofile Med Location Service> - Med-Location-Service. The structure of
med_location_service
block is documented below. - Med
Network List<ObjectPolicies Switchcontroller Lldpprofile Med Network Policy> - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - Med
Tlvs List<string> - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - N8021Tlvs List<string>
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - N8023Tlvs List<string>
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - Name string
- Profile name.
- Object
Switchcontroller stringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Isl string - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - Auto
Isl stringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - Auto
Isl stringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - Auto
Isl stringAuth Identity - Auto inter-switch LAG authentication identity.
- Auto
Isl stringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- Auto
Isl float64Auth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- Auto
Isl stringAuth User - Auto inter-switch LAG authentication user certificate.
- Auto
Isl float64Hello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- Auto
Isl float64Port Group - Auto inter-switch LAG port group ID (0 - 9).
- Auto
Isl float64Receive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- Auto
Mclag stringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - Custom
Tlvs []ObjectSwitchcontroller Lldpprofile Custom Tlv Args - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Med
Location []ObjectServices Switchcontroller Lldpprofile Med Location Service Args - Med-Location-Service. The structure of
med_location_service
block is documented below. - Med
Network []ObjectPolicies Switchcontroller Lldpprofile Med Network Policy Args - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - Med
Tlvs []string - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - N8021Tlvs []string
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - N8023Tlvs []string
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - Name string
- Profile name.
- Object
Switchcontroller stringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Isl String - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto
Isl StringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto
Isl StringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto
Isl StringAuth Identity - Auto inter-switch LAG authentication identity.
- auto
Isl StringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- auto
Isl DoubleAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto
Isl StringAuth User - Auto inter-switch LAG authentication user certificate.
- auto
Isl DoubleHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto
Isl DoublePort Group - Auto inter-switch LAG port group ID (0 - 9).
- auto
Isl DoubleReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto
Mclag StringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom
Tlvs List<ObjectSwitchcontroller Lldpprofile Custom Tlv> - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic
Sort StringSubtable - 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.
- med
Location List<ObjectServices Switchcontroller Lldpprofile Med Location Service> - Med-Location-Service. The structure of
med_location_service
block is documented below. - med
Network List<ObjectPolicies Switchcontroller Lldpprofile Med Network Policy> - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med
Tlvs List<String> - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021Tlvs List<String>
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023Tlvs List<String>
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name String
- Profile name.
- object
Switchcontroller StringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Isl string - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto
Isl stringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto
Isl stringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto
Isl stringAuth Identity - Auto inter-switch LAG authentication identity.
- auto
Isl stringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- auto
Isl numberAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto
Isl stringAuth User - Auto inter-switch LAG authentication user certificate.
- auto
Isl numberHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto
Isl numberPort Group - Auto inter-switch LAG port group ID (0 - 9).
- auto
Isl numberReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto
Mclag stringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom
Tlvs ObjectSwitchcontroller Lldpprofile Custom Tlv[] - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic
Sort stringSubtable - 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.
- med
Location ObjectServices Switchcontroller Lldpprofile Med Location Service[] - Med-Location-Service. The structure of
med_location_service
block is documented below. - med
Network ObjectPolicies Switchcontroller Lldpprofile Med Network Policy[] - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med
Tlvs string[] - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021Tlvs string[]
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023Tlvs string[]
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name string
- Profile name.
- object
Switchcontroller stringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
isl str - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto_
isl_ strauth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto_
isl_ strauth_ encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto_
isl_ strauth_ identity - Auto inter-switch LAG authentication identity.
- auto_
isl_ strauth_ macsec_ profile - Auto inter-switch LAG macsec profile for encryption.
- auto_
isl_ floatauth_ reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto_
isl_ strauth_ user - Auto inter-switch LAG authentication user certificate.
- auto_
isl_ floathello_ timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto_
isl_ floatport_ group - Auto inter-switch LAG port group ID (0 - 9).
- auto_
isl_ floatreceive_ timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto_
mclag_ stricl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom_
tlvs Sequence[ObjectSwitchcontroller Lldpprofile Custom Tlv Args] - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic_
sort_ strsubtable - 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.
- med_
location_ Sequence[Objectservices Switchcontroller Lldpprofile Med Location Service Args] - Med-Location-Service. The structure of
med_location_service
block is documented below. - med_
network_ Sequence[Objectpolicies Switchcontroller Lldpprofile Med Network Policy Args] - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med_
tlvs Sequence[str] - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021_
tlvs Sequence[str] - Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023_
tlvs Sequence[str] - Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name str
- Profile name.
- object_
switchcontroller_ strlldpprofile_ id - an identifier for the resource with format {{name}}.
- 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
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Isl String - Enable/disable auto inter-switch LAG. Valid values:
disable
,enable
. - auto
Isl StringAuth - Auto inter-switch LAG authentication mode. Valid values:
legacy
,strict
,relax
. - auto
Isl StringAuth Encrypt - Auto inter-switch LAG encryption mode. Valid values:
none
,mixed
,must
. - auto
Isl StringAuth Identity - Auto inter-switch LAG authentication identity.
- auto
Isl StringAuth Macsec Profile - Auto inter-switch LAG macsec profile for encryption.
- auto
Isl NumberAuth Reauth - Auto inter-switch LAG authentication reauth period in seconds(10 - 3600, default = 3600).
- auto
Isl StringAuth User - Auto inter-switch LAG authentication user certificate.
- auto
Isl NumberHello Timer - Auto inter-switch LAG hello timer duration (1 - 30 sec, default = 3).
- auto
Isl NumberPort Group - Auto inter-switch LAG port group ID (0 - 9).
- auto
Isl NumberReceive Timeout - Auto inter-switch LAG timeout if no response is received (3 - 90 sec, default = 9).
- auto
Mclag StringIcl - Enable/disable MCLAG inter chassis link. Valid values:
disable
,enable
. - custom
Tlvs List<Property Map> - Custom-Tlvs. The structure of
custom_tlvs
block is documented below. - dynamic
Sort StringSubtable - 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.
- med
Location List<Property Map>Services - Med-Location-Service. The structure of
med_location_service
block is documented below. - med
Network List<Property Map>Policies - Med-Network-Policy. The structure of
med_network_policy
block is documented below. - med
Tlvs List<String> - Transmitted LLDP-MED TLVs (type-length-value descriptions). Valid values:
inventory-management
,network-policy
,power-management
,location-identification
. - n8021Tlvs List<String>
- Transmitted IEEE 802.1 TLVs. Valid values:
port-vlan-id
. - n8023Tlvs List<String>
- Transmitted IEEE 802.3 TLVs. Valid values:
max-frame-size
,power-negotiation
. - name String
- Profile name.
- object
Switchcontroller StringLldpprofile Id - an identifier for the resource with format {{name}}.
- 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
.
Supporting Types
ObjectSwitchcontrollerLldpprofileCustomTlv, ObjectSwitchcontrollerLldpprofileCustomTlvArgs
- Information
String string - Organizationally defined information string (0 - 507 hexadecimal bytes).
- Name string
- TLV name (not sent).
- Oui string
- Organizationally unique identifier (OUI), a 3-byte hexadecimal number, for this TLV.
- Subtype double
- Organizationally defined subtype (0 - 255).
- Information
String string - Organizationally defined information string (0 - 507 hexadecimal bytes).
- Name string
- TLV name (not sent).
- Oui string
- Organizationally unique identifier (OUI), a 3-byte hexadecimal number, for this TLV.
- Subtype float64
- Organizationally defined subtype (0 - 255).
- information
String String - Organizationally defined information string (0 - 507 hexadecimal bytes).
- name String
- TLV name (not sent).
- oui String
- Organizationally unique identifier (OUI), a 3-byte hexadecimal number, for this TLV.
- subtype Double
- Organizationally defined subtype (0 - 255).
- information
String string - Organizationally defined information string (0 - 507 hexadecimal bytes).
- name string
- TLV name (not sent).
- oui string
- Organizationally unique identifier (OUI), a 3-byte hexadecimal number, for this TLV.
- subtype number
- Organizationally defined subtype (0 - 255).
- information_
string str - Organizationally defined information string (0 - 507 hexadecimal bytes).
- name str
- TLV name (not sent).
- oui str
- Organizationally unique identifier (OUI), a 3-byte hexadecimal number, for this TLV.
- subtype float
- Organizationally defined subtype (0 - 255).
- information
String String - Organizationally defined information string (0 - 507 hexadecimal bytes).
- name String
- TLV name (not sent).
- oui String
- Organizationally unique identifier (OUI), a 3-byte hexadecimal number, for this TLV.
- subtype Number
- Organizationally defined subtype (0 - 255).
ObjectSwitchcontrollerLldpprofileMedLocationService, ObjectSwitchcontrollerLldpprofileMedLocationServiceArgs
- Name string
- Location service type name.
- Status string
- Enable or disable this TLV. Valid values:
disable
,enable
. - Sys
Location stringId - Location service ID.
- Name string
- Location service type name.
- Status string
- Enable or disable this TLV. Valid values:
disable
,enable
. - Sys
Location stringId - Location service ID.
- name String
- Location service type name.
- status String
- Enable or disable this TLV. Valid values:
disable
,enable
. - sys
Location StringId - Location service ID.
- name string
- Location service type name.
- status string
- Enable or disable this TLV. Valid values:
disable
,enable
. - sys
Location stringId - Location service ID.
- name str
- Location service type name.
- status str
- Enable or disable this TLV. Valid values:
disable
,enable
. - sys_
location_ strid - Location service ID.
- name String
- Location service type name.
- status String
- Enable or disable this TLV. Valid values:
disable
,enable
. - sys
Location StringId - Location service ID.
ObjectSwitchcontrollerLldpprofileMedNetworkPolicy, ObjectSwitchcontrollerLldpprofileMedNetworkPolicyArgs
- Assign
Vlan string - Enable/disable VLAN assignment when this profile is applied on managed FortiSwitch port. Valid values:
disable
,enable
. - Dscp double
- Advertised Differentiated Services Code Point (DSCP) value, a packet header value indicating the level of service requested for traffic, such as high priority or best effort delivery.
- Name string
- Policy type name.
- Priority double
- Advertised Layer 2 priority (0 - 7; from lowest to highest priority).
- Status string
- Enable or disable this TLV. Valid values:
disable
,enable
. - Vlan double
- ID of VLAN to advertise, if configured on port (0 - 4094, 0 = priority tag).
- Vlan
Intf string - VLAN interface to advertise; if configured on port.
- Assign
Vlan string - Enable/disable VLAN assignment when this profile is applied on managed FortiSwitch port. Valid values:
disable
,enable
. - Dscp float64
- Advertised Differentiated Services Code Point (DSCP) value, a packet header value indicating the level of service requested for traffic, such as high priority or best effort delivery.
- Name string
- Policy type name.
- Priority float64
- Advertised Layer 2 priority (0 - 7; from lowest to highest priority).
- Status string
- Enable or disable this TLV. Valid values:
disable
,enable
. - Vlan float64
- ID of VLAN to advertise, if configured on port (0 - 4094, 0 = priority tag).
- Vlan
Intf string - VLAN interface to advertise; if configured on port.
- assign
Vlan String - Enable/disable VLAN assignment when this profile is applied on managed FortiSwitch port. Valid values:
disable
,enable
. - dscp Double
- Advertised Differentiated Services Code Point (DSCP) value, a packet header value indicating the level of service requested for traffic, such as high priority or best effort delivery.
- name String
- Policy type name.
- priority Double
- Advertised Layer 2 priority (0 - 7; from lowest to highest priority).
- status String
- Enable or disable this TLV. Valid values:
disable
,enable
. - vlan Double
- ID of VLAN to advertise, if configured on port (0 - 4094, 0 = priority tag).
- vlan
Intf String - VLAN interface to advertise; if configured on port.
- assign
Vlan string - Enable/disable VLAN assignment when this profile is applied on managed FortiSwitch port. Valid values:
disable
,enable
. - dscp number
- Advertised Differentiated Services Code Point (DSCP) value, a packet header value indicating the level of service requested for traffic, such as high priority or best effort delivery.
- name string
- Policy type name.
- priority number
- Advertised Layer 2 priority (0 - 7; from lowest to highest priority).
- status string
- Enable or disable this TLV. Valid values:
disable
,enable
. - vlan number
- ID of VLAN to advertise, if configured on port (0 - 4094, 0 = priority tag).
- vlan
Intf string - VLAN interface to advertise; if configured on port.
- assign_
vlan str - Enable/disable VLAN assignment when this profile is applied on managed FortiSwitch port. Valid values:
disable
,enable
. - dscp float
- Advertised Differentiated Services Code Point (DSCP) value, a packet header value indicating the level of service requested for traffic, such as high priority or best effort delivery.
- name str
- Policy type name.
- priority float
- Advertised Layer 2 priority (0 - 7; from lowest to highest priority).
- status str
- Enable or disable this TLV. Valid values:
disable
,enable
. - vlan float
- ID of VLAN to advertise, if configured on port (0 - 4094, 0 = priority tag).
- vlan_
intf str - VLAN interface to advertise; if configured on port.
- assign
Vlan String - Enable/disable VLAN assignment when this profile is applied on managed FortiSwitch port. Valid values:
disable
,enable
. - dscp Number
- Advertised Differentiated Services Code Point (DSCP) value, a packet header value indicating the level of service requested for traffic, such as high priority or best effort delivery.
- name String
- Policy type name.
- priority Number
- Advertised Layer 2 priority (0 - 7; from lowest to highest priority).
- status String
- Enable or disable this TLV. Valid values:
disable
,enable
. - vlan Number
- ID of VLAN to advertise, if configured on port (0 - 4094, 0 = priority tag).
- vlan
Intf String - VLAN interface to advertise; if configured on port.
Import
ObjectSwitchController LldpProfile can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSwitchcontrollerLldpprofile:ObjectSwitchcontrollerLldpprofile labelname {{name}}
$ 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.