publicfinalclass BuildConfigextendsGeneratedMessageV3implementsBuildConfigOrBuilder
Describes the Build step of the function that builds a container from the
given source.
Protobuf type google.cloud.functions.v2beta.BuildConfig
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
AUTOMATIC_UPDATE_POLICY_FIELD_NUMBER
publicstaticfinalintAUTOMATIC_UPDATE_POLICY_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
BUILD_FIELD_NUMBER
publicstaticfinalintBUILD_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
DOCKER_REGISTRY_FIELD_NUMBER
publicstaticfinalintDOCKER_REGISTRY_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
DOCKER_REPOSITORY_FIELD_NUMBER
publicstaticfinalintDOCKER_REPOSITORY_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
ENTRY_POINT_FIELD_NUMBER
publicstaticfinalintENTRY_POINT_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
ENVIRONMENT_VARIABLES_FIELD_NUMBER
publicstaticfinalintENVIRONMENT_VARIABLES_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
ON_DEPLOY_UPDATE_POLICY_FIELD_NUMBER
publicstaticfinalintON_DEPLOY_UPDATE_POLICY_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
RUNTIME_FIELD_NUMBER
publicstaticfinalintRUNTIME_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
SERVICE_ACCOUNT_FIELD_NUMBER
publicstaticfinalintSERVICE_ACCOUNT_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
SOURCE_FIELD_NUMBER
publicstaticfinalintSOURCE_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
SOURCE_PROVENANCE_FIELD_NUMBER
publicstaticfinalintSOURCE_PROVENANCE_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
WORKER_POOL_FIELD_NUMBER
publicstaticfinalintWORKER_POOL_FIELD_NUMBER
| Field Value |
| Type |
Description |
int |
Static Methods
getDefaultInstance()
publicstaticBuildConfiggetDefaultInstance()
getDescriptor()
publicstaticfinalDescriptors.DescriptorgetDescriptor()
newBuilder()
publicstaticBuildConfig.BuildernewBuilder()
newBuilder(BuildConfig prototype)
publicstaticBuildConfig.BuildernewBuilder(BuildConfigprototype)
publicstaticBuildConfigparseDelimitedFrom(InputStreaminput)
publicstaticBuildConfigparseDelimitedFrom(InputStreaminput,ExtensionRegistryLiteextensionRegistry)
parseFrom(byte[] data)
publicstaticBuildConfigparseFrom(byte[]data)
| Parameter |
| Name |
Description |
data |
byte[]
|
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
publicstaticBuildConfigparseFrom(byte[]data,ExtensionRegistryLiteextensionRegistry)
parseFrom(ByteString data)
publicstaticBuildConfigparseFrom(ByteStringdata)
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
publicstaticBuildConfigparseFrom(ByteStringdata,ExtensionRegistryLiteextensionRegistry)
publicstaticBuildConfigparseFrom(CodedInputStreaminput)
publicstaticBuildConfigparseFrom(CodedInputStreaminput,ExtensionRegistryLiteextensionRegistry)
publicstaticBuildConfigparseFrom(InputStreaminput)
publicstaticBuildConfigparseFrom(InputStreaminput,ExtensionRegistryLiteextensionRegistry)
parseFrom(ByteBuffer data)
publicstaticBuildConfigparseFrom(ByteBufferdata)
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
publicstaticBuildConfigparseFrom(ByteBufferdata,ExtensionRegistryLiteextensionRegistry)
parser()
publicstaticParser<BuildConfig>parser()
Methods
containsEnvironmentVariables(String key)
publicbooleancontainsEnvironmentVariables(Stringkey)
User-provided build-time environment variables for the function
map<string, string> environment_variables = 6;
| Parameter |
| Name |
Description |
key |
String
|
equals(Object obj)
publicbooleanequals(Objectobj)
| Parameter |
| Name |
Description |
obj |
Object
|
Overrides
getAutomaticUpdatePolicy()
publicAutomaticUpdatePolicygetAutomaticUpdatePolicy()
.google.cloud.functions.v2beta.AutomaticUpdatePolicy automatic_update_policy = 40;
getAutomaticUpdatePolicyOrBuilder()
publicAutomaticUpdatePolicyOrBuildergetAutomaticUpdatePolicyOrBuilder()
.google.cloud.functions.v2beta.AutomaticUpdatePolicy automatic_update_policy = 40;
getBuild()
Output only. The Cloud Build name of the latest successful deployment of
the function.
string build = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
| Returns |
| Type |
Description |
String |
The build.
|
getBuildBytes()
publicByteStringgetBuildBytes()
Output only. The Cloud Build name of the latest successful deployment of
the function.
string build = 1 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... }
| Returns |
| Type |
Description |
ByteString |
The bytes for build.
|
getDefaultInstanceForType()
publicBuildConfiggetDefaultInstanceForType()
getDockerRegistry()
publicBuildConfig.DockerRegistrygetDockerRegistry()
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.
.google.cloud.functions.v2beta.BuildConfig.DockerRegistry docker_registry = 10;
getDockerRegistryValue()
publicintgetDockerRegistryValue()
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.
.google.cloud.functions.v2beta.BuildConfig.DockerRegistry docker_registry = 10;
| Returns |
| Type |
Description |
int |
The enum numeric value on the wire for dockerRegistry.
|
getDockerRepository()
publicStringgetDockerRepository()
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'.
string docker_repository = 7 [(.google.api.resource_reference) = { ... }
| Returns |
| Type |
Description |
String |
The dockerRepository.
|
getDockerRepositoryBytes()
publicByteStringgetDockerRepositoryBytes()
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'.
string docker_repository = 7 [(.google.api.resource_reference) = { ... }
| Returns |
| Type |
Description |
ByteString |
The bytes for dockerRepository.
|
getEntryPoint()
publicStringgetEntryPoint()
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.
string entry_point = 3;
| Returns |
| Type |
Description |
String |
The entryPoint.
|
getEntryPointBytes()
publicByteStringgetEntryPointBytes()
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.
string entry_point = 3;
| Returns |
| Type |
Description |
ByteString |
The bytes for entryPoint.
|
getEnvironmentVariables() (deprecated)
publicMap<String,String>getEnvironmentVariables()
getEnvironmentVariablesCount()
publicintgetEnvironmentVariablesCount()
User-provided build-time environment variables for the function
map<string, string> environment_variables = 6;
| Returns |
| Type |
Description |
int |
getEnvironmentVariablesMap()
publicMap<String,String>getEnvironmentVariablesMap()
User-provided build-time environment variables for the function
map<string, string> environment_variables = 6;
getEnvironmentVariablesOrDefault(String key, String defaultValue)
publicStringgetEnvironmentVariablesOrDefault(Stringkey,StringdefaultValue)
User-provided build-time environment variables for the function
map<string, string> environment_variables = 6;
| Returns |
| Type |
Description |
String |
getEnvironmentVariablesOrThrow(String key)
publicStringgetEnvironmentVariablesOrThrow(Stringkey)
User-provided build-time environment variables for the function
map<string, string> environment_variables = 6;
| Parameter |
| Name |
Description |
key |
String
|
| Returns |
| Type |
Description |
String |
getOnDeployUpdatePolicy()
publicOnDeployUpdatePolicygetOnDeployUpdatePolicy()
.google.cloud.functions.v2beta.OnDeployUpdatePolicy on_deploy_update_policy = 41;
getOnDeployUpdatePolicyOrBuilder()
publicOnDeployUpdatePolicyOrBuildergetOnDeployUpdatePolicyOrBuilder()
.google.cloud.functions.v2beta.OnDeployUpdatePolicy on_deploy_update_policy = 41;
getParserForType()
publicParser<BuildConfig>getParserForType()
Overrides
getRuntime()
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.
string runtime = 2;
| Returns |
| Type |
Description |
String |
The runtime.
|
getRuntimeBytes()
publicByteStringgetRuntimeBytes()
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.
string runtime = 2;
| Returns |
| Type |
Description |
ByteString |
The bytes for runtime.
|
getRuntimeUpdatePolicyCase()
publicBuildConfig.RuntimeUpdatePolicyCasegetRuntimeUpdatePolicyCase()
getSerializedSize()
publicintgetSerializedSize()
| Returns |
| Type |
Description |
int |
Overrides
getServiceAccount()
publicStringgetServiceAccount()
Service account to be used for building the container. The format of this
field is projects/{projectId}/serviceAccounts/{serviceAccountEmail}.
string service_account = 27;
| Returns |
| Type |
Description |
String |
The serviceAccount.
|
getServiceAccountBytes()
publicByteStringgetServiceAccountBytes()
Service account to be used for building the container. The format of this
field is projects/{projectId}/serviceAccounts/{serviceAccountEmail}.
string service_account = 27;
| Returns |
| Type |
Description |
ByteString |
The bytes for serviceAccount.
|
getSource()
The location of the function source code.
.google.cloud.functions.v2beta.Source source = 4;
| Returns |
| Type |
Description |
Source |
The source.
|
getSourceOrBuilder()
publicSourceOrBuildergetSourceOrBuilder()
The location of the function source code.
.google.cloud.functions.v2beta.Source source = 4;
getSourceProvenance()
publicSourceProvenancegetSourceProvenance()
Output only. A permanent fixed identifier for source.
.google.cloud.functions.v2beta.SourceProvenance source_provenance = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
getSourceProvenanceOrBuilder()
publicSourceProvenanceOrBuildergetSourceProvenanceOrBuilder()
Output only. A permanent fixed identifier for source.
.google.cloud.functions.v2beta.SourceProvenance source_provenance = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
getWorkerPool()
publicStringgetWorkerPool()
Name of the Cloud Build Custom Worker Pool that should be used to build the
function. The format of this field is
projects/{project}/locations/{region}/workerPools/{workerPool} where
{project} and {region} are the project id and region respectively where the
worker pool is defined and {workerPool} is the short name of the worker
pool.
If the project id is not the same as the function, then the Cloud
Functions Service Agent
(service-<project_number>@gcf-admin-robot.iam.gserviceaccount.com) must be
granted the role Cloud Build Custom Workers Builder
(roles/cloudbuild.customworkers.builder) in the project.
string worker_pool = 5 [(.google.api.resource_reference) = { ... }
| Returns |
| Type |
Description |
String |
The workerPool.
|
getWorkerPoolBytes()
publicByteStringgetWorkerPoolBytes()
Name of the Cloud Build Custom Worker Pool that should be used to build the
function. The format of this field is
projects/{project}/locations/{region}/workerPools/{workerPool} where
{project} and {region} are the project id and region respectively where the
worker pool is defined and {workerPool} is the short name of the worker
pool.
If the project id is not the same as the function, then the Cloud
Functions Service Agent
(service-<project_number>@gcf-admin-robot.iam.gserviceaccount.com) must be
granted the role Cloud Build Custom Workers Builder
(roles/cloudbuild.customworkers.builder) in the project.
string worker_pool = 5 [(.google.api.resource_reference) = { ... }
| Returns |
| Type |
Description |
ByteString |
The bytes for workerPool.
|
hasAutomaticUpdatePolicy()
publicbooleanhasAutomaticUpdatePolicy()
.google.cloud.functions.v2beta.AutomaticUpdatePolicy automatic_update_policy = 40;
| Returns |
| Type |
Description |
boolean |
Whether the automaticUpdatePolicy field is set.
|
hasOnDeployUpdatePolicy()
publicbooleanhasOnDeployUpdatePolicy()
.google.cloud.functions.v2beta.OnDeployUpdatePolicy on_deploy_update_policy = 41;
| Returns |
| Type |
Description |
boolean |
Whether the onDeployUpdatePolicy field is set.
|
hasSource()
The location of the function source code.
.google.cloud.functions.v2beta.Source source = 4;
| Returns |
| Type |
Description |
boolean |
Whether the source field is set.
|
hasSourceProvenance()
publicbooleanhasSourceProvenance()
Output only. A permanent fixed identifier for source.
.google.cloud.functions.v2beta.SourceProvenance source_provenance = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
| Returns |
| Type |
Description |
boolean |
Whether the sourceProvenance field is set.
|
hashCode()
| Returns |
| Type |
Description |
int |
Overrides
internalGetFieldAccessorTable()
protectedGeneratedMessageV3.FieldAccessorTableinternalGetFieldAccessorTable()
Overrides
internalGetMapFieldReflection(int number)
protectedMapFieldReflectionAccessorinternalGetMapFieldReflection(intnumber)
| Parameter |
| Name |
Description |
number |
int
|
| Returns |
| Type |
Description |
com.google.protobuf.MapFieldReflectionAccessor |
Overrides
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
isInitialized()
publicfinalbooleanisInitialized()
Overrides
newBuilderForType()
publicBuildConfig.BuildernewBuilderForType()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protectedBuildConfig.BuildernewBuilderForType(GeneratedMessageV3.BuilderParentparent)
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protectedObjectnewInstance(GeneratedMessageV3.UnusedPrivateParameterunused)
| Returns |
| Type |
Description |
Object |
Overrides
toBuilder()
publicBuildConfig.BuildertoBuilder()
writeTo(CodedOutputStream output)
publicvoidwriteTo(CodedOutputStreamoutput)
Overrides