Package com.google.cloud.memcache.v1
Interface UpdateParametersRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateParametersRequest
,UpdateParametersRequest.Builder
public interface UpdateParametersRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Required.com.google.protobuf.ByteString
getNameBytes()
Required.MemcacheParameters
getParameters()
The parameters to apply to the instance.MemcacheParametersOrBuilder
getParametersOrBuilder()
The parameters to apply to the instance.com.google.protobuf.FieldMask
getUpdateMask()
Required.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Required.boolean
hasParameters()
The parameters to apply to the instance.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
-
getName
String getName()
Required. Resource name of the Memcached instance for which the parameters should be updated.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. Resource name of the Memcached instance for which the parameters should be updated.
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for name.
-
hasUpdateMask
boolean hasUpdateMask()
Required. Mask of fields to update.
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Required. Mask of fields to update.
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Required. Mask of fields to update.
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
-
hasParameters
boolean hasParameters()
The parameters to apply to the instance.
.google.cloud.memcache.v1.MemcacheParameters parameters = 3;
- Returns:
- Whether the parameters field is set.
-
getParameters
MemcacheParameters getParameters()
The parameters to apply to the instance.
.google.cloud.memcache.v1.MemcacheParameters parameters = 3;
- Returns:
- The parameters.
-
getParametersOrBuilder
MemcacheParametersOrBuilder getParametersOrBuilder()
The parameters to apply to the instance.
.google.cloud.memcache.v1.MemcacheParameters parameters = 3;
-
-