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
stringThe organization id
perPage
int?The number of entries per page returned. Acceptable range is 3 - 1000. Default is 1000.
startingAfter
stringA 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
stringA 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
CancellationTokenCancellation token
Returns
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
stringNetwork ID
multicastForwardingByNetworkRules
List<MulticastForwardingByNetworkItemRule>Static multicast forwarding rules. Pass an empty array to clear all rules.
cancellationToken
CancellationTokenCancellation token
Returns
Exceptions
- ApiException
Thrown when fails to make API call