UDP Application with all propertiesΒΆ

UDP application with all properties see below example:

{
    "allowOverwrite": false,
    "name": "<app_name>",
    "description": "<app_name> description",
    "set_name": "Examples",
    "template_name": "http",
    "parameters": {
        "pools": [
            {
                "servicePort": 80,
                "loadBalancingMode": "least-connections-member",
                "loadBalancingRatio": 15,
                "monitorType": [
                    "icmp",
                    "udp"
                ],
                "poolName": "<app_name>_pool",
                "isServicePool": false,
                "poolMembers": [
                    {
                        "name": "member01"
                    }
                ]
            }
        ],
        "monitors": [
            {
                "isDefault": true,
                "isIcmpMonitor": true,
                "interval": 10,
                "monitorName": "icmp",
                "timeout": 16
            },
            {
                "isDefault": true,
                "isUdpMonitor": true,
                "interval": 5,
                "monitorName": "udp",
                "receiveString": ".*",
                "sendString": "",
                "udp": {
                    "indirectSource": "0.0.0.0",
                    "ipTosToClient": 5,
                    "template": "advanced"
                },
                "timeout": 16
            }
        ],
        "virtuals": [
            {
                "enable_Access": false,
                "enable_InspectionServices": false,
                "enable_TLS_Server": false,
                "enable_snat": true,
                "snat_automap": true,
                "snat_addresses": [],
                "enable_FastL4": false,
                "enable_HTTP2_Profile": false,
                "enable_UDP_Profile": true,
                "enable_TCP_Profile": false,
                "enable_mirroring": true,
                "enable_TLS_Client": false,
                "enable_SsloPolicy": false,
                "enable_WAF": false,
                "enable_iRules": false,
                "pool": "<app_name>_pool",
                "UDP_idle_timeout": 30,
                "virtualPort": 80,
                "virtualName": "<app_name>_vs"
            }
        ],
        "enable_Global_Resiliency": false,
        "application_description": "<app_name> description",
        "application_name": "<app_name>"
    }
}