fortimanager.ObjectSwitchcontrollerManagedswitch
Explore with Pulumi AI
Configure FortiSwitch devices that are managed by this FortiGate.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
custom_command
:fortimanager.ObjectSwitchcontrollerManagedswitchCustomcommand
dhcp_snooping_static_client
:fortimanager.ObjectSwitchcontrollerManagedswitchDhcpsnoopingstaticclient
ports
:fortimanager.ObjectSwitchcontrollerManagedswitchPorts
route_offload_router
:fortimanager.ObjectSwitchcontrollerManagedswitchRouteoffloadrouter
vlan
:fortimanager.ObjectSwitchcontrollerManagedswitchVlan
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectSwitchcontrollerManagedswitch("trname", {
_platform: "FS1D48T418000533",
description: "This is a Terraform example",
dhcpServerAccessList: "enable",
switchId: "3",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectSwitchcontrollerManagedswitch("trname",
_platform="FS1D48T418000533",
description="This is a Terraform example",
dhcp_server_access_list="enable",
switch_id="3")
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.NewObjectSwitchcontrollerManagedswitch(ctx, "trname", &fortimanager.ObjectSwitchcontrollerManagedswitchArgs{
_platform: pulumi.String("FS1D48T418000533"),
Description: pulumi.String("This is a Terraform example"),
DhcpServerAccessList: pulumi.String("enable"),
SwitchId: pulumi.String("3"),
})
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.ObjectSwitchcontrollerManagedswitch("trname", new()
{
_platform = "FS1D48T418000533",
Description = "This is a Terraform example",
DhcpServerAccessList = "enable",
SwitchId = "3",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectSwitchcontrollerManagedswitch;
import com.pulumi.fortimanager.ObjectSwitchcontrollerManagedswitchArgs;
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 ObjectSwitchcontrollerManagedswitch("trname", ObjectSwitchcontrollerManagedswitchArgs.builder()
._platform("FS1D48T418000533")
.description("This is a Terraform example")
.dhcpServerAccessList("enable")
.switchId(3)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectSwitchcontrollerManagedswitch
properties:
_platform: FS1D48T418000533
description: This is a Terraform example
dhcpServerAccessList: enable
switchId: 3
Create ObjectSwitchcontrollerManagedswitch Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSwitchcontrollerManagedswitch(name: string, args?: ObjectSwitchcontrollerManagedswitchArgs, opts?: CustomResourceOptions);
@overload
def ObjectSwitchcontrollerManagedswitch(resource_name: str,
args: Optional[ObjectSwitchcontrollerManagedswitchArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSwitchcontrollerManagedswitch(resource_name: str,
opts: Optional[ResourceOptions] = None,
_platform: Optional[str] = None,
adom: Optional[str] = None,
custom_commands: Optional[Sequence[ObjectSwitchcontrollerManagedswitchCustomCommandArgs]] = None,
description: Optional[str] = None,
dhcp_server_access_list: Optional[str] = None,
dhcp_snooping_static_clients: Optional[Sequence[ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
firmware_provision: Optional[str] = None,
firmware_provision_latest: Optional[str] = None,
firmware_provision_version: Optional[str] = None,
l3_discovered: Optional[float] = None,
mclag_igmp_snooping_aware: Optional[str] = None,
mgmt_mode: Optional[float] = None,
name: Optional[str] = None,
object_switchcontroller_managedswitch_id: Optional[str] = None,
override_snmp_community: Optional[str] = None,
override_snmp_sysinfo: Optional[str] = None,
override_snmp_trap_threshold: Optional[str] = None,
override_snmp_user: Optional[str] = None,
poe_detection_type: Optional[float] = None,
ports: Optional[Sequence[ObjectSwitchcontrollerManagedswitchPortArgs]] = None,
ptp_profile: Optional[str] = None,
ptp_status: Optional[str] = None,
purdue_level: Optional[str] = None,
qos_drop_policy: Optional[str] = None,
qos_red_probability: Optional[float] = None,
radius_nas_ip: Optional[str] = None,
radius_nas_ip_override: Optional[str] = None,
route_offload: Optional[str] = None,
route_offload_mclag: Optional[str] = None,
route_offload_routers: Optional[Sequence[ObjectSwitchcontrollerManagedswitchRouteOffloadRouterArgs]] = None,
scopetype: Optional[str] = None,
switch_dhcp_opt43_key: Optional[str] = None,
switch_id: Optional[str] = None,
tdr_supported: Optional[str] = None,
tunnel_discovered: Optional[float] = None,
vlans: Optional[Sequence[ObjectSwitchcontrollerManagedswitchVlanArgs]] = None)
func NewObjectSwitchcontrollerManagedswitch(ctx *Context, name string, args *ObjectSwitchcontrollerManagedswitchArgs, opts ...ResourceOption) (*ObjectSwitchcontrollerManagedswitch, error)
public ObjectSwitchcontrollerManagedswitch(string name, ObjectSwitchcontrollerManagedswitchArgs? args = null, CustomResourceOptions? opts = null)
public ObjectSwitchcontrollerManagedswitch(String name, ObjectSwitchcontrollerManagedswitchArgs args)
public ObjectSwitchcontrollerManagedswitch(String name, ObjectSwitchcontrollerManagedswitchArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSwitchcontrollerManagedswitch
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 ObjectSwitchcontrollerManagedswitchArgs
- 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 ObjectSwitchcontrollerManagedswitchArgs
- 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 ObjectSwitchcontrollerManagedswitchArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSwitchcontrollerManagedswitchArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSwitchcontrollerManagedswitchArgs
- 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 objectSwitchcontrollerManagedswitchResource = new Fortimanager.ObjectSwitchcontrollerManagedswitch("objectSwitchcontrollerManagedswitchResource", new()
{
_platform = "string",
Adom = "string",
CustomCommands = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchCustomCommandArgs
{
CommandEntry = "string",
CommandName = "string",
},
},
Description = "string",
DhcpServerAccessList = "string",
DhcpSnoopingStaticClients = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientArgs
{
Ip = "string",
Mac = "string",
Name = "string",
Port = "string",
Vlan = "string",
},
},
DynamicSortSubtable = "string",
FirmwareProvision = "string",
FirmwareProvisionLatest = "string",
FirmwareProvisionVersion = "string",
L3Discovered = 0,
MclagIgmpSnoopingAware = "string",
MgmtMode = 0,
Name = "string",
ObjectSwitchcontrollerManagedswitchId = "string",
OverrideSnmpCommunity = "string",
OverrideSnmpSysinfo = "string",
OverrideSnmpTrapThreshold = "string",
OverrideSnmpUser = "string",
PoeDetectionType = 0,
Ports = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchPortArgs
{
AccessMode = "string",
AclGroups = new[]
{
"string",
},
AggregatorMode = "string",
AllowedVlans = "string",
AllowedVlansAll = "string",
ArpInspectionTrust = "string",
AuthenticatedPort = 0,
Bundle = "string",
Description = "string",
DhcpSnoopOption82Overrides = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchPortDhcpSnoopOption82OverrideArgs
{
CircuitId = "string",
RemoteId = "string",
VlanName = "string",
},
},
DhcpSnoopOption82Trust = "string",
DhcpSnooping = "string",
DiscardMode = "string",
DslProfile = "string",
EdgePort = "string",
EncryptedPort = 0,
FecCapable = 0,
FecState = "string",
FlapDuration = 0,
FlapRate = 0,
FlapTimeout = 0,
Flapguard = "string",
FlowControl = "string",
FortiswitchAcls = new[]
{
0,
},
IgmpSnooping = "string",
IgmpSnoopingFloodReports = "string",
IgmpsFloodReports = "string",
IgmpsFloodTraffic = "string",
InterfaceTags = "string",
IpSourceGuard = "string",
IslPeerDeviceSn = "string",
LacpSpeed = "string",
LearningLimit = 0,
LinkStatus = "string",
LldpProfile = "string",
LldpStatus = "string",
LoopGuard = "string",
LoopGuardTimeout = 0,
MatchedDppIntfTags = "string",
MatchedDppPolicy = "string",
MaxBundle = 0,
McastSnoopingFloodTraffic = "string",
Mclag = "string",
MclagIclPort = 0,
MediaType = "string",
MemberWithdrawalBehavior = "string",
Members = new[]
{
"string",
},
MinBundle = 0,
Mode = "string",
P2pPort = 0,
PacketSampleRate = 0,
PacketSampler = "string",
PauseMeter = 0,
PauseMeterResume = "string",
PoeMaxPower = "string",
PoeModeBtCabable = 0,
PoePortMode = "string",
PoePortPower = "string",
PoePortPriority = "string",
PoePreStandardDetection = "string",
PoeStandard = "string",
PoeStatus = "string",
PortName = "string",
PortOwner = "string",
PortPolicy = "string",
PortSecurityPolicy = "string",
PortSelectionCriteria = "string",
PtpStatus = "string",
QosPolicy = "string",
RestrictedAuthPort = 0,
RpvstPort = "string",
SampleDirection = "string",
SflowCounterInterval = 0,
SflowSampleRate = 0,
SflowSampler = "string",
Status = "string",
StickyMac = "string",
StpBpduGuard = "string",
StpBpduGuardTimeout = 0,
StpRootGuard = "string",
StpState = "string",
TrunkMember = 0,
Type = "string",
UntaggedVlans = "string",
Vlan = "string",
},
},
PtpProfile = "string",
PtpStatus = "string",
PurdueLevel = "string",
QosDropPolicy = "string",
QosRedProbability = 0,
RadiusNasIp = "string",
RadiusNasIpOverride = "string",
RouteOffload = "string",
RouteOffloadMclag = "string",
RouteOffloadRouters = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchRouteOffloadRouterArgs
{
RouterIp = "string",
VlanName = "string",
},
},
Scopetype = "string",
SwitchDhcpOpt43Key = "string",
SwitchId = "string",
TdrSupported = "string",
TunnelDiscovered = 0,
Vlans = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchVlanArgs
{
AssignmentPriority = 0,
VlanName = "string",
},
},
});
example, err := fortimanager.NewObjectSwitchcontrollerManagedswitch(ctx, "objectSwitchcontrollerManagedswitchResource", &fortimanager.ObjectSwitchcontrollerManagedswitchArgs{
_platform: pulumi.String("string"),
Adom: pulumi.String("string"),
CustomCommands: .ObjectSwitchcontrollerManagedswitchCustomCommandTypeArray{
&.ObjectSwitchcontrollerManagedswitchCustomCommandTypeArgs{
CommandEntry: pulumi.String("string"),
CommandName: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
DhcpServerAccessList: pulumi.String("string"),
DhcpSnoopingStaticClients: .ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientTypeArray{
&.ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientTypeArgs{
Ip: pulumi.String("string"),
Mac: pulumi.String("string"),
Name: pulumi.String("string"),
Port: pulumi.String("string"),
Vlan: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
FirmwareProvision: pulumi.String("string"),
FirmwareProvisionLatest: pulumi.String("string"),
FirmwareProvisionVersion: pulumi.String("string"),
L3Discovered: pulumi.Float64(0),
MclagIgmpSnoopingAware: pulumi.String("string"),
MgmtMode: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectSwitchcontrollerManagedswitchId: pulumi.String("string"),
OverrideSnmpCommunity: pulumi.String("string"),
OverrideSnmpSysinfo: pulumi.String("string"),
OverrideSnmpTrapThreshold: pulumi.String("string"),
OverrideSnmpUser: pulumi.String("string"),
PoeDetectionType: pulumi.Float64(0),
Ports: .ObjectSwitchcontrollerManagedswitchPortArray{
&.ObjectSwitchcontrollerManagedswitchPortArgs{
AccessMode: pulumi.String("string"),
AclGroups: pulumi.StringArray{
pulumi.String("string"),
},
AggregatorMode: pulumi.String("string"),
AllowedVlans: pulumi.String("string"),
AllowedVlansAll: pulumi.String("string"),
ArpInspectionTrust: pulumi.String("string"),
AuthenticatedPort: pulumi.Float64(0),
Bundle: pulumi.String("string"),
Description: pulumi.String("string"),
DhcpSnoopOption82Overrides: .ObjectSwitchcontrollerManagedswitchPortDhcpSnoopOption82OverrideArray{
&.ObjectSwitchcontrollerManagedswitchPortDhcpSnoopOption82OverrideArgs{
CircuitId: pulumi.String("string"),
RemoteId: pulumi.String("string"),
VlanName: pulumi.String("string"),
},
},
DhcpSnoopOption82Trust: pulumi.String("string"),
DhcpSnooping: pulumi.String("string"),
DiscardMode: pulumi.String("string"),
DslProfile: pulumi.String("string"),
EdgePort: pulumi.String("string"),
EncryptedPort: pulumi.Float64(0),
FecCapable: pulumi.Float64(0),
FecState: pulumi.String("string"),
FlapDuration: pulumi.Float64(0),
FlapRate: pulumi.Float64(0),
FlapTimeout: pulumi.Float64(0),
Flapguard: pulumi.String("string"),
FlowControl: pulumi.String("string"),
FortiswitchAcls: pulumi.Float64Array{
pulumi.Float64(0),
},
IgmpSnooping: pulumi.String("string"),
IgmpSnoopingFloodReports: pulumi.String("string"),
IgmpsFloodReports: pulumi.String("string"),
IgmpsFloodTraffic: pulumi.String("string"),
InterfaceTags: pulumi.String("string"),
IpSourceGuard: pulumi.String("string"),
IslPeerDeviceSn: pulumi.String("string"),
LacpSpeed: pulumi.String("string"),
LearningLimit: pulumi.Float64(0),
LinkStatus: pulumi.String("string"),
LldpProfile: pulumi.String("string"),
LldpStatus: pulumi.String("string"),
LoopGuard: pulumi.String("string"),
LoopGuardTimeout: pulumi.Float64(0),
MatchedDppIntfTags: pulumi.String("string"),
MatchedDppPolicy: pulumi.String("string"),
MaxBundle: pulumi.Float64(0),
McastSnoopingFloodTraffic: pulumi.String("string"),
Mclag: pulumi.String("string"),
MclagIclPort: pulumi.Float64(0),
MediaType: pulumi.String("string"),
MemberWithdrawalBehavior: pulumi.String("string"),
Members: pulumi.StringArray{
pulumi.String("string"),
},
MinBundle: pulumi.Float64(0),
Mode: pulumi.String("string"),
P2pPort: pulumi.Float64(0),
PacketSampleRate: pulumi.Float64(0),
PacketSampler: pulumi.String("string"),
PauseMeter: pulumi.Float64(0),
PauseMeterResume: pulumi.String("string"),
PoeMaxPower: pulumi.String("string"),
PoeModeBtCabable: pulumi.Float64(0),
PoePortMode: pulumi.String("string"),
PoePortPower: pulumi.String("string"),
PoePortPriority: pulumi.String("string"),
PoePreStandardDetection: pulumi.String("string"),
PoeStandard: pulumi.String("string"),
PoeStatus: pulumi.String("string"),
PortName: pulumi.String("string"),
PortOwner: pulumi.String("string"),
PortPolicy: pulumi.String("string"),
PortSecurityPolicy: pulumi.String("string"),
PortSelectionCriteria: pulumi.String("string"),
PtpStatus: pulumi.String("string"),
QosPolicy: pulumi.String("string"),
RestrictedAuthPort: pulumi.Float64(0),
RpvstPort: pulumi.String("string"),
SampleDirection: pulumi.String("string"),
SflowCounterInterval: pulumi.Float64(0),
SflowSampleRate: pulumi.Float64(0),
SflowSampler: pulumi.String("string"),
Status: pulumi.String("string"),
StickyMac: pulumi.String("string"),
StpBpduGuard: pulumi.String("string"),
StpBpduGuardTimeout: pulumi.Float64(0),
StpRootGuard: pulumi.String("string"),
StpState: pulumi.String("string"),
TrunkMember: pulumi.Float64(0),
Type: pulumi.String("string"),
UntaggedVlans: pulumi.String("string"),
Vlan: pulumi.String("string"),
},
},
PtpProfile: pulumi.String("string"),
PtpStatus: pulumi.String("string"),
PurdueLevel: pulumi.String("string"),
QosDropPolicy: pulumi.String("string"),
QosRedProbability: pulumi.Float64(0),
RadiusNasIp: pulumi.String("string"),
RadiusNasIpOverride: pulumi.String("string"),
RouteOffload: pulumi.String("string"),
RouteOffloadMclag: pulumi.String("string"),
RouteOffloadRouters: .ObjectSwitchcontrollerManagedswitchRouteOffloadRouterTypeArray{
&.ObjectSwitchcontrollerManagedswitchRouteOffloadRouterTypeArgs{
RouterIp: pulumi.String("string"),
VlanName: pulumi.String("string"),
},
},
Scopetype: pulumi.String("string"),
SwitchDhcpOpt43Key: pulumi.String("string"),
SwitchId: pulumi.String("string"),
TdrSupported: pulumi.String("string"),
TunnelDiscovered: pulumi.Float64(0),
Vlans: .ObjectSwitchcontrollerManagedswitchVlanTypeArray{
&.ObjectSwitchcontrollerManagedswitchVlanTypeArgs{
AssignmentPriority: pulumi.Float64(0),
VlanName: pulumi.String("string"),
},
},
})
var objectSwitchcontrollerManagedswitchResource = new ObjectSwitchcontrollerManagedswitch("objectSwitchcontrollerManagedswitchResource", ObjectSwitchcontrollerManagedswitchArgs.builder()
._platform("string")
.adom("string")
.customCommands(ObjectSwitchcontrollerManagedswitchCustomCommandArgs.builder()
.commandEntry("string")
.commandName("string")
.build())
.description("string")
.dhcpServerAccessList("string")
.dhcpSnoopingStaticClients(ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientArgs.builder()
.ip("string")
.mac("string")
.name("string")
.port("string")
.vlan("string")
.build())
.dynamicSortSubtable("string")
.firmwareProvision("string")
.firmwareProvisionLatest("string")
.firmwareProvisionVersion("string")
.l3Discovered(0)
.mclagIgmpSnoopingAware("string")
.mgmtMode(0)
.name("string")
.objectSwitchcontrollerManagedswitchId("string")
.overrideSnmpCommunity("string")
.overrideSnmpSysinfo("string")
.overrideSnmpTrapThreshold("string")
.overrideSnmpUser("string")
.poeDetectionType(0)
.ports(ObjectSwitchcontrollerManagedswitchPortArgs.builder()
.accessMode("string")
.aclGroups("string")
.aggregatorMode("string")
.allowedVlans("string")
.allowedVlansAll("string")
.arpInspectionTrust("string")
.authenticatedPort(0)
.bundle("string")
.description("string")
.dhcpSnoopOption82Overrides(ObjectSwitchcontrollerManagedswitchPortDhcpSnoopOption82OverrideArgs.builder()
.circuitId("string")
.remoteId("string")
.vlanName("string")
.build())
.dhcpSnoopOption82Trust("string")
.dhcpSnooping("string")
.discardMode("string")
.dslProfile("string")
.edgePort("string")
.encryptedPort(0)
.fecCapable(0)
.fecState("string")
.flapDuration(0)
.flapRate(0)
.flapTimeout(0)
.flapguard("string")
.flowControl("string")
.fortiswitchAcls(0)
.igmpSnooping("string")
.igmpSnoopingFloodReports("string")
.igmpsFloodReports("string")
.igmpsFloodTraffic("string")
.interfaceTags("string")
.ipSourceGuard("string")
.islPeerDeviceSn("string")
.lacpSpeed("string")
.learningLimit(0)
.linkStatus("string")
.lldpProfile("string")
.lldpStatus("string")
.loopGuard("string")
.loopGuardTimeout(0)
.matchedDppIntfTags("string")
.matchedDppPolicy("string")
.maxBundle(0)
.mcastSnoopingFloodTraffic("string")
.mclag("string")
.mclagIclPort(0)
.mediaType("string")
.memberWithdrawalBehavior("string")
.members("string")
.minBundle(0)
.mode("string")
.p2pPort(0)
.packetSampleRate(0)
.packetSampler("string")
.pauseMeter(0)
.pauseMeterResume("string")
.poeMaxPower("string")
.poeModeBtCabable(0)
.poePortMode("string")
.poePortPower("string")
.poePortPriority("string")
.poePreStandardDetection("string")
.poeStandard("string")
.poeStatus("string")
.portName("string")
.portOwner("string")
.portPolicy("string")
.portSecurityPolicy("string")
.portSelectionCriteria("string")
.ptpStatus("string")
.qosPolicy("string")
.restrictedAuthPort(0)
.rpvstPort("string")
.sampleDirection("string")
.sflowCounterInterval(0)
.sflowSampleRate(0)
.sflowSampler("string")
.status("string")
.stickyMac("string")
.stpBpduGuard("string")
.stpBpduGuardTimeout(0)
.stpRootGuard("string")
.stpState("string")
.trunkMember(0)
.type("string")
.untaggedVlans("string")
.vlan("string")
.build())
.ptpProfile("string")
.ptpStatus("string")
.purdueLevel("string")
.qosDropPolicy("string")
.qosRedProbability(0)
.radiusNasIp("string")
.radiusNasIpOverride("string")
.routeOffload("string")
.routeOffloadMclag("string")
.routeOffloadRouters(ObjectSwitchcontrollerManagedswitchRouteOffloadRouterArgs.builder()
.routerIp("string")
.vlanName("string")
.build())
.scopetype("string")
.switchDhcpOpt43Key("string")
.switchId("string")
.tdrSupported("string")
.tunnelDiscovered(0)
.vlans(ObjectSwitchcontrollerManagedswitchVlanArgs.builder()
.assignmentPriority(0)
.vlanName("string")
.build())
.build());
object_switchcontroller_managedswitch_resource = fortimanager.ObjectSwitchcontrollerManagedswitch("objectSwitchcontrollerManagedswitchResource",
_platform="string",
adom="string",
custom_commands=[{
"command_entry": "string",
"command_name": "string",
}],
description="string",
dhcp_server_access_list="string",
dhcp_snooping_static_clients=[{
"ip": "string",
"mac": "string",
"name": "string",
"port": "string",
"vlan": "string",
}],
dynamic_sort_subtable="string",
firmware_provision="string",
firmware_provision_latest="string",
firmware_provision_version="string",
l3_discovered=0,
mclag_igmp_snooping_aware="string",
mgmt_mode=0,
name="string",
object_switchcontroller_managedswitch_id="string",
override_snmp_community="string",
override_snmp_sysinfo="string",
override_snmp_trap_threshold="string",
override_snmp_user="string",
poe_detection_type=0,
ports=[{
"access_mode": "string",
"acl_groups": ["string"],
"aggregator_mode": "string",
"allowed_vlans": "string",
"allowed_vlans_all": "string",
"arp_inspection_trust": "string",
"authenticated_port": 0,
"bundle": "string",
"description": "string",
"dhcp_snoop_option82_overrides": [{
"circuit_id": "string",
"remote_id": "string",
"vlan_name": "string",
}],
"dhcp_snoop_option82_trust": "string",
"dhcp_snooping": "string",
"discard_mode": "string",
"dsl_profile": "string",
"edge_port": "string",
"encrypted_port": 0,
"fec_capable": 0,
"fec_state": "string",
"flap_duration": 0,
"flap_rate": 0,
"flap_timeout": 0,
"flapguard": "string",
"flow_control": "string",
"fortiswitch_acls": [0],
"igmp_snooping": "string",
"igmp_snooping_flood_reports": "string",
"igmps_flood_reports": "string",
"igmps_flood_traffic": "string",
"interface_tags": "string",
"ip_source_guard": "string",
"isl_peer_device_sn": "string",
"lacp_speed": "string",
"learning_limit": 0,
"link_status": "string",
"lldp_profile": "string",
"lldp_status": "string",
"loop_guard": "string",
"loop_guard_timeout": 0,
"matched_dpp_intf_tags": "string",
"matched_dpp_policy": "string",
"max_bundle": 0,
"mcast_snooping_flood_traffic": "string",
"mclag": "string",
"mclag_icl_port": 0,
"media_type": "string",
"member_withdrawal_behavior": "string",
"members": ["string"],
"min_bundle": 0,
"mode": "string",
"p2p_port": 0,
"packet_sample_rate": 0,
"packet_sampler": "string",
"pause_meter": 0,
"pause_meter_resume": "string",
"poe_max_power": "string",
"poe_mode_bt_cabable": 0,
"poe_port_mode": "string",
"poe_port_power": "string",
"poe_port_priority": "string",
"poe_pre_standard_detection": "string",
"poe_standard": "string",
"poe_status": "string",
"port_name": "string",
"port_owner": "string",
"port_policy": "string",
"port_security_policy": "string",
"port_selection_criteria": "string",
"ptp_status": "string",
"qos_policy": "string",
"restricted_auth_port": 0,
"rpvst_port": "string",
"sample_direction": "string",
"sflow_counter_interval": 0,
"sflow_sample_rate": 0,
"sflow_sampler": "string",
"status": "string",
"sticky_mac": "string",
"stp_bpdu_guard": "string",
"stp_bpdu_guard_timeout": 0,
"stp_root_guard": "string",
"stp_state": "string",
"trunk_member": 0,
"type": "string",
"untagged_vlans": "string",
"vlan": "string",
}],
ptp_profile="string",
ptp_status="string",
purdue_level="string",
qos_drop_policy="string",
qos_red_probability=0,
radius_nas_ip="string",
radius_nas_ip_override="string",
route_offload="string",
route_offload_mclag="string",
route_offload_routers=[{
"router_ip": "string",
"vlan_name": "string",
}],
scopetype="string",
switch_dhcp_opt43_key="string",
switch_id="string",
tdr_supported="string",
tunnel_discovered=0,
vlans=[{
"assignment_priority": 0,
"vlan_name": "string",
}])
const objectSwitchcontrollerManagedswitchResource = new fortimanager.ObjectSwitchcontrollerManagedswitch("objectSwitchcontrollerManagedswitchResource", {
_platform: "string",
adom: "string",
customCommands: [{
commandEntry: "string",
commandName: "string",
}],
description: "string",
dhcpServerAccessList: "string",
dhcpSnoopingStaticClients: [{
ip: "string",
mac: "string",
name: "string",
port: "string",
vlan: "string",
}],
dynamicSortSubtable: "string",
firmwareProvision: "string",
firmwareProvisionLatest: "string",
firmwareProvisionVersion: "string",
l3Discovered: 0,
mclagIgmpSnoopingAware: "string",
mgmtMode: 0,
name: "string",
objectSwitchcontrollerManagedswitchId: "string",
overrideSnmpCommunity: "string",
overrideSnmpSysinfo: "string",
overrideSnmpTrapThreshold: "string",
overrideSnmpUser: "string",
poeDetectionType: 0,
ports: [{
accessMode: "string",
aclGroups: ["string"],
aggregatorMode: "string",
allowedVlans: "string",
allowedVlansAll: "string",
arpInspectionTrust: "string",
authenticatedPort: 0,
bundle: "string",
description: "string",
dhcpSnoopOption82Overrides: [{
circuitId: "string",
remoteId: "string",
vlanName: "string",
}],
dhcpSnoopOption82Trust: "string",
dhcpSnooping: "string",
discardMode: "string",
dslProfile: "string",
edgePort: "string",
encryptedPort: 0,
fecCapable: 0,
fecState: "string",
flapDuration: 0,
flapRate: 0,
flapTimeout: 0,
flapguard: "string",
flowControl: "string",
fortiswitchAcls: [0],
igmpSnooping: "string",
igmpSnoopingFloodReports: "string",
igmpsFloodReports: "string",
igmpsFloodTraffic: "string",
interfaceTags: "string",
ipSourceGuard: "string",
islPeerDeviceSn: "string",
lacpSpeed: "string",
learningLimit: 0,
linkStatus: "string",
lldpProfile: "string",
lldpStatus: "string",
loopGuard: "string",
loopGuardTimeout: 0,
matchedDppIntfTags: "string",
matchedDppPolicy: "string",
maxBundle: 0,
mcastSnoopingFloodTraffic: "string",
mclag: "string",
mclagIclPort: 0,
mediaType: "string",
memberWithdrawalBehavior: "string",
members: ["string"],
minBundle: 0,
mode: "string",
p2pPort: 0,
packetSampleRate: 0,
packetSampler: "string",
pauseMeter: 0,
pauseMeterResume: "string",
poeMaxPower: "string",
poeModeBtCabable: 0,
poePortMode: "string",
poePortPower: "string",
poePortPriority: "string",
poePreStandardDetection: "string",
poeStandard: "string",
poeStatus: "string",
portName: "string",
portOwner: "string",
portPolicy: "string",
portSecurityPolicy: "string",
portSelectionCriteria: "string",
ptpStatus: "string",
qosPolicy: "string",
restrictedAuthPort: 0,
rpvstPort: "string",
sampleDirection: "string",
sflowCounterInterval: 0,
sflowSampleRate: 0,
sflowSampler: "string",
status: "string",
stickyMac: "string",
stpBpduGuard: "string",
stpBpduGuardTimeout: 0,
stpRootGuard: "string",
stpState: "string",
trunkMember: 0,
type: "string",
untaggedVlans: "string",
vlan: "string",
}],
ptpProfile: "string",
ptpStatus: "string",
purdueLevel: "string",
qosDropPolicy: "string",
qosRedProbability: 0,
radiusNasIp: "string",
radiusNasIpOverride: "string",
routeOffload: "string",
routeOffloadMclag: "string",
routeOffloadRouters: [{
routerIp: "string",
vlanName: "string",
}],
scopetype: "string",
switchDhcpOpt43Key: "string",
switchId: "string",
tdrSupported: "string",
tunnelDiscovered: 0,
vlans: [{
assignmentPriority: 0,
vlanName: "string",
}],
});
type: fortimanager:ObjectSwitchcontrollerManagedswitch
properties:
_platform: string
adom: string
customCommands:
- commandEntry: string
commandName: string
description: string
dhcpServerAccessList: string
dhcpSnoopingStaticClients:
- ip: string
mac: string
name: string
port: string
vlan: string
dynamicSortSubtable: string
firmwareProvision: string
firmwareProvisionLatest: string
firmwareProvisionVersion: string
l3Discovered: 0
mclagIgmpSnoopingAware: string
mgmtMode: 0
name: string
objectSwitchcontrollerManagedswitchId: string
overrideSnmpCommunity: string
overrideSnmpSysinfo: string
overrideSnmpTrapThreshold: string
overrideSnmpUser: string
poeDetectionType: 0
ports:
- accessMode: string
aclGroups:
- string
aggregatorMode: string
allowedVlans: string
allowedVlansAll: string
arpInspectionTrust: string
authenticatedPort: 0
bundle: string
description: string
dhcpSnoopOption82Overrides:
- circuitId: string
remoteId: string
vlanName: string
dhcpSnoopOption82Trust: string
dhcpSnooping: string
discardMode: string
dslProfile: string
edgePort: string
encryptedPort: 0
fecCapable: 0
fecState: string
flapDuration: 0
flapRate: 0
flapTimeout: 0
flapguard: string
flowControl: string
fortiswitchAcls:
- 0
igmpSnooping: string
igmpSnoopingFloodReports: string
igmpsFloodReports: string
igmpsFloodTraffic: string
interfaceTags: string
ipSourceGuard: string
islPeerDeviceSn: string
lacpSpeed: string
learningLimit: 0
linkStatus: string
lldpProfile: string
lldpStatus: string
loopGuard: string
loopGuardTimeout: 0
matchedDppIntfTags: string
matchedDppPolicy: string
maxBundle: 0
mcastSnoopingFloodTraffic: string
mclag: string
mclagIclPort: 0
mediaType: string
memberWithdrawalBehavior: string
members:
- string
minBundle: 0
mode: string
p2pPort: 0
packetSampleRate: 0
packetSampler: string
pauseMeter: 0
pauseMeterResume: string
poeMaxPower: string
poeModeBtCabable: 0
poePortMode: string
poePortPower: string
poePortPriority: string
poePreStandardDetection: string
poeStandard: string
poeStatus: string
portName: string
portOwner: string
portPolicy: string
portSecurityPolicy: string
portSelectionCriteria: string
ptpStatus: string
qosPolicy: string
restrictedAuthPort: 0
rpvstPort: string
sampleDirection: string
sflowCounterInterval: 0
sflowSampleRate: 0
sflowSampler: string
status: string
stickyMac: string
stpBpduGuard: string
stpBpduGuardTimeout: 0
stpRootGuard: string
stpState: string
trunkMember: 0
type: string
untaggedVlans: string
vlan: string
ptpProfile: string
ptpStatus: string
purdueLevel: string
qosDropPolicy: string
qosRedProbability: 0
radiusNasIp: string
radiusNasIpOverride: string
routeOffload: string
routeOffloadMclag: string
routeOffloadRouters:
- routerIp: string
vlanName: string
scopetype: string
switchDhcpOpt43Key: string
switchId: string
tdrSupported: string
tunnelDiscovered: 0
vlans:
- assignmentPriority: 0
vlanName: string
ObjectSwitchcontrollerManagedswitch 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 ObjectSwitchcontrollerManagedswitch 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. - Custom
Commands List<ObjectSwitchcontroller Managedswitch Custom Command> - Custom-Command. The structure of
custom_command
block is documented below. - Description string
- Description.
- Dhcp
Server stringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - Dhcp
Snooping List<ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client> - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- Firmware
Provision string - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - Firmware
Provision stringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - Firmware
Provision stringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- L3Discovered double
- L3-Discovered.
- Mclag
Igmp stringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - Mgmt
Mode double - FortiLink management mode.
- Name string
- Managed-switch name.
- Object
Switchcontroller stringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- Override
Snmp stringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - Override
Snmp stringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - Override
Snmp stringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - Override
Snmp stringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - Poe
Detection doubleType - Poe-Detection-Type.
- Ports
List<Object
Switchcontroller Managedswitch Port> - Ports. The structure of
ports
block is documented below. - Ptp
Profile string - PTP profile configuration.
- Ptp
Status string - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - Purdue
Level string - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - Qos
Drop stringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - Qos
Red doubleProbability - Set QoS RED/WRED drop probability.
- Radius
Nas stringIp - NAS-IP address.
- Radius
Nas stringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - Route
Offload string - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload stringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload List<ObjectRouters Switchcontroller Managedswitch Route Offload Router> - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - Switch
Dhcp stringOpt43Key - DHCP option43 key.
- Switch
Id string - Managed-switch id.
- Tdr
Supported string - Tdr-Supported.
- Tunnel
Discovered double - Tunnel-Discovered.
- Vlans
List<Object
Switchcontroller Managedswitch Vlan> - Vlan. The structure of
vlan
block is documented below. - _
platform string - _Platform.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Custom
Commands []ObjectSwitchcontroller Managedswitch Custom Command Type Args - Custom-Command. The structure of
custom_command
block is documented below. - Description string
- Description.
- Dhcp
Server stringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - Dhcp
Snooping []ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client Type Args - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- Firmware
Provision string - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - Firmware
Provision stringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - Firmware
Provision stringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- L3Discovered float64
- L3-Discovered.
- Mclag
Igmp stringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - Mgmt
Mode float64 - FortiLink management mode.
- Name string
- Managed-switch name.
- Object
Switchcontroller stringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- Override
Snmp stringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - Override
Snmp stringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - Override
Snmp stringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - Override
Snmp stringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - Poe
Detection float64Type - Poe-Detection-Type.
- Ports
[]Object
Switchcontroller Managedswitch Port Args - Ports. The structure of
ports
block is documented below. - Ptp
Profile string - PTP profile configuration.
- Ptp
Status string - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - Purdue
Level string - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - Qos
Drop stringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - Qos
Red float64Probability - Set QoS RED/WRED drop probability.
- Radius
Nas stringIp - NAS-IP address.
- Radius
Nas stringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - Route
Offload string - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload stringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload []ObjectRouters Switchcontroller Managedswitch Route Offload Router Type Args - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - Switch
Dhcp stringOpt43Key - DHCP option43 key.
- Switch
Id string - Managed-switch id.
- Tdr
Supported string - Tdr-Supported.
- Tunnel
Discovered float64 - Tunnel-Discovered.
- Vlans
[]Object
Switchcontroller Managedswitch Vlan Type Args - Vlan. The structure of
vlan
block is documented below. - _
platform string - _Platform.
- _
platform String - _Platform.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom
Commands List<ObjectSwitchcontroller Managedswitch Custom Command> - Custom-Command. The structure of
custom_command
block is documented below. - description String
- Description.
- dhcp
Server StringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp
Snooping List<ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client> - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware
Provision String - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware
Provision StringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware
Provision StringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3Discovered Double
- L3-Discovered.
- mclag
Igmp StringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt
Mode Double - FortiLink management mode.
- name String
- Managed-switch name.
- object
Switchcontroller StringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- override
Snmp StringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override
Snmp StringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override
Snmp StringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override
Snmp StringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe
Detection DoubleType - Poe-Detection-Type.
- ports
List<Object
Switchcontroller Managedswitch Port> - Ports. The structure of
ports
block is documented below. - ptp
Profile String - PTP profile configuration.
- ptp
Status String - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue
Level String - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos
Drop StringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos
Red DoubleProbability - Set QoS RED/WRED drop probability.
- radius
Nas StringIp - NAS-IP address.
- radius
Nas StringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route
Offload String - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload StringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload List<ObjectRouters Switchcontroller Managedswitch Route Offload Router> - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch
Dhcp StringOpt43Key - DHCP option43 key.
- switch
Id String - Managed-switch id.
- tdr
Supported String - Tdr-Supported.
- tunnel
Discovered Double - Tunnel-Discovered.
- vlans
List<Object
Switchcontroller Managedswitch Vlan> - Vlan. The structure of
vlan
block is documented below.
- _
platform string - _Platform.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom
Commands ObjectSwitchcontroller Managedswitch Custom Command[] - Custom-Command. The structure of
custom_command
block is documented below. - description string
- Description.
- dhcp
Server stringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp
Snooping ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client[] - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware
Provision string - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware
Provision stringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware
Provision stringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3Discovered number
- L3-Discovered.
- mclag
Igmp stringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt
Mode number - FortiLink management mode.
- name string
- Managed-switch name.
- object
Switchcontroller stringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- override
Snmp stringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override
Snmp stringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override
Snmp stringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override
Snmp stringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe
Detection numberType - Poe-Detection-Type.
- ports
Object
Switchcontroller Managedswitch Port[] - Ports. The structure of
ports
block is documented below. - ptp
Profile string - PTP profile configuration.
- ptp
Status string - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue
Level string - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos
Drop stringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos
Red numberProbability - Set QoS RED/WRED drop probability.
- radius
Nas stringIp - NAS-IP address.
- radius
Nas stringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route
Offload string - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload stringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload ObjectRouters Switchcontroller Managedswitch Route Offload Router[] - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch
Dhcp stringOpt43Key - DHCP option43 key.
- switch
Id string - Managed-switch id.
- tdr
Supported string - Tdr-Supported.
- tunnel
Discovered number - Tunnel-Discovered.
- vlans
Object
Switchcontroller Managedswitch Vlan[] - Vlan. The structure of
vlan
block is documented below.
- _
platform str - _Platform.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom_
commands Sequence[ObjectSwitchcontroller Managedswitch Custom Command Args] - Custom-Command. The structure of
custom_command
block is documented below. - description str
- Description.
- dhcp_
server_ straccess_ list - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp_
snooping_ Sequence[Objectstatic_ clients Switchcontroller Managedswitch Dhcp Snooping Static Client Args] - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware_
provision str - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware_
provision_ strlatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware_
provision_ strversion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3_
discovered float - L3-Discovered.
- mclag_
igmp_ strsnooping_ aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt_
mode float - FortiLink management mode.
- name str
- Managed-switch name.
- object_
switchcontroller_ strmanagedswitch_ id - an identifier for the resource with format {{switch_id}}.
- override_
snmp_ strcommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override_
snmp_ strsysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override_
snmp_ strtrap_ threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override_
snmp_ struser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe_
detection_ floattype - Poe-Detection-Type.
- ports
Sequence[Object
Switchcontroller Managedswitch Port Args] - Ports. The structure of
ports
block is documented below. - ptp_
profile str - PTP profile configuration.
- ptp_
status str - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue_
level str - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos_
drop_ strpolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos_
red_ floatprobability - Set QoS RED/WRED drop probability.
- radius_
nas_ strip - NAS-IP address.
- radius_
nas_ strip_ override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route_
offload str - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route_
offload_ strmclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route_
offload_ Sequence[Objectrouters Switchcontroller Managedswitch Route Offload Router Args] - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch_
dhcp_ stropt43_ key - DHCP option43 key.
- switch_
id str - Managed-switch id.
- tdr_
supported str - Tdr-Supported.
- tunnel_
discovered float - Tunnel-Discovered.
- vlans
Sequence[Object
Switchcontroller Managedswitch Vlan Args] - Vlan. The structure of
vlan
block is documented below.
- _
platform String - _Platform.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom
Commands List<Property Map> - Custom-Command. The structure of
custom_command
block is documented below. - description String
- Description.
- dhcp
Server StringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp
Snooping List<Property Map>Static Clients - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware
Provision String - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware
Provision StringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware
Provision StringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3Discovered Number
- L3-Discovered.
- mclag
Igmp StringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt
Mode Number - FortiLink management mode.
- name String
- Managed-switch name.
- object
Switchcontroller StringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- override
Snmp StringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override
Snmp StringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override
Snmp StringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override
Snmp StringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe
Detection NumberType - Poe-Detection-Type.
- ports List<Property Map>
- Ports. The structure of
ports
block is documented below. - ptp
Profile String - PTP profile configuration.
- ptp
Status String - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue
Level String - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos
Drop StringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos
Red NumberProbability - Set QoS RED/WRED drop probability.
- radius
Nas StringIp - NAS-IP address.
- radius
Nas StringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route
Offload String - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload StringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload List<Property Map>Routers - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch
Dhcp StringOpt43Key - DHCP option43 key.
- switch
Id String - Managed-switch id.
- tdr
Supported String - Tdr-Supported.
- tunnel
Discovered Number - Tunnel-Discovered.
- vlans List<Property Map>
- Vlan. The structure of
vlan
block is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSwitchcontrollerManagedswitch 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 ObjectSwitchcontrollerManagedswitch Resource
Get an existing ObjectSwitchcontrollerManagedswitch 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?: ObjectSwitchcontrollerManagedswitchState, opts?: CustomResourceOptions): ObjectSwitchcontrollerManagedswitch
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
_platform: Optional[str] = None,
adom: Optional[str] = None,
custom_commands: Optional[Sequence[ObjectSwitchcontrollerManagedswitchCustomCommandArgs]] = None,
description: Optional[str] = None,
dhcp_server_access_list: Optional[str] = None,
dhcp_snooping_static_clients: Optional[Sequence[ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
firmware_provision: Optional[str] = None,
firmware_provision_latest: Optional[str] = None,
firmware_provision_version: Optional[str] = None,
l3_discovered: Optional[float] = None,
mclag_igmp_snooping_aware: Optional[str] = None,
mgmt_mode: Optional[float] = None,
name: Optional[str] = None,
object_switchcontroller_managedswitch_id: Optional[str] = None,
override_snmp_community: Optional[str] = None,
override_snmp_sysinfo: Optional[str] = None,
override_snmp_trap_threshold: Optional[str] = None,
override_snmp_user: Optional[str] = None,
poe_detection_type: Optional[float] = None,
ports: Optional[Sequence[ObjectSwitchcontrollerManagedswitchPortArgs]] = None,
ptp_profile: Optional[str] = None,
ptp_status: Optional[str] = None,
purdue_level: Optional[str] = None,
qos_drop_policy: Optional[str] = None,
qos_red_probability: Optional[float] = None,
radius_nas_ip: Optional[str] = None,
radius_nas_ip_override: Optional[str] = None,
route_offload: Optional[str] = None,
route_offload_mclag: Optional[str] = None,
route_offload_routers: Optional[Sequence[ObjectSwitchcontrollerManagedswitchRouteOffloadRouterArgs]] = None,
scopetype: Optional[str] = None,
switch_dhcp_opt43_key: Optional[str] = None,
switch_id: Optional[str] = None,
tdr_supported: Optional[str] = None,
tunnel_discovered: Optional[float] = None,
vlans: Optional[Sequence[ObjectSwitchcontrollerManagedswitchVlanArgs]] = None) -> ObjectSwitchcontrollerManagedswitch
func GetObjectSwitchcontrollerManagedswitch(ctx *Context, name string, id IDInput, state *ObjectSwitchcontrollerManagedswitchState, opts ...ResourceOption) (*ObjectSwitchcontrollerManagedswitch, error)
public static ObjectSwitchcontrollerManagedswitch Get(string name, Input<string> id, ObjectSwitchcontrollerManagedswitchState? state, CustomResourceOptions? opts = null)
public static ObjectSwitchcontrollerManagedswitch get(String name, Output<String> id, ObjectSwitchcontrollerManagedswitchState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSwitchcontrollerManagedswitch 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. - Custom
Commands List<ObjectSwitchcontroller Managedswitch Custom Command> - Custom-Command. The structure of
custom_command
block is documented below. - Description string
- Description.
- Dhcp
Server stringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - Dhcp
Snooping List<ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client> - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- Firmware
Provision string - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - Firmware
Provision stringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - Firmware
Provision stringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- L3Discovered double
- L3-Discovered.
- Mclag
Igmp stringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - Mgmt
Mode double - FortiLink management mode.
- Name string
- Managed-switch name.
- Object
Switchcontroller stringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- Override
Snmp stringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - Override
Snmp stringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - Override
Snmp stringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - Override
Snmp stringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - Poe
Detection doubleType - Poe-Detection-Type.
- Ports
List<Object
Switchcontroller Managedswitch Port> - Ports. The structure of
ports
block is documented below. - Ptp
Profile string - PTP profile configuration.
- Ptp
Status string - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - Purdue
Level string - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - Qos
Drop stringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - Qos
Red doubleProbability - Set QoS RED/WRED drop probability.
- Radius
Nas stringIp - NAS-IP address.
- Radius
Nas stringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - Route
Offload string - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload stringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload List<ObjectRouters Switchcontroller Managedswitch Route Offload Router> - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - Switch
Dhcp stringOpt43Key - DHCP option43 key.
- Switch
Id string - Managed-switch id.
- Tdr
Supported string - Tdr-Supported.
- Tunnel
Discovered double - Tunnel-Discovered.
- Vlans
List<Object
Switchcontroller Managedswitch Vlan> - Vlan. The structure of
vlan
block is documented below. - _
platform string - _Platform.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Custom
Commands []ObjectSwitchcontroller Managedswitch Custom Command Type Args - Custom-Command. The structure of
custom_command
block is documented below. - Description string
- Description.
- Dhcp
Server stringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - Dhcp
Snooping []ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client Type Args - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- Firmware
Provision string - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - Firmware
Provision stringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - Firmware
Provision stringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- L3Discovered float64
- L3-Discovered.
- Mclag
Igmp stringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - Mgmt
Mode float64 - FortiLink management mode.
- Name string
- Managed-switch name.
- Object
Switchcontroller stringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- Override
Snmp stringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - Override
Snmp stringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - Override
Snmp stringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - Override
Snmp stringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - Poe
Detection float64Type - Poe-Detection-Type.
- Ports
[]Object
Switchcontroller Managedswitch Port Args - Ports. The structure of
ports
block is documented below. - Ptp
Profile string - PTP profile configuration.
- Ptp
Status string - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - Purdue
Level string - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - Qos
Drop stringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - Qos
Red float64Probability - Set QoS RED/WRED drop probability.
- Radius
Nas stringIp - NAS-IP address.
- Radius
Nas stringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - Route
Offload string - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload stringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - Route
Offload []ObjectRouters Switchcontroller Managedswitch Route Offload Router Type Args - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - Switch
Dhcp stringOpt43Key - DHCP option43 key.
- Switch
Id string - Managed-switch id.
- Tdr
Supported string - Tdr-Supported.
- Tunnel
Discovered float64 - Tunnel-Discovered.
- Vlans
[]Object
Switchcontroller Managedswitch Vlan Type Args - Vlan. The structure of
vlan
block is documented below. - _
platform string - _Platform.
- _
platform String - _Platform.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom
Commands List<ObjectSwitchcontroller Managedswitch Custom Command> - Custom-Command. The structure of
custom_command
block is documented below. - description String
- Description.
- dhcp
Server StringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp
Snooping List<ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client> - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware
Provision String - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware
Provision StringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware
Provision StringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3Discovered Double
- L3-Discovered.
- mclag
Igmp StringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt
Mode Double - FortiLink management mode.
- name String
- Managed-switch name.
- object
Switchcontroller StringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- override
Snmp StringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override
Snmp StringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override
Snmp StringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override
Snmp StringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe
Detection DoubleType - Poe-Detection-Type.
- ports
List<Object
Switchcontroller Managedswitch Port> - Ports. The structure of
ports
block is documented below. - ptp
Profile String - PTP profile configuration.
- ptp
Status String - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue
Level String - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos
Drop StringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos
Red DoubleProbability - Set QoS RED/WRED drop probability.
- radius
Nas StringIp - NAS-IP address.
- radius
Nas StringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route
Offload String - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload StringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload List<ObjectRouters Switchcontroller Managedswitch Route Offload Router> - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch
Dhcp StringOpt43Key - DHCP option43 key.
- switch
Id String - Managed-switch id.
- tdr
Supported String - Tdr-Supported.
- tunnel
Discovered Double - Tunnel-Discovered.
- vlans
List<Object
Switchcontroller Managedswitch Vlan> - Vlan. The structure of
vlan
block is documented below.
- _
platform string - _Platform.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom
Commands ObjectSwitchcontroller Managedswitch Custom Command[] - Custom-Command. The structure of
custom_command
block is documented below. - description string
- Description.
- dhcp
Server stringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp
Snooping ObjectStatic Clients Switchcontroller Managedswitch Dhcp Snooping Static Client[] - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware
Provision string - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware
Provision stringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware
Provision stringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3Discovered number
- L3-Discovered.
- mclag
Igmp stringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt
Mode number - FortiLink management mode.
- name string
- Managed-switch name.
- object
Switchcontroller stringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- override
Snmp stringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override
Snmp stringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override
Snmp stringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override
Snmp stringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe
Detection numberType - Poe-Detection-Type.
- ports
Object
Switchcontroller Managedswitch Port[] - Ports. The structure of
ports
block is documented below. - ptp
Profile string - PTP profile configuration.
- ptp
Status string - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue
Level string - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos
Drop stringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos
Red numberProbability - Set QoS RED/WRED drop probability.
- radius
Nas stringIp - NAS-IP address.
- radius
Nas stringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route
Offload string - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload stringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload ObjectRouters Switchcontroller Managedswitch Route Offload Router[] - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch
Dhcp stringOpt43Key - DHCP option43 key.
- switch
Id string - Managed-switch id.
- tdr
Supported string - Tdr-Supported.
- tunnel
Discovered number - Tunnel-Discovered.
- vlans
Object
Switchcontroller Managedswitch Vlan[] - Vlan. The structure of
vlan
block is documented below.
- _
platform str - _Platform.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom_
commands Sequence[ObjectSwitchcontroller Managedswitch Custom Command Args] - Custom-Command. The structure of
custom_command
block is documented below. - description str
- Description.
- dhcp_
server_ straccess_ list - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp_
snooping_ Sequence[Objectstatic_ clients Switchcontroller Managedswitch Dhcp Snooping Static Client Args] - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware_
provision str - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware_
provision_ strlatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware_
provision_ strversion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3_
discovered float - L3-Discovered.
- mclag_
igmp_ strsnooping_ aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt_
mode float - FortiLink management mode.
- name str
- Managed-switch name.
- object_
switchcontroller_ strmanagedswitch_ id - an identifier for the resource with format {{switch_id}}.
- override_
snmp_ strcommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override_
snmp_ strsysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override_
snmp_ strtrap_ threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override_
snmp_ struser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe_
detection_ floattype - Poe-Detection-Type.
- ports
Sequence[Object
Switchcontroller Managedswitch Port Args] - Ports. The structure of
ports
block is documented below. - ptp_
profile str - PTP profile configuration.
- ptp_
status str - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue_
level str - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos_
drop_ strpolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos_
red_ floatprobability - Set QoS RED/WRED drop probability.
- radius_
nas_ strip - NAS-IP address.
- radius_
nas_ strip_ override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route_
offload str - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route_
offload_ strmclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route_
offload_ Sequence[Objectrouters Switchcontroller Managedswitch Route Offload Router Args] - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch_
dhcp_ stropt43_ key - DHCP option43 key.
- switch_
id str - Managed-switch id.
- tdr_
supported str - Tdr-Supported.
- tunnel_
discovered float - Tunnel-Discovered.
- vlans
Sequence[Object
Switchcontroller Managedswitch Vlan Args] - Vlan. The structure of
vlan
block is documented below.
- _
platform String - _Platform.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - custom
Commands List<Property Map> - Custom-Command. The structure of
custom_command
block is documented below. - description String
- Description.
- dhcp
Server StringAccess List - DHCP snooping server access list. Valid values:
disable
,enable
,global
. - dhcp
Snooping List<Property Map>Static Clients - Dhcp-Snooping-Static-Client. The structure of
dhcp_snooping_static_client
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.
- firmware
Provision String - Enable/disable provisioning of firmware to FortiSwitches on join connection. Valid values:
disable
,enable
. - firmware
Provision StringLatest - Enable/disable one-time automatic provisioning of the latest firmware version. Valid values:
disable
,once
. - firmware
Provision StringVersion - Firmware version to provision to this FortiSwitch on bootup (major.minor.build, i.e. 6.2.1234).
- l3Discovered Number
- L3-Discovered.
- mclag
Igmp StringSnooping Aware - Enable/disable MCLAG IGMP-snooping awareness. Valid values:
disable
,enable
. - mgmt
Mode Number - FortiLink management mode.
- name String
- Managed-switch name.
- object
Switchcontroller StringManagedswitch Id - an identifier for the resource with format {{switch_id}}.
- override
Snmp StringCommunity - Enable/disable overriding the global SNMP communities. Valid values:
disable
,enable
. - override
Snmp StringSysinfo - Enable/disable overriding the global SNMP system information. Valid values:
disable
,enable
. - override
Snmp StringTrap Threshold - Enable/disable overriding the global SNMP trap threshold values. Valid values:
disable
,enable
. - override
Snmp StringUser - Enable/disable overriding the global SNMP users. Valid values:
disable
,enable
. - poe
Detection NumberType - Poe-Detection-Type.
- ports List<Property Map>
- Ports. The structure of
ports
block is documented below. - ptp
Profile String - PTP profile configuration.
- ptp
Status String - Enable/disable PTP profile on this FortiSwitch. Valid values:
disable
,enable
. - purdue
Level String - Purdue Level of this FortiSwitch. Valid values:
1
,2
,3
,4
,5
,1.5
,2.5
,3.5
,5.5
. - qos
Drop StringPolicy - Set QoS drop-policy. Valid values:
taildrop
,random-early-detection
. - qos
Red NumberProbability - Set QoS RED/WRED drop probability.
- radius
Nas StringIp - NAS-IP address.
- radius
Nas StringIp Override - Use locally defined NAS-IP. Valid values:
disable
,enable
. - route
Offload String - Enable/disable route offload on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload StringMclag - Enable/disable route offload MCLAG on this FortiSwitch. Valid values:
disable
,enable
. - route
Offload List<Property Map>Routers - Route-Offload-Router. The structure of
route_offload_router
block is documented below. - 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
. - switch
Dhcp StringOpt43Key - DHCP option43 key.
- switch
Id String - Managed-switch id.
- tdr
Supported String - Tdr-Supported.
- tunnel
Discovered Number - Tunnel-Discovered.
- vlans List<Property Map>
- Vlan. The structure of
vlan
block is documented below.
Supporting Types
ObjectSwitchcontrollerManagedswitchCustomCommand, ObjectSwitchcontrollerManagedswitchCustomCommandArgs
- Command
Entry string - List of FortiSwitch commands.
- Command
Name string - Names of commands to be pushed to this FortiSwitch device, as configured under config switch-controller custom-command.
- Command
Entry string - List of FortiSwitch commands.
- Command
Name string - Names of commands to be pushed to this FortiSwitch device, as configured under config switch-controller custom-command.
- command
Entry String - List of FortiSwitch commands.
- command
Name String - Names of commands to be pushed to this FortiSwitch device, as configured under config switch-controller custom-command.
- command
Entry string - List of FortiSwitch commands.
- command
Name string - Names of commands to be pushed to this FortiSwitch device, as configured under config switch-controller custom-command.
- command_
entry str - List of FortiSwitch commands.
- command_
name str - Names of commands to be pushed to this FortiSwitch device, as configured under config switch-controller custom-command.
- command
Entry String - List of FortiSwitch commands.
- command
Name String - Names of commands to be pushed to this FortiSwitch device, as configured under config switch-controller custom-command.
ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClient, ObjectSwitchcontrollerManagedswitchDhcpSnoopingStaticClientArgs
ObjectSwitchcontrollerManagedswitchPort, ObjectSwitchcontrollerManagedswitchPortArgs
- Access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - Acl
Groups List<string> - ACL groups on this port.
- Aggregator
Mode string - LACP member select mode. Valid values:
bandwidth
,count
. - Allowed
Vlans string - Configure switch port tagged vlans
- Allowed
Vlans stringAll - Enable/disable all defined vlans on this port. Valid values:
disable
,enable
. - Arp
Inspection stringTrust - Trusted or untrusted dynamic ARP inspection. Valid values:
untrusted
,trusted
. - Authenticated
Port double - Authenticated-Port.
- Bundle string
- Enable/disable Link Aggregation Group (LAG) bundling for non-FortiLink interfaces. Valid values:
disable
,enable
. - Description string
- Description for port.
- Dhcp
Snoop List<ObjectOption82Overrides Switchcontroller Managedswitch Port Dhcp Snoop Option82Override> - Dhcp-Snoop-Option82-Override. The structure of
dhcp_snoop_option82_override
block is documented below. - Dhcp
Snoop stringOption82Trust - Enable/disable allowance of DHCP with option-82 on untrusted interface. Valid values:
disable
,enable
. - Dhcp
Snooping string - Trusted or untrusted DHCP-snooping interface. Valid values:
trusted
,untrusted
. - Discard
Mode string - Configure discard mode for port. Valid values:
none
,all-untagged
,all-tagged
. - Dsl
Profile string - DSL policy configuration.
- Edge
Port string - Enable/disable this interface as an edge port, bridging connections between workstations and/or computers. Valid values:
disable
,enable
. - Encrypted
Port double - Encrypted-Port.
- Fec
Capable double - FEC capable.
- Fec
State string - State of forward error correction. Valid values:
disabled
,cl74
,cl91
. - Flap
Duration double - Period over which flap events are calculated (seconds).
- Flap
Rate double - Number of stage change events needed within flap-duration.
- Flap
Timeout double - Flap guard disabling protection (min).
- Flapguard string
- Enable/disable flap guard. Valid values:
disable
,enable
. - Flow
Control string - Flow control direction. Valid values:
disable
,tx
,rx
,both
. - Fortiswitch
Acls List<double> - ACLs on this port.
- Igmp
Snooping string - Set IGMP snooping mode for the physical port interface. Valid values:
disable
,enable
. - Igmp
Snooping stringFlood Reports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - Igmps
Flood stringReports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - Igmps
Flood stringTraffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - string
- Tag(s) associated with the interface for various features including virtual port pool, dynamic port policy.
- Ip
Source stringGuard - Enable/disable IP source guard. Valid values:
disable
,enable
. - Isl
Peer stringDevice Sn - Isl-Peer-Device-Sn.
- Lacp
Speed string - end Link Aggregation Control Protocol (LACP) messages every 30 seconds (slow) or every second (fast). Valid values:
slow
,fast
. - Learning
Limit double - Limit the number of dynamic MAC addresses on this Port (1 - 128, 0 = no limit, default).
- Link
Status string - Link-Status. Valid values:
down
,up
. - Lldp
Profile string - LLDP port TLV profile.
- Lldp
Status string - LLDP transmit and receive status. Valid values:
disable
,rx-only
,tx-only
,tx-rx
. - Loop
Guard string - Enable/disable loop-guard on this interface, an STP optimization used to prevent network loops. Valid values:
disabled
,enabled
. - Loop
Guard doubleTimeout - Loop-guard timeout (0 - 120 min, default = 45).
- string
- Matched interface tags in the dynamic port policy.
- Matched
Dpp stringPolicy - Matched child policy in the dynamic port policy.
- Max
Bundle double - Maximum size of LAG bundle (1 - 24, default = 24)
- Mcast
Snooping stringFlood Traffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - Mclag string
- Enable/disable multi-chassis link aggregation (MCLAG). Valid values:
disable
,enable
. - Mclag
Icl doublePort - Mclag-Icl-Port.
- Media
Type string - Media-Type.
- Member
Withdrawal stringBehavior - Port behavior after it withdraws because of loss of control packets. Valid values:
forward
,block
. - Members List<string>
- Aggregated LAG bundle interfaces.
- Min
Bundle double - Minimum size of LAG bundle (1 - 24, default = 1)
- Mode string
- LACP mode: ignore and do not send control messages, or negotiate 802.3ad aggregation passively or actively. Valid values:
static
,lacp-passive
,lacp-active
. - P2p
Port double - P2P-Port.
- Packet
Sample doubleRate - Packet sampling rate (0 - 99999 p/sec).
- Packet
Sampler string - Enable/disable packet sampling on this interface. Valid values:
disabled
,enabled
. - Pause
Meter double - Configure ingress pause metering rate, in kbps (default = 0, disabled).
- Pause
Meter stringResume - Resume threshold for resuming traffic on ingress port. Valid values:
25%
,50%
,75%
. - Poe
Max stringPower - Poe-Max-Power.
- Poe
Mode doubleBt Cabable - PoE mode IEEE 802.3BT capable.
- Poe
Port stringMode - Configure PoE port mode. Valid values:
ieee802-3af
,ieee802-3at
,ieee802-3bt
. - Poe
Port stringPower - Configure PoE port power. Valid values:
normal
,perpetual
,perpetual-fast
. - Poe
Port stringPriority - Configure PoE port priority. Valid values:
critical-priority
,high-priority
,low-priority
,medium-priority
. - Poe
Pre stringStandard Detection - Enable/disable PoE pre-standard detection. Valid values:
disable
,enable
. - Poe
Standard string - Poe-Standard.
- Poe
Status string - Enable/disable PoE status. Valid values:
disable
,enable
. - Port
Name string - Switch port name.
- Port
Owner string - Switch port name.
- Port
Policy string - Switch controller dynamic port policy from available options.
- Port
Security stringPolicy - Switch controller authentication policy to apply to this managed switch from available options.
- Port
Selection stringCriteria - Algorithm for aggregate port selection. Valid values:
src-mac
,dst-mac
,src-dst-mac
,src-ip
,dst-ip
,src-dst-ip
. - Ptp
Status string - Enable/disable PTP policy on this FortiSwitch port. Valid values:
disable
,enable
. - Qos
Policy string - Switch controller QoS policy from available options.
- Restricted
Auth doublePort - Restricted-Auth-Port.
- Rpvst
Port string - Enable/disable inter-operability with rapid PVST on this interface. Valid values:
disabled
,enabled
. - Sample
Direction string - Packet sampling direction. Valid values:
rx
,tx
,both
. - Sflow
Counter doubleInterval - sFlow sampling counter polling interval (0 - 255 sec).
- Sflow
Sample doubleRate - sFlow sampler sample rate (0 - 99999 p/sec).
- Sflow
Sampler string - Enable/disable sFlow protocol on this interface. Valid values:
disabled
,enabled
. - Status string
- Switch port admin status: up or down. Valid values:
down
,up
. - Sticky
Mac string - Enable or disable sticky-mac on the interface. Valid values:
disable
,enable
. - Stp
Bpdu stringGuard - Enable/disable STP BPDU guard on this interface. Valid values:
disabled
,enabled
. - Stp
Bpdu doubleGuard Timeout - BPDU Guard disabling protection (0 - 120 min).
- Stp
Root stringGuard - Enable/disable STP root guard on this interface. Valid values:
disabled
,enabled
. - Stp
State string - Enable/disable Spanning Tree Protocol (STP) on this interface. Valid values:
disabled
,enabled
. - Trunk
Member double - Trunk member.
- Type string
- Interface type: physical or trunk port. Valid values:
physical
,trunk
. - Untagged
Vlans string - Configure switch port untagged vlans
- Vlan string
Assign switch ports to a VLAN.
The
dhcp_snoop_option82_override
block supports:
- Access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - Acl
Groups []string - ACL groups on this port.
- Aggregator
Mode string - LACP member select mode. Valid values:
bandwidth
,count
. - Allowed
Vlans string - Configure switch port tagged vlans
- Allowed
Vlans stringAll - Enable/disable all defined vlans on this port. Valid values:
disable
,enable
. - Arp
Inspection stringTrust - Trusted or untrusted dynamic ARP inspection. Valid values:
untrusted
,trusted
. - Authenticated
Port float64 - Authenticated-Port.
- Bundle string
- Enable/disable Link Aggregation Group (LAG) bundling for non-FortiLink interfaces. Valid values:
disable
,enable
. - Description string
- Description for port.
- Dhcp
Snoop []ObjectOption82Overrides Switchcontroller Managedswitch Port Dhcp Snoop Option82Override - Dhcp-Snoop-Option82-Override. The structure of
dhcp_snoop_option82_override
block is documented below. - Dhcp
Snoop stringOption82Trust - Enable/disable allowance of DHCP with option-82 on untrusted interface. Valid values:
disable
,enable
. - Dhcp
Snooping string - Trusted or untrusted DHCP-snooping interface. Valid values:
trusted
,untrusted
. - Discard
Mode string - Configure discard mode for port. Valid values:
none
,all-untagged
,all-tagged
. - Dsl
Profile string - DSL policy configuration.
- Edge
Port string - Enable/disable this interface as an edge port, bridging connections between workstations and/or computers. Valid values:
disable
,enable
. - Encrypted
Port float64 - Encrypted-Port.
- Fec
Capable float64 - FEC capable.
- Fec
State string - State of forward error correction. Valid values:
disabled
,cl74
,cl91
. - Flap
Duration float64 - Period over which flap events are calculated (seconds).
- Flap
Rate float64 - Number of stage change events needed within flap-duration.
- Flap
Timeout float64 - Flap guard disabling protection (min).
- Flapguard string
- Enable/disable flap guard. Valid values:
disable
,enable
. - Flow
Control string - Flow control direction. Valid values:
disable
,tx
,rx
,both
. - Fortiswitch
Acls []float64 - ACLs on this port.
- Igmp
Snooping string - Set IGMP snooping mode for the physical port interface. Valid values:
disable
,enable
. - Igmp
Snooping stringFlood Reports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - Igmps
Flood stringReports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - Igmps
Flood stringTraffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - string
- Tag(s) associated with the interface for various features including virtual port pool, dynamic port policy.
- Ip
Source stringGuard - Enable/disable IP source guard. Valid values:
disable
,enable
. - Isl
Peer stringDevice Sn - Isl-Peer-Device-Sn.
- Lacp
Speed string - end Link Aggregation Control Protocol (LACP) messages every 30 seconds (slow) or every second (fast). Valid values:
slow
,fast
. - Learning
Limit float64 - Limit the number of dynamic MAC addresses on this Port (1 - 128, 0 = no limit, default).
- Link
Status string - Link-Status. Valid values:
down
,up
. - Lldp
Profile string - LLDP port TLV profile.
- Lldp
Status string - LLDP transmit and receive status. Valid values:
disable
,rx-only
,tx-only
,tx-rx
. - Loop
Guard string - Enable/disable loop-guard on this interface, an STP optimization used to prevent network loops. Valid values:
disabled
,enabled
. - Loop
Guard float64Timeout - Loop-guard timeout (0 - 120 min, default = 45).
- string
- Matched interface tags in the dynamic port policy.
- Matched
Dpp stringPolicy - Matched child policy in the dynamic port policy.
- Max
Bundle float64 - Maximum size of LAG bundle (1 - 24, default = 24)
- Mcast
Snooping stringFlood Traffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - Mclag string
- Enable/disable multi-chassis link aggregation (MCLAG). Valid values:
disable
,enable
. - Mclag
Icl float64Port - Mclag-Icl-Port.
- Media
Type string - Media-Type.
- Member
Withdrawal stringBehavior - Port behavior after it withdraws because of loss of control packets. Valid values:
forward
,block
. - Members []string
- Aggregated LAG bundle interfaces.
- Min
Bundle float64 - Minimum size of LAG bundle (1 - 24, default = 1)
- Mode string
- LACP mode: ignore and do not send control messages, or negotiate 802.3ad aggregation passively or actively. Valid values:
static
,lacp-passive
,lacp-active
. - P2p
Port float64 - P2P-Port.
- Packet
Sample float64Rate - Packet sampling rate (0 - 99999 p/sec).
- Packet
Sampler string - Enable/disable packet sampling on this interface. Valid values:
disabled
,enabled
. - Pause
Meter float64 - Configure ingress pause metering rate, in kbps (default = 0, disabled).
- Pause
Meter stringResume - Resume threshold for resuming traffic on ingress port. Valid values:
25%
,50%
,75%
. - Poe
Max stringPower - Poe-Max-Power.
- Poe
Mode float64Bt Cabable - PoE mode IEEE 802.3BT capable.
- Poe
Port stringMode - Configure PoE port mode. Valid values:
ieee802-3af
,ieee802-3at
,ieee802-3bt
. - Poe
Port stringPower - Configure PoE port power. Valid values:
normal
,perpetual
,perpetual-fast
. - Poe
Port stringPriority - Configure PoE port priority. Valid values:
critical-priority
,high-priority
,low-priority
,medium-priority
. - Poe
Pre stringStandard Detection - Enable/disable PoE pre-standard detection. Valid values:
disable
,enable
. - Poe
Standard string - Poe-Standard.
- Poe
Status string - Enable/disable PoE status. Valid values:
disable
,enable
. - Port
Name string - Switch port name.
- Port
Owner string - Switch port name.
- Port
Policy string - Switch controller dynamic port policy from available options.
- Port
Security stringPolicy - Switch controller authentication policy to apply to this managed switch from available options.
- Port
Selection stringCriteria - Algorithm for aggregate port selection. Valid values:
src-mac
,dst-mac
,src-dst-mac
,src-ip
,dst-ip
,src-dst-ip
. - Ptp
Status string - Enable/disable PTP policy on this FortiSwitch port. Valid values:
disable
,enable
. - Qos
Policy string - Switch controller QoS policy from available options.
- Restricted
Auth float64Port - Restricted-Auth-Port.
- Rpvst
Port string - Enable/disable inter-operability with rapid PVST on this interface. Valid values:
disabled
,enabled
. - Sample
Direction string - Packet sampling direction. Valid values:
rx
,tx
,both
. - Sflow
Counter float64Interval - sFlow sampling counter polling interval (0 - 255 sec).
- Sflow
Sample float64Rate - sFlow sampler sample rate (0 - 99999 p/sec).
- Sflow
Sampler string - Enable/disable sFlow protocol on this interface. Valid values:
disabled
,enabled
. - Status string
- Switch port admin status: up or down. Valid values:
down
,up
. - Sticky
Mac string - Enable or disable sticky-mac on the interface. Valid values:
disable
,enable
. - Stp
Bpdu stringGuard - Enable/disable STP BPDU guard on this interface. Valid values:
disabled
,enabled
. - Stp
Bpdu float64Guard Timeout - BPDU Guard disabling protection (0 - 120 min).
- Stp
Root stringGuard - Enable/disable STP root guard on this interface. Valid values:
disabled
,enabled
. - Stp
State string - Enable/disable Spanning Tree Protocol (STP) on this interface. Valid values:
disabled
,enabled
. - Trunk
Member float64 - Trunk member.
- Type string
- Interface type: physical or trunk port. Valid values:
physical
,trunk
. - Untagged
Vlans string - Configure switch port untagged vlans
- Vlan string
Assign switch ports to a VLAN.
The
dhcp_snoop_option82_override
block supports:
- access
Mode String - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups List<String> - ACL groups on this port.
- aggregator
Mode String - LACP member select mode. Valid values:
bandwidth
,count
. - allowed
Vlans String - Configure switch port tagged vlans
- allowed
Vlans StringAll - Enable/disable all defined vlans on this port. Valid values:
disable
,enable
. - arp
Inspection StringTrust - Trusted or untrusted dynamic ARP inspection. Valid values:
untrusted
,trusted
. - authenticated
Port Double - Authenticated-Port.
- bundle String
- Enable/disable Link Aggregation Group (LAG) bundling for non-FortiLink interfaces. Valid values:
disable
,enable
. - description String
- Description for port.
- dhcp
Snoop List<ObjectOption82Overrides Switchcontroller Managedswitch Port Dhcp Snoop Option82Override> - Dhcp-Snoop-Option82-Override. The structure of
dhcp_snoop_option82_override
block is documented below. - dhcp
Snoop StringOption82Trust - Enable/disable allowance of DHCP with option-82 on untrusted interface. Valid values:
disable
,enable
. - dhcp
Snooping String - Trusted or untrusted DHCP-snooping interface. Valid values:
trusted
,untrusted
. - discard
Mode String - Configure discard mode for port. Valid values:
none
,all-untagged
,all-tagged
. - dsl
Profile String - DSL policy configuration.
- edge
Port String - Enable/disable this interface as an edge port, bridging connections between workstations and/or computers. Valid values:
disable
,enable
. - encrypted
Port Double - Encrypted-Port.
- fec
Capable Double - FEC capable.
- fec
State String - State of forward error correction. Valid values:
disabled
,cl74
,cl91
. - flap
Duration Double - Period over which flap events are calculated (seconds).
- flap
Rate Double - Number of stage change events needed within flap-duration.
- flap
Timeout Double - Flap guard disabling protection (min).
- flapguard String
- Enable/disable flap guard. Valid values:
disable
,enable
. - flow
Control String - Flow control direction. Valid values:
disable
,tx
,rx
,both
. - fortiswitch
Acls List<Double> - ACLs on this port.
- igmp
Snooping String - Set IGMP snooping mode for the physical port interface. Valid values:
disable
,enable
. - igmp
Snooping StringFlood Reports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps
Flood StringReports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps
Flood StringTraffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - String
- Tag(s) associated with the interface for various features including virtual port pool, dynamic port policy.
- ip
Source StringGuard - Enable/disable IP source guard. Valid values:
disable
,enable
. - isl
Peer StringDevice Sn - Isl-Peer-Device-Sn.
- lacp
Speed String - end Link Aggregation Control Protocol (LACP) messages every 30 seconds (slow) or every second (fast). Valid values:
slow
,fast
. - learning
Limit Double - Limit the number of dynamic MAC addresses on this Port (1 - 128, 0 = no limit, default).
- link
Status String - Link-Status. Valid values:
down
,up
. - lldp
Profile String - LLDP port TLV profile.
- lldp
Status String - LLDP transmit and receive status. Valid values:
disable
,rx-only
,tx-only
,tx-rx
. - loop
Guard String - Enable/disable loop-guard on this interface, an STP optimization used to prevent network loops. Valid values:
disabled
,enabled
. - loop
Guard DoubleTimeout - Loop-guard timeout (0 - 120 min, default = 45).
- String
- Matched interface tags in the dynamic port policy.
- matched
Dpp StringPolicy - Matched child policy in the dynamic port policy.
- max
Bundle Double - Maximum size of LAG bundle (1 - 24, default = 24)
- mcast
Snooping StringFlood Traffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - mclag String
- Enable/disable multi-chassis link aggregation (MCLAG). Valid values:
disable
,enable
. - mclag
Icl DoublePort - Mclag-Icl-Port.
- media
Type String - Media-Type.
- member
Withdrawal StringBehavior - Port behavior after it withdraws because of loss of control packets. Valid values:
forward
,block
. - members List<String>
- Aggregated LAG bundle interfaces.
- min
Bundle Double - Minimum size of LAG bundle (1 - 24, default = 1)
- mode String
- LACP mode: ignore and do not send control messages, or negotiate 802.3ad aggregation passively or actively. Valid values:
static
,lacp-passive
,lacp-active
. - p2p
Port Double - P2P-Port.
- packet
Sample DoubleRate - Packet sampling rate (0 - 99999 p/sec).
- packet
Sampler String - Enable/disable packet sampling on this interface. Valid values:
disabled
,enabled
. - pause
Meter Double - Configure ingress pause metering rate, in kbps (default = 0, disabled).
- pause
Meter StringResume - Resume threshold for resuming traffic on ingress port. Valid values:
25%
,50%
,75%
. - poe
Max StringPower - Poe-Max-Power.
- poe
Mode DoubleBt Cabable - PoE mode IEEE 802.3BT capable.
- poe
Port StringMode - Configure PoE port mode. Valid values:
ieee802-3af
,ieee802-3at
,ieee802-3bt
. - poe
Port StringPower - Configure PoE port power. Valid values:
normal
,perpetual
,perpetual-fast
. - poe
Port StringPriority - Configure PoE port priority. Valid values:
critical-priority
,high-priority
,low-priority
,medium-priority
. - poe
Pre StringStandard Detection - Enable/disable PoE pre-standard detection. Valid values:
disable
,enable
. - poe
Standard String - Poe-Standard.
- poe
Status String - Enable/disable PoE status. Valid values:
disable
,enable
. - port
Name String - Switch port name.
- port
Owner String - Switch port name.
- port
Policy String - Switch controller dynamic port policy from available options.
- port
Security StringPolicy - Switch controller authentication policy to apply to this managed switch from available options.
- port
Selection StringCriteria - Algorithm for aggregate port selection. Valid values:
src-mac
,dst-mac
,src-dst-mac
,src-ip
,dst-ip
,src-dst-ip
. - ptp
Status String - Enable/disable PTP policy on this FortiSwitch port. Valid values:
disable
,enable
. - qos
Policy String - Switch controller QoS policy from available options.
- restricted
Auth DoublePort - Restricted-Auth-Port.
- rpvst
Port String - Enable/disable inter-operability with rapid PVST on this interface. Valid values:
disabled
,enabled
. - sample
Direction String - Packet sampling direction. Valid values:
rx
,tx
,both
. - sflow
Counter DoubleInterval - sFlow sampling counter polling interval (0 - 255 sec).
- sflow
Sample DoubleRate - sFlow sampler sample rate (0 - 99999 p/sec).
- sflow
Sampler String - Enable/disable sFlow protocol on this interface. Valid values:
disabled
,enabled
. - status String
- Switch port admin status: up or down. Valid values:
down
,up
. - sticky
Mac String - Enable or disable sticky-mac on the interface. Valid values:
disable
,enable
. - stp
Bpdu StringGuard - Enable/disable STP BPDU guard on this interface. Valid values:
disabled
,enabled
. - stp
Bpdu DoubleGuard Timeout - BPDU Guard disabling protection (0 - 120 min).
- stp
Root StringGuard - Enable/disable STP root guard on this interface. Valid values:
disabled
,enabled
. - stp
State String - Enable/disable Spanning Tree Protocol (STP) on this interface. Valid values:
disabled
,enabled
. - trunk
Member Double - Trunk member.
- type String
- Interface type: physical or trunk port. Valid values:
physical
,trunk
. - untagged
Vlans String - Configure switch port untagged vlans
- vlan String
Assign switch ports to a VLAN.
The
dhcp_snoop_option82_override
block supports:
- access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups string[] - ACL groups on this port.
- aggregator
Mode string - LACP member select mode. Valid values:
bandwidth
,count
. - allowed
Vlans string - Configure switch port tagged vlans
- allowed
Vlans stringAll - Enable/disable all defined vlans on this port. Valid values:
disable
,enable
. - arp
Inspection stringTrust - Trusted or untrusted dynamic ARP inspection. Valid values:
untrusted
,trusted
. - authenticated
Port number - Authenticated-Port.
- bundle string
- Enable/disable Link Aggregation Group (LAG) bundling for non-FortiLink interfaces. Valid values:
disable
,enable
. - description string
- Description for port.
- dhcp
Snoop ObjectOption82Overrides Switchcontroller Managedswitch Port Dhcp Snoop Option82Override[] - Dhcp-Snoop-Option82-Override. The structure of
dhcp_snoop_option82_override
block is documented below. - dhcp
Snoop stringOption82Trust - Enable/disable allowance of DHCP with option-82 on untrusted interface. Valid values:
disable
,enable
. - dhcp
Snooping string - Trusted or untrusted DHCP-snooping interface. Valid values:
trusted
,untrusted
. - discard
Mode string - Configure discard mode for port. Valid values:
none
,all-untagged
,all-tagged
. - dsl
Profile string - DSL policy configuration.
- edge
Port string - Enable/disable this interface as an edge port, bridging connections between workstations and/or computers. Valid values:
disable
,enable
. - encrypted
Port number - Encrypted-Port.
- fec
Capable number - FEC capable.
- fec
State string - State of forward error correction. Valid values:
disabled
,cl74
,cl91
. - flap
Duration number - Period over which flap events are calculated (seconds).
- flap
Rate number - Number of stage change events needed within flap-duration.
- flap
Timeout number - Flap guard disabling protection (min).
- flapguard string
- Enable/disable flap guard. Valid values:
disable
,enable
. - flow
Control string - Flow control direction. Valid values:
disable
,tx
,rx
,both
. - fortiswitch
Acls number[] - ACLs on this port.
- igmp
Snooping string - Set IGMP snooping mode for the physical port interface. Valid values:
disable
,enable
. - igmp
Snooping stringFlood Reports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps
Flood stringReports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps
Flood stringTraffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - string
- Tag(s) associated with the interface for various features including virtual port pool, dynamic port policy.
- ip
Source stringGuard - Enable/disable IP source guard. Valid values:
disable
,enable
. - isl
Peer stringDevice Sn - Isl-Peer-Device-Sn.
- lacp
Speed string - end Link Aggregation Control Protocol (LACP) messages every 30 seconds (slow) or every second (fast). Valid values:
slow
,fast
. - learning
Limit number - Limit the number of dynamic MAC addresses on this Port (1 - 128, 0 = no limit, default).
- link
Status string - Link-Status. Valid values:
down
,up
. - lldp
Profile string - LLDP port TLV profile.
- lldp
Status string - LLDP transmit and receive status. Valid values:
disable
,rx-only
,tx-only
,tx-rx
. - loop
Guard string - Enable/disable loop-guard on this interface, an STP optimization used to prevent network loops. Valid values:
disabled
,enabled
. - loop
Guard numberTimeout - Loop-guard timeout (0 - 120 min, default = 45).
- string
- Matched interface tags in the dynamic port policy.
- matched
Dpp stringPolicy - Matched child policy in the dynamic port policy.
- max
Bundle number - Maximum size of LAG bundle (1 - 24, default = 24)
- mcast
Snooping stringFlood Traffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - mclag string
- Enable/disable multi-chassis link aggregation (MCLAG). Valid values:
disable
,enable
. - mclag
Icl numberPort - Mclag-Icl-Port.
- media
Type string - Media-Type.
- member
Withdrawal stringBehavior - Port behavior after it withdraws because of loss of control packets. Valid values:
forward
,block
. - members string[]
- Aggregated LAG bundle interfaces.
- min
Bundle number - Minimum size of LAG bundle (1 - 24, default = 1)
- mode string
- LACP mode: ignore and do not send control messages, or negotiate 802.3ad aggregation passively or actively. Valid values:
static
,lacp-passive
,lacp-active
. - p2p
Port number - P2P-Port.
- packet
Sample numberRate - Packet sampling rate (0 - 99999 p/sec).
- packet
Sampler string - Enable/disable packet sampling on this interface. Valid values:
disabled
,enabled
. - pause
Meter number - Configure ingress pause metering rate, in kbps (default = 0, disabled).
- pause
Meter stringResume - Resume threshold for resuming traffic on ingress port. Valid values:
25%
,50%
,75%
. - poe
Max stringPower - Poe-Max-Power.
- poe
Mode numberBt Cabable - PoE mode IEEE 802.3BT capable.
- poe
Port stringMode - Configure PoE port mode. Valid values:
ieee802-3af
,ieee802-3at
,ieee802-3bt
. - poe
Port stringPower - Configure PoE port power. Valid values:
normal
,perpetual
,perpetual-fast
. - poe
Port stringPriority - Configure PoE port priority. Valid values:
critical-priority
,high-priority
,low-priority
,medium-priority
. - poe
Pre stringStandard Detection - Enable/disable PoE pre-standard detection. Valid values:
disable
,enable
. - poe
Standard string - Poe-Standard.
- poe
Status string - Enable/disable PoE status. Valid values:
disable
,enable
. - port
Name string - Switch port name.
- port
Owner string - Switch port name.
- port
Policy string - Switch controller dynamic port policy from available options.
- port
Security stringPolicy - Switch controller authentication policy to apply to this managed switch from available options.
- port
Selection stringCriteria - Algorithm for aggregate port selection. Valid values:
src-mac
,dst-mac
,src-dst-mac
,src-ip
,dst-ip
,src-dst-ip
. - ptp
Status string - Enable/disable PTP policy on this FortiSwitch port. Valid values:
disable
,enable
. - qos
Policy string - Switch controller QoS policy from available options.
- restricted
Auth numberPort - Restricted-Auth-Port.
- rpvst
Port string - Enable/disable inter-operability with rapid PVST on this interface. Valid values:
disabled
,enabled
. - sample
Direction string - Packet sampling direction. Valid values:
rx
,tx
,both
. - sflow
Counter numberInterval - sFlow sampling counter polling interval (0 - 255 sec).
- sflow
Sample numberRate - sFlow sampler sample rate (0 - 99999 p/sec).
- sflow
Sampler string - Enable/disable sFlow protocol on this interface. Valid values:
disabled
,enabled
. - status string
- Switch port admin status: up or down. Valid values:
down
,up
. - sticky
Mac string - Enable or disable sticky-mac on the interface. Valid values:
disable
,enable
. - stp
Bpdu stringGuard - Enable/disable STP BPDU guard on this interface. Valid values:
disabled
,enabled
. - stp
Bpdu numberGuard Timeout - BPDU Guard disabling protection (0 - 120 min).
- stp
Root stringGuard - Enable/disable STP root guard on this interface. Valid values:
disabled
,enabled
. - stp
State string - Enable/disable Spanning Tree Protocol (STP) on this interface. Valid values:
disabled
,enabled
. - trunk
Member number - Trunk member.
- type string
- Interface type: physical or trunk port. Valid values:
physical
,trunk
. - untagged
Vlans string - Configure switch port untagged vlans
- vlan string
Assign switch ports to a VLAN.
The
dhcp_snoop_option82_override
block supports:
- access_
mode str - Access mode of the port. Valid values:
normal
,nac
. - acl_
groups Sequence[str] - ACL groups on this port.
- aggregator_
mode str - LACP member select mode. Valid values:
bandwidth
,count
. - allowed_
vlans str - Configure switch port tagged vlans
- allowed_
vlans_ strall - Enable/disable all defined vlans on this port. Valid values:
disable
,enable
. - arp_
inspection_ strtrust - Trusted or untrusted dynamic ARP inspection. Valid values:
untrusted
,trusted
. - authenticated_
port float - Authenticated-Port.
- bundle str
- Enable/disable Link Aggregation Group (LAG) bundling for non-FortiLink interfaces. Valid values:
disable
,enable
. - description str
- Description for port.
- dhcp_
snoop_ Sequence[Objectoption82_ overrides Switchcontroller Managedswitch Port Dhcp Snoop Option82Override] - Dhcp-Snoop-Option82-Override. The structure of
dhcp_snoop_option82_override
block is documented below. - dhcp_
snoop_ stroption82_ trust - Enable/disable allowance of DHCP with option-82 on untrusted interface. Valid values:
disable
,enable
. - dhcp_
snooping str - Trusted or untrusted DHCP-snooping interface. Valid values:
trusted
,untrusted
. - discard_
mode str - Configure discard mode for port. Valid values:
none
,all-untagged
,all-tagged
. - dsl_
profile str - DSL policy configuration.
- edge_
port str - Enable/disable this interface as an edge port, bridging connections between workstations and/or computers. Valid values:
disable
,enable
. - encrypted_
port float - Encrypted-Port.
- fec_
capable float - FEC capable.
- fec_
state str - State of forward error correction. Valid values:
disabled
,cl74
,cl91
. - flap_
duration float - Period over which flap events are calculated (seconds).
- flap_
rate float - Number of stage change events needed within flap-duration.
- flap_
timeout float - Flap guard disabling protection (min).
- flapguard str
- Enable/disable flap guard. Valid values:
disable
,enable
. - flow_
control str - Flow control direction. Valid values:
disable
,tx
,rx
,both
. - fortiswitch_
acls Sequence[float] - ACLs on this port.
- igmp_
snooping str - Set IGMP snooping mode for the physical port interface. Valid values:
disable
,enable
. - igmp_
snooping_ strflood_ reports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps_
flood_ strreports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps_
flood_ strtraffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - str
- Tag(s) associated with the interface for various features including virtual port pool, dynamic port policy.
- ip_
source_ strguard - Enable/disable IP source guard. Valid values:
disable
,enable
. - isl_
peer_ strdevice_ sn - Isl-Peer-Device-Sn.
- lacp_
speed str - end Link Aggregation Control Protocol (LACP) messages every 30 seconds (slow) or every second (fast). Valid values:
slow
,fast
. - learning_
limit float - Limit the number of dynamic MAC addresses on this Port (1 - 128, 0 = no limit, default).
- link_
status str - Link-Status. Valid values:
down
,up
. - lldp_
profile str - LLDP port TLV profile.
- lldp_
status str - LLDP transmit and receive status. Valid values:
disable
,rx-only
,tx-only
,tx-rx
. - loop_
guard str - Enable/disable loop-guard on this interface, an STP optimization used to prevent network loops. Valid values:
disabled
,enabled
. - loop_
guard_ floattimeout - Loop-guard timeout (0 - 120 min, default = 45).
- str
- Matched interface tags in the dynamic port policy.
- matched_
dpp_ strpolicy - Matched child policy in the dynamic port policy.
- max_
bundle float - Maximum size of LAG bundle (1 - 24, default = 24)
- mcast_
snooping_ strflood_ traffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - mclag str
- Enable/disable multi-chassis link aggregation (MCLAG). Valid values:
disable
,enable
. - mclag_
icl_ floatport - Mclag-Icl-Port.
- media_
type str - Media-Type.
- member_
withdrawal_ strbehavior - Port behavior after it withdraws because of loss of control packets. Valid values:
forward
,block
. - members Sequence[str]
- Aggregated LAG bundle interfaces.
- min_
bundle float - Minimum size of LAG bundle (1 - 24, default = 1)
- mode str
- LACP mode: ignore and do not send control messages, or negotiate 802.3ad aggregation passively or actively. Valid values:
static
,lacp-passive
,lacp-active
. - p2p_
port float - P2P-Port.
- packet_
sample_ floatrate - Packet sampling rate (0 - 99999 p/sec).
- packet_
sampler str - Enable/disable packet sampling on this interface. Valid values:
disabled
,enabled
. - pause_
meter float - Configure ingress pause metering rate, in kbps (default = 0, disabled).
- pause_
meter_ strresume - Resume threshold for resuming traffic on ingress port. Valid values:
25%
,50%
,75%
. - poe_
max_ strpower - Poe-Max-Power.
- poe_
mode_ floatbt_ cabable - PoE mode IEEE 802.3BT capable.
- poe_
port_ strmode - Configure PoE port mode. Valid values:
ieee802-3af
,ieee802-3at
,ieee802-3bt
. - poe_
port_ strpower - Configure PoE port power. Valid values:
normal
,perpetual
,perpetual-fast
. - poe_
port_ strpriority - Configure PoE port priority. Valid values:
critical-priority
,high-priority
,low-priority
,medium-priority
. - poe_
pre_ strstandard_ detection - Enable/disable PoE pre-standard detection. Valid values:
disable
,enable
. - poe_
standard str - Poe-Standard.
- poe_
status str - Enable/disable PoE status. Valid values:
disable
,enable
. - port_
name str - Switch port name.
- port_
owner str - Switch port name.
- port_
policy str - Switch controller dynamic port policy from available options.
- port_
security_ strpolicy - Switch controller authentication policy to apply to this managed switch from available options.
- port_
selection_ strcriteria - Algorithm for aggregate port selection. Valid values:
src-mac
,dst-mac
,src-dst-mac
,src-ip
,dst-ip
,src-dst-ip
. - ptp_
status str - Enable/disable PTP policy on this FortiSwitch port. Valid values:
disable
,enable
. - qos_
policy str - Switch controller QoS policy from available options.
- restricted_
auth_ floatport - Restricted-Auth-Port.
- rpvst_
port str - Enable/disable inter-operability with rapid PVST on this interface. Valid values:
disabled
,enabled
. - sample_
direction str - Packet sampling direction. Valid values:
rx
,tx
,both
. - sflow_
counter_ floatinterval - sFlow sampling counter polling interval (0 - 255 sec).
- sflow_
sample_ floatrate - sFlow sampler sample rate (0 - 99999 p/sec).
- sflow_
sampler str - Enable/disable sFlow protocol on this interface. Valid values:
disabled
,enabled
. - status str
- Switch port admin status: up or down. Valid values:
down
,up
. - sticky_
mac str - Enable or disable sticky-mac on the interface. Valid values:
disable
,enable
. - stp_
bpdu_ strguard - Enable/disable STP BPDU guard on this interface. Valid values:
disabled
,enabled
. - stp_
bpdu_ floatguard_ timeout - BPDU Guard disabling protection (0 - 120 min).
- stp_
root_ strguard - Enable/disable STP root guard on this interface. Valid values:
disabled
,enabled
. - stp_
state str - Enable/disable Spanning Tree Protocol (STP) on this interface. Valid values:
disabled
,enabled
. - trunk_
member float - Trunk member.
- type str
- Interface type: physical or trunk port. Valid values:
physical
,trunk
. - untagged_
vlans str - Configure switch port untagged vlans
- vlan str
Assign switch ports to a VLAN.
The
dhcp_snoop_option82_override
block supports:
- access
Mode String - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups List<String> - ACL groups on this port.
- aggregator
Mode String - LACP member select mode. Valid values:
bandwidth
,count
. - allowed
Vlans String - Configure switch port tagged vlans
- allowed
Vlans StringAll - Enable/disable all defined vlans on this port. Valid values:
disable
,enable
. - arp
Inspection StringTrust - Trusted or untrusted dynamic ARP inspection. Valid values:
untrusted
,trusted
. - authenticated
Port Number - Authenticated-Port.
- bundle String
- Enable/disable Link Aggregation Group (LAG) bundling for non-FortiLink interfaces. Valid values:
disable
,enable
. - description String
- Description for port.
- dhcp
Snoop List<Property Map>Option82Overrides - Dhcp-Snoop-Option82-Override. The structure of
dhcp_snoop_option82_override
block is documented below. - dhcp
Snoop StringOption82Trust - Enable/disable allowance of DHCP with option-82 on untrusted interface. Valid values:
disable
,enable
. - dhcp
Snooping String - Trusted or untrusted DHCP-snooping interface. Valid values:
trusted
,untrusted
. - discard
Mode String - Configure discard mode for port. Valid values:
none
,all-untagged
,all-tagged
. - dsl
Profile String - DSL policy configuration.
- edge
Port String - Enable/disable this interface as an edge port, bridging connections between workstations and/or computers. Valid values:
disable
,enable
. - encrypted
Port Number - Encrypted-Port.
- fec
Capable Number - FEC capable.
- fec
State String - State of forward error correction. Valid values:
disabled
,cl74
,cl91
. - flap
Duration Number - Period over which flap events are calculated (seconds).
- flap
Rate Number - Number of stage change events needed within flap-duration.
- flap
Timeout Number - Flap guard disabling protection (min).
- flapguard String
- Enable/disable flap guard. Valid values:
disable
,enable
. - flow
Control String - Flow control direction. Valid values:
disable
,tx
,rx
,both
. - fortiswitch
Acls List<Number> - ACLs on this port.
- igmp
Snooping String - Set IGMP snooping mode for the physical port interface. Valid values:
disable
,enable
. - igmp
Snooping StringFlood Reports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps
Flood StringReports - Enable/disable flooding of IGMP reports to this interface when igmp-snooping enabled. Valid values:
disable
,enable
. - igmps
Flood StringTraffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - String
- Tag(s) associated with the interface for various features including virtual port pool, dynamic port policy.
- ip
Source StringGuard - Enable/disable IP source guard. Valid values:
disable
,enable
. - isl
Peer StringDevice Sn - Isl-Peer-Device-Sn.
- lacp
Speed String - end Link Aggregation Control Protocol (LACP) messages every 30 seconds (slow) or every second (fast). Valid values:
slow
,fast
. - learning
Limit Number - Limit the number of dynamic MAC addresses on this Port (1 - 128, 0 = no limit, default).
- link
Status String - Link-Status. Valid values:
down
,up
. - lldp
Profile String - LLDP port TLV profile.
- lldp
Status String - LLDP transmit and receive status. Valid values:
disable
,rx-only
,tx-only
,tx-rx
. - loop
Guard String - Enable/disable loop-guard on this interface, an STP optimization used to prevent network loops. Valid values:
disabled
,enabled
. - loop
Guard NumberTimeout - Loop-guard timeout (0 - 120 min, default = 45).
- String
- Matched interface tags in the dynamic port policy.
- matched
Dpp StringPolicy - Matched child policy in the dynamic port policy.
- max
Bundle Number - Maximum size of LAG bundle (1 - 24, default = 24)
- mcast
Snooping StringFlood Traffic - Enable/disable flooding of IGMP snooping traffic to this interface. Valid values:
disable
,enable
. - mclag String
- Enable/disable multi-chassis link aggregation (MCLAG). Valid values:
disable
,enable
. - mclag
Icl NumberPort - Mclag-Icl-Port.
- media
Type String - Media-Type.
- member
Withdrawal StringBehavior - Port behavior after it withdraws because of loss of control packets. Valid values:
forward
,block
. - members List<String>
- Aggregated LAG bundle interfaces.
- min
Bundle Number - Minimum size of LAG bundle (1 - 24, default = 1)
- mode String
- LACP mode: ignore and do not send control messages, or negotiate 802.3ad aggregation passively or actively. Valid values:
static
,lacp-passive
,lacp-active
. - p2p
Port Number - P2P-Port.
- packet
Sample NumberRate - Packet sampling rate (0 - 99999 p/sec).
- packet
Sampler String - Enable/disable packet sampling on this interface. Valid values:
disabled
,enabled
. - pause
Meter Number - Configure ingress pause metering rate, in kbps (default = 0, disabled).
- pause
Meter StringResume - Resume threshold for resuming traffic on ingress port. Valid values:
25%
,50%
,75%
. - poe
Max StringPower - Poe-Max-Power.
- poe
Mode NumberBt Cabable - PoE mode IEEE 802.3BT capable.
- poe
Port StringMode - Configure PoE port mode. Valid values:
ieee802-3af
,ieee802-3at
,ieee802-3bt
. - poe
Port StringPower - Configure PoE port power. Valid values:
normal
,perpetual
,perpetual-fast
. - poe
Port StringPriority - Configure PoE port priority. Valid values:
critical-priority
,high-priority
,low-priority
,medium-priority
. - poe
Pre StringStandard Detection - Enable/disable PoE pre-standard detection. Valid values:
disable
,enable
. - poe
Standard String - Poe-Standard.
- poe
Status String - Enable/disable PoE status. Valid values:
disable
,enable
. - port
Name String - Switch port name.
- port
Owner String - Switch port name.
- port
Policy String - Switch controller dynamic port policy from available options.
- port
Security StringPolicy - Switch controller authentication policy to apply to this managed switch from available options.
- port
Selection StringCriteria - Algorithm for aggregate port selection. Valid values:
src-mac
,dst-mac
,src-dst-mac
,src-ip
,dst-ip
,src-dst-ip
. - ptp
Status String - Enable/disable PTP policy on this FortiSwitch port. Valid values:
disable
,enable
. - qos
Policy String - Switch controller QoS policy from available options.
- restricted
Auth NumberPort - Restricted-Auth-Port.
- rpvst
Port String - Enable/disable inter-operability with rapid PVST on this interface. Valid values:
disabled
,enabled
. - sample
Direction String - Packet sampling direction. Valid values:
rx
,tx
,both
. - sflow
Counter NumberInterval - sFlow sampling counter polling interval (0 - 255 sec).
- sflow
Sample NumberRate - sFlow sampler sample rate (0 - 99999 p/sec).
- sflow
Sampler String - Enable/disable sFlow protocol on this interface. Valid values:
disabled
,enabled
. - status String
- Switch port admin status: up or down. Valid values:
down
,up
. - sticky
Mac String - Enable or disable sticky-mac on the interface. Valid values:
disable
,enable
. - stp
Bpdu StringGuard - Enable/disable STP BPDU guard on this interface. Valid values:
disabled
,enabled
. - stp
Bpdu NumberGuard Timeout - BPDU Guard disabling protection (0 - 120 min).
- stp
Root StringGuard - Enable/disable STP root guard on this interface. Valid values:
disabled
,enabled
. - stp
State String - Enable/disable Spanning Tree Protocol (STP) on this interface. Valid values:
disabled
,enabled
. - trunk
Member Number - Trunk member.
- type String
- Interface type: physical or trunk port. Valid values:
physical
,trunk
. - untagged
Vlans String - Configure switch port untagged vlans
- vlan String
Assign switch ports to a VLAN.
The
dhcp_snoop_option82_override
block supports:
ObjectSwitchcontrollerManagedswitchPortDhcpSnoopOption82Override, ObjectSwitchcontrollerManagedswitchPortDhcpSnoopOption82OverrideArgs
- circuit_
id str - Circuit ID string.
- remote_
id str - Remote ID string.
- vlan_
name str
ObjectSwitchcontrollerManagedswitchRouteOffloadRouter, ObjectSwitchcontrollerManagedswitchRouteOffloadRouterArgs
ObjectSwitchcontrollerManagedswitchVlan, ObjectSwitchcontrollerManagedswitchVlanArgs
- Assignment
Priority double - 802.1x Radius (Tunnel-Private-Group-Id) VLANID assign-by-name priority. A smaller value has a higher priority.
- Vlan
Name string - VLAN name.
- Assignment
Priority float64 - 802.1x Radius (Tunnel-Private-Group-Id) VLANID assign-by-name priority. A smaller value has a higher priority.
- Vlan
Name string - VLAN name.
- assignment
Priority Double - 802.1x Radius (Tunnel-Private-Group-Id) VLANID assign-by-name priority. A smaller value has a higher priority.
- vlan
Name String - VLAN name.
- assignment
Priority number - 802.1x Radius (Tunnel-Private-Group-Id) VLANID assign-by-name priority. A smaller value has a higher priority.
- vlan
Name string - VLAN name.
- assignment_
priority float - 802.1x Radius (Tunnel-Private-Group-Id) VLANID assign-by-name priority. A smaller value has a higher priority.
- vlan_
name str - VLAN name.
- assignment
Priority Number - 802.1x Radius (Tunnel-Private-Group-Id) VLANID assign-by-name priority. A smaller value has a higher priority.
- vlan
Name String - VLAN name.
Import
ObjectSwitchController ManagedSwitch can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSwitchcontrollerManagedswitch:ObjectSwitchcontrollerManagedswitch labelname {{switch_id}}
$ 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.