listDeploymentEvents
inline suspend fun LaunchWizardClient.listDeploymentEvents(crossinline block: ListDeploymentEventsRequest.Builder.() -> Unit): ListDeploymentEventsResponse
Lists the events of a deployment.
Samples
fun main() {
//sampleStart
// List all actions taken during a deployment.
val resp = launchWizardClient.listDeploymentEvents {
deploymentId = "4c1b59c1-659c-467f-b6e9-6ef6f9d28e1d"
}
//sampleEnd
}