Interface UpdateFunctionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateFunctionRequest
,UpdateFunctionRequest.Builder
public interface UpdateFunctionRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Function
getFunction()
Required.FunctionOrBuilder
getFunctionOrBuilder()
Required.com.google.protobuf.FieldMask
getUpdateMask()
The list of fields to be updated.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
The list of fields to be updated.boolean
hasFunction()
Required.boolean
hasUpdateMask()
The list of fields to be updated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFunction
boolean hasFunction()
Required. New version of the function.
.google.cloud.functions.v2beta.Function function = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the function field is set.
-
getFunction
Function getFunction()
Required. New version of the function.
.google.cloud.functions.v2beta.Function function = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The function.
-
getFunctionOrBuilder
FunctionOrBuilder getFunctionOrBuilder()
Required. New version of the function.
.google.cloud.functions.v2beta.Function function = 1 [(.google.api.field_behavior) = REQUIRED];
-
hasUpdateMask
boolean hasUpdateMask()
The list of fields to be updated. If no field mask is provided, all provided fields in the request will be updated.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
The list of fields to be updated. If no field mask is provided, all provided fields in the request will be updated.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
The list of fields to be updated. If no field mask is provided, all provided fields in the request will be updated.
.google.protobuf.FieldMask update_mask = 2;
-
-