google-cloud-appengine-admin overview (2.23.0) Stay organized with collections Save and categorize content based on your preferences.
- 2.83.0 (latest)
- 2.82.0
- 2.81.0
- 2.80.0
- 2.78.0
- 2.76.0
- 2.75.0
- 2.74.0
- 2.73.0
- 2.72.0
- 2.70.0
- 2.68.0
- 2.67.0
- 2.64.0
- 2.63.0
- 2.62.0
- 2.60.0
- 2.59.0
- 2.58.0
- 2.57.0
- 2.56.0
- 2.55.0
- 2.54.0
- 2.53.0
- 2.52.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.40.0
- 2.39.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.28.0
- 2.27.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.4
- 2.2.0
- 2.1.10
- 0.2.0
com.google.appengine.v1
A client to App Engine Admin API
The interfaces provided are listed below, along with usage samples.
ApplicationsClient
Service Description: Manages App Engine applications.
Sample for ApplicationsClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(ApplicationsClientapplicationsClient=ApplicationsClient.create()){Stringname="name3373707";Applicationresponse=applicationsClient.getApplication(name);}ServicesClient
Service Description: Manages services of an application.
Sample for ServicesClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(ServicesClientservicesClient=ServicesClient.create()){GetServiceRequestrequest=GetServiceRequest.newBuilder().setName("name3373707").build();Serviceresponse=servicesClient.getService(request);}VersionsClient
Service Description: Manages versions of a service.
Sample for VersionsClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(VersionsClientversionsClient=VersionsClient.create()){GetVersionRequestrequest=GetVersionRequest.newBuilder().setName("name3373707").setView(VersionView.forNumber(0)).build();Versionresponse=versionsClient.getVersion(request);}InstancesClient
Service Description: Manages instances of a version.
Sample for InstancesClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(InstancesClientinstancesClient=InstancesClient.create()){GetInstanceRequestrequest=GetInstanceRequest.newBuilder().setName("name3373707").build();Instanceresponse=instancesClient.getInstance(request);}FirewallClient
Service Description: Firewall resources are used to define a collection of access control rules for an Application. Each rule is defined with a position which specifies the rule's order in the sequence of rules, an IP range to be matched against requests, and an action to take upon matching requests.
Every request is evaluated against the Firewall rules in priority order. Processesing stops at the first rule which matches the request's IP address. A final rule always specifies an action that applies to all remaining IP addresses. The default final rule for a newly-created application will be set to "allow" if not otherwise specified by the user.
Sample for FirewallClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(FirewallClientfirewallClient=FirewallClient.create()){BatchUpdateIngressRulesRequestrequest=BatchUpdateIngressRulesRequest.newBuilder().setName("name3373707").addAllIngressRules(newArrayList<FirewallRule>()).build();BatchUpdateIngressRulesResponseresponse=firewallClient.batchUpdateIngressRules(request);}AuthorizedDomainsClient
Service Description: Manages domains a user is authorized to administer. To authorize use of a domain, verify ownership viaWebmaster Central.
Sample for AuthorizedDomainsClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(AuthorizedDomainsClientauthorizedDomainsClient=AuthorizedDomainsClient.create()){ListAuthorizedDomainsRequestrequest=ListAuthorizedDomainsRequest.newBuilder().setParent("parent-995424086").setPageSize(883849137).setPageToken("pageToken873572522").build();for(AuthorizedDomainelement:authorizedDomainsClient.listAuthorizedDomains(request).iterateAll()){// doThingsWith(element);}}AuthorizedCertificatesClient
Service Description: Manages SSL certificates a user is authorized to administer. A user can administer any SSL certificates applicable to their authorized domains.
Sample for AuthorizedCertificatesClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(AuthorizedCertificatesClientauthorizedCertificatesClient=AuthorizedCertificatesClient.create()){GetAuthorizedCertificateRequestrequest=GetAuthorizedCertificateRequest.newBuilder().setName("name3373707").setView(AuthorizedCertificateView.forNumber(0)).build();AuthorizedCertificateresponse=authorizedCertificatesClient.getAuthorizedCertificate(request);}DomainMappingsClient
Service Description: Manages domains serving an application.
Sample for DomainMappingsClient:
// This snippet has been automatically generated and should be regarded as a code template only.// It will require modifications to work:// - It may require correct/in-range values for request initialization.// - It may require specifying regional endpoints when creating the service client as shown in// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_librarytry(DomainMappingsClientdomainMappingsClient=DomainMappingsClient.create()){GetDomainMappingRequestrequest=GetDomainMappingRequest.newBuilder().setName("name3373707").build();DomainMappingresponse=domainMappingsClient.getDomainMapping(request);}com.google.appengine.v1.firewall
com.google.appengine.v1.stub
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-01-31 UTC.