com.google.privacy.dlp.v2.DiscoveryCloudSqlConditionsOrBuilder 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 DiscoveryCloudSqlConditionsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.DiscoveryCloudSqlConditions)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. Database engines that should be profiled.
* Optional. Defaults to ALL_SUPPORTED_DATABASE_ENGINES if unspecified.
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseEngine database_engines = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return A list containing the databaseEngines.
*/
java.util.List
getDatabaseEnginesList();
/**
*
*
*
* Optional. Database engines that should be profiled.
* Optional. Defaults to ALL_SUPPORTED_DATABASE_ENGINES if unspecified.
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseEngine database_engines = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The count of databaseEngines.
*/
int getDatabaseEnginesCount();
/**
*
*
*
* Optional. Database engines that should be profiled.
* Optional. Defaults to ALL_SUPPORTED_DATABASE_ENGINES if unspecified.
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseEngine database_engines = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @param index The index of the element to return.
* @return The databaseEngines at the given index.
*/
com.google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseEngine getDatabaseEngines(
int index);
/**
*
*
*
* Optional. Database engines that should be profiled.
* Optional. Defaults to ALL_SUPPORTED_DATABASE_ENGINES if unspecified.
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseEngine database_engines = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return A list containing the enum numeric values on the wire for databaseEngines.
*/
java.util.List getDatabaseEnginesValueList();
/**
*
*
*
* Optional. Database engines that should be profiled.
* Optional. Defaults to ALL_SUPPORTED_DATABASE_ENGINES if unspecified.
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseEngine database_engines = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @param index The index of the value to return.
* @return The enum numeric value on the wire of databaseEngines at the given index.
*/
int getDatabaseEnginesValue(int index);
/**
*
*
*
* Data profiles will only be generated for the database resource types
* specified in this field.
* If not specified, defaults to [DATABASE_RESOURCE_TYPE_ALL_SUPPORTED_TYPES].
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseResourceType types = 3;
*
*
* @return A list containing the types.
*/
java.util.List
getTypesList();
/**
*
*
*
* Data profiles will only be generated for the database resource types
* specified in this field.
* If not specified, defaults to [DATABASE_RESOURCE_TYPE_ALL_SUPPORTED_TYPES].
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseResourceType types = 3;
*
*
* @return The count of types.
*/
int getTypesCount();
/**
*
*
*
* Data profiles will only be generated for the database resource types
* specified in this field.
* If not specified, defaults to [DATABASE_RESOURCE_TYPE_ALL_SUPPORTED_TYPES].
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseResourceType types = 3;
*
*
* @param index The index of the element to return.
* @return The types at the given index.
*/
com.google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseResourceType getTypes(int index);
/**
*
*
*
* Data profiles will only be generated for the database resource types
* specified in this field.
* If not specified, defaults to [DATABASE_RESOURCE_TYPE_ALL_SUPPORTED_TYPES].
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseResourceType types = 3;
*
*
* @return A list containing the enum numeric values on the wire for types.
*/
java.util.List getTypesValueList();
/**
*
*
*
* Data profiles will only be generated for the database resource types
* specified in this field.
* If not specified, defaults to [DATABASE_RESOURCE_TYPE_ALL_SUPPORTED_TYPES].
*
*
*
* repeated .google.privacy.dlp.v2.DiscoveryCloudSqlConditions.DatabaseResourceType types = 3;
*
*
* @param index The index of the value to return.
* @return The enum numeric value on the wire of types at the given index.
*/
int getTypesValue(int index);
}