Package com.google.cloud.clouddms.v1
Interface MultiEntityRenameOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MultiEntityRename
,MultiEntityRename.Builder
public interface MultiEntityRenameOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNewNamePattern()
Optional.com.google.protobuf.ByteString
getNewNamePatternBytes()
Optional.EntityNameTransformation
getSourceNameTransformation()
Optional.int
getSourceNameTransformationValue()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNewNamePattern
String getNewNamePattern()
Optional. The pattern used to generate the new entity's name. This pattern must include the characters '{name}', which will be replaced with the name of the original entity. For example, the pattern 't_{name}' for an entity name jobs would be converted to 't_jobs'. If unspecified, the default value for this field is '{name}'
string new_name_pattern = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The newNamePattern.
-
getNewNamePatternBytes
com.google.protobuf.ByteString getNewNamePatternBytes()
Optional. The pattern used to generate the new entity's name. This pattern must include the characters '{name}', which will be replaced with the name of the original entity. For example, the pattern 't_{name}' for an entity name jobs would be converted to 't_jobs'. If unspecified, the default value for this field is '{name}'
string new_name_pattern = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for newNamePattern.
-
getSourceNameTransformationValue
int getSourceNameTransformationValue()
Optional. Additional transformation that can be done on the source entity name before it is being used by the new_name_pattern, for example lower case. If no transformation is desired, use NO_TRANSFORMATION
.google.cloud.clouddms.v1.EntityNameTransformation source_name_transformation = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The enum numeric value on the wire for sourceNameTransformation.
-
getSourceNameTransformation
EntityNameTransformation getSourceNameTransformation()
Optional. Additional transformation that can be done on the source entity name before it is being used by the new_name_pattern, for example lower case. If no transformation is desired, use NO_TRANSFORMATION
.google.cloud.clouddms.v1.EntityNameTransformation source_name_transformation = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The sourceNameTransformation.
-
-