private GoogleCloudRunV2Service getService()

in src/main/java/com/google/cloud/run/kafkascaler/clients/CloudRunClientWrapper.java [326:335]


  private GoogleCloudRunV2Service getService(String serviceName) throws IOException {
    return this.cloudRun
        .projects()
        .locations()
        .services()
        .get(
            String.format(
                "projects/%s/locations/%s/services/%s", this.projectId, this.region, serviceName))
        .execute();
  }