You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/dyn/dlp_v2.infoTypes.html
+2-2
Original file line number
Diff line number
Diff line change
@@ -116,8 +116,8 @@ <h3>Method Details</h3>
116
116
"description": "A String", # Description of the infotype. Translated when language is provided in the request.
117
117
"displayName": "A String", # Human readable form of the infoType name.
118
118
"name": "A String", # Internal name of the infoType.
119
-
"sensitivityScore": { # Score is a summary of all elements in the data profile. A higher number means more sensitive. # The default sensitivity of the infoType.
120
-
"score": "A String", # The score applied to the resource.
119
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # The default sensitivity of the infoType.
120
+
"score": "A String", # The sensitivity score applied to the resource.
121
121
},
122
122
"supportedBy": [ # Which parts of the API supports this InfoType.
Copy file name to clipboardexpand all lines: docs/dyn/dlp_v2.locations.infoTypes.html
+2-2
Original file line number
Diff line number
Diff line change
@@ -116,8 +116,8 @@ <h3>Method Details</h3>
116
116
"description": "A String", # Description of the infotype. Translated when language is provided in the request.
117
117
"displayName": "A String", # Human readable form of the infoType name.
118
118
"name": "A String", # Internal name of the infoType.
119
-
"sensitivityScore": { # Score is a summary of all elements in the data profile. A higher number means more sensitive. # The default sensitivity of the infoType.
120
-
"score": "A String", # The score applied to the resource.
119
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # The default sensitivity of the infoType.
120
+
"score": "A String", # The sensitivity score applied to the resource.
121
121
},
122
122
"supportedBy": [ # Which parts of the API supports this InfoType.
Copy file name to clipboardexpand all lines: docs/dyn/dlp_v2.projects.image.html
+24
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,9 @@ <h3>Method Details</h3>
104
104
{ # Configuration for determining how redaction of images should occur.
105
105
"infoType": { # Type of information detected by the API. # Only one per info_type should be provided per request. If not specified, and redact_all_text is false, the DLP API will redact all text that it matches against all info_types that are found, but not specified in another ImageRedactionConfig.
106
106
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
107
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
108
+
"score": "A String", # The sensitivity score applied to the resource.
109
+
},
107
110
"version": "A String", # Optional version name for this InfoType.
108
111
},
109
112
"redactAllText": True or False, # If true, all text found in the image, regardless whether it matches an info_type, is redacted. Only one should be provided.
@@ -154,6 +157,9 @@ <h3>Method Details</h3>
154
157
"exclusionType": "A String", # If set to EXCLUSION_TYPE_EXCLUDE this infoType will not cause a finding to be returned. It still can be used for rules matching.
155
158
"infoType": { # Type of information detected by the API. # CustomInfoType can either be a new infoType, or an extension of built-in infoType, when the name matches one of existing infoTypes and that infoType is specified in `InspectContent.info_types` field. Specifying the latter adds findings to the one detected by the system. If built-in info type is not specified in `InspectContent.info_types` list then the name is treated as a custom info type.
156
159
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
160
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
161
+
"score": "A String", # The sensitivity score applied to the resource.
162
+
},
157
163
"version": "A String", # Optional version name for this InfoType.
158
164
},
159
165
"likelihood": "A String", # Likelihood to return for this CustomInfoType. This base value can be altered by a detection rule if the finding meets the criteria specified by the rule. Defaults to `VERY_LIKELY` if not specified.
@@ -163,6 +169,9 @@ <h3>Method Details</h3>
163
169
],
164
170
"pattern": "A String", # Pattern defining the regular expression. Its syntax (https://github.com/google/re2/wiki/Syntax) can be found under the google/re2 repository on GitHub.
165
171
},
172
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Sensitivity for this CustomInfoType. If this CustomInfoType extends an existing InfoType, the sensitivity here will take precedent over that of the original InfoType. If unset for a CustomInfoType, it will default to HIGH. This only applies to data profiling.
173
+
"score": "A String", # The sensitivity score applied to the resource.
174
+
},
166
175
"storedType": { # A reference to a StoredInfoType to use with scanning. # Load an existing `StoredInfoType` resource for use in `InspectDataSource`. Not currently supported in `InspectContent`.
167
176
"createTime": "A String", # Timestamp indicating when the version of the `StoredInfoType` used for inspection was created. Output-only field, populated by the system.
168
177
"name": "A String", # Resource name of the requested `StoredInfoType`, for example `organizations/433245324/storedInfoTypes/432452342` or `projects/project-id/storedInfoTypes/432452342`.
@@ -176,6 +185,9 @@ <h3>Method Details</h3>
176
185
"infoTypes": [ # Restricts what info_types to look for. The values must correspond to InfoType values returned by ListInfoTypes or listed at https://cloud.google.com/dlp/docs/infotypes-reference. When no InfoTypes or CustomInfoTypes are specified in a request, the system may automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. If you need precise control and predictability as to what detectors are run you should specify specific InfoTypes listed in the reference, otherwise a default list will be used, which may change over time.
177
186
{ # Type of information detected by the API.
178
187
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
188
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
189
+
"score": "A String", # The sensitivity score applied to the resource.
190
+
},
179
191
"version": "A String", # Optional version name for this InfoType.
180
192
},
181
193
],
@@ -184,6 +196,9 @@ <h3>Method Details</h3>
184
196
{ # Max findings configuration per infoType, per content item or long running DlpJob.
185
197
"infoType": { # Type of information detected by the API. # Type of information the findings limit applies to. Only one limit per info_type should be provided. If InfoTypeLimit does not have an info_type, the DLP API applies the limit against all info_types that are found but not specified in another InfoTypeLimit.
186
198
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
199
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
200
+
"score": "A String", # The sensitivity score applied to the resource.
201
+
},
187
202
"version": "A String", # Optional version name for this InfoType.
188
203
},
189
204
"maxFindings": 42, # Max findings limit for the given infoType.
@@ -198,6 +213,9 @@ <h3>Method Details</h3>
198
213
"infoTypes": [ # List of infoTypes this rule set is applied to.
199
214
{ # Type of information detected by the API.
200
215
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
216
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
217
+
"score": "A String", # The sensitivity score applied to the resource.
218
+
},
201
219
"version": "A String", # Optional version name for this InfoType.
202
220
},
203
221
],
@@ -230,6 +248,9 @@ <h3>Method Details</h3>
230
248
"infoTypes": [ # InfoType list in ExclusionRule rule drops a finding when it overlaps or contained within with a finding of an infoType from this list. For example, for `InspectionRuleSet.info_types` containing "PHONE_NUMBER"` and `exclusion_rule` containing `exclude_info_types.info_types` with "EMAIL_ADDRESS" the phone number findings are dropped if they overlap with EMAIL_ADDRESS finding. That leads to "555-222-2222@example.org" to generate only a single finding, namely email address.
231
249
{ # Type of information detected by the API.
232
250
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
251
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
252
+
"score": "A String", # The sensitivity score applied to the resource.
253
+
},
233
254
"version": "A String", # Optional version name for this InfoType.
234
255
},
235
256
],
@@ -283,6 +304,9 @@ <h3>Method Details</h3>
283
304
"findingId": "A String", # The unique finding id.
284
305
"infoType": { # Type of information detected by the API. # The type of content that might have been found. Provided if `excluded_types` is false.
285
306
"name": "A String", # Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$_-]{1,64}`.
307
+
"sensitivityScore": { # Score is calculated from of all elements in the data profile. A higher level means the data is more sensitive. # Optional custom sensitivity for this InfoType. This only applies to data profiling.
308
+
"score": "A String", # The sensitivity score applied to the resource.
309
+
},
286
310
"version": "A String", # Optional version name for this InfoType.
287
311
},
288
312
"jobCreateTime": "A String", # Time the job started that produced this finding.
0 commit comments