com.google.privacy.dlp.v2.DiscoveryTargetOrBuilder 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 DiscoveryTargetOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.DiscoveryTarget)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* BigQuery target for Discovery. The first target to match a table will be
* the one applied.
*
*
* .google.privacy.dlp.v2.BigQueryDiscoveryTarget big_query_target = 1;
*
* @return Whether the bigQueryTarget field is set.
*/
boolean hasBigQueryTarget();
/**
*
*
*
* BigQuery target for Discovery. The first target to match a table will be
* the one applied.
*
*
* .google.privacy.dlp.v2.BigQueryDiscoveryTarget big_query_target = 1;
*
* @return The bigQueryTarget.
*/
com.google.privacy.dlp.v2.BigQueryDiscoveryTarget getBigQueryTarget();
/**
*
*
*
* BigQuery target for Discovery. The first target to match a table will be
* the one applied.
*
*
* .google.privacy.dlp.v2.BigQueryDiscoveryTarget big_query_target = 1;
*/
com.google.privacy.dlp.v2.BigQueryDiscoveryTargetOrBuilder getBigQueryTargetOrBuilder();
/**
*
*
*
* Cloud SQL target for Discovery. The first target to match a table will be
* the one applied.
*
*
* .google.privacy.dlp.v2.CloudSqlDiscoveryTarget cloud_sql_target = 2;
*
* @return Whether the cloudSqlTarget field is set.
*/
boolean hasCloudSqlTarget();
/**
*
*
*
* Cloud SQL target for Discovery. The first target to match a table will be
* the one applied.
*
*
* .google.privacy.dlp.v2.CloudSqlDiscoveryTarget cloud_sql_target = 2;
*
* @return The cloudSqlTarget.
*/
com.google.privacy.dlp.v2.CloudSqlDiscoveryTarget getCloudSqlTarget();
/**
*
*
*
* Cloud SQL target for Discovery. The first target to match a table will be
* the one applied.
*
*
* .google.privacy.dlp.v2.CloudSqlDiscoveryTarget cloud_sql_target = 2;
*/
com.google.privacy.dlp.v2.CloudSqlDiscoveryTargetOrBuilder getCloudSqlTargetOrBuilder();
/**
*
*
*
* Discovery target that looks for credentials and secrets stored in cloud
* resource metadata and reports them as vulnerabilities to Security Command
* Center. Only one target of this type is allowed.
*
*
* .google.privacy.dlp.v2.SecretsDiscoveryTarget secrets_target = 3;
*
* @return Whether the secretsTarget field is set.
*/
boolean hasSecretsTarget();
/**
*
*
*
* Discovery target that looks for credentials and secrets stored in cloud
* resource metadata and reports them as vulnerabilities to Security Command
* Center. Only one target of this type is allowed.
*
*
* .google.privacy.dlp.v2.SecretsDiscoveryTarget secrets_target = 3;
*
* @return The secretsTarget.
*/
com.google.privacy.dlp.v2.SecretsDiscoveryTarget getSecretsTarget();
/**
*
*
*
* Discovery target that looks for credentials and secrets stored in cloud
* resource metadata and reports them as vulnerabilities to Security Command
* Center. Only one target of this type is allowed.
*
*
* .google.privacy.dlp.v2.SecretsDiscoveryTarget secrets_target = 3;
*/
com.google.privacy.dlp.v2.SecretsDiscoveryTargetOrBuilder getSecretsTargetOrBuilder();
/**
*
*
*
* Cloud Storage target for Discovery. The first target to match a table
* will be the one applied.
*
*
* .google.privacy.dlp.v2.CloudStorageDiscoveryTarget cloud_storage_target = 4;
*
* @return Whether the cloudStorageTarget field is set.
*/
boolean hasCloudStorageTarget();
/**
*
*
*
* Cloud Storage target for Discovery. The first target to match a table
* will be the one applied.
*
*
* .google.privacy.dlp.v2.CloudStorageDiscoveryTarget cloud_storage_target = 4;
*
* @return The cloudStorageTarget.
*/
com.google.privacy.dlp.v2.CloudStorageDiscoveryTarget getCloudStorageTarget();
/**
*
*
*
* Cloud Storage target for Discovery. The first target to match a table
* will be the one applied.
*
*
* .google.privacy.dlp.v2.CloudStorageDiscoveryTarget cloud_storage_target = 4;
*/
com.google.privacy.dlp.v2.CloudStorageDiscoveryTargetOrBuilder getCloudStorageTargetOrBuilder();
/**
*
*
*
* Other clouds target for discovery. The first target to match a resource
* will be the one applied.
*
*
* .google.privacy.dlp.v2.OtherCloudDiscoveryTarget other_cloud_target = 5;
*
* @return Whether the otherCloudTarget field is set.
*/
boolean hasOtherCloudTarget();
/**
*
*
*
* Other clouds target for discovery. The first target to match a resource
* will be the one applied.
*
*
* .google.privacy.dlp.v2.OtherCloudDiscoveryTarget other_cloud_target = 5;
*
* @return The otherCloudTarget.
*/
com.google.privacy.dlp.v2.OtherCloudDiscoveryTarget getOtherCloudTarget();
/**
*
*
*
* Other clouds target for discovery. The first target to match a resource
* will be the one applied.
*
*
* .google.privacy.dlp.v2.OtherCloudDiscoveryTarget other_cloud_target = 5;
*/
com.google.privacy.dlp.v2.OtherCloudDiscoveryTargetOrBuilder getOtherCloudTargetOrBuilder();
com.google.privacy.dlp.v2.DiscoveryTarget.TargetCase getTargetCase();
}