- 2.54.0 (latest)
- 2.53.0
- 2.51.0
- 2.50.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.39.0
- 2.38.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.26.0
- 2.25.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.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.4
- 2.4.3
- 2.3.6
A client to Cloud Functions API
The interfaces provided are listed below, along with usage samples.
CloudFunctionsServiceClient
Service Description: A service that application uses to manipulate triggers and functions.
Sample for CloudFunctionsServiceClient:
// 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_library
try (CloudFunctionsServiceClient cloudFunctionsServiceClient =
CloudFunctionsServiceClient.create()) {
CloudFunctionName name = CloudFunctionName.of("[PROJECT]", "[LOCATION]", "[FUNCTION]");
CloudFunction response = cloudFunctionsServiceClient.getFunction(name);
}
Classes
CallFunctionRequest
Request for the CallFunction
method.
Protobuf type google.cloud.functions.v1.CallFunctionRequest
CallFunctionRequest.Builder
Request for the CallFunction
method.
Protobuf type google.cloud.functions.v1.CallFunctionRequest
CallFunctionResponse
Response of CallFunction
method.
Protobuf type google.cloud.functions.v1.CallFunctionResponse
CallFunctionResponse.Builder
Response of CallFunction
method.
Protobuf type google.cloud.functions.v1.CallFunctionResponse
CloudFunction
Describes a Cloud Function that contains user computation executed in response to an event. It encapsulates function and triggers configurations.
Protobuf type google.cloud.functions.v1.CloudFunction
CloudFunction.Builder
Describes a Cloud Function that contains user computation executed in response to an event. It encapsulates function and triggers configurations.
Protobuf type google.cloud.functions.v1.CloudFunction
CloudFunctionName
CloudFunctionName.Builder
Builder for projects/{project}/locations/{location}/functions/{function}.
CloudFunctionsServiceClient
Service Description: A service that application uses to manipulate triggers and functions.
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
// 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_library
try (CloudFunctionsServiceClient cloudFunctionsServiceClient =
CloudFunctionsServiceClient.create()) {
CloudFunctionName name = CloudFunctionName.of("[PROJECT]", "[LOCATION]", "[FUNCTION]");
CloudFunction response = cloudFunctionsServiceClient.getFunction(name);
}
Note: close() needs to be called on the CloudFunctionsServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of CloudFunctionsServiceSettings to create(). For example:
To customize credentials:
// 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_library
CloudFunctionsServiceSettings cloudFunctionsServiceSettings =
CloudFunctionsServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
CloudFunctionsServiceClient cloudFunctionsServiceClient =
CloudFunctionsServiceClient.create(cloudFunctionsServiceSettings);
To customize the endpoint:
// 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_library
CloudFunctionsServiceSettings cloudFunctionsServiceSettings =
CloudFunctionsServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
CloudFunctionsServiceClient cloudFunctionsServiceClient =
CloudFunctionsServiceClient.create(cloudFunctionsServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// 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_library
CloudFunctionsServiceSettings cloudFunctionsServiceSettings =
CloudFunctionsServiceSettings.newHttpJsonBuilder().build();
CloudFunctionsServiceClient cloudFunctionsServiceClient =
CloudFunctionsServiceClient.create(cloudFunctionsServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
CloudFunctionsServiceClient.ListFunctionsFixedSizeCollection
CloudFunctionsServiceClient.ListFunctionsPage
CloudFunctionsServiceClient.ListFunctionsPagedResponse
CloudFunctionsServiceClient.ListLocationsFixedSizeCollection
CloudFunctionsServiceClient.ListLocationsPage
CloudFunctionsServiceClient.ListLocationsPagedResponse
CloudFunctionsServiceGrpc
A service that application uses to manipulate triggers and functions.
CloudFunctionsServiceGrpc.CloudFunctionsServiceBlockingStub
A stub to allow clients to do synchronous rpc calls to service CloudFunctionsService.
A service that application uses to manipulate triggers and functions.
CloudFunctionsServiceGrpc.CloudFunctionsServiceFutureStub
A stub to allow clients to do ListenableFuture-style rpc calls to service CloudFunctionsService.
A service that application uses to manipulate triggers and functions.
CloudFunctionsServiceGrpc.CloudFunctionsServiceImplBase
Base class for the server implementation of the service CloudFunctionsService.
A service that application uses to manipulate triggers and functions.
CloudFunctionsServiceGrpc.CloudFunctionsServiceStub
A stub to allow clients to do asynchronous rpc calls to service CloudFunctionsService.
A service that application uses to manipulate triggers and functions.
CloudFunctionsServiceSettings
Settings class to configure an instance of CloudFunctionsServiceClient.
The default instance has everything set to sensible defaults:
- The default service address (cloudfunctions.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 getFunction to 30 seconds:
// 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_library
CloudFunctionsServiceSettings.Builder cloudFunctionsServiceSettingsBuilder =
CloudFunctionsServiceSettings.newBuilder();
cloudFunctionsServiceSettingsBuilder
.getFunctionSettings()
.setRetrySettings(
cloudFunctionsServiceSettingsBuilder
.getFunctionSettings()
.getRetrySettings()
.toBuilder()
.setTotalTimeout(Duration.ofSeconds(30))
.build());
CloudFunctionsServiceSettings cloudFunctionsServiceSettings =
cloudFunctionsServiceSettingsBuilder.build();
CloudFunctionsServiceSettings.Builder
Builder for CloudFunctionsServiceSettings.
CreateFunctionRequest
Request for the CreateFunction
method.
Protobuf type google.cloud.functions.v1.CreateFunctionRequest
CreateFunctionRequest.Builder
Request for the CreateFunction
method.
Protobuf type google.cloud.functions.v1.CreateFunctionRequest
CryptoKeyName
CryptoKeyName.Builder
Builder for projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.
DeleteFunctionRequest
Request for the DeleteFunction
method.
Protobuf type google.cloud.functions.v1.DeleteFunctionRequest
DeleteFunctionRequest.Builder
Request for the DeleteFunction
method.
Protobuf type google.cloud.functions.v1.DeleteFunctionRequest
EventTrigger
Describes EventTrigger, used to request that events be sent from another service.
Protobuf type google.cloud.functions.v1.EventTrigger
EventTrigger.Builder
Describes EventTrigger, used to request that events be sent from another service.
Protobuf type google.cloud.functions.v1.EventTrigger
FailurePolicy
Describes the policy in case of function's execution failure. If empty, then defaults to ignoring failures (i.e., not retrying them).
Protobuf type google.cloud.functions.v1.FailurePolicy
FailurePolicy.Builder
Describes the policy in case of function's execution failure. If empty, then defaults to ignoring failures (i.e., not retrying them).
Protobuf type google.cloud.functions.v1.FailurePolicy
FailurePolicy.Retry
Describes the retry policy in case of function's execution failure. A function execution is retried on any failure. A failed execution is retried up to 7 days with an exponential backoff (capped at 10 seconds). Retried execution is charged as any other execution.
Protobuf type google.cloud.functions.v1.FailurePolicy.Retry
FailurePolicy.Retry.Builder
Describes the retry policy in case of function's execution failure. A function execution is retried on any failure. A failed execution is retried up to 7 days with an exponential backoff (capped at 10 seconds). Retried execution is charged as any other execution.
Protobuf type google.cloud.functions.v1.FailurePolicy.Retry
FunctionsOperationsProto
FunctionsProto
GenerateDownloadUrlRequest
Request of GenerateDownloadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateDownloadUrlRequest
GenerateDownloadUrlRequest.Builder
Request of GenerateDownloadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateDownloadUrlRequest
GenerateDownloadUrlResponse
Response of GenerateDownloadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateDownloadUrlResponse
GenerateDownloadUrlResponse.Builder
Response of GenerateDownloadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateDownloadUrlResponse
GenerateUploadUrlRequest
Request of GenerateSourceUploadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateUploadUrlRequest
GenerateUploadUrlRequest.Builder
Request of GenerateSourceUploadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateUploadUrlRequest
GenerateUploadUrlResponse
Response of GenerateSourceUploadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateUploadUrlResponse
GenerateUploadUrlResponse.Builder
Response of GenerateSourceUploadUrl
method.
Protobuf type google.cloud.functions.v1.GenerateUploadUrlResponse
GetFunctionRequest
Request for the GetFunction
method.
Protobuf type google.cloud.functions.v1.GetFunctionRequest
GetFunctionRequest.Builder
Request for the GetFunction
method.
Protobuf type google.cloud.functions.v1.GetFunctionRequest
HttpsTrigger
Describes HttpsTrigger, could be used to connect web hooks to function.
Protobuf type google.cloud.functions.v1.HttpsTrigger
HttpsTrigger.Builder
Describes HttpsTrigger, could be used to connect web hooks to function.
Protobuf type google.cloud.functions.v1.HttpsTrigger
ListFunctionsRequest
Request for the ListFunctions
method.
Protobuf type google.cloud.functions.v1.ListFunctionsRequest
ListFunctionsRequest.Builder
Request for the ListFunctions
method.
Protobuf type google.cloud.functions.v1.ListFunctionsRequest
ListFunctionsResponse
Response for the ListFunctions
method.
Protobuf type google.cloud.functions.v1.ListFunctionsResponse
ListFunctionsResponse.Builder
Response for the ListFunctions
method.
Protobuf type google.cloud.functions.v1.ListFunctionsResponse
LocationName
LocationName.Builder
Builder for projects/{project}/locations/{location}.
OperationMetadataV1
Metadata describing an Operation
Protobuf type google.cloud.functions.v1.OperationMetadataV1
OperationMetadataV1.Builder
Metadata describing an Operation
Protobuf type google.cloud.functions.v1.OperationMetadataV1
SecretEnvVar
Configuration for a secret environment variable. It has the information necessary to fetch the secret value from Secret Manager and expose it as an environment variable.
Protobuf type google.cloud.functions.v1.SecretEnvVar
SecretEnvVar.Builder
Configuration for a secret environment variable. It has the information necessary to fetch the secret value from Secret Manager and expose it as an environment variable.
Protobuf type google.cloud.functions.v1.SecretEnvVar
SecretVolume
Configuration for a secret volume. It has the information necessary to fetch the secret value from Secret Manager and make it available as files mounted at the requested paths within the application container. Secret value is not a part of the configuration. Every file system read operation performs a lookup in Secret Manager to retrieve the secret value.
Protobuf type google.cloud.functions.v1.SecretVolume
SecretVolume.Builder
Configuration for a secret volume. It has the information necessary to fetch the secret value from Secret Manager and make it available as files mounted at the requested paths within the application container. Secret value is not a part of the configuration. Every file system read operation performs a lookup in Secret Manager to retrieve the secret value.
Protobuf type google.cloud.functions.v1.SecretVolume
SecretVolume.SecretVersion
Configuration for a single version.
Protobuf type google.cloud.functions.v1.SecretVolume.SecretVersion
SecretVolume.SecretVersion.Builder
Configuration for a single version.
Protobuf type google.cloud.functions.v1.SecretVolume.SecretVersion
SourceRepository
Describes SourceRepository, used to represent parameters related to source repository where a function is hosted.
Protobuf type google.cloud.functions.v1.SourceRepository
SourceRepository.Builder
Describes SourceRepository, used to represent parameters related to source repository where a function is hosted.
Protobuf type google.cloud.functions.v1.SourceRepository
UpdateFunctionRequest
Request for the UpdateFunction
method.
Protobuf type google.cloud.functions.v1.UpdateFunctionRequest
UpdateFunctionRequest.Builder
Request for the UpdateFunction
method.
Protobuf type google.cloud.functions.v1.UpdateFunctionRequest
Interfaces
CallFunctionRequestOrBuilder
CallFunctionResponseOrBuilder
CloudFunctionOrBuilder
CloudFunctionsServiceGrpc.AsyncService
A service that application uses to manipulate triggers and functions.
CreateFunctionRequestOrBuilder
DeleteFunctionRequestOrBuilder
EventTriggerOrBuilder
FailurePolicy.RetryOrBuilder
FailurePolicyOrBuilder
GenerateDownloadUrlRequestOrBuilder
GenerateDownloadUrlResponseOrBuilder
GenerateUploadUrlRequestOrBuilder
GenerateUploadUrlResponseOrBuilder
GetFunctionRequestOrBuilder
HttpsTriggerOrBuilder
ListFunctionsRequestOrBuilder
ListFunctionsResponseOrBuilder
OperationMetadataV1OrBuilder
SecretEnvVarOrBuilder
SecretVolume.SecretVersionOrBuilder
SecretVolumeOrBuilder
SourceRepositoryOrBuilder
UpdateFunctionRequestOrBuilder
Enums
CloudFunction.DockerRegistry
Docker Registry to use for storing function Docker images.
Protobuf enum google.cloud.functions.v1.CloudFunction.DockerRegistry
CloudFunction.IngressSettings
Available ingress settings.
This controls what traffic can reach the function.
If unspecified, ALLOW_ALL is used.
Protobuf enum google.cloud.functions.v1.CloudFunction.IngressSettings
CloudFunction.SourceCodeCase
CloudFunction.TriggerCase
CloudFunction.VpcConnectorEgressSettings
Available egress settings.
This controls what traffic is diverted through the Serverless VPC Access connector resource. By default, PRIVATE_RANGES_ONLY is used.
Protobuf enum google.cloud.functions.v1.CloudFunction.VpcConnectorEgressSettings
CloudFunctionStatus
Describes the current stage of a deployment.
Protobuf enum google.cloud.functions.v1.CloudFunctionStatus
FailurePolicy.ActionCase
HttpsTrigger.SecurityLevel
Available security-level settings.
This controls the methods to enforce security (HTTPS) on a URL.
If unspecified, SECURE_OPTIONAL is used.
Protobuf enum google.cloud.functions.v1.HttpsTrigger.SecurityLevel
OperationType
A type of an operation.
Protobuf enum google.cloud.functions.v1.OperationType