Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of CloudFunctions client #12594

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.CloudFunctions.V2 do
API client metadata for GoogleApi.CloudFunctions.V2.
"""

@discovery_revision "20241024"
@discovery_revision "20241117"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule GoogleApi.CloudFunctions.V2.Model.BuildConfig do
* `automaticUpdatePolicy` (*type:* `GoogleApi.CloudFunctions.V2.Model.AutomaticUpdatePolicy.t`, *default:* `nil`) -
* `build` (*type:* `String.t`, *default:* `nil`) - Output only. The Cloud Build name of the latest successful deployment of the function.
* `dockerRegistry` (*type:* `String.t`, *default:* `nil`) - Docker Registry to use for this deployment. This configuration is only applicable to 1st Gen functions, 2nd Gen functions can only use Artifact Registry. If unspecified, it defaults to `ARTIFACT_REGISTRY`. If `docker_repository` field is specified, this field should either be left unspecified or set to `ARTIFACT_REGISTRY`.
* `dockerRepository` (*type:* `String.t`, *default:* `nil`) - Repository in Artifact Registry to which the function docker image will be pushed after it is built by Cloud Build. If specified by user, it is created and managed by user with a customer managed encryption key. Otherwise, GCF will create and use a repository named 'gcf-artifacts' for every deployed region. It must match the pattern `projects/{project}/locations/{location}/repositories/{repository}`. Cross-project repositories are not supported. Cross-location repositories are not supported. Repository format must be 'DOCKER'.
* `dockerRepository` (*type:* `String.t`, *default:* `nil`) - Repository in Artifact Registry to which the function docker image will be pushed after it is built by Cloud Build. If specified by user, it is created and managed by user with a customer managed encryption key. Otherwise, GCF will create and use a repository named 'gcf-artifacts' for every deployed region. It must match the pattern `projects/{project}/locations/{location}/repositories/{repository}`. Repository format must be 'DOCKER'.
* `entryPoint` (*type:* `String.t`, *default:* `nil`) - 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`.
* `environmentVariables` (*type:* `map()`, *default:* `nil`) - User-provided build-time environment variables for the function
* `onDeployUpdatePolicy` (*type:* `GoogleApi.CloudFunctions.V2.Model.OnDeployUpdatePolicy.t`, *default:* `nil`) -
Expand Down
2 changes: 1 addition & 1 deletion clients/cloud_functions/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.CloudFunctions.Mixfile do
use Mix.Project

@version "0.41.1"
@version "0.41.2"

def project() do
[
Expand Down
Loading