updateLink

abstract suspend fun updateLink(input: UpdateLinkRequest): UpdateLinkResponse

Updates the configuration of a link between gateways.

Allows you to modify settings and parameters for an existing link.

Samples

// Updates configuration settings for an existing link
val resp = rtbFabricClient.updateLink {
    gatewayId = "rtb-gw-12345678"
    linkId = "link-87654321"
    logSettings = LinkLogSettings {
        applicationLogs = LinkApplicationLogConfiguration {
            sampling = LinkApplicationLogSampling {
                errorLog = 100.0.toDouble()
                filterLog = 10.0.toDouble()
            }
        }
    }
}