• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/privacy/dlp/v2/dlp.proto
18 
19 package com.google.privacy.dlp.v2;
20 
21 public interface InfoTypeTransformationsOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.privacy.dlp.v2.InfoTypeTransformations)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Required. Transformation for each infoType. Cannot specify more than one
31    * for a given infoType.
32    * </pre>
33    *
34    * <code>
35    * repeated .google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation transformations = 1 [(.google.api.field_behavior) = REQUIRED];
36    * </code>
37    */
38   java.util.List<com.google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation>
getTransformationsList()39       getTransformationsList();
40   /**
41    *
42    *
43    * <pre>
44    * Required. Transformation for each infoType. Cannot specify more than one
45    * for a given infoType.
46    * </pre>
47    *
48    * <code>
49    * repeated .google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation transformations = 1 [(.google.api.field_behavior) = REQUIRED];
50    * </code>
51    */
getTransformations( int index)52   com.google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation getTransformations(
53       int index);
54   /**
55    *
56    *
57    * <pre>
58    * Required. Transformation for each infoType. Cannot specify more than one
59    * for a given infoType.
60    * </pre>
61    *
62    * <code>
63    * repeated .google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation transformations = 1 [(.google.api.field_behavior) = REQUIRED];
64    * </code>
65    */
getTransformationsCount()66   int getTransformationsCount();
67   /**
68    *
69    *
70    * <pre>
71    * Required. Transformation for each infoType. Cannot specify more than one
72    * for a given infoType.
73    * </pre>
74    *
75    * <code>
76    * repeated .google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation transformations = 1 [(.google.api.field_behavior) = REQUIRED];
77    * </code>
78    */
79   java.util.List<
80           ? extends
81               com.google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformationOrBuilder>
getTransformationsOrBuilderList()82       getTransformationsOrBuilderList();
83   /**
84    *
85    *
86    * <pre>
87    * Required. Transformation for each infoType. Cannot specify more than one
88    * for a given infoType.
89    * </pre>
90    *
91    * <code>
92    * repeated .google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformation transformations = 1 [(.google.api.field_behavior) = REQUIRED];
93    * </code>
94    */
95   com.google.privacy.dlp.v2.InfoTypeTransformations.InfoTypeTransformationOrBuilder
getTransformationsOrBuilder(int index)96       getTransformationsOrBuilder(int index);
97 }
98