@@ -38,13 +38,29 @@ public final class GooglePrivacyDlpV2DataProfileFinding extends com.google.api.c
38
38
@ com .google .api .client .util .Key
39
39
private java .lang .String dataProfileResourceName ;
40
40
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
+
41
48
/**
42
49
* A unique identifier for the finding.
43
50
* The value may be {@code null}.
44
51
*/
45
52
@ com .google .api .client .util .Key
46
53
private java .lang .String findingId ;
47
54
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
+
48
64
/**
49
65
* The [type of content](https://cloud.google.com/sensitive-data-protection/docs/infotypes-
50
66
* reference) that might have been found.
@@ -107,6 +123,23 @@ public GooglePrivacyDlpV2DataProfileFinding setDataProfileResourceName(java.lang
107
123
return this ;
108
124
}
109
125
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
+
110
143
/**
111
144
* A unique identifier for the finding.
112
145
* @return value or {@code null} for none
@@ -124,6 +157,27 @@ public GooglePrivacyDlpV2DataProfileFinding setFindingId(java.lang.String findin
124
157
return this ;
125
158
}
126
159
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
+
127
181
/**
128
182
* The [type of content](https://cloud.google.com/sensitive-data-protection/docs/infotypes-
129
183
* reference) that might have been found.
0 commit comments