deleteServiceAttributes

Deletes specific attributes associated with a service.

Samples


fun main() { 
   //sampleStart 
   // Example Delete service attribute by providing attribute key and service ID
val resp = serviceDiscoveryClient.deleteServiceAttributes {
    attributes = listOf<String>(
        "port"
    )
    serviceId = "srv-e4anhexample0004"
} 
   //sampleEnd
}