Skip to content

Commit 59360de

Browse files
1 parent 6709049 commit 59360de

File tree

6 files changed

+43
-16
lines changed

6 files changed

+43
-16
lines changed

clients/google-api-services-dlp/v2/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dlp</artifactId>
25-
<version>v2-rev20241027-2.0.0</version>
25+
<version>v2-rev20241215-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dlp:v2-rev20241027-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dlp:v2-rev20241215-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dlp/v2/2.0.0/com/google/api/services/dlp/v2/model/GooglePrivacyDlpV2FileClusterSummary.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ public final class GooglePrivacyDlpV2FileClusterSummary extends com.google.api.c
8181
private java.util.List<GooglePrivacyDlpV2FileStoreInfoTypeSummary> fileStoreInfoTypeSummaries;
8282

8383
/**
84-
* True if no files exist in this cluster. If the bucket had more files than could be listed, this
85-
* will be false even if no files for this cluster were seen and file_extensions_seen is empty.
84+
* True if no files exist in this cluster. If the file store had more files than could be listed,
85+
* this will be false even if no files for this cluster were seen and file_extensions_seen is
86+
* empty.
8687
* The value may be {@code null}.
8788
*/
8889
@com.google.api.client.util.Key
@@ -203,17 +204,19 @@ public GooglePrivacyDlpV2FileClusterSummary setFileStoreInfoTypeSummaries(java.u
203204
}
204205

205206
/**
206-
* True if no files exist in this cluster. If the bucket had more files than could be listed, this
207-
* will be false even if no files for this cluster were seen and file_extensions_seen is empty.
207+
* True if no files exist in this cluster. If the file store had more files than could be listed,
208+
* this will be false even if no files for this cluster were seen and file_extensions_seen is
209+
* empty.
208210
* @return value or {@code null} for none
209211
*/
210212
public java.lang.Boolean getNoFilesExist() {
211213
return noFilesExist;
212214
}
213215

214216
/**
215-
* True if no files exist in this cluster. If the bucket had more files than could be listed, this
216-
* will be false even if no files for this cluster were seen and file_extensions_seen is empty.
217+
* True if no files exist in this cluster. If the file store had more files than could be listed,
218+
* this will be false even if no files for this cluster were seen and file_extensions_seen is
219+
* empty.
217220
* @param noFilesExist noFilesExist or {@code null} for none
218221
*/
219222
public GooglePrivacyDlpV2FileClusterSummary setNoFilesExist(java.lang.Boolean noFilesExist) {

clients/google-api-services-dlp/v2/2.0.0/com/google/api/services/dlp/v2/model/GooglePrivacyDlpV2FileStoreDataProfile.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public final class GooglePrivacyDlpV2FileStoreDataProfile extends com.google.api
130130
private String lastModifiedTime;
131131

132132
/**
133-
* The location type of the bucket (region, dual-region, multi-region, etc). If dual-region,
133+
* The location type of the file store (region, dual-region, multi-region, etc). If dual-region,
134134
* expect data_storage_locations to be populated.
135135
* The value may be {@code null}.
136136
*/
@@ -432,7 +432,7 @@ public GooglePrivacyDlpV2FileStoreDataProfile setLastModifiedTime(String lastMod
432432
}
433433

434434
/**
435-
* The location type of the bucket (region, dual-region, multi-region, etc). If dual-region,
435+
* The location type of the file store (region, dual-region, multi-region, etc). If dual-region,
436436
* expect data_storage_locations to be populated.
437437
* @return value or {@code null} for none
438438
*/
@@ -441,7 +441,7 @@ public java.lang.String getLocationType() {
441441
}
442442

443443
/**
444-
* The location type of the bucket (region, dual-region, multi-region, etc). If dual-region,
444+
* The location type of the file store (region, dual-region, multi-region, etc). If dual-region,
445445
* expect data_storage_locations to be populated.
446446
* @param locationType locationType or {@code null} for none
447447
*/

clients/google-api-services-dlp/v2/2.0.0/com/google/api/services/dlp/v2/model/GooglePrivacyDlpV2InfoTypeDescription.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ public final class GooglePrivacyDlpV2InfoTypeDescription extends com.google.api.
5757
@com.google.api.client.util.Key
5858
private java.lang.String displayName;
5959

60+
/**
61+
* A sample true positive for this infoType.
62+
* The value may be {@code null}.
63+
*/
64+
@com.google.api.client.util.Key
65+
private java.lang.String example;
66+
6067
/**
6168
* Internal name of the infoType.
6269
* The value may be {@code null}.
@@ -136,6 +143,23 @@ public GooglePrivacyDlpV2InfoTypeDescription setDisplayName(java.lang.String dis
136143
return this;
137144
}
138145

146+
/**
147+
* A sample true positive for this infoType.
148+
* @return value or {@code null} for none
149+
*/
150+
public java.lang.String getExample() {
151+
return example;
152+
}
153+
154+
/**
155+
* A sample true positive for this infoType.
156+
* @param example example or {@code null} for none
157+
*/
158+
public GooglePrivacyDlpV2InfoTypeDescription setExample(java.lang.String example) {
159+
this.example = example;
160+
return this;
161+
}
162+
139163
/**
140164
* Internal name of the infoType.
141165
* @return value or {@code null} for none

clients/google-api-services-dlp/v2/2.0.0/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-dlp</artifactId>
11-
<version>v2-rev20241027-2.0.0</version>
12-
<name>Sensitive Data Protection (DLP) v2-rev20241027-2.0.0</name>
11+
<version>v2-rev20241215-2.0.0</version>
12+
<name>Sensitive Data Protection (DLP) v2-rev20241215-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Sensitive Data Protection (DLP) ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.45.0/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.45.2/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.36.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.0/</link>
9696
</links>

clients/google-api-services-dlp/v2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-dlp</artifactId>
25-
<version>v2-rev20241027-2.0.0</version>
25+
<version>v2-rev20241215-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-dlp:v2-rev20241027-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dlp:v2-rev20241215-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)