fortimanager.ObjectSwitchcontrollerManagedswitchPorts
Explore with Pulumi AI
Managed-switch port list.
This resource is a sub resource for variable
ports
of resourcefortimanager.ObjectSwitchcontrollerManagedswitch
. Conflict and overwrite may occur if use both of them. The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
dhcp_snoop_option82_override
:fortimanager_object_switchcontroller_managedswitch_ports_dhcpsnoopoption82override
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectSwitchcontrollerManagedswitch = new fortimanager.ObjectSwitchcontrollerManagedswitch("trnameObjectSwitchcontrollerManagedswitch", {
_platform: "FS1D48T418000533",
switchId: "3",
});
const trnameObjectSwitchcontrollerManagedswitchPorts = new fortimanager.ObjectSwitchcontrollerManagedswitchPorts("trnameObjectSwitchcontrollerManagedswitchPorts", {
accessMode: "static",
aggregatorMode: "count",
allowedVlansAll: "enable",
portName: "port3",
managedSwitch: trnameObjectSwitchcontrollerManagedswitch.switchId,
}, {
dependsOn: [trnameObjectSwitchcontrollerManagedswitch],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_switchcontroller_managedswitch = fortimanager.ObjectSwitchcontrollerManagedswitch("trnameObjectSwitchcontrollerManagedswitch",
_platform="FS1D48T418000533",
switch_id="3")
trname_object_switchcontroller_managedswitch_ports = fortimanager.ObjectSwitchcontrollerManagedswitchPorts("trnameObjectSwitchcontrollerManagedswitchPorts",
access_mode="static",
aggregator_mode="count",
allowed_vlans_all="enable",
port_name="port3",
managed_switch=trname_object_switchcontroller_managedswitch.switch_id,
opts = pulumi.ResourceOptions(depends_on=[trname_object_switchcontroller_managedswitch]))
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 {
trnameObjectSwitchcontrollerManagedswitch, err := fortimanager.NewObjectSwitchcontrollerManagedswitch(ctx, "trnameObjectSwitchcontrollerManagedswitch", &fortimanager.ObjectSwitchcontrollerManagedswitchArgs{
_platform: pulumi.String("FS1D48T418000533"),
SwitchId: pulumi.String("3"),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectSwitchcontrollerManagedswitchPorts(ctx, "trnameObjectSwitchcontrollerManagedswitchPorts", &fortimanager.ObjectSwitchcontrollerManagedswitchPortsArgs{
AccessMode: pulumi.String("static"),
AggregatorMode: pulumi.String("count"),
AllowedVlansAll: pulumi.String("enable"),
PortName: pulumi.String("port3"),
ManagedSwitch: trnameObjectSwitchcontrollerManagedswitch.SwitchId,
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectSwitchcontrollerManagedswitch,
}))
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 trnameObjectSwitchcontrollerManagedswitch = new Fortimanager.ObjectSwitchcontrollerManagedswitch("trnameObjectSwitchcontrollerManagedswitch", new()
{
_platform = "FS1D48T418000533",
SwitchId = "3",
});
var trnameObjectSwitchcontrollerManagedswitchPorts = new Fortimanager.ObjectSwitchcontrollerManagedswitchPorts("trnameObjectSwitchcontrollerManagedswitchPorts", new()
{
AccessMode = "static",
AggregatorMode = "count",
AllowedVlansAll = "enable",
PortName = "port3",
ManagedSwitch = trnameObjectSwitchcontrollerManagedswitch.SwitchId,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectSwitchcontrollerManagedswitch,
},
});
});
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 com.pulumi.fortimanager.ObjectSwitchcontrollerManagedswitchPorts;
import com.pulumi.fortimanager.ObjectSwitchcontrollerManagedswitchPortsArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trnameObjectSwitchcontrollerManagedswitch = new ObjectSwitchcontrollerManagedswitch("trnameObjectSwitchcontrollerManagedswitch", ObjectSwitchcontrollerManagedswitchArgs.builder()
._platform("FS1D48T418000533")
.switchId(3)
.build());
var trnameObjectSwitchcontrollerManagedswitchPorts = new ObjectSwitchcontrollerManagedswitchPorts("trnameObjectSwitchcontrollerManagedswitchPorts", ObjectSwitchcontrollerManagedswitchPortsArgs.builder()
.accessMode("static")
.aggregatorMode("count")
.allowedVlansAll("enable")
.portName("port3")
.managedSwitch(trnameObjectSwitchcontrollerManagedswitch.switchId())
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectSwitchcontrollerManagedswitch)
.build());
}
}
resources:
trnameObjectSwitchcontrollerManagedswitchPorts:
type: fortimanager:ObjectSwitchcontrollerManagedswitchPorts
properties:
accessMode: static
aggregatorMode: count
allowedVlansAll: enable
portName: port3
managedSwitch: ${trnameObjectSwitchcontrollerManagedswitch.switchId}
options:
dependsOn:
- ${trnameObjectSwitchcontrollerManagedswitch}
trnameObjectSwitchcontrollerManagedswitch:
type: fortimanager:ObjectSwitchcontrollerManagedswitch
properties:
_platform: FS1D48T418000533
switchId: 3
Create ObjectSwitchcontrollerManagedswitchPorts Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectSwitchcontrollerManagedswitchPorts(name: string, args: ObjectSwitchcontrollerManagedswitchPortsArgs, opts?: CustomResourceOptions);
@overload
def ObjectSwitchcontrollerManagedswitchPorts(resource_name: str,
args: ObjectSwitchcontrollerManagedswitchPortsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectSwitchcontrollerManagedswitchPorts(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_switch: Optional[str] = None,
access_mode: Optional[str] = None,
acl_groups: Optional[Sequence[str]] = None,
adom: Optional[str] = None,
aggregator_mode: Optional[str] = None,
allowed_vlans: Optional[str] = None,
allowed_vlans_all: Optional[str] = None,
arp_inspection_trust: Optional[str] = None,
authenticated_port: Optional[float] = None,
bundle: Optional[str] = None,
description: Optional[str] = None,
dhcp_snoop_option82_overrides: Optional[Sequence[ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArgs]] = None,
dhcp_snoop_option82_trust: Optional[str] = None,
dhcp_snooping: Optional[str] = None,
discard_mode: Optional[str] = None,
dsl_profile: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
edge_port: Optional[str] = None,
encrypted_port: Optional[float] = None,
fec_capable: Optional[float] = None,
fec_state: Optional[str] = None,
flap_duration: Optional[float] = None,
flap_rate: Optional[float] = None,
flap_timeout: Optional[float] = None,
flapguard: Optional[str] = None,
flow_control: Optional[str] = None,
fortiswitch_acls: Optional[Sequence[float]] = None,
igmp_snooping: Optional[str] = None,
igmp_snooping_flood_reports: Optional[str] = None,
igmps_flood_reports: Optional[str] = None,
igmps_flood_traffic: Optional[str] = None,
interface_tags: Optional[str] = None,
ip_source_guard: Optional[str] = None,
isl_peer_device_sn: Optional[str] = None,
lacp_speed: Optional[str] = None,
learning_limit: Optional[float] = None,
link_status: Optional[str] = None,
lldp_profile: Optional[str] = None,
lldp_status: Optional[str] = None,
loop_guard: Optional[str] = None,
loop_guard_timeout: Optional[float] = None,
matched_dpp_intf_tags: Optional[str] = None,
matched_dpp_policy: Optional[str] = None,
max_bundle: Optional[float] = None,
mcast_snooping_flood_traffic: Optional[str] = None,
mclag: Optional[str] = None,
mclag_icl_port: Optional[float] = None,
media_type: Optional[str] = None,
member_withdrawal_behavior: Optional[str] = None,
members: Optional[Sequence[str]] = None,
min_bundle: Optional[float] = None,
mode: Optional[str] = None,
object_switchcontroller_managedswitch_ports_id: Optional[str] = None,
p2p_port: Optional[float] = None,
packet_sample_rate: Optional[float] = None,
packet_sampler: Optional[str] = None,
pause_meter: Optional[float] = None,
pause_meter_resume: Optional[str] = None,
poe_max_power: Optional[str] = None,
poe_mode_bt_cabable: Optional[float] = None,
poe_port_mode: Optional[str] = None,
poe_port_power: Optional[str] = None,
poe_port_priority: Optional[str] = None,
poe_pre_standard_detection: Optional[str] = None,
poe_standard: Optional[str] = None,
poe_status: Optional[str] = None,
port_name: Optional[str] = None,
port_owner: Optional[str] = None,
port_policy: Optional[str] = None,
port_security_policy: Optional[str] = None,
port_selection_criteria: Optional[str] = None,
ptp_status: Optional[str] = None,
qos_policy: Optional[str] = None,
restricted_auth_port: Optional[float] = None,
rpvst_port: Optional[str] = None,
sample_direction: Optional[str] = None,
scopetype: Optional[str] = None,
sflow_counter_interval: Optional[float] = None,
sflow_sample_rate: Optional[float] = None,
sflow_sampler: Optional[str] = None,
status: Optional[str] = None,
sticky_mac: Optional[str] = None,
stp_bpdu_guard: Optional[str] = None,
stp_bpdu_guard_timeout: Optional[float] = None,
stp_root_guard: Optional[str] = None,
stp_state: Optional[str] = None,
trunk_member: Optional[float] = None,
type: Optional[str] = None,
untagged_vlans: Optional[str] = None,
vlan: Optional[str] = None)
func NewObjectSwitchcontrollerManagedswitchPorts(ctx *Context, name string, args ObjectSwitchcontrollerManagedswitchPortsArgs, opts ...ResourceOption) (*ObjectSwitchcontrollerManagedswitchPorts, error)
public ObjectSwitchcontrollerManagedswitchPorts(string name, ObjectSwitchcontrollerManagedswitchPortsArgs args, CustomResourceOptions? opts = null)
public ObjectSwitchcontrollerManagedswitchPorts(String name, ObjectSwitchcontrollerManagedswitchPortsArgs args)
public ObjectSwitchcontrollerManagedswitchPorts(String name, ObjectSwitchcontrollerManagedswitchPortsArgs args, CustomResourceOptions options)
type: fortimanager:ObjectSwitchcontrollerManagedswitchPorts
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 ObjectSwitchcontrollerManagedswitchPortsArgs
- 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 ObjectSwitchcontrollerManagedswitchPortsArgs
- 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 ObjectSwitchcontrollerManagedswitchPortsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectSwitchcontrollerManagedswitchPortsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectSwitchcontrollerManagedswitchPortsArgs
- 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 objectSwitchcontrollerManagedswitchPortsResource = new Fortimanager.ObjectSwitchcontrollerManagedswitchPorts("objectSwitchcontrollerManagedswitchPortsResource", new()
{
ManagedSwitch = "string",
AccessMode = "string",
AclGroups = new[]
{
"string",
},
Adom = "string",
AggregatorMode = "string",
AllowedVlans = "string",
AllowedVlansAll = "string",
ArpInspectionTrust = "string",
AuthenticatedPort = 0,
Bundle = "string",
Description = "string",
DhcpSnoopOption82Overrides = new[]
{
new Fortimanager.Inputs.ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArgs
{
CircuitId = "string",
RemoteId = "string",
VlanName = "string",
},
},
DhcpSnoopOption82Trust = "string",
DhcpSnooping = "string",
DiscardMode = "string",
DslProfile = "string",
DynamicSortSubtable = "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",
ObjectSwitchcontrollerManagedswitchPortsId = "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",
Scopetype = "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",
});
example, err := fortimanager.NewObjectSwitchcontrollerManagedswitchPorts(ctx, "objectSwitchcontrollerManagedswitchPortsResource", &fortimanager.ObjectSwitchcontrollerManagedswitchPortsArgs{
ManagedSwitch: pulumi.String("string"),
AccessMode: pulumi.String("string"),
AclGroups: pulumi.StringArray{
pulumi.String("string"),
},
Adom: 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: .ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArray{
&.ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArgs{
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"),
DynamicSortSubtable: 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"),
ObjectSwitchcontrollerManagedswitchPortsId: 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"),
Scopetype: 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"),
})
var objectSwitchcontrollerManagedswitchPortsResource = new ObjectSwitchcontrollerManagedswitchPorts("objectSwitchcontrollerManagedswitchPortsResource", ObjectSwitchcontrollerManagedswitchPortsArgs.builder()
.managedSwitch("string")
.accessMode("string")
.aclGroups("string")
.adom("string")
.aggregatorMode("string")
.allowedVlans("string")
.allowedVlansAll("string")
.arpInspectionTrust("string")
.authenticatedPort(0)
.bundle("string")
.description("string")
.dhcpSnoopOption82Overrides(ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArgs.builder()
.circuitId("string")
.remoteId("string")
.vlanName("string")
.build())
.dhcpSnoopOption82Trust("string")
.dhcpSnooping("string")
.discardMode("string")
.dslProfile("string")
.dynamicSortSubtable("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")
.objectSwitchcontrollerManagedswitchPortsId("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")
.scopetype("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());
object_switchcontroller_managedswitch_ports_resource = fortimanager.ObjectSwitchcontrollerManagedswitchPorts("objectSwitchcontrollerManagedswitchPortsResource",
managed_switch="string",
access_mode="string",
acl_groups=["string"],
adom="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",
dynamic_sort_subtable="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",
object_switchcontroller_managedswitch_ports_id="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",
scopetype="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")
const objectSwitchcontrollerManagedswitchPortsResource = new fortimanager.ObjectSwitchcontrollerManagedswitchPorts("objectSwitchcontrollerManagedswitchPortsResource", {
managedSwitch: "string",
accessMode: "string",
aclGroups: ["string"],
adom: "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",
dynamicSortSubtable: "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",
objectSwitchcontrollerManagedswitchPortsId: "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",
scopetype: "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",
});
type: fortimanager:ObjectSwitchcontrollerManagedswitchPorts
properties:
accessMode: string
aclGroups:
- string
adom: 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
dynamicSortSubtable: 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
managedSwitch: string
matchedDppIntfTags: string
matchedDppPolicy: string
maxBundle: 0
mcastSnoopingFloodTraffic: string
mclag: string
mclagIclPort: 0
mediaType: string
memberWithdrawalBehavior: string
members:
- string
minBundle: 0
mode: string
objectSwitchcontrollerManagedswitchPortsId: 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
scopetype: 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
ObjectSwitchcontrollerManagedswitchPorts 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 ObjectSwitchcontrollerManagedswitchPorts resource accepts the following input properties:
- Managed
Switch string - Managed Switch.
- Access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - Acl
Groups List<string> - ACL groups on this port.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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
. - Object
Switchcontroller stringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- Managed
Switch string - Managed Switch.
- Access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - Acl
Groups []string - ACL groups on this port.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports Dhcp Snoop Option82Override Args - 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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
. - Object
Switchcontroller stringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- managed
Switch String - Managed Switch.
- access
Mode String - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups List<String> - ACL groups on this port.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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
. - object
Switchcontroller StringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- managed
Switch string - Managed Switch.
- access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups string[] - ACL groups on this port.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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
. - object
Switchcontroller stringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- managed_
switch str - Managed Switch.
- access_
mode str - Access mode of the port. Valid values:
normal
,nac
. - acl_
groups Sequence[str] - ACL groups on this port.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports Dhcp Snoop Option82Override Args] - 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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
. - object_
switchcontroller_ strmanagedswitch_ ports_ id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- managed
Switch String - Managed Switch.
- access
Mode String - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups List<String> - ACL groups on this port.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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
. - object
Switchcontroller StringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectSwitchcontrollerManagedswitchPorts 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 ObjectSwitchcontrollerManagedswitchPorts Resource
Get an existing ObjectSwitchcontrollerManagedswitchPorts 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?: ObjectSwitchcontrollerManagedswitchPortsState, opts?: CustomResourceOptions): ObjectSwitchcontrollerManagedswitchPorts
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_mode: Optional[str] = None,
acl_groups: Optional[Sequence[str]] = None,
adom: Optional[str] = None,
aggregator_mode: Optional[str] = None,
allowed_vlans: Optional[str] = None,
allowed_vlans_all: Optional[str] = None,
arp_inspection_trust: Optional[str] = None,
authenticated_port: Optional[float] = None,
bundle: Optional[str] = None,
description: Optional[str] = None,
dhcp_snoop_option82_overrides: Optional[Sequence[ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArgs]] = None,
dhcp_snoop_option82_trust: Optional[str] = None,
dhcp_snooping: Optional[str] = None,
discard_mode: Optional[str] = None,
dsl_profile: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
edge_port: Optional[str] = None,
encrypted_port: Optional[float] = None,
fec_capable: Optional[float] = None,
fec_state: Optional[str] = None,
flap_duration: Optional[float] = None,
flap_rate: Optional[float] = None,
flap_timeout: Optional[float] = None,
flapguard: Optional[str] = None,
flow_control: Optional[str] = None,
fortiswitch_acls: Optional[Sequence[float]] = None,
igmp_snooping: Optional[str] = None,
igmp_snooping_flood_reports: Optional[str] = None,
igmps_flood_reports: Optional[str] = None,
igmps_flood_traffic: Optional[str] = None,
interface_tags: Optional[str] = None,
ip_source_guard: Optional[str] = None,
isl_peer_device_sn: Optional[str] = None,
lacp_speed: Optional[str] = None,
learning_limit: Optional[float] = None,
link_status: Optional[str] = None,
lldp_profile: Optional[str] = None,
lldp_status: Optional[str] = None,
loop_guard: Optional[str] = None,
loop_guard_timeout: Optional[float] = None,
managed_switch: Optional[str] = None,
matched_dpp_intf_tags: Optional[str] = None,
matched_dpp_policy: Optional[str] = None,
max_bundle: Optional[float] = None,
mcast_snooping_flood_traffic: Optional[str] = None,
mclag: Optional[str] = None,
mclag_icl_port: Optional[float] = None,
media_type: Optional[str] = None,
member_withdrawal_behavior: Optional[str] = None,
members: Optional[Sequence[str]] = None,
min_bundle: Optional[float] = None,
mode: Optional[str] = None,
object_switchcontroller_managedswitch_ports_id: Optional[str] = None,
p2p_port: Optional[float] = None,
packet_sample_rate: Optional[float] = None,
packet_sampler: Optional[str] = None,
pause_meter: Optional[float] = None,
pause_meter_resume: Optional[str] = None,
poe_max_power: Optional[str] = None,
poe_mode_bt_cabable: Optional[float] = None,
poe_port_mode: Optional[str] = None,
poe_port_power: Optional[str] = None,
poe_port_priority: Optional[str] = None,
poe_pre_standard_detection: Optional[str] = None,
poe_standard: Optional[str] = None,
poe_status: Optional[str] = None,
port_name: Optional[str] = None,
port_owner: Optional[str] = None,
port_policy: Optional[str] = None,
port_security_policy: Optional[str] = None,
port_selection_criteria: Optional[str] = None,
ptp_status: Optional[str] = None,
qos_policy: Optional[str] = None,
restricted_auth_port: Optional[float] = None,
rpvst_port: Optional[str] = None,
sample_direction: Optional[str] = None,
scopetype: Optional[str] = None,
sflow_counter_interval: Optional[float] = None,
sflow_sample_rate: Optional[float] = None,
sflow_sampler: Optional[str] = None,
status: Optional[str] = None,
sticky_mac: Optional[str] = None,
stp_bpdu_guard: Optional[str] = None,
stp_bpdu_guard_timeout: Optional[float] = None,
stp_root_guard: Optional[str] = None,
stp_state: Optional[str] = None,
trunk_member: Optional[float] = None,
type: Optional[str] = None,
untagged_vlans: Optional[str] = None,
vlan: Optional[str] = None) -> ObjectSwitchcontrollerManagedswitchPorts
func GetObjectSwitchcontrollerManagedswitchPorts(ctx *Context, name string, id IDInput, state *ObjectSwitchcontrollerManagedswitchPortsState, opts ...ResourceOption) (*ObjectSwitchcontrollerManagedswitchPorts, error)
public static ObjectSwitchcontrollerManagedswitchPorts Get(string name, Input<string> id, ObjectSwitchcontrollerManagedswitchPortsState? state, CustomResourceOptions? opts = null)
public static ObjectSwitchcontrollerManagedswitchPorts get(String name, Output<String> id, ObjectSwitchcontrollerManagedswitchPortsState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectSwitchcontrollerManagedswitchPorts 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.
- Access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - Acl
Groups List<string> - ACL groups on this port.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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).
- Managed
Switch string - Managed Switch.
- 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
. - Object
Switchcontroller stringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- Access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - Acl
Groups []string - ACL groups on this port.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports Dhcp Snoop Option82Override Args - 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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).
- Managed
Switch string - Managed Switch.
- 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
. - Object
Switchcontroller stringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- access
Mode String - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups List<String> - ACL groups on this port.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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).
- managed
Switch String - Managed Switch.
- 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
. - object
Switchcontroller StringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- access
Mode string - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups string[] - ACL groups on this port.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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).
- managed
Switch string - Managed Switch.
- 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
. - object
Switchcontroller stringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- access_
mode str - Access mode of the port. Valid values:
normal
,nac
. - acl_
groups Sequence[str] - ACL groups on this port.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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 Ports Dhcp Snoop Option82Override Args] - 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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).
- managed_
switch str - Managed Switch.
- 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
. - object_
switchcontroller_ strmanagedswitch_ ports_ id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
- access
Mode String - Access mode of the port. Valid values:
normal
,nac
. - acl
Groups List<String> - ACL groups on this port.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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.
- 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.
The
dhcp_snoop_option82_override
block supports:- 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).
- managed
Switch String - Managed Switch.
- 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
. - object
Switchcontroller StringManagedswitch Ports Id - an identifier for the resource with format {{port_name}}.
- 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
. - 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
. - 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.
Supporting Types
ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82Override, ObjectSwitchcontrollerManagedswitchPortsDhcpSnoopOption82OverrideArgs
- circuit_
id str - Circuit ID string.
- remote_
id str - Remote ID string.
- vlan_
name str - DHCP snooping option 82 VLAN.
Import
ObjectSwitchController ManagedSwitchPorts can be imported using any of these accepted formats:
Set import_options = [“managed_switch=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectSwitchcontrollerManagedswitchPorts:ObjectSwitchcontrollerManagedswitchPorts labelname {{port_name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.