Class Function.Builder (2.43.0)

public static final class Function.Builder extends GeneratedMessageV3.Builder<Function.Builder> implements FunctionOrBuilder

Describes a Cloud Function that contains user computation executed in response to an event. It encapsulates function and trigger configurations.

Protobuf type google.cloud.functions.v2.Function

Implements

FunctionOrBuilder

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

Methods

addAllStateMessages(Iterable<? extends StateMessage> values)

public Function.Builder addAllStateMessages(Iterable<? extends StateMessage> values)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valuesIterable<? extends com.google.cloud.functions.v2.StateMessage>
Returns
TypeDescription
Function.Builder

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public Function.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
Function.Builder
Overrides

addStateMessages(StateMessage value)

public Function.Builder addStateMessages(StateMessage value)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueStateMessage
Returns
TypeDescription
Function.Builder

addStateMessages(StateMessage.Builder builderForValue)

public Function.Builder addStateMessages(StateMessage.Builder builderForValue)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
builderForValueStateMessage.Builder
Returns
TypeDescription
Function.Builder

addStateMessages(int index, StateMessage value)

public Function.Builder addStateMessages(int index, StateMessage value)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
valueStateMessage
Returns
TypeDescription
Function.Builder

addStateMessages(int index, StateMessage.Builder builderForValue)

public Function.Builder addStateMessages(int index, StateMessage.Builder builderForValue)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
builderForValueStateMessage.Builder
Returns
TypeDescription
Function.Builder

addStateMessagesBuilder()

public StateMessage.Builder addStateMessagesBuilder()

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
StateMessage.Builder

addStateMessagesBuilder(int index)

public StateMessage.Builder addStateMessagesBuilder(int index)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
StateMessage.Builder

build()

public Function build()
Returns
TypeDescription
Function

buildPartial()

public Function buildPartial()
Returns
TypeDescription
Function

clear()

public Function.Builder clear()
Returns
TypeDescription
Function.Builder
Overrides

clearBuildConfig()

public Function.Builder clearBuildConfig()

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Returns
TypeDescription
Function.Builder

clearDescription()

public Function.Builder clearDescription()

User-provided description of a function.

string description = 2;

Returns
TypeDescription
Function.Builder

This builder for chaining.

clearEnvironment()

public Function.Builder clearEnvironment()

Describe whether the function is 1st Gen or 2nd Gen.

.google.cloud.functions.v2.Environment environment = 10;

Returns
TypeDescription
Function.Builder

This builder for chaining.

clearEventTrigger()

public Function.Builder clearEventTrigger()

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Returns
TypeDescription
Function.Builder

clearField(Descriptors.FieldDescriptor field)

public Function.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
NameDescription
fieldFieldDescriptor
Returns
TypeDescription
Function.Builder
Overrides

clearKmsKeyName()

public Function.Builder clearKmsKeyName()

[Preview] Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources.

It must match the pattern projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.

string kms_key_name = 25 [(.google.api.resource_reference) = { ... }

Returns
TypeDescription
Function.Builder

This builder for chaining.

clearLabels()

public Function.Builder clearLabels()
Returns
TypeDescription
Function.Builder

clearName()

public Function.Builder clearName()

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

string name = 1;

Returns
TypeDescription
Function.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public Function.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
NameDescription
oneofOneofDescriptor
Returns
TypeDescription
Function.Builder
Overrides

clearServiceConfig()

public Function.Builder clearServiceConfig()

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Returns
TypeDescription
Function.Builder

clearState()

public Function.Builder clearState()

Output only. State of the function.

.google.cloud.functions.v2.Function.State state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Function.Builder

This builder for chaining.

clearStateMessages()

public Function.Builder clearStateMessages()

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Function.Builder

clearUpdateTime()

public Function.Builder clearUpdateTime()

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Function.Builder

clearUrl()

public Function.Builder clearUrl()

Output only. The deployed url for the function.

string url = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Function.Builder

This builder for chaining.

clone()

public Function.Builder clone()
Returns
TypeDescription
Function.Builder
Overrides

containsLabels(String key)

public boolean containsLabels(String key)

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Parameter
NameDescription
keyString
Returns
TypeDescription
boolean

getBuildConfig()

public BuildConfig getBuildConfig()

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Returns
TypeDescription
BuildConfig

The buildConfig.

getBuildConfigBuilder()

public BuildConfig.Builder getBuildConfigBuilder()

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Returns
TypeDescription
BuildConfig.Builder

getBuildConfigOrBuilder()

public BuildConfigOrBuilder getBuildConfigOrBuilder()

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Returns
TypeDescription
BuildConfigOrBuilder

getDefaultInstanceForType()

public Function getDefaultInstanceForType()
Returns
TypeDescription
Function

getDescription()

public String getDescription()

User-provided description of a function.

string description = 2;

Returns
TypeDescription
String

The description.

getDescriptionBytes()

public ByteString getDescriptionBytes()

User-provided description of a function.

string description = 2;

Returns
TypeDescription
ByteString

The bytes for description.

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
TypeDescription
Descriptor
Overrides

getEnvironment()

public Environment getEnvironment()

Describe whether the function is 1st Gen or 2nd Gen.

.google.cloud.functions.v2.Environment environment = 10;

Returns
TypeDescription
Environment

The environment.

getEnvironmentValue()

public int getEnvironmentValue()

Describe whether the function is 1st Gen or 2nd Gen.

.google.cloud.functions.v2.Environment environment = 10;

Returns
TypeDescription
int

The enum numeric value on the wire for environment.

getEventTrigger()

public EventTrigger getEventTrigger()

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Returns
TypeDescription
EventTrigger

The eventTrigger.

getEventTriggerBuilder()

public EventTrigger.Builder getEventTriggerBuilder()

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Returns
TypeDescription
EventTrigger.Builder

getEventTriggerOrBuilder()

public EventTriggerOrBuilder getEventTriggerOrBuilder()

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Returns
TypeDescription
EventTriggerOrBuilder

getKmsKeyName()

public String getKmsKeyName()

[Preview] Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources.

It must match the pattern projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.

string kms_key_name = 25 [(.google.api.resource_reference) = { ... }

Returns
TypeDescription
String

The kmsKeyName.

getKmsKeyNameBytes()

public ByteString getKmsKeyNameBytes()

[Preview] Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources.

It must match the pattern projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.

string kms_key_name = 25 [(.google.api.resource_reference) = { ... }

Returns
TypeDescription
ByteString

The bytes for kmsKeyName.

getLabels() (deprecated)

public Map<String,String> getLabels()

Use #getLabelsMap() instead.

Returns
TypeDescription
Map<String,String>

getLabelsCount()

public int getLabelsCount()

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Returns
TypeDescription
int

getLabelsMap()

public Map<String,String> getLabelsMap()

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Returns
TypeDescription
Map<String,String>

getLabelsOrDefault(String key, String defaultValue)

public String getLabelsOrDefault(String key, String defaultValue)

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Parameters
NameDescription
keyString
defaultValueString
Returns
TypeDescription
String

getLabelsOrThrow(String key)

public String getLabelsOrThrow(String key)

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Parameter
NameDescription
keyString
Returns
TypeDescription
String

getMutableLabels() (deprecated)

public Map<String,String> getMutableLabels()

Use alternate mutation accessors instead.

Returns
TypeDescription
Map<String,String>

getName()

public String getName()

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

string name = 1;

Returns
TypeDescription
String

The name.

getNameBytes()

public ByteString getNameBytes()

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

string name = 1;

Returns
TypeDescription
ByteString

The bytes for name.

getServiceConfig()

public ServiceConfig getServiceConfig()

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Returns
TypeDescription
ServiceConfig

The serviceConfig.

getServiceConfigBuilder()

public ServiceConfig.Builder getServiceConfigBuilder()

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Returns
TypeDescription
ServiceConfig.Builder

getServiceConfigOrBuilder()

public ServiceConfigOrBuilder getServiceConfigOrBuilder()

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Returns
TypeDescription
ServiceConfigOrBuilder

getState()

public Function.State getState()

Output only. State of the function.

.google.cloud.functions.v2.Function.State state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Function.State

The state.

getStateMessages(int index)

public StateMessage getStateMessages(int index)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
StateMessage

getStateMessagesBuilder(int index)

public StateMessage.Builder getStateMessagesBuilder(int index)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
StateMessage.Builder

getStateMessagesBuilderList()

public List<StateMessage.Builder> getStateMessagesBuilderList()

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
List<Builder>

getStateMessagesCount()

public int getStateMessagesCount()

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
int

getStateMessagesList()

public List<StateMessage> getStateMessagesList()

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
List<StateMessage>

getStateMessagesOrBuilder(int index)

public StateMessageOrBuilder getStateMessagesOrBuilder(int index)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
StateMessageOrBuilder

getStateMessagesOrBuilderList()

public List<? extends StateMessageOrBuilder> getStateMessagesOrBuilderList()

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
List<? extends com.google.cloud.functions.v2.StateMessageOrBuilder>

getStateValue()

public int getStateValue()

Output only. State of the function.

.google.cloud.functions.v2.Function.State state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
int

The enum numeric value on the wire for state.

getUpdateTime()

public Timestamp getUpdateTime()

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Timestamp

The updateTime.

getUpdateTimeBuilder()

public Timestamp.Builder getUpdateTimeBuilder()

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
Builder

getUpdateTimeOrBuilder()

public TimestampOrBuilder getUpdateTimeOrBuilder()

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
TimestampOrBuilder

getUrl()

public String getUrl()

Output only. The deployed url for the function.

string url = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
String

The url.

getUrlBytes()

public ByteString getUrlBytes()

Output only. The deployed url for the function.

string url = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
ByteString

The bytes for url.

hasBuildConfig()

public boolean hasBuildConfig()

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Returns
TypeDescription
boolean

Whether the buildConfig field is set.

hasEventTrigger()

public boolean hasEventTrigger()

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Returns
TypeDescription
boolean

Whether the eventTrigger field is set.

hasServiceConfig()

public boolean hasServiceConfig()

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Returns
TypeDescription
boolean

Whether the serviceConfig field is set.

hasUpdateTime()

public boolean hasUpdateTime()

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Returns
TypeDescription
boolean

Whether the updateTime field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

internalGetMapFieldReflection(int number)

protected MapFieldReflectionAccessor internalGetMapFieldReflection(int number)
Parameter
NameDescription
numberint
Returns
TypeDescription
com.google.protobuf.MapFieldReflectionAccessor
Overrides
com.google.protobuf.GeneratedMessageV3.Builder.internalGetMapFieldReflection(int)

internalGetMutableMapFieldReflection(int number)

protected MapFieldReflectionAccessor internalGetMutableMapFieldReflection(int number)
Parameter
NameDescription
numberint
Returns
TypeDescription
com.google.protobuf.MapFieldReflectionAccessor
Overrides
com.google.protobuf.GeneratedMessageV3.Builder.internalGetMutableMapFieldReflection(int)

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

mergeBuildConfig(BuildConfig value)

public Function.Builder mergeBuildConfig(BuildConfig value)

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Parameter
NameDescription
valueBuildConfig
Returns
TypeDescription
Function.Builder

mergeEventTrigger(EventTrigger value)

public Function.Builder mergeEventTrigger(EventTrigger value)

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Parameter
NameDescription
valueEventTrigger
Returns
TypeDescription
Function.Builder

mergeFrom(Function other)

public Function.Builder mergeFrom(Function other)
Parameter
NameDescription
otherFunction
Returns
TypeDescription
Function.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public Function.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Function.Builder
Overrides
Exceptions
TypeDescription
IOException

mergeFrom(Message other)

public Function.Builder mergeFrom(Message other)
Parameter
NameDescription
otherMessage
Returns
TypeDescription
Function.Builder
Overrides

mergeServiceConfig(ServiceConfig value)

public Function.Builder mergeServiceConfig(ServiceConfig value)

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Parameter
NameDescription
valueServiceConfig
Returns
TypeDescription
Function.Builder

mergeUnknownFields(UnknownFieldSet unknownFields)

public final Function.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
Function.Builder
Overrides

mergeUpdateTime(Timestamp value)

public Function.Builder mergeUpdateTime(Timestamp value)

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueTimestamp
Returns
TypeDescription
Function.Builder

putAllLabels(Map<String,String> values)

public Function.Builder putAllLabels(Map<String,String> values)

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Parameter
NameDescription
valuesMap<String,String>
Returns
TypeDescription
Function.Builder

putLabels(String key, String value)

public Function.Builder putLabels(String key, String value)

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Parameters
NameDescription
keyString
valueString
Returns
TypeDescription
Function.Builder

removeLabels(String key)

public Function.Builder removeLabels(String key)

Labels associated with this Cloud Function.

map<string, string> labels = 8;

Parameter
NameDescription
keyString
Returns
TypeDescription
Function.Builder

removeStateMessages(int index)

public Function.Builder removeStateMessages(int index)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
indexint
Returns
TypeDescription
Function.Builder

setBuildConfig(BuildConfig value)

public Function.Builder setBuildConfig(BuildConfig value)

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Parameter
NameDescription
valueBuildConfig
Returns
TypeDescription
Function.Builder

setBuildConfig(BuildConfig.Builder builderForValue)

public Function.Builder setBuildConfig(BuildConfig.Builder builderForValue)

Describes the Build step of the function that builds a container from the given source.

.google.cloud.functions.v2.BuildConfig build_config = 3;

Parameter
NameDescription
builderForValueBuildConfig.Builder
Returns
TypeDescription
Function.Builder

setDescription(String value)

public Function.Builder setDescription(String value)

User-provided description of a function.

string description = 2;

Parameter
NameDescription
valueString

The description to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setDescriptionBytes(ByteString value)

public Function.Builder setDescriptionBytes(ByteString value)

User-provided description of a function.

string description = 2;

Parameter
NameDescription
valueByteString

The bytes for description to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setEnvironment(Environment value)

public Function.Builder setEnvironment(Environment value)

Describe whether the function is 1st Gen or 2nd Gen.

.google.cloud.functions.v2.Environment environment = 10;

Parameter
NameDescription
valueEnvironment

The environment to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setEnvironmentValue(int value)

public Function.Builder setEnvironmentValue(int value)

Describe whether the function is 1st Gen or 2nd Gen.

.google.cloud.functions.v2.Environment environment = 10;

Parameter
NameDescription
valueint

The enum numeric value on the wire for environment to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setEventTrigger(EventTrigger value)

public Function.Builder setEventTrigger(EventTrigger value)

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Parameter
NameDescription
valueEventTrigger
Returns
TypeDescription
Function.Builder

setEventTrigger(EventTrigger.Builder builderForValue)

public Function.Builder setEventTrigger(EventTrigger.Builder builderForValue)

An Eventarc trigger managed by Google Cloud Functions that fires events in response to a condition in another service.

.google.cloud.functions.v2.EventTrigger event_trigger = 5;

Parameter
NameDescription
builderForValueEventTrigger.Builder
Returns
TypeDescription
Function.Builder

setField(Descriptors.FieldDescriptor field, Object value)

public Function.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
Function.Builder
Overrides

setKmsKeyName(String value)

public Function.Builder setKmsKeyName(String value)

[Preview] Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources.

It must match the pattern projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.

string kms_key_name = 25 [(.google.api.resource_reference) = { ... }

Parameter
NameDescription
valueString

The kmsKeyName to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setKmsKeyNameBytes(ByteString value)

public Function.Builder setKmsKeyNameBytes(ByteString value)

[Preview] Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt function resources.

It must match the pattern projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}.

string kms_key_name = 25 [(.google.api.resource_reference) = { ... }

Parameter
NameDescription
valueByteString

The bytes for kmsKeyName to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setName(String value)

public Function.Builder setName(String value)

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

string name = 1;

Parameter
NameDescription
valueString

The name to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setNameBytes(ByteString value)

public Function.Builder setNameBytes(ByteString value)

A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

string name = 1;

Parameter
NameDescription
valueByteString

The bytes for name to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public Function.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
NameDescription
fieldFieldDescriptor
indexint
valueObject
Returns
TypeDescription
Function.Builder
Overrides

setServiceConfig(ServiceConfig value)

public Function.Builder setServiceConfig(ServiceConfig value)

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Parameter
NameDescription
valueServiceConfig
Returns
TypeDescription
Function.Builder

setServiceConfig(ServiceConfig.Builder builderForValue)

public Function.Builder setServiceConfig(ServiceConfig.Builder builderForValue)

Describes the Service being deployed. Currently deploys services to Cloud Run (fully managed).

.google.cloud.functions.v2.ServiceConfig service_config = 4;

Parameter
NameDescription
builderForValueServiceConfig.Builder
Returns
TypeDescription
Function.Builder

setState(Function.State value)

public Function.Builder setState(Function.State value)

Output only. State of the function.

.google.cloud.functions.v2.Function.State state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueFunction.State

The state to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setStateMessages(int index, StateMessage value)

public Function.Builder setStateMessages(int index, StateMessage value)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
valueStateMessage
Returns
TypeDescription
Function.Builder

setStateMessages(int index, StateMessage.Builder builderForValue)

public Function.Builder setStateMessages(int index, StateMessage.Builder builderForValue)

Output only. State Messages for this Cloud Function.

repeated .google.cloud.functions.v2.StateMessage state_messages = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameters
NameDescription
indexint
builderForValueStateMessage.Builder
Returns
TypeDescription
Function.Builder

setStateValue(int value)

public Function.Builder setStateValue(int value)

Output only. State of the function.

.google.cloud.functions.v2.Function.State state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueint

The enum numeric value on the wire for state to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setUnknownFields(UnknownFieldSet unknownFields)

public final Function.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
Function.Builder
Overrides

setUpdateTime(Timestamp value)

public Function.Builder setUpdateTime(Timestamp value)

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueTimestamp
Returns
TypeDescription
Function.Builder

setUpdateTime(Timestamp.Builder builderForValue)

public Function.Builder setUpdateTime(Timestamp.Builder builderForValue)

Output only. The last update timestamp of a Cloud Function.

.google.protobuf.Timestamp update_time = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
builderForValueBuilder
Returns
TypeDescription
Function.Builder

setUrl(String value)

public Function.Builder setUrl(String value)

Output only. The deployed url for the function.

string url = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueString

The url to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.

setUrlBytes(ByteString value)

public Function.Builder setUrlBytes(ByteString value)

Output only. The deployed url for the function.

string url = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];

Parameter
NameDescription
valueByteString

The bytes for url to set.

Returns
TypeDescription
Function.Builder

This builder for chaining.