toDeploymentWaitType method
Implementation
DeploymentWaitType toDeploymentWaitType() {
switch (this) {
case 'READY_WAIT':
return DeploymentWaitType.readyWait;
case 'TERMINATION_WAIT':
return DeploymentWaitType.terminationWait;
}
throw Exception('$this is not known in enum DeploymentWaitType');
}