updateEnvironment

Changes the settings of an existing Cloud9 development environment.

Samples


fun main() { 
   //sampleStart 
   val resp = cloud9Client.updateEnvironment {
    environmentId = "8d9967e2f0624182b74e7690ad69ebEX"
    name = "my-changed-demo-environment"
    description = "This is my changed demonstration environment."
} 
   //sampleEnd
}