Skip to content

Commit 64720d8

Browse files
1 parent f96f4b6 commit 64720d8

File tree

4 files changed

+60
-6
lines changed

4 files changed

+60
-6
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-rev20250511-2.0.0</version>
25+
<version>v2-rev20250518-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-rev20250511-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dlp:v2-rev20250518-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,29 @@ public final class GooglePrivacyDlpV2DataProfileFinding extends com.google.api.c
3838
@com.google.api.client.util.Key
3939
private java.lang.String dataProfileResourceName;
4040

41+
/**
42+
* The type of the resource that was profiled.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private GooglePrivacyDlpV2DataSourceType dataSourceType;
47+
4148
/**
4249
* A unique identifier for the finding.
4350
* The value may be {@code null}.
4451
*/
4552
@com.google.api.client.util.Key
4653
private java.lang.String findingId;
4754

55+
/**
56+
* The [full resource
57+
* name](https://cloud.google.com/apis/design/resource_names#full_resource_name) of the resource
58+
* profiled for this finding.
59+
* The value may be {@code null}.
60+
*/
61+
@com.google.api.client.util.Key
62+
private java.lang.String fullResourceName;
63+
4864
/**
4965
* The [type of content](https://cloud.google.com/sensitive-data-protection/docs/infotypes-
5066
* reference) that might have been found.
@@ -107,6 +123,23 @@ public GooglePrivacyDlpV2DataProfileFinding setDataProfileResourceName(java.lang
107123
return this;
108124
}
109125

126+
/**
127+
* The type of the resource that was profiled.
128+
* @return value or {@code null} for none
129+
*/
130+
public GooglePrivacyDlpV2DataSourceType getDataSourceType() {
131+
return dataSourceType;
132+
}
133+
134+
/**
135+
* The type of the resource that was profiled.
136+
* @param dataSourceType dataSourceType or {@code null} for none
137+
*/
138+
public GooglePrivacyDlpV2DataProfileFinding setDataSourceType(GooglePrivacyDlpV2DataSourceType dataSourceType) {
139+
this.dataSourceType = dataSourceType;
140+
return this;
141+
}
142+
110143
/**
111144
* A unique identifier for the finding.
112145
* @return value or {@code null} for none
@@ -124,6 +157,27 @@ public GooglePrivacyDlpV2DataProfileFinding setFindingId(java.lang.String findin
124157
return this;
125158
}
126159

160+
/**
161+
* The [full resource
162+
* name](https://cloud.google.com/apis/design/resource_names#full_resource_name) of the resource
163+
* profiled for this finding.
164+
* @return value or {@code null} for none
165+
*/
166+
public java.lang.String getFullResourceName() {
167+
return fullResourceName;
168+
}
169+
170+
/**
171+
* The [full resource
172+
* name](https://cloud.google.com/apis/design/resource_names#full_resource_name) of the resource
173+
* profiled for this finding.
174+
* @param fullResourceName fullResourceName or {@code null} for none
175+
*/
176+
public GooglePrivacyDlpV2DataProfileFinding setFullResourceName(java.lang.String fullResourceName) {
177+
this.fullResourceName = fullResourceName;
178+
return this;
179+
}
180+
127181
/**
128182
* The [type of content](https://cloud.google.com/sensitive-data-protection/docs/infotypes-
129183
* reference) that might have been found.

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

Lines changed: 2 additions & 2 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-rev20250511-2.0.0</version>
12-
<name>Sensitive Data Protection (DLP) v2-rev20250511-2.0.0</name>
11+
<version>v2-rev20250518-2.0.0</version>
12+
<name>Sensitive Data Protection (DLP) v2-rev20250518-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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-rev20250511-2.0.0</version>
25+
<version>v2-rev20250518-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-rev20250511-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dlp:v2-rev20250518-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)