updateApplication

Updates an application.

Samples


fun main() { 
   //sampleStart 
   // The following update application example updates the name of the specified application.
val resp = appConfigClient.updateApplication {
    applicationId = "339ohji"
    name = "Example-Application"
    description = ""
} 
   //sampleEnd
}