Table of Contents

Interface IAppliancePorts

Namespace
Meraki.Api.Interfaces.Products.Appliance
Assembly
Meraki.Api.dll
public interface IAppliancePorts

Methods

GetNetworkAppliancePortAsync(string, string, CancellationToken)

Return per-port VLAN settings for a single MX port.

[Get("/networks/{networkId}/appliance/ports/{portId}")]
Task<AppliancePort> GetNetworkAppliancePortAsync(string networkId, string portId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

portId string

The appliance port id

cancellationToken CancellationToken

Returns

Task<AppliancePort>

Exceptions

ApiException

Thrown when fails to make API call

GetNetworkAppliancePortsAsync(string, CancellationToken)

List per-port VLAN settings for all ports of a MX.

[Get("/networks/{networkId}/appliance/ports")]
Task<List<AppliancePort>> GetNetworkAppliancePortsAsync(string networkId, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

cancellationToken CancellationToken

Returns

Task<List<AppliancePort>>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkAppliancePortAsync(string, string, AppliancePortUpdateRequest, CancellationToken)

Update the per-port VLAN settings for a single MX port.

[Put("/networks/{networkId}/appliance/ports/{portId}")]
Task<AppliancePort> UpdateNetworkAppliancePortAsync(string networkId, string portId, AppliancePortUpdateRequest appliancePort, CancellationToken cancellationToken = default)

Parameters

networkId string

The network id

portId string

The appliance port id

appliancePort AppliancePortUpdateRequest

Body for updating the per-port VLAN settings

cancellationToken CancellationToken

Returns

Task<AppliancePort>

Exceptions

ApiException

Thrown when fails to make API call