Package com.google.cloud.datastream.v1
Interface StreamObjectOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StreamObject
,StreamObject.Builder
public interface StreamObjectOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BackfillJob
getBackfillJob()
The latest backfill job that was initiated for the stream object.BackfillJobOrBuilder
getBackfillJobOrBuilder()
The latest backfill job that was initiated for the stream object.com.google.protobuf.Timestamp
getCreateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Output only.String
getDisplayName()
Required.com.google.protobuf.ByteString
getDisplayNameBytes()
Required.Error
getErrors(int index)
Output only.int
getErrorsCount()
Output only.List<Error>
getErrorsList()
Output only.ErrorOrBuilder
getErrorsOrBuilder(int index)
Output only.List<? extends ErrorOrBuilder>
getErrorsOrBuilderList()
Output only.String
getName()
Output only.com.google.protobuf.ByteString
getNameBytes()
Output only.SourceObjectIdentifier
getSourceObject()
The object identifier in the data source.SourceObjectIdentifierOrBuilder
getSourceObjectOrBuilder()
The object identifier in the data source.com.google.protobuf.Timestamp
getUpdateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getUpdateTimeOrBuilder()
Output only.boolean
hasBackfillJob()
The latest backfill job that was initiated for the stream object.boolean
hasCreateTime()
Output only.boolean
hasSourceObject()
The object identifier in the data source.boolean
hasUpdateTime()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Output only. The object resource's name.
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Output only. The object resource's name.
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for name.
-
hasCreateTime
boolean hasCreateTime()
Output only. The creation time of the object.
.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Output only. The creation time of the object.
.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. The creation time of the object.
.google.protobuf.Timestamp create_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
hasUpdateTime
boolean hasUpdateTime()
Output only. The last update time of the object.
.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Output only. The last update time of the object.
.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Output only. The last update time of the object.
.google.protobuf.Timestamp update_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getDisplayName
String getDisplayName()
Required. Display name.
string display_name = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Required. Display name.
string display_name = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for displayName.
-
getErrorsList
List<Error> getErrorsList()
Output only. Active errors on the object.
repeated .google.cloud.datastream.v1.Error errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrors
Error getErrors(int index)
Output only. Active errors on the object.
repeated .google.cloud.datastream.v1.Error errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsCount
int getErrorsCount()
Output only. Active errors on the object.
repeated .google.cloud.datastream.v1.Error errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsOrBuilderList
List<? extends ErrorOrBuilder> getErrorsOrBuilderList()
Output only. Active errors on the object.
repeated .google.cloud.datastream.v1.Error errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getErrorsOrBuilder
ErrorOrBuilder getErrorsOrBuilder(int index)
Output only. Active errors on the object.
repeated .google.cloud.datastream.v1.Error errors = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
hasBackfillJob
boolean hasBackfillJob()
The latest backfill job that was initiated for the stream object.
.google.cloud.datastream.v1.BackfillJob backfill_job = 7;
- Returns:
- Whether the backfillJob field is set.
-
getBackfillJob
BackfillJob getBackfillJob()
The latest backfill job that was initiated for the stream object.
.google.cloud.datastream.v1.BackfillJob backfill_job = 7;
- Returns:
- The backfillJob.
-
getBackfillJobOrBuilder
BackfillJobOrBuilder getBackfillJobOrBuilder()
The latest backfill job that was initiated for the stream object.
.google.cloud.datastream.v1.BackfillJob backfill_job = 7;
-
hasSourceObject
boolean hasSourceObject()
The object identifier in the data source.
.google.cloud.datastream.v1.SourceObjectIdentifier source_object = 8;
- Returns:
- Whether the sourceObject field is set.
-
getSourceObject
SourceObjectIdentifier getSourceObject()
The object identifier in the data source.
.google.cloud.datastream.v1.SourceObjectIdentifier source_object = 8;
- Returns:
- The sourceObject.
-
getSourceObjectOrBuilder
SourceObjectIdentifierOrBuilder getSourceObjectOrBuilder()
The object identifier in the data source.
.google.cloud.datastream.v1.SourceObjectIdentifier source_object = 8;
-
-