Get desktop application:
View/edit binary Protocol Buffers messages
A service that application uses to manipulate triggers and functions.
Returns a list of functions that belong to the requested project.
Request for the `ListFunctions` method.
Required. The project and location from which the function should be listed, specified in the format `projects/*/locations/*` If you want to list functions in all locations, use "-" in place of a location. When listing functions in all locations, if one or more location(s) are unreachable, the response will contain functions from all reachable locations along with the names of any unreachable locations.
Maximum number of functions to return per call.
The value returned by the last `ListFunctionsResponse`; indicates that this is a continuation of a prior `ListFunctions` call, and that the system should return the next page of data.
Response for the `ListFunctions` method.
The functions that match the request.
If not empty, indicates that there may be more functions that match the request; this value should be passed in a new [google.cloud.functions.v1beta2.ListFunctionsRequest][google.cloud.functions.v1beta2.ListFunctionsRequest] to get more functions.
Locations that could not be reached. The response does not include any functions from these locations.
Returns a function with the given name from the requested project.
Request for the `GetFunction` method.
Required. The name of the function which details should be obtained.
Creates a new function. If a function with the given name already exists in the specified project, the long running operation will return `ALREADY_EXISTS` error.
Request for the `CreateFunction` method.
Required. The project and location in which the function should be created, specified in the format `projects/*/locations/*`
Required. Function to be created.
Updates existing function.
Request for the `UpdateFunction` method.
Required. The name of the function to be updated.
Required. New version of the function.
Deletes a function with the given name from the specified project. If the given function is used by some trigger, the trigger will be updated to remove this function.
Request for the `DeleteFunction` method.
Required. The name of the function which should be deleted.
Synchronously invokes a deployed Cloud Function. To be used for testing purposes as very limited traffic is allowed. For more information on the actual limits refer to [API Calls]( https://cloud.google.com/functions/quotas#rate_limits).
Request for the `CallFunction` method.
Required. The name of the function to be called.
Required. Input to be passed to the function.
Response of `CallFunction` method.
Execution id of function invocation.
Result populated for successful execution of synchronous function. Will not be populated if function does not return a result through context.
Either system or user-function generated error. Set if execution was not successful.
Returns a signed URL for uploading a function source code. For more information about the signed URL usage see: https://cloud.google.com/storage/docs/access-control/signed-urls Once the function source code upload is complete, the used signed URL should be provided in CreateFunction or UpdateFunction request as a reference to the function source code. When uploading source code to the generated signed URL, please follow these restrictions: * Source file type should be a zip file. * Source file size should not exceed 100MB limit. * No credentials should be attached - the signed URLs provide access to the target bucket using internal service identity; if credentials were attached, the identity from the credentials would be used, but that identity does not have permissions to upload files to the URL. When making a HTTP PUT request, these two headers need to be specified: * `content-type: application/zip` * `x-goog-content-length-range: 0,104857600` And this header SHOULD NOT be specified: * `Authorization: Bearer YOUR_TOKEN`
Request of `GenerateUploadUrl` method.
The project and location in which the Google Cloud Storage signed URL should be generated, specified in the format `projects/*/locations/*`.
Response of `GenerateUploadUrl` method.
The generated Google Cloud Storage signed URL that should be used for a function source code upload. The uploaded file should be a zip archive which contains a function.
Returns a signed URL for downloading deployed function source code. The URL is only valid for a limited period and should be used within minutes after generation. For more information about the signed URL usage see: https://cloud.google.com/storage/docs/access-control/signed-urls
Request of `GenerateDownloadUrl` method.
The name of function for which source code Google Cloud Storage signed URL should be generated.
The optional version of function.
Response of `GenerateDownloadUrl` method.
The generated Google Cloud Storage signed URL that should be used for function source code download.
Describes a Cloud Function that contains user computation executed in response to an event. It encapsulate function and triggers configurations.
Used as response type in: CloudFunctionsService.GetFunction
Used as field type in:
, ,A user-defined name of the function. Function names must be unique globally and match pattern `projects/*/locations/*/functions/*`
The location of the function source code.
The Google Cloud Storage URL, starting with gs://, pointing to the zip archive which contains the function.
The hosted repository where the function is defined.
The URL pointing to the hosted repository where the function is defined. There are supported Cloud Source Repository URLs in the following formats: To refer to a specific commit: `https://source.developers.google.com/projects/*/repos/*/revisions/*/paths/*` To refer to a moveable alias (branch): `https://source.developers.google.com/projects/*/repos/*/moveable-aliases/*/paths/*` In particular, to refer to HEAD use `master` moveable alias. To refer to a specific fixed alias (tag): `https://source.developers.google.com/projects/*/repos/*/fixed-aliases/*/paths/*` You may omit `paths/*` if you want to use the main directory.
The Google Cloud Storage signed URL used for source uploading, generated by [google.cloud.functions.v1beta2.GenerateUploadUrl][]
An event that triggers the function.
An HTTPS endpoint type of source that can be triggered via URL.
A source that fires events in response to a condition in another service.
Output only. Status of the function deployment.
Output only. Name of the most recent operation modifying the function. If the function status is `DEPLOYING` or `DELETING`, then it points to the active operation.
The name of the function (as defined in source code) that will be executed. Defaults to the resource name suffix, if not specified. For backward compatibility, if function with given name is not found, then the system will try to use function named "function". For Node.js this is name of a function exported by the module specified in `source_location`.
The runtime in which to run the function. Required when deploying a new function, optional when updating an existing function. For a complete list of possible choices, see the [`gcloud` command reference](/sdk/gcloud/reference/functions/deploy#--runtime).
The function execution timeout. Execution is considered failed and can be terminated if the function is not completed at the end of the timeout period. Defaults to 60 seconds.
The amount of memory in MB available for a function. Defaults to 256MB.
The email of the function's service account. If empty, defaults to `{project_id}@appspot.gserviceaccount.com`.
Output only. The last update timestamp of a Cloud Function.
Output only. The version identifier of the Cloud Function. Each deployment attempt results in a new version of a function being created.
Labels associated with this Cloud Function.
Environment variables that shall be available during function execution.
The limit on the maximum number of function instances that may coexist at a given time.
The VPC Network that this cloud function can connect to. It can be either the fully-qualified URI, or the short name of the network resource. If the short network name is used, the network must belong to the same project. Otherwise, it must belong to a project within the same organization. The format of this field is either `projects/{project}/global/networks/{network}` or `{network}`, where {project} is a project id where the network is defined, and {network} is the short name of the network. This field is mutually exclusive with `vpc_connector` and will be replaced by it. See [the VPC documentation](https://cloud.google.com/compute/docs/vpc) for more information on connecting Cloud projects.
The VPC Network Connector that this cloud function can connect to. It can be either the fully-qualified URI, or the short name of the network connector resource. The format of this field is `projects/*/locations/*/connectors/*` This field is mutually exclusive with `network` field and will eventually replace it. See [the VPC documentation](https://cloud.google.com/compute/docs/vpc) for more information on connecting Cloud projects.
Describes the current stage of a deployment.
Used in:
Status not specified.
Successfully deployed.
Not deployed correctly - behavior is undefined. The item should be updated or deleted to move it out of this state.
Creation or update in progress.
Deletion in progress.
Describes EventTrigger, used to request events be sent from another service.
Used in:
`event_type` names contain the service that is sending an event and the kind of event that was fired. Must be of the form `providers/*/eventTypes/*` e.g. Directly handle a Message published to Google Cloud Pub/Sub `providers/cloud.pubsub/eventTypes/topic.publish`. Handle an object changing in Google Cloud Storage: `providers/cloud.storage/eventTypes/object.change` Handle a write to the Firebase Realtime Database: `providers/google.firebase.database/eventTypes/ref.write`
Which instance of the source's service should send events. E.g. for Pub/Sub this would be a Pub/Sub topic at `projects/*/topics/*`. For Google Cloud Storage this would be a bucket at `projects/*/buckets/*`. For any source that only supports one instance per-project, this should be the name of the project (`projects/*`)
The hostname of the service that should be observed. If no string is provided, the default service implementing the API will be used. For example, `storage.googleapis.com` is the default for all event types in the `google.storage` namespace.
Specifies policy for failed executions.
Describes the policy in case of function's execution failure. If empty, then defaults to ignoring failures (i.e. not retrying them).
Used in:
Defines the action taken in case of a function execution failure.
If specified, then the function will be retried in case of a failure.
Describes the retry policy in case of function's execution failure. A function execution will be retried on any failure. A failed execution will be retried up to 7 days with an exponential backoff (capped at 10 seconds). Retried execution is charged as any other execution.
Used in:
(message has no fields)
Describes HTTPSTrigger, could be used to connect web hooks to function.
Used in:
Output only. The deployed url for the function.
Metadata describing an [Operation][google.longrunning.Operation]
Target of the operation - for example projects/project-1/locations/region-1/functions/function-1
Type of operation.
The original request that started the operation.
Version id of the function created or updated by an API call. This field is only populated for Create and Update operations.
The last update timestamp of the operation.
A type of an operation.
Used in:
Unknown operation type.
Triggered by CreateFunction call
Triggered by UpdateFunction call
Triggered by DeleteFunction call.
Describes the location of the function source in a remote repository.
Used in:
URL to the hosted repository where the function is defined. Only paths in https://source.developers.google.com domain are supported. The path should contain the name of the repository.
The path within the repository where the function is defined. The path should point to the directory where Cloud Functions files are located. Use "/" if the function is defined directly in the root directory of a repository.
The version of a function. Defaults to the latest version of the master branch.
The name of the branch from which the function should be fetched.
The name of the tag that captures the state of the repository from which the function should be fetched.
The id of the revision that captures the state of the repository from which the function should be fetched.
Output only. The id of the revision that was resolved at the moment of function creation or update. For example when a user deployed from a branch, it will be the revision id of the latest change on this branch at that time. If user deployed from revision then this value will be always equal to the revision specified by the user.