@googleapis/threatintelligence 3.0.0 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/v1beta.ts CHANGED
@@ -213,6 +213,10 @@ export namespace threatintelligence_v1beta {
213
213
  * Insider Threat alert detail type.
214
214
  */
215
215
  insiderThreat?: Schema$InsiderThreatAlertDetail;
216
+ /**
217
+ * Technology Watchlist alert detail type.
218
+ */
219
+ targetTechnology?: Schema$TargetTechnologyAlertDetail;
216
220
  }
217
221
  /**
218
222
  * A document that is associated with an alert.
@@ -284,6 +288,19 @@ export namespace threatintelligence_v1beta {
284
288
  */
285
289
  translatedTitle?: string | null;
286
290
  }
291
+ /**
292
+ * Represents an association with a vulnerability.
293
+ */
294
+ export interface Schema$Association {
295
+ /**
296
+ * Required. The ID of the association.
297
+ */
298
+ id?: string | null;
299
+ /**
300
+ * Required. The type of the association.
301
+ */
302
+ type?: string | null;
303
+ }
287
304
  /**
288
305
  * Tracks basic CRUD facts.
289
306
  */
@@ -325,6 +342,10 @@ export namespace threatintelligence_v1beta {
325
342
  * Output only. Human readable name for the configuration.
326
343
  */
327
344
  displayName?: string | null;
345
+ /**
346
+ * If included when updating a configuration, this should be set to the current etag of the configuration. If the etags do not match, the update will be rejected and an ABORTED error will be returned.
347
+ */
348
+ etag?: string | null;
328
349
  /**
329
350
  * Identifier. Server generated name for the configuration. format is projects/{project\}/configurations/{configuration\}
330
351
  */
@@ -350,10 +371,18 @@ export namespace threatintelligence_v1beta {
350
371
  * Customer Profile detail config.
351
372
  */
352
373
  customerProfile?: Schema$CustomerProfileConfig;
374
+ /**
375
+ * Custom Threat Scenario detail config.
376
+ */
377
+ customThreatScenario?: Schema$CustomThreatScenarioConfig;
353
378
  /**
354
379
  * Output only. Name of the detail type. Will be set by the server during creation to the name of the field that is set in the detail union.
355
380
  */
356
381
  detailType?: string | null;
382
+ /**
383
+ * Technology Watchlist detail config.
384
+ */
385
+ technologyWatchlist?: Schema$TechnologyWatchListConfig;
357
386
  }
358
387
  /**
359
388
  * A ConfigurationRevision is a snapshot of a Configuration at a point in time. It is immutable.
@@ -656,6 +685,15 @@ export namespace threatintelligence_v1beta {
656
685
  */
657
686
  domain?: string | null;
658
687
  }
688
+ /**
689
+ * CustomThreatScenarioConfig represents a user-defined threat scenario configuration.
690
+ */
691
+ export interface Schema$CustomThreatScenarioConfig {
692
+ /**
693
+ * Required. The condition driving the scenario, stored as a stringified JSON. This is used to query/filter documents.
694
+ */
695
+ documentCondition?: string | null;
696
+ }
659
697
  /**
660
698
  * Captures the specific details of Data Leak alert.
661
699
  */
@@ -823,6 +861,10 @@ export namespace threatintelligence_v1beta {
823
861
  * Insider Threat finding detail type.
824
862
  */
825
863
  insiderThreat?: Schema$InsiderThreatFindingDetail;
864
+ /**
865
+ * Technology Watchlist finding detail type.
866
+ */
867
+ targetTechnology?: Schema$TargetTechnologyFindingDetail;
826
868
  }
827
869
  /**
828
870
  * Request message for GenerateOrgProfileConfiguration.
@@ -837,6 +879,15 @@ export namespace threatintelligence_v1beta {
837
879
  */
838
880
  domain?: string | null;
839
881
  }
882
+ /**
883
+ * Response message for GetPassword.
884
+ */
885
+ export interface Schema$GetPasswordResponse {
886
+ /**
887
+ * The decrypted cleartext password for the compromised credential.
888
+ */
889
+ password?: string | null;
890
+ }
840
891
  /**
841
892
  * Captures the specific details of InitialAccessBroker (IAB) alert.
842
893
  */
@@ -1032,6 +1083,56 @@ export namespace threatintelligence_v1beta {
1032
1083
  */
1033
1084
  reasoning?: string | null;
1034
1085
  }
1086
+ /**
1087
+ * Contains details about a product fix.
1088
+ */
1089
+ export interface Schema$ProductFix {
1090
+ /**
1091
+ * Required. The name of the fix. Ex: "Magento".
1092
+ */
1093
+ displayName?: string | null;
1094
+ /**
1095
+ * Optional. The published time of the fix.
1096
+ */
1097
+ publishTime?: string | null;
1098
+ /**
1099
+ * Required. The source ID of the fix. Ex: "APPSEC-1420".
1100
+ */
1101
+ sourceId?: string | null;
1102
+ /**
1103
+ * Optional. The URI of the fix.
1104
+ */
1105
+ uri?: string | null;
1106
+ }
1107
+ /**
1108
+ * Contains details about a public exploit.
1109
+ */
1110
+ export interface Schema$PublicExploit {
1111
+ /**
1112
+ * Optional. The grade of the exploit. Ex: "non-weaponized".
1113
+ */
1114
+ exploitGrade?: string | null;
1115
+ /**
1116
+ * Required. The name of the exploit. Ex: "Magentounauth.php.txt".
1117
+ */
1118
+ exploitName?: string | null;
1119
+ /**
1120
+ * Optional. The reliability of the exploit. Ex: "Unreviewed".
1121
+ */
1122
+ exploitReliability?: string | null;
1123
+ /**
1124
+ * Optional. The release time of the exploit.
1125
+ */
1126
+ releaseTime?: string | null;
1127
+ /**
1128
+ * Optional. The size of the exploit.
1129
+ */
1130
+ sizeBytes?: string | null;
1131
+ /**
1132
+ * Optional. The URI of the exploit.
1133
+ */
1134
+ uri?: string | null;
1135
+ }
1035
1136
  /**
1036
1137
  * Structured relevance analysis for a threat.
1037
1138
  */
@@ -1104,6 +1205,62 @@ export namespace threatintelligence_v1beta {
1104
1205
  */
1105
1206
  message?: string | null;
1106
1207
  }
1208
+ /**
1209
+ * Contains details for a technology watchlist alert.
1210
+ */
1211
+ export interface Schema$TargetTechnologyAlertDetail {
1212
+ /**
1213
+ * Optional. The vulnerability match details.
1214
+ */
1215
+ vulnerabilityMatch?: Schema$VulnerabilityMatch;
1216
+ }
1217
+ /**
1218
+ * Contains details for a technology watchlist finding.
1219
+ */
1220
+ export interface Schema$TargetTechnologyFindingDetail {
1221
+ /**
1222
+ * Optional. The vulnerability match details.
1223
+ */
1224
+ vulnerabilityMatch?: Schema$VulnerabilityMatch;
1225
+ }
1226
+ /**
1227
+ * TechnologyWatchListAlertThreshold contains the thresholds for alerting.
1228
+ */
1229
+ export interface Schema$TechnologyWatchListAlertThreshold {
1230
+ /**
1231
+ * Optional. The minimum CVSS score for the alert. Evaluates to CVSS v3 when available with a fallback to v2 and v4. Ex: 7.0. Valid range is [0.0, 10.0].
1232
+ */
1233
+ cvssScoreMinimum?: number | null;
1234
+ /**
1235
+ * Optional. The minimum epss score for the alert. Ex: 0.8. Valid range is [0.0, 1.0].
1236
+ */
1237
+ epssScoreMinimum?: number | null;
1238
+ /**
1239
+ * Optional. The exploitation states of the alert.
1240
+ */
1241
+ exploitationStates?: string[] | null;
1242
+ /**
1243
+ * Optional. The minimum priority for the alert.
1244
+ */
1245
+ priorityMinimum?: string | null;
1246
+ /**
1247
+ * Optional. The minimum risk rating for the alert.
1248
+ */
1249
+ riskRatingMinimum?: string | null;
1250
+ }
1251
+ /**
1252
+ * TechnologyWatchListConfig is the configuration for the technology watchlist.
1253
+ */
1254
+ export interface Schema$TechnologyWatchListConfig {
1255
+ /**
1256
+ * Optional. Alert thresholds to effectively reduce noise.
1257
+ */
1258
+ alertThreshold?: Schema$TechnologyWatchListAlertThreshold;
1259
+ /**
1260
+ * Optional. List of vendor, technology or cpe fingerprint. example: Microsoft office 360 Apache Server 3.5 cpe:2.3:a:microsoft:outlook:*:*:*:*:*:*:*:*
1261
+ */
1262
+ technologies?: string[] | null;
1263
+ }
1107
1264
  /**
1108
1265
  * Response message for UpsertConfiguration.
1109
1266
  */
@@ -1113,6 +1270,79 @@ export namespace threatintelligence_v1beta {
1113
1270
  */
1114
1271
  configuration?: string | null;
1115
1272
  }
1273
+ /**
1274
+ * Contains details about a vulnerability match.
1275
+ */
1276
+ export interface Schema$VulnerabilityMatch {
1277
+ /**
1278
+ * Optional. Associated threat actors, malware, etc. This is embedded as a snapshot because the details of the association at the time of the vulnerability match are important for context and reporting.
1279
+ */
1280
+ associations?: Schema$Association[];
1281
+ /**
1282
+ * Required. The collection ID of the vulnerability. Ex: "vulnerability--cve-2025-9876".
1283
+ */
1284
+ collectionId?: string | null;
1285
+ /**
1286
+ * Required. The CVE ID of the vulnerability. Ex: "CVE-2025-9876". See https://www.cve.org/ for more information.
1287
+ */
1288
+ cveId?: string | null;
1289
+ /**
1290
+ * Required. The CVSS score of the vulnerability. Evaluates to CVSS v3 when available with a fallback to v2 and v4. Example: 6.4.
1291
+ */
1292
+ cvss3Score?: number | null;
1293
+ /**
1294
+ * Required. A description of the vulnerability.
1295
+ */
1296
+ description?: string | null;
1297
+ /**
1298
+ * Optional. The disclosure time of the vulnerability.
1299
+ */
1300
+ disclosureTime?: string | null;
1301
+ /**
1302
+ * Optional. The EPSS score, representing the probability of exploitation. Example: 0.87.
1303
+ */
1304
+ epssScore?: number | null;
1305
+ /**
1306
+ * Optional. List of exploitation consequences for the vulnerability.
1307
+ */
1308
+ exploitationConsequences?: string[] | null;
1309
+ /**
1310
+ * Required. The exploitation state of the vulnerability.
1311
+ */
1312
+ exploitationState?: string | null;
1313
+ /**
1314
+ * Optional. List of exploitation vectors for the vulnerability.
1315
+ */
1316
+ exploitationVectors?: string[] | null;
1317
+ /**
1318
+ * Optional. The specific technologies from the configured watchlist that triggered the match. Ex: "Apache Struts".
1319
+ */
1320
+ matchedTechnologies?: string[] | null;
1321
+ /**
1322
+ * Optional. The priority level of the vulnerability data. Ex: "P1".
1323
+ */
1324
+ priority?: string | null;
1325
+ /**
1326
+ * Optional. List of product fixes for the vulnerability.
1327
+ */
1328
+ productFixes?: Schema$ProductFix[];
1329
+ /**
1330
+ * Optional. List of public exploits.
1331
+ */
1332
+ publicExploits?: Schema$PublicExploit[];
1333
+ /**
1334
+ * Output only. Whether a publicly available exploit exists.
1335
+ */
1336
+ publiclyAvailableExploit?: boolean | null;
1337
+ /**
1338
+ * Required. The risk rating of the vulnerability.
1339
+ */
1340
+ riskRating?: string | null;
1341
+ /**
1342
+ * Required. All technologies affected by the vulnerability. Ex: "Apache Struts".
1343
+ */
1344
+ technologies?: string[] | null;
1345
+ }
1116
1346
 
1117
1347
  export class Resource$Projects {
1118
1348
  context: APIRequestContext;
@@ -1227,8 +1457,7 @@ export namespace threatintelligence_v1beta {
1227
1457
  | BodyResponseCallback<Schema$Operation>
1228
1458
  | BodyResponseCallback<Readable>,
1229
1459
  callback?:
1230
- | BodyResponseCallback<Schema$Operation>
1231
- | BodyResponseCallback<Readable>
1460
+ BodyResponseCallback<Schema$Operation> | BodyResponseCallback<Readable>
1232
1461
  ):
1233
1462
  | void
1234
1463
  | Promise<GaxiosResponseWithHTTP2<Schema$Operation>>
@@ -1407,8 +1636,7 @@ export namespace threatintelligence_v1beta {
1407
1636
  | BodyResponseCallback<Schema$Alert>
1408
1637
  | BodyResponseCallback<Readable>,
1409
1638
  callback?:
1410
- | BodyResponseCallback<Schema$Alert>
1411
- | BodyResponseCallback<Readable>
1639
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
1412
1640
  ):
1413
1641
  | void
1414
1642
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -1568,8 +1796,7 @@ export namespace threatintelligence_v1beta {
1568
1796
  | BodyResponseCallback<Schema$Alert>
1569
1797
  | BodyResponseCallback<Readable>,
1570
1798
  callback?:
1571
- | BodyResponseCallback<Schema$Alert>
1572
- | BodyResponseCallback<Readable>
1799
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
1573
1800
  ):
1574
1801
  | void
1575
1802
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -1873,8 +2100,7 @@ export namespace threatintelligence_v1beta {
1873
2100
  | BodyResponseCallback<Schema$Alert>
1874
2101
  | BodyResponseCallback<Readable>,
1875
2102
  callback?:
1876
- | BodyResponseCallback<Schema$Alert>
1877
- | BodyResponseCallback<Readable>
2103
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
1878
2104
  ):
1879
2105
  | void
1880
2106
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -2032,8 +2258,7 @@ export namespace threatintelligence_v1beta {
2032
2258
  | BodyResponseCallback<Schema$Alert>
2033
2259
  | BodyResponseCallback<Readable>,
2034
2260
  callback?:
2035
- | BodyResponseCallback<Schema$Alert>
2036
- | BodyResponseCallback<Readable>
2261
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
2037
2262
  ):
2038
2263
  | void
2039
2264
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -2185,8 +2410,7 @@ export namespace threatintelligence_v1beta {
2185
2410
  | BodyResponseCallback<Schema$Alert>
2186
2411
  | BodyResponseCallback<Readable>,
2187
2412
  callback?:
2188
- | BodyResponseCallback<Schema$Alert>
2189
- | BodyResponseCallback<Readable>
2413
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
2190
2414
  ):
2191
2415
  | void
2192
2416
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -2232,6 +2456,146 @@ export namespace threatintelligence_v1beta {
2232
2456
  }
2233
2457
  }
2234
2458
 
2459
+ /**
2460
+ * Get the decrypted password of an alert.
2461
+ * @example
2462
+ * ```js
2463
+ * // Before running the sample:
2464
+ * // - Enable the API at:
2465
+ * // https://console.developers.google.com/apis/api/threatintelligence.googleapis.com
2466
+ * // - Login into gcloud by running:
2467
+ * // ```sh
2468
+ * // $ gcloud auth application-default login
2469
+ * // ```
2470
+ * // - Install the npm module by running:
2471
+ * // ```sh
2472
+ * // $ npm install googleapis
2473
+ * // ```
2474
+ *
2475
+ * const {google} = require('googleapis');
2476
+ * const threatintelligence = google.threatintelligence('v1beta');
2477
+ *
2478
+ * async function main() {
2479
+ * const auth = new google.auth.GoogleAuth({
2480
+ * // Scopes can be specified either as an array or as a single, space-delimited string.
2481
+ * scopes: ['https://www.googleapis.com/auth/cloud-platform'],
2482
+ * });
2483
+ *
2484
+ * // Acquire an auth client, and bind it to all future calls
2485
+ * const authClient = await auth.getClient();
2486
+ * google.options({auth: authClient});
2487
+ *
2488
+ * // Do the magic
2489
+ * const res = await threatintelligence.projects.alerts.getPassword({
2490
+ * // Required. Name of the alert to get password for. Format: projects/{project\}/alerts/{alert\}
2491
+ * name: 'projects/my-project/alerts/my-alert',
2492
+ * });
2493
+ * console.log(res.data);
2494
+ *
2495
+ * // Example response
2496
+ * // {
2497
+ * // "password": "my_password"
2498
+ * // }
2499
+ * }
2500
+ *
2501
+ * main().catch(e => {
2502
+ * console.error(e);
2503
+ * throw e;
2504
+ * });
2505
+ *
2506
+ * ```
2507
+ *
2508
+ * @param params - Parameters for request
2509
+ * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
2510
+ * @param callback - Optional callback that handles the response.
2511
+ * @returns A promise if used with async/await, or void if used with a callback.
2512
+ */
2513
+ getPassword(
2514
+ params: Params$Resource$Projects$Alerts$Getpassword,
2515
+ options: StreamMethodOptions
2516
+ ): Promise<GaxiosResponseWithHTTP2<Readable>>;
2517
+ getPassword(
2518
+ params?: Params$Resource$Projects$Alerts$Getpassword,
2519
+ options?: MethodOptions
2520
+ ): Promise<GaxiosResponseWithHTTP2<Schema$GetPasswordResponse>>;
2521
+ getPassword(
2522
+ params: Params$Resource$Projects$Alerts$Getpassword,
2523
+ options: StreamMethodOptions | BodyResponseCallback<Readable>,
2524
+ callback: BodyResponseCallback<Readable>
2525
+ ): void;
2526
+ getPassword(
2527
+ params: Params$Resource$Projects$Alerts$Getpassword,
2528
+ options: MethodOptions | BodyResponseCallback<Schema$GetPasswordResponse>,
2529
+ callback: BodyResponseCallback<Schema$GetPasswordResponse>
2530
+ ): void;
2531
+ getPassword(
2532
+ params: Params$Resource$Projects$Alerts$Getpassword,
2533
+ callback: BodyResponseCallback<Schema$GetPasswordResponse>
2534
+ ): void;
2535
+ getPassword(
2536
+ callback: BodyResponseCallback<Schema$GetPasswordResponse>
2537
+ ): void;
2538
+ getPassword(
2539
+ paramsOrCallback?:
2540
+ | Params$Resource$Projects$Alerts$Getpassword
2541
+ | BodyResponseCallback<Schema$GetPasswordResponse>
2542
+ | BodyResponseCallback<Readable>,
2543
+ optionsOrCallback?:
2544
+ | MethodOptions
2545
+ | StreamMethodOptions
2546
+ | BodyResponseCallback<Schema$GetPasswordResponse>
2547
+ | BodyResponseCallback<Readable>,
2548
+ callback?:
2549
+ | BodyResponseCallback<Schema$GetPasswordResponse>
2550
+ | BodyResponseCallback<Readable>
2551
+ ):
2552
+ | void
2553
+ | Promise<GaxiosResponseWithHTTP2<Schema$GetPasswordResponse>>
2554
+ | Promise<GaxiosResponseWithHTTP2<Readable>> {
2555
+ let params = (paramsOrCallback ||
2556
+ {}) as Params$Resource$Projects$Alerts$Getpassword;
2557
+ let options = (optionsOrCallback || {}) as MethodOptions;
2558
+
2559
+ if (typeof paramsOrCallback === 'function') {
2560
+ callback = paramsOrCallback;
2561
+ params = {} as Params$Resource$Projects$Alerts$Getpassword;
2562
+ options = {};
2563
+ }
2564
+
2565
+ if (typeof optionsOrCallback === 'function') {
2566
+ callback = optionsOrCallback;
2567
+ options = {};
2568
+ }
2569
+
2570
+ const rootUrl =
2571
+ options.rootUrl || 'https://threatintelligence.googleapis.com/';
2572
+ const parameters = {
2573
+ options: Object.assign(
2574
+ {
2575
+ url: (rootUrl + '/v1beta/{+name}:getPassword').replace(
2576
+ /([^:]\/)\/+/g,
2577
+ '$1'
2578
+ ),
2579
+ method: 'GET',
2580
+ apiVersion: '',
2581
+ },
2582
+ options
2583
+ ),
2584
+ params,
2585
+ requiredParams: ['name'],
2586
+ pathParams: ['name'],
2587
+ context: this.context,
2588
+ };
2589
+ if (callback) {
2590
+ createAPIRequest<Schema$GetPasswordResponse>(
2591
+ parameters,
2592
+ callback as BodyResponseCallback<unknown>
2593
+ );
2594
+ } else {
2595
+ return createAPIRequest<Schema$GetPasswordResponse>(parameters);
2596
+ }
2597
+ }
2598
+
2235
2599
  /**
2236
2600
  * Get a list of alerts that meet the filter criteria.
2237
2601
  * @example
@@ -2488,8 +2852,7 @@ export namespace threatintelligence_v1beta {
2488
2852
  | BodyResponseCallback<Schema$Alert>
2489
2853
  | BodyResponseCallback<Readable>,
2490
2854
  callback?:
2491
- | BodyResponseCallback<Schema$Alert>
2492
- | BodyResponseCallback<Readable>
2855
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
2493
2856
  ):
2494
2857
  | void
2495
2858
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -2647,8 +3010,7 @@ export namespace threatintelligence_v1beta {
2647
3010
  | BodyResponseCallback<Schema$Alert>
2648
3011
  | BodyResponseCallback<Readable>,
2649
3012
  callback?:
2650
- | BodyResponseCallback<Schema$Alert>
2651
- | BodyResponseCallback<Readable>
3013
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
2652
3014
  ):
2653
3015
  | void
2654
3016
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -2806,8 +3168,7 @@ export namespace threatintelligence_v1beta {
2806
3168
  | BodyResponseCallback<Schema$Alert>
2807
3169
  | BodyResponseCallback<Readable>,
2808
3170
  callback?:
2809
- | BodyResponseCallback<Schema$Alert>
2810
- | BodyResponseCallback<Readable>
3171
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
2811
3172
  ):
2812
3173
  | void
2813
3174
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -2965,8 +3326,7 @@ export namespace threatintelligence_v1beta {
2965
3326
  | BodyResponseCallback<Schema$Alert>
2966
3327
  | BodyResponseCallback<Readable>,
2967
3328
  callback?:
2968
- | BodyResponseCallback<Schema$Alert>
2969
- | BodyResponseCallback<Readable>
3329
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
2970
3330
  ):
2971
3331
  | void
2972
3332
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -3124,8 +3484,7 @@ export namespace threatintelligence_v1beta {
3124
3484
  | BodyResponseCallback<Schema$Alert>
3125
3485
  | BodyResponseCallback<Readable>,
3126
3486
  callback?:
3127
- | BodyResponseCallback<Schema$Alert>
3128
- | BodyResponseCallback<Readable>
3487
+ BodyResponseCallback<Schema$Alert> | BodyResponseCallback<Readable>
3129
3488
  ):
3130
3489
  | void
3131
3490
  | Promise<GaxiosResponseWithHTTP2<Schema$Alert>>
@@ -3235,6 +3594,12 @@ export namespace threatintelligence_v1beta {
3235
3594
  */
3236
3595
  name?: string;
3237
3596
  }
3597
+ export interface Params$Resource$Projects$Alerts$Getpassword extends StandardParameters {
3598
+ /**
3599
+ * Required. Name of the alert to get password for. Format: projects/{project\}/alerts/{alert\}
3600
+ */
3601
+ name?: string;
3602
+ }
3238
3603
  export interface Params$Resource$Projects$Alerts$List extends StandardParameters {
3239
3604
  /**
3240
3605
  * Optional. Filter criteria. Supported fields for filtering include: * `audit.create_time` * `audit.creator` * `audit.update_time` * `audit.updater` * `detail.data_leak.discovery_document_ids` * `detail.data_leak.severity` * `detail.detail_type` * `detail.initial_access_broker.discovery_document_ids` * `detail.initial_access_broker.severity` * `detail.insider_threat.discovery_document_ids` * `detail.insider_threat.severity` * `finding_count` * `priority_analysis.priority_level` * `relevance_analysis.confidence` * `relevance_analysis.relevance_level` * `relevance_analysis.relevant` * `severity_analysis.severity_level` * `state` Examples: * `detail.detail_type = "initial_access_broker"` * `detail.detail_type != "data_leak"` * `detail.insider_threat.severity = "HIGH"` * `audit.create_time \>= "2026-04-03T00:00:00Z" AND audit.create_time < "2026-04-06T00:00:00Z"` * `state = "NEW" OR state = "TRIAGED"` * `severity_analysis.severity_level = "SEVERITY_LEVEL_CRITICAL"`
@@ -3526,6 +3891,7 @@ export namespace threatintelligence_v1beta {
3526
3891
  * // "description": "my_description",
3527
3892
  * // "detail": {},
3528
3893
  * // "displayName": "my_displayName",
3894
+ * // "etag": "my_etag",
3529
3895
  * // "name": "my_name",
3530
3896
  * // "provider": "my_provider",
3531
3897
  * // "state": "my_state",
@@ -3705,8 +4071,7 @@ export namespace threatintelligence_v1beta {
3705
4071
  list(
3706
4072
  params: Params$Resource$Projects$Configurations$List,
3707
4073
  options:
3708
- | MethodOptions
3709
- | BodyResponseCallback<Schema$ListConfigurationsResponse>,
4074
+ MethodOptions | BodyResponseCallback<Schema$ListConfigurationsResponse>,
3710
4075
  callback: BodyResponseCallback<Schema$ListConfigurationsResponse>
3711
4076
  ): void;
3712
4077
  list(
@@ -3821,6 +4186,7 @@ export namespace threatintelligence_v1beta {
3821
4186
  * // "description": "my_description",
3822
4187
  * // "detail": {},
3823
4188
  * // "displayName": "my_displayName",
4189
+ * // "etag": "my_etag",
3824
4190
  * // "name": "my_name",
3825
4191
  * // "provider": "my_provider",
3826
4192
  * // "state": "my_state",
@@ -4273,8 +4639,7 @@ export namespace threatintelligence_v1beta {
4273
4639
  | BodyResponseCallback<Schema$Finding>
4274
4640
  | BodyResponseCallback<Readable>,
4275
4641
  callback?:
4276
- | BodyResponseCallback<Schema$Finding>
4277
- | BodyResponseCallback<Readable>
4642
+ BodyResponseCallback<Schema$Finding> | BodyResponseCallback<Readable>
4278
4643
  ):
4279
4644
  | void
4280
4645
  | Promise<GaxiosResponseWithHTTP2<Schema$Finding>>
@@ -4399,8 +4764,7 @@ export namespace threatintelligence_v1beta {
4399
4764
  list(
4400
4765
  params: Params$Resource$Projects$Findings$List,
4401
4766
  options:
4402
- | MethodOptions
4403
- | BodyResponseCallback<Schema$ListFindingsResponse>,
4767
+ MethodOptions | BodyResponseCallback<Schema$ListFindingsResponse>,
4404
4768
  callback: BodyResponseCallback<Schema$ListFindingsResponse>
4405
4769
  ): void;
4406
4770
  list(
@@ -4548,8 +4912,7 @@ export namespace threatintelligence_v1beta {
4548
4912
  search(
4549
4913
  params: Params$Resource$Projects$Findings$Search,
4550
4914
  options:
4551
- | MethodOptions
4552
- | BodyResponseCallback<Schema$SearchFindingsResponse>,
4915
+ MethodOptions | BodyResponseCallback<Schema$SearchFindingsResponse>,
4553
4916
  callback: BodyResponseCallback<Schema$SearchFindingsResponse>
4554
4917
  ): void;
4555
4918
  search(