Package com.google.appengine.v1
Interface UpdateApplicationRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateApplicationRequest,UpdateApplicationRequest.Builder
public interface UpdateApplicationRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationgetApplication()An Application containing the updated resource.ApplicationOrBuildergetApplicationOrBuilder()An Application containing the updated resource.StringgetName()Name of the Application resource to update.com.google.protobuf.ByteStringgetNameBytes()Name of the Application resource to update.com.google.protobuf.FieldMaskgetUpdateMask()Required.com.google.protobuf.FieldMaskOrBuildergetUpdateMaskOrBuilder()Required.booleanhasApplication()An Application containing the updated resource.booleanhasUpdateMask()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the Application resource to update. Example: `apps/myapp`.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the Application resource to update. Example: `apps/myapp`.
string name = 1;- Returns:
- The bytes for name.
-
hasApplication
boolean hasApplication()
An Application containing the updated resource.
.google.appengine.v1.Application application = 2;- Returns:
- Whether the application field is set.
-
getApplication
Application getApplication()
An Application containing the updated resource.
.google.appengine.v1.Application application = 2;- Returns:
- The application.
-
getApplicationOrBuilder
ApplicationOrBuilder getApplicationOrBuilder()
An Application containing the updated resource.
.google.appengine.v1.Application application = 2;
-
hasUpdateMask
boolean hasUpdateMask()
Required. Standard field mask for the set of fields to be updated.
.google.protobuf.FieldMask update_mask = 3;- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Required. Standard field mask for the set of fields to be updated.
.google.protobuf.FieldMask update_mask = 3;- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Required. Standard field mask for the set of fields to be updated.
.google.protobuf.FieldMask update_mask = 3;
-
-