updateLinkRoutingRule

Updates a routing rule for a link.

Samples

// Update the conditions of a routing rule
val resp = rtbFabricClient.updateLinkRoutingRule {
    gatewayId = "rtb-gw-12345678"
    linkId = "link-87654321"
    ruleId = "rule-abc123def456"
    priority = 20
    conditions = RuleCondition {
        hostHeader = "api.customer.com"
        pathPrefix = "/openrtb/"
    }
}