Package com.google.cloud.dataplex.v1
Interface DiscoveryEvent.PartitionDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DiscoveryEvent.PartitionDetails,DiscoveryEvent.PartitionDetails.Builder
- Enclosing class:
- DiscoveryEvent
public static interface DiscoveryEvent.PartitionDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEntity()The name to the containing entity resource.com.google.protobuf.ByteStringgetEntityBytes()The name to the containing entity resource.StringgetPartition()The name to the partition resource.com.google.protobuf.ByteStringgetPartitionBytes()The name to the partition resource.StringgetSampledDataLocations(int index)The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.com.google.protobuf.ByteStringgetSampledDataLocationsBytes(int index)The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.intgetSampledDataLocationsCount()The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.List<String>getSampledDataLocationsList()The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.DiscoveryEvent.EntityTypegetType()The type of the containing entity resource.intgetTypeValue()The type of the containing entity resource.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPartition
String getPartition()
The name to the partition resource. The name is the fully-qualified resource name.
string partition = 1;- Returns:
- The partition.
-
getPartitionBytes
com.google.protobuf.ByteString getPartitionBytes()
The name to the partition resource. The name is the fully-qualified resource name.
string partition = 1;- Returns:
- The bytes for partition.
-
getEntity
String getEntity()
The name to the containing entity resource. The name is the fully-qualified resource name.
string entity = 2;- Returns:
- The entity.
-
getEntityBytes
com.google.protobuf.ByteString getEntityBytes()
The name to the containing entity resource. The name is the fully-qualified resource name.
string entity = 2;- Returns:
- The bytes for entity.
-
getTypeValue
int getTypeValue()
The type of the containing entity resource.
.google.cloud.dataplex.v1.DiscoveryEvent.EntityType type = 3;- Returns:
- The enum numeric value on the wire for type.
-
getType
DiscoveryEvent.EntityType getType()
The type of the containing entity resource.
.google.cloud.dataplex.v1.DiscoveryEvent.EntityType type = 3;- Returns:
- The type.
-
getSampledDataLocationsList
List<String> getSampledDataLocationsList()
The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.
repeated string sampled_data_locations = 4;- Returns:
- A list containing the sampledDataLocations.
-
getSampledDataLocationsCount
int getSampledDataLocationsCount()
The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.
repeated string sampled_data_locations = 4;- Returns:
- The count of sampledDataLocations.
-
getSampledDataLocations
String getSampledDataLocations(int index)
The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.
repeated string sampled_data_locations = 4;- Parameters:
index- The index of the element to return.- Returns:
- The sampledDataLocations at the given index.
-
getSampledDataLocationsBytes
com.google.protobuf.ByteString getSampledDataLocationsBytes(int index)
The locations of the data items (e.g., a Cloud Storage objects) sampled for metadata inference.
repeated string sampled_data_locations = 4;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the sampledDataLocations at the given index.
-
-