Table of Contents

Interface IApplianceFirewallMulticastForwarding

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

Methods

GetOrganizationApplianceFirewallMulticastForwardingByNetworkAsync(string, int?, string?, string?, List<string>?, CancellationToken)

List Static Multicasting forwarding settings for MX networks

[Get("/organizations/{organizationId}/appliance/firewall/multicastForwarding/byNetwork")]
Task<MulticastForwardingByNetwork> GetOrganizationApplianceFirewallMulticastForwardingByNetworkAsync(string organizationId, int? perPage = null, string? startingAfter = null, string? endingBefore = null, List<string>? networkIds = null, CancellationToken cancellationToken = default)

Parameters

organizationId string

The organization id

perPage int?

The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000.

startingAfter string

A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

endingBefore string

A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

networkIds List<string>

Optional parameter to filter the results by network IDs

cancellationToken CancellationToken

Cancellation token

Returns

Task<MulticastForwardingByNetwork>

Exceptions

ApiException

Thrown when fails to make API call

UpdateNetworkApplianceFirewallMulticastForwardingAsync(string?, List<MulticastForwardingByNetworkItemRule>, CancellationToken)

Update static multicast forward rules for a network

[Put("/networks/{networkId}/appliance/firewall/multicastForwarding")]
Task<MulticastForwardingByNetworkItem> UpdateNetworkApplianceFirewallMulticastForwardingAsync(string? networkId, List<MulticastForwardingByNetworkItemRule> multicastForwardingByNetworkRules, CancellationToken cancellationToken = default)

Parameters

networkId string

Network ID

multicastForwardingByNetworkRules List<MulticastForwardingByNetworkItemRule>

Static multicast forwarding rules. Pass an empty array to clear all rules.

cancellationToken CancellationToken

Cancellation token

Returns

Task<MulticastForwardingByNetworkItem>

Exceptions

ApiException

Thrown when fails to make API call