Package com.google.cloud.dataplex.v1
Interface Action.InvalidDataFormatOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Action.InvalidDataFormat,Action.InvalidDataFormat.Builder
- Enclosing class:
- Action
public static interface Action.InvalidDataFormatOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExpectedFormat()The expected data format of the entity.com.google.protobuf.ByteStringgetExpectedFormatBytes()The expected data format of the entity.StringgetNewFormat()The new unexpected data format within the entity.com.google.protobuf.ByteStringgetNewFormatBytes()The new unexpected data format within the entity.StringgetSampledDataLocations(int index)The list of data locations sampled and used for format/schema inference.com.google.protobuf.ByteStringgetSampledDataLocationsBytes(int index)The list of data locations sampled and used for format/schema inference.intgetSampledDataLocationsCount()The list of data locations sampled and used for format/schema inference.List<String>getSampledDataLocationsList()The list of data locations sampled and used for format/schema inference.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSampledDataLocationsList
List<String> getSampledDataLocationsList()
The list of data locations sampled and used for format/schema inference.
repeated string sampled_data_locations = 1;- Returns:
- A list containing the sampledDataLocations.
-
getSampledDataLocationsCount
int getSampledDataLocationsCount()
The list of data locations sampled and used for format/schema inference.
repeated string sampled_data_locations = 1;- Returns:
- The count of sampledDataLocations.
-
getSampledDataLocations
String getSampledDataLocations(int index)
The list of data locations sampled and used for format/schema inference.
repeated string sampled_data_locations = 1;- 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 list of data locations sampled and used for format/schema inference.
repeated string sampled_data_locations = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the sampledDataLocations at the given index.
-
getExpectedFormat
String getExpectedFormat()
The expected data format of the entity.
string expected_format = 2;- Returns:
- The expectedFormat.
-
getExpectedFormatBytes
com.google.protobuf.ByteString getExpectedFormatBytes()
The expected data format of the entity.
string expected_format = 2;- Returns:
- The bytes for expectedFormat.
-
getNewFormat
String getNewFormat()
The new unexpected data format within the entity.
string new_format = 3;- Returns:
- The newFormat.
-
getNewFormatBytes
com.google.protobuf.ByteString getNewFormatBytes()
The new unexpected data format within the entity.
string new_format = 3;- Returns:
- The bytes for newFormat.
-
-