Skip to content

Commit

Permalink
feat: Add Universe Domain Support for Apiary Clients (#19934)
Browse files Browse the repository at this point in the history
* chore: Add Universe Domain Support for Apiary Clients

* chore: Bump to v2.4.0 of google-api-java-client
  • Loading branch information
lqiu96 committed Mar 19, 2024
1 parent 9146d69 commit 114f7fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Java libraries for Google APIs.",
"generator": "java1_15",
"releaseVersion": "2.0.0",
"baseClientLibrary": "2.2.0",
"baseClientLibrary": "2.4.0",
"oauthClientLibrary": "1.35.0",
"httpClientLibrary": "1.43.3",
"gsonVersion": "2.10.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,5 +247,10 @@ public class {{ api.className }} extends com.google.api.client.googleapis.servic
com.google.api.client.googleapis.services.GoogleClientRequestInitializer googleClientRequestInitializer) {
return (Builder) super.setGoogleClientRequestInitializer(googleClientRequestInitializer);
}

@Override
public Builder setUniverseDomain(String universeDomain) {
return (Builder) super.setUniverseDomain(universeDomain);
}
}
}{% endcollapsenewlines %}

0 comments on commit 114f7fe

Please sign in to comment.