getDeployment
inline suspend fun LaunchWizardClient.getDeployment(crossinline block: GetDeploymentRequest.Builder.() -> Unit): GetDeploymentResponse
Returns information about the deployment.
Samples
fun main() {
//sampleStart
// Get details about a given deployment.
val resp = launchWizardClient.getDeployment {
deploymentId = "1111111-1111-1111-1111-111111111111"
}
//sampleEnd
}