Package com.google.cloud.functions.v1
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 CloudFunction
getFunction()
Required.CloudFunctionOrBuilder
getFunctionOrBuilder()
Required.com.google.protobuf.FieldMask
getUpdateMask()
Required.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Required.boolean
hasFunction()
Required.boolean
hasUpdateMask()
Required.-
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.v1.CloudFunction function = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the function field is set.
-
getFunction
CloudFunction getFunction()
Required. New version of the function.
.google.cloud.functions.v1.CloudFunction function = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The function.
-
getFunctionOrBuilder
CloudFunctionOrBuilder getFunctionOrBuilder()
Required. New version of the function.
.google.cloud.functions.v1.CloudFunction function = 1 [(.google.api.field_behavior) = REQUIRED];
-
hasUpdateMask
boolean hasUpdateMask()
Required. The list of fields in `CloudFunction` that have to be updated.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Required. The list of fields in `CloudFunction` that have to be updated.
.google.protobuf.FieldMask update_mask = 2;
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Required. The list of fields in `CloudFunction` that have to be updated.
.google.protobuf.FieldMask update_mask = 2;
-
-