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 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.