com.google.privacy.dlp.v2.DeidentifyConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dlp-v2 Show documentation
Show all versions of proto-google-cloud-dlp-v2 Show documentation
PROTO library for proto-google-cloud-dlp-v2
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/privacy/dlp/v2/dlp.proto
// Protobuf Java Version: 3.25.4
package com.google.privacy.dlp.v2;
public interface DeidentifyConfigOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.DeidentifyConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Treat the dataset as free-form text and apply the same free text
* transformation everywhere.
*
*
* .google.privacy.dlp.v2.InfoTypeTransformations info_type_transformations = 1;
*
* @return Whether the infoTypeTransformations field is set.
*/
boolean hasInfoTypeTransformations();
/**
*
*
*
* Treat the dataset as free-form text and apply the same free text
* transformation everywhere.
*
*
* .google.privacy.dlp.v2.InfoTypeTransformations info_type_transformations = 1;
*
* @return The infoTypeTransformations.
*/
com.google.privacy.dlp.v2.InfoTypeTransformations getInfoTypeTransformations();
/**
*
*
*
* Treat the dataset as free-form text and apply the same free text
* transformation everywhere.
*
*
* .google.privacy.dlp.v2.InfoTypeTransformations info_type_transformations = 1;
*/
com.google.privacy.dlp.v2.InfoTypeTransformationsOrBuilder getInfoTypeTransformationsOrBuilder();
/**
*
*
*
* Treat the dataset as structured. Transformations can be applied to
* specific locations within structured datasets, such as transforming
* a column within a table.
*
*
* .google.privacy.dlp.v2.RecordTransformations record_transformations = 2;
*
* @return Whether the recordTransformations field is set.
*/
boolean hasRecordTransformations();
/**
*
*
*
* Treat the dataset as structured. Transformations can be applied to
* specific locations within structured datasets, such as transforming
* a column within a table.
*
*
* .google.privacy.dlp.v2.RecordTransformations record_transformations = 2;
*
* @return The recordTransformations.
*/
com.google.privacy.dlp.v2.RecordTransformations getRecordTransformations();
/**
*
*
*
* Treat the dataset as structured. Transformations can be applied to
* specific locations within structured datasets, such as transforming
* a column within a table.
*
*
* .google.privacy.dlp.v2.RecordTransformations record_transformations = 2;
*/
com.google.privacy.dlp.v2.RecordTransformationsOrBuilder getRecordTransformationsOrBuilder();
/**
*
*
*
* Treat the dataset as an image and redact.
*
*
* .google.privacy.dlp.v2.ImageTransformations image_transformations = 4;
*
* @return Whether the imageTransformations field is set.
*/
boolean hasImageTransformations();
/**
*
*
*
* Treat the dataset as an image and redact.
*
*
* .google.privacy.dlp.v2.ImageTransformations image_transformations = 4;
*
* @return The imageTransformations.
*/
com.google.privacy.dlp.v2.ImageTransformations getImageTransformations();
/**
*
*
*
* Treat the dataset as an image and redact.
*
*
* .google.privacy.dlp.v2.ImageTransformations image_transformations = 4;
*/
com.google.privacy.dlp.v2.ImageTransformationsOrBuilder getImageTransformationsOrBuilder();
/**
*
*
*
* Mode for handling transformation errors. If left unspecified, the default
* mode is `TransformationErrorHandling.ThrowError`.
*
*
* .google.privacy.dlp.v2.TransformationErrorHandling transformation_error_handling = 3;
*
*
* @return Whether the transformationErrorHandling field is set.
*/
boolean hasTransformationErrorHandling();
/**
*
*
*
* Mode for handling transformation errors. If left unspecified, the default
* mode is `TransformationErrorHandling.ThrowError`.
*
*
* .google.privacy.dlp.v2.TransformationErrorHandling transformation_error_handling = 3;
*
*
* @return The transformationErrorHandling.
*/
com.google.privacy.dlp.v2.TransformationErrorHandling getTransformationErrorHandling();
/**
*
*
*
* Mode for handling transformation errors. If left unspecified, the default
* mode is `TransformationErrorHandling.ThrowError`.
*
*
* .google.privacy.dlp.v2.TransformationErrorHandling transformation_error_handling = 3;
*
*/
com.google.privacy.dlp.v2.TransformationErrorHandlingOrBuilder
getTransformationErrorHandlingOrBuilder();
com.google.privacy.dlp.v2.DeidentifyConfig.TransformationCase getTransformationCase();
}