Package com.google.cloud.datastream.v1
Interface MysqlSourceConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MysqlSourceConfig
,MysqlSourceConfig.Builder
public interface MysqlSourceConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MysqlRdbms
getExcludeObjects()
MySQL objects to exclude from the stream.MysqlRdbmsOrBuilder
getExcludeObjectsOrBuilder()
MySQL objects to exclude from the stream.MysqlRdbms
getIncludeObjects()
MySQL objects to retrieve from the source.MysqlRdbmsOrBuilder
getIncludeObjectsOrBuilder()
MySQL objects to retrieve from the source.int
getMaxConcurrentBackfillTasks()
Maximum number of concurrent backfill tasks.int
getMaxConcurrentCdcTasks()
Maximum number of concurrent CDC tasks.boolean
hasExcludeObjects()
MySQL objects to exclude from the stream.boolean
hasIncludeObjects()
MySQL objects to retrieve from the source.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasIncludeObjects
boolean hasIncludeObjects()
MySQL objects to retrieve from the source.
.google.cloud.datastream.v1.MysqlRdbms include_objects = 1;
- Returns:
- Whether the includeObjects field is set.
-
getIncludeObjects
MysqlRdbms getIncludeObjects()
MySQL objects to retrieve from the source.
.google.cloud.datastream.v1.MysqlRdbms include_objects = 1;
- Returns:
- The includeObjects.
-
getIncludeObjectsOrBuilder
MysqlRdbmsOrBuilder getIncludeObjectsOrBuilder()
MySQL objects to retrieve from the source.
.google.cloud.datastream.v1.MysqlRdbms include_objects = 1;
-
hasExcludeObjects
boolean hasExcludeObjects()
MySQL objects to exclude from the stream.
.google.cloud.datastream.v1.MysqlRdbms exclude_objects = 2;
- Returns:
- Whether the excludeObjects field is set.
-
getExcludeObjects
MysqlRdbms getExcludeObjects()
MySQL objects to exclude from the stream.
.google.cloud.datastream.v1.MysqlRdbms exclude_objects = 2;
- Returns:
- The excludeObjects.
-
getExcludeObjectsOrBuilder
MysqlRdbmsOrBuilder getExcludeObjectsOrBuilder()
MySQL objects to exclude from the stream.
.google.cloud.datastream.v1.MysqlRdbms exclude_objects = 2;
-
getMaxConcurrentCdcTasks
int getMaxConcurrentCdcTasks()
Maximum number of concurrent CDC tasks. The number should be non negative. If not set (or set to 0), the system's default value will be used.
int32 max_concurrent_cdc_tasks = 3;
- Returns:
- The maxConcurrentCdcTasks.
-
getMaxConcurrentBackfillTasks
int getMaxConcurrentBackfillTasks()
Maximum number of concurrent backfill tasks. The number should be non negative. If not set (or set to 0), the system's default value will be used.
int32 max_concurrent_backfill_tasks = 4;
- Returns:
- The maxConcurrentBackfillTasks.
-
-