Package com.google.cloud.clouddms.v1
Interface UDTEntityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UDTEntity,UDTEntity.Builder
public interface UDTEntityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.StructgetCustomFeatures()Custom engine specific features.com.google.protobuf.StructOrBuildergetCustomFeaturesOrBuilder()Custom engine specific features.StringgetUdtBody()The SQL code which creates the udt body.com.google.protobuf.ByteStringgetUdtBodyBytes()The SQL code which creates the udt body.StringgetUdtSqlCode()The SQL code which creates the udt.com.google.protobuf.ByteStringgetUdtSqlCodeBytes()The SQL code which creates the udt.booleanhasCustomFeatures()Custom engine specific features.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUdtSqlCode
String getUdtSqlCode()
The SQL code which creates the udt.
string udt_sql_code = 1;- Returns:
- The udtSqlCode.
-
getUdtSqlCodeBytes
com.google.protobuf.ByteString getUdtSqlCodeBytes()
The SQL code which creates the udt.
string udt_sql_code = 1;- Returns:
- The bytes for udtSqlCode.
-
getUdtBody
String getUdtBody()
The SQL code which creates the udt body.
string udt_body = 2;- Returns:
- The udtBody.
-
getUdtBodyBytes
com.google.protobuf.ByteString getUdtBodyBytes()
The SQL code which creates the udt body.
string udt_body = 2;- Returns:
- The bytes for udtBody.
-
hasCustomFeatures
boolean hasCustomFeatures()
Custom engine specific features.
.google.protobuf.Struct custom_features = 3;- Returns:
- Whether the customFeatures field is set.
-
getCustomFeatures
com.google.protobuf.Struct getCustomFeatures()
Custom engine specific features.
.google.protobuf.Struct custom_features = 3;- Returns:
- The customFeatures.
-
getCustomFeaturesOrBuilder
com.google.protobuf.StructOrBuilder getCustomFeaturesOrBuilder()
Custom engine specific features.
.google.protobuf.Struct custom_features = 3;
-
-