Public/Set-MerakiNetworkApplianceFirewallL7FirewallRules.ps1

function Set-MerakiNetworkApplianceFirewallL7FirewallRules {
    <#
    .SYNOPSIS
    Updates the L7 firewall rules for a network's appliances using the Meraki Dashboard API.
 
    .DESCRIPTION
    The Set-MerakiNetworkApplianceFirewallL7FirewallRules function allows you to update the L7 firewall rules for a network's appliances by providing the authentication token, network ID, and a firewall configuration string.
 
    .PARAMETER AuthToken
    The authentication token (API key) required to access the Meraki Dashboard API.
 
    .PARAMETER NetworkId
    The ID of the network for which you want to update the L7 firewall rules.
 
    .PARAMETER FirewallConfig
    A string containing the firewall configuration. The string should be in JSON format and should include the "rules" array, which contains objects with the "policy", "type", and "value" properties.
 
    .EXAMPLE
    $config = [PSCustomObject]@{
        rules = @(
            [PSCustomObject]@{
                policy = "deny"
                type = "host"
                value = "google.com"
            },
            [PSCustomObject]@{
                policy = "deny"
                type = "port"
                value = "23"
            },
            [PSCustomObject]@{
                policy = "deny"
                type = "ipRange"
                value = "10.11.12.00/24"
            },
            [PSCustomObject]@{
                policy = "deny"
                type = "ipRange"
                value = "10.11.12.00/24:5555"
            }
        )
    }
 
    $config = $config | ConvertTo-Json -Compress
    Set-MerakiNetworkApplianceFirewallL7FirewallRules -AuthToken "your-api-token" -NetworkId "your-network-id" -FirewallConfig $config
 
    This example updates the L7 firewall rules for the network with ID "your-network-id", using the specified firewall configuration.
 
    .NOTES
    The function requires the "Invoke-RestMethod" cmdlet to be available.
 
    The function returns the response from the API if the update is successful, otherwise, it displays an error message.
    #>


    [CmdletBinding()]
    param (
        [parameter(Mandatory=$true)]
        [string]$AuthToken,
        [parameter(Mandatory=$true)]
        [string]$NetworkId,
        [parameter(Mandatory=$true)]
        [string]$FirewallConfig
    )

    try {
        $header = @{
            "X-Cisco-Meraki-API-Key" = $AuthToken
            "content-type" = "application/json; charset=utf-8"
        }

        $body = $FirewallConfig

        $uri = "https://api.meraki.com/api/v1/networks/$NetworkId/appliance/firewall/l7FirewallRules"
        $response = Invoke-RestMethod -Method Put -Uri $uri -headers $header -UserAgent "MerakiPowerShellModule/1.0.8 DocNougat" -Body $body
        return $response
    }
    catch {
        Write-Debug $_
        Throw $_
    }
}