Package com.google.cloud.clouddms.v1
Interface PackageEntityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PackageEntity
,PackageEntity.Builder
public interface PackageEntityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Struct
getCustomFeatures()
Custom engine specific features.com.google.protobuf.StructOrBuilder
getCustomFeaturesOrBuilder()
Custom engine specific features.String
getPackageBody()
The SQL code which creates the package body.com.google.protobuf.ByteString
getPackageBodyBytes()
The SQL code which creates the package body.String
getPackageSqlCode()
The SQL code which creates the package.com.google.protobuf.ByteString
getPackageSqlCodeBytes()
The SQL code which creates the package.boolean
hasCustomFeatures()
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
-
getPackageSqlCode
String getPackageSqlCode()
The SQL code which creates the package.
string package_sql_code = 1;
- Returns:
- The packageSqlCode.
-
getPackageSqlCodeBytes
com.google.protobuf.ByteString getPackageSqlCodeBytes()
The SQL code which creates the package.
string package_sql_code = 1;
- Returns:
- The bytes for packageSqlCode.
-
getPackageBody
String getPackageBody()
The SQL code which creates the package body. If the package specification has cursors or subprograms, then the package body is mandatory.
string package_body = 2;
- Returns:
- The packageBody.
-
getPackageBodyBytes
com.google.protobuf.ByteString getPackageBodyBytes()
The SQL code which creates the package body. If the package specification has cursors or subprograms, then the package body is mandatory.
string package_body = 2;
- Returns:
- The bytes for packageBody.
-
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;
-
-