Interface Action.IncompatibleDataSchemaOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getExistingSchema()
      The existing and expected schema of the table.
      com.google.protobuf.ByteString getExistingSchemaBytes()
      The existing and expected schema of the table.
      String getNewSchema()
      The new and incompatible schema within the table.
      com.google.protobuf.ByteString getNewSchemaBytes()
      The new and incompatible schema within the table.
      String getSampledDataLocations​(int index)
      The list of data locations sampled and used for format/schema inference.
      com.google.protobuf.ByteString getSampledDataLocationsBytes​(int index)
      The list of data locations sampled and used for format/schema inference.
      int getSampledDataLocationsCount()
      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.
      Action.IncompatibleDataSchema.SchemaChange getSchemaChange()
      Whether the action relates to a schema that is incompatible or modified.
      int getSchemaChangeValue()
      Whether the action relates to a schema that is incompatible or modified.
      String getTable()
      The name of the table containing invalid data.
      com.google.protobuf.ByteString getTableBytes()
      The name of the table containing invalid data.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getTable

        String getTable()
         The name of the table containing invalid data.
         
        string table = 1;
        Returns:
        The table.
      • getTableBytes

        com.google.protobuf.ByteString getTableBytes()
         The name of the table containing invalid data.
         
        string table = 1;
        Returns:
        The bytes for table.
      • getExistingSchema

        String getExistingSchema()
         The existing and expected schema of the table. The schema is provided as
         a JSON formatted structure listing columns and data types.
         
        string existing_schema = 2;
        Returns:
        The existingSchema.
      • getExistingSchemaBytes

        com.google.protobuf.ByteString getExistingSchemaBytes()
         The existing and expected schema of the table. The schema is provided as
         a JSON formatted structure listing columns and data types.
         
        string existing_schema = 2;
        Returns:
        The bytes for existingSchema.
      • getNewSchema

        String getNewSchema()
         The new and incompatible schema within the table. The schema is provided
         as a JSON formatted structured listing columns and data types.
         
        string new_schema = 3;
        Returns:
        The newSchema.
      • getNewSchemaBytes

        com.google.protobuf.ByteString getNewSchemaBytes()
         The new and incompatible schema within the table. The schema is provided
         as a JSON formatted structured listing columns and data types.
         
        string new_schema = 3;
        Returns:
        The bytes for newSchema.
      • getSampledDataLocationsList

        List<String> getSampledDataLocationsList()
         The list of data locations sampled and used for format/schema
         inference.
         
        repeated string sampled_data_locations = 4;
        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 = 4;
        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 = 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 list of data locations sampled and used for format/schema
         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.
      • getSchemaChangeValue

        int getSchemaChangeValue()
         Whether the action relates to a schema that is incompatible or modified.
         
        .google.cloud.dataplex.v1.Action.IncompatibleDataSchema.SchemaChange schema_change = 5;
        Returns:
        The enum numeric value on the wire for schemaChange.
      • getSchemaChange

        Action.IncompatibleDataSchema.SchemaChange getSchemaChange()
         Whether the action relates to a schema that is incompatible or modified.
         
        .google.cloud.dataplex.v1.Action.IncompatibleDataSchema.SchemaChange schema_change = 5;
        Returns:
        The schemaChange.