in src/main/java/com/google/cloud/run/kafkascaler/clients/CloudRunClientWrapper.java [225:228]
public Instant getServiceLastDeploymentTime(String serviceName) throws IOException {
GoogleCloudRunV2Service service = getService(serviceName);
return service.getUpdateTime() == null ? Instant.EPOCH : Instant.parse(service.getUpdateTime());
}