Package com.google.appengine.v1.stub (2.3.3)

Classes

ApplicationsStub

Base stub class for the Applications service API.

This class is for advanced usage and reflects the underlying API directly.

ApplicationsStubSettings

Settings class to configure an instance of ApplicationsStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of getApplication to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 ApplicationsStubSettings.Builder applicationsSettingsBuilder =
     ApplicationsStubSettings.newBuilder();
 applicationsSettingsBuilder
     .getApplicationSettings()
     .setRetrySettings(
         applicationsSettingsBuilder
             .getApplicationSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ApplicationsStubSettings applicationsSettings = applicationsSettingsBuilder.build();
 

ApplicationsStubSettings.Builder

Builder for ApplicationsStubSettings.

AuthorizedCertificatesStub

Base stub class for the AuthorizedCertificates service API.

This class is for advanced usage and reflects the underlying API directly.

AuthorizedCertificatesStubSettings

Settings class to configure an instance of AuthorizedCertificatesStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of getAuthorizedCertificate to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 AuthorizedCertificatesStubSettings.Builder authorizedCertificatesSettingsBuilder =
     AuthorizedCertificatesStubSettings.newBuilder();
 authorizedCertificatesSettingsBuilder
     .getAuthorizedCertificateSettings()
     .setRetrySettings(
         authorizedCertificatesSettingsBuilder
             .getAuthorizedCertificateSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 AuthorizedCertificatesStubSettings authorizedCertificatesSettings =
     authorizedCertificatesSettingsBuilder.build();
 

AuthorizedCertificatesStubSettings.Builder

Builder for AuthorizedCertificatesStubSettings.

AuthorizedDomainsStub

Base stub class for the AuthorizedDomains service API.

This class is for advanced usage and reflects the underlying API directly.

AuthorizedDomainsStubSettings

Settings class to configure an instance of AuthorizedDomainsStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of listAuthorizedDomains to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 AuthorizedDomainsStubSettings.Builder authorizedDomainsSettingsBuilder =
     AuthorizedDomainsStubSettings.newBuilder();
 authorizedDomainsSettingsBuilder
     .listAuthorizedDomainsSettings()
     .setRetrySettings(
         authorizedDomainsSettingsBuilder
             .listAuthorizedDomainsSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 AuthorizedDomainsStubSettings authorizedDomainsSettings =
     authorizedDomainsSettingsBuilder.build();
 

AuthorizedDomainsStubSettings.Builder

Builder for AuthorizedDomainsStubSettings.

DomainMappingsStub

Base stub class for the DomainMappings service API.

This class is for advanced usage and reflects the underlying API directly.

DomainMappingsStubSettings

Settings class to configure an instance of DomainMappingsStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of getDomainMapping to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 DomainMappingsStubSettings.Builder domainMappingsSettingsBuilder =
     DomainMappingsStubSettings.newBuilder();
 domainMappingsSettingsBuilder
     .getDomainMappingSettings()
     .setRetrySettings(
         domainMappingsSettingsBuilder
             .getDomainMappingSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 DomainMappingsStubSettings domainMappingsSettings = domainMappingsSettingsBuilder.build();
 

DomainMappingsStubSettings.Builder

Builder for DomainMappingsStubSettings.

FirewallStub

Base stub class for the Firewall service API.

This class is for advanced usage and reflects the underlying API directly.

FirewallStubSettings

Settings class to configure an instance of FirewallStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of batchUpdateIngressRules to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 FirewallStubSettings.Builder firewallSettingsBuilder = FirewallStubSettings.newBuilder();
 firewallSettingsBuilder
     .batchUpdateIngressRulesSettings()
     .setRetrySettings(
         firewallSettingsBuilder
             .batchUpdateIngressRulesSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 FirewallStubSettings firewallSettings = firewallSettingsBuilder.build();
 

FirewallStubSettings.Builder

Builder for FirewallStubSettings.

GrpcApplicationsCallableFactory

gRPC callable factory implementation for the Applications service API.

This class is for advanced usage.

GrpcApplicationsStub

gRPC stub implementation for the Applications service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcAuthorizedCertificatesCallableFactory

gRPC callable factory implementation for the AuthorizedCertificates service API.

This class is for advanced usage.

GrpcAuthorizedCertificatesStub

gRPC stub implementation for the AuthorizedCertificates service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcAuthorizedDomainsCallableFactory

gRPC callable factory implementation for the AuthorizedDomains service API.

This class is for advanced usage.

GrpcAuthorizedDomainsStub

gRPC stub implementation for the AuthorizedDomains service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcDomainMappingsCallableFactory

gRPC callable factory implementation for the DomainMappings service API.

This class is for advanced usage.

GrpcDomainMappingsStub

gRPC stub implementation for the DomainMappings service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcFirewallCallableFactory

gRPC callable factory implementation for the Firewall service API.

This class is for advanced usage.

GrpcFirewallStub

gRPC stub implementation for the Firewall service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcInstancesCallableFactory

gRPC callable factory implementation for the Instances service API.

This class is for advanced usage.

GrpcInstancesStub

gRPC stub implementation for the Instances service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcServicesCallableFactory

gRPC callable factory implementation for the Services service API.

This class is for advanced usage.

GrpcServicesStub

gRPC stub implementation for the Services service API.

This class is for advanced usage and reflects the underlying API directly.

GrpcVersionsCallableFactory

gRPC callable factory implementation for the Versions service API.

This class is for advanced usage.

GrpcVersionsStub

gRPC stub implementation for the Versions service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonApplicationsCallableFactory

REST callable factory implementation for the Applications service API.

This class is for advanced usage.

HttpJsonApplicationsStub

REST stub implementation for the Applications service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonAuthorizedCertificatesCallableFactory

REST callable factory implementation for the AuthorizedCertificates service API.

This class is for advanced usage.

HttpJsonAuthorizedCertificatesStub

REST stub implementation for the AuthorizedCertificates service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonAuthorizedDomainsCallableFactory

REST callable factory implementation for the AuthorizedDomains service API.

This class is for advanced usage.

HttpJsonAuthorizedDomainsStub

REST stub implementation for the AuthorizedDomains service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonDomainMappingsCallableFactory

REST callable factory implementation for the DomainMappings service API.

This class is for advanced usage.

HttpJsonDomainMappingsStub

REST stub implementation for the DomainMappings service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonFirewallCallableFactory

REST callable factory implementation for the Firewall service API.

This class is for advanced usage.

HttpJsonFirewallStub

REST stub implementation for the Firewall service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonInstancesCallableFactory

REST callable factory implementation for the Instances service API.

This class is for advanced usage.

HttpJsonInstancesStub

REST stub implementation for the Instances service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonServicesCallableFactory

REST callable factory implementation for the Services service API.

This class is for advanced usage.

HttpJsonServicesStub

REST stub implementation for the Services service API.

This class is for advanced usage and reflects the underlying API directly.

HttpJsonVersionsCallableFactory

REST callable factory implementation for the Versions service API.

This class is for advanced usage.

HttpJsonVersionsStub

REST stub implementation for the Versions service API.

This class is for advanced usage and reflects the underlying API directly.

InstancesStub

Base stub class for the Instances service API.

This class is for advanced usage and reflects the underlying API directly.

InstancesStubSettings

Settings class to configure an instance of InstancesStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of getInstance to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 InstancesStubSettings.Builder instancesSettingsBuilder = InstancesStubSettings.newBuilder();
 instancesSettingsBuilder
     .getInstanceSettings()
     .setRetrySettings(
         instancesSettingsBuilder
             .getInstanceSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 InstancesStubSettings instancesSettings = instancesSettingsBuilder.build();
 

InstancesStubSettings.Builder

Builder for InstancesStubSettings.

ServicesStub

Base stub class for the Services service API.

This class is for advanced usage and reflects the underlying API directly.

ServicesStubSettings

Settings class to configure an instance of ServicesStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of getService to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 ServicesStubSettings.Builder servicesSettingsBuilder = ServicesStubSettings.newBuilder();
 servicesSettingsBuilder
     .getServiceSettings()
     .setRetrySettings(
         servicesSettingsBuilder
             .getServiceSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 ServicesStubSettings servicesSettings = servicesSettingsBuilder.build();
 

ServicesStubSettings.Builder

Builder for ServicesStubSettings.

VersionsStub

Base stub class for the Versions service API.

This class is for advanced usage and reflects the underlying API directly.

VersionsStubSettings

Settings class to configure an instance of VersionsStub.

The default instance has everything set to sensible defaults:

  • The default service address (appengine.googleapis.com) and default port (443) are used.
  • Credentials are acquired automatically through Application Default Credentials.
  • Retries are configured for idempotent methods but not for non-idempotent methods.

The builder of this class is recursive, so contained classes are themselves builders. When build() is called, the tree of builders is called to create the complete settings object.

For example, to set the total timeout of getVersion to 30 seconds:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 VersionsStubSettings.Builder versionsSettingsBuilder = VersionsStubSettings.newBuilder();
 versionsSettingsBuilder
     .getVersionSettings()
     .setRetrySettings(
         versionsSettingsBuilder
             .getVersionSettings()
             .getRetrySettings()
             .toBuilder()
             .setTotalTimeout(Duration.ofSeconds(30))
             .build());
 VersionsStubSettings versionsSettings = versionsSettingsBuilder.build();
 

VersionsStubSettings.Builder

Builder for VersionsStubSettings.