Skip to content

Images apis#509

Open
manuskc wants to merge 2 commits into
mainfrom
images_apis
Open

Images apis#509
manuskc wants to merge 2 commits into
mainfrom
images_apis

Conversation

@manuskc

@manuskc manuskc commented Jun 18, 2026

Copy link
Copy Markdown

Added gRPC support to the App Engine Images service for image transformations and composition

private String getTarget() {
String endpoint = environmentProvider.getenv("IMAGES_SERVICE_ENDPOINT");
String endpoint =
environmentProvider.getenv(ImagesServiceFactoryImpl.IMAGES_SERVICE_ENDPOINT_ENV);
if (isNullOrEmpty(endpoint)) {
throw new IllegalStateException("IMAGES_SERVICE_ENDPOINT environment variable not set.");
throw new IllegalStateException(
ImagesServiceFactoryImpl.IMAGES_SERVICE_ENDPOINT_ENV + " environment variable not set.");
throw new IllegalStateException("Invalid URI in IMAGES_SERVICE_ENDPOINT: " + endpoint);
throw new IllegalStateException(
"Invalid URI in "
+ ImagesServiceFactoryImpl.IMAGES_SERVICE_ENDPOINT_ENV
throw new IllegalStateException("Invalid URI in IMAGES_SERVICE_ENDPOINT: " + endpoint, e);
throw new IllegalStateException(
"Invalid URI in "
+ ImagesServiceFactoryImpl.IMAGES_SERVICE_ENDPOINT_ENV
EnvironmentProvider environmentProvider, GoogleCredentials googleCredentials) {
String endpoint = environmentProvider.getenv("IMAGES_SERVICE_ENDPOINT");
String endpoint =
environmentProvider.getenv(ImagesServiceFactoryImpl.IMAGES_SERVICE_ENDPOINT_ENV);
if (isNullOrEmpty(endpoint)) {
throw new IllegalStateException("IMAGES_SERVICE_ENDPOINT environment variable not set.");
throw new IllegalStateException(
ImagesServiceFactoryImpl.IMAGES_SERVICE_ENDPOINT_ENV + " environment variable not set.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants