@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20241111 → 0.0.20241204

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.
Files changed (2) hide show
  1. package/index.d.ts +125 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://securitycenter.googleapis.com/$discovery/rest?version=v1beta2
12
- // Revision: 20241111
12
+ // Revision: 20241204
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1446,6 +1446,130 @@ declare namespace gapi.client {
1446
1446
  /** The list of URIs associated to the Findings. */
1447
1447
  uris?: string[];
1448
1448
  }
1449
+ interface GoogleCloudSecuritycenterV2Issue {
1450
+ /** Output only. The time the issue was created. */
1451
+ createTime?: string;
1452
+ /** The description of the issue in Markdown format. */
1453
+ description?: string;
1454
+ /** The finding category or rule name that generated the issue. */
1455
+ detection?: string;
1456
+ /** The domains of the issue. */
1457
+ domains?: GoogleCloudSecuritycenterV2IssueDomain[];
1458
+ /** The exposure score of the issue. */
1459
+ exposureScore?: number;
1460
+ /** The type of the issue. */
1461
+ issueType?: string;
1462
+ /** The time the issue was last observed. */
1463
+ lastObservationTime?: string;
1464
+ /** The mute information of the issue. */
1465
+ mute?: GoogleCloudSecuritycenterV2IssueMute;
1466
+ /** Identifier. The name of the issue. Format: organizations/{organization}/locations/{location}/issues/{issue} */
1467
+ name?: string;
1468
+ /** The primary resource associated with the issue. */
1469
+ primaryResource?: GoogleCloudSecuritycenterV2IssueResource;
1470
+ /** The findings related to the issue. */
1471
+ relatedFindings?: GoogleCloudSecuritycenterV2IssueFinding[];
1472
+ /** Approaches to remediate the issue in Markdown format. */
1473
+ remediations?: string[];
1474
+ /** Additional resources associated with the issue. */
1475
+ secondaryResources?: GoogleCloudSecuritycenterV2IssueResource[];
1476
+ /** The security context of the issue. */
1477
+ securityContexts?: GoogleCloudSecuritycenterV2IssueSecurityContext[];
1478
+ /** The severity of the issue. */
1479
+ severity?: string;
1480
+ /** Output only. The state of the issue. */
1481
+ state?: string;
1482
+ /** Output only. The time the issue was last updated. */
1483
+ updateTime?: string;
1484
+ }
1485
+ interface GoogleCloudSecuritycenterV2IssueDomain {
1486
+ /** The domain category of the issue. */
1487
+ domainCategory?: string;
1488
+ }
1489
+ interface GoogleCloudSecuritycenterV2IssueFinding {
1490
+ /** The CVE of the finding. */
1491
+ cve?: GoogleCloudSecuritycenterV2IssueFindingCve;
1492
+ /** The name of the finding. */
1493
+ name?: string;
1494
+ /** The security bulletin of the finding. */
1495
+ securityBulletin?: GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin;
1496
+ }
1497
+ interface GoogleCloudSecuritycenterV2IssueFindingCve {
1498
+ /** The CVE name. */
1499
+ name?: string;
1500
+ }
1501
+ interface GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin {
1502
+ /** The security bulletin name. */
1503
+ name?: string;
1504
+ }
1505
+ interface GoogleCloudSecuritycenterV2IssueMute {
1506
+ /** The email address of the user who last changed the mute state of the issue. */
1507
+ muteInitiator?: string;
1508
+ /** The user-provided reason for muting the issue. */
1509
+ muteReason?: string;
1510
+ /** Output only. The mute state of the issue. */
1511
+ muteState?: string;
1512
+ /** The time the issue was muted. */
1513
+ muteUpdateTime?: string;
1514
+ }
1515
+ interface GoogleCloudSecuritycenterV2IssueResource {
1516
+ /** The AWS metadata of the resource associated with the issue. Only populated for AWS resources. */
1517
+ awsMetadata?: GoogleCloudSecuritycenterV2IssueResourceAwsMetadata;
1518
+ /** The Azure metadata of the resource associated with the issue. Only populated for Azure resources. */
1519
+ azureMetadata?: GoogleCloudSecuritycenterV2IssueResourceAzureMetadata;
1520
+ /** The cloud provider of the resource associated with the issue. */
1521
+ cloudProvider?: string;
1522
+ /** The resource-type specific display name of the resource associated with the issue. */
1523
+ displayName?: string;
1524
+ /** The Google Cloud metadata of the resource associated with the issue. Only populated for Google Cloud resources. */
1525
+ googleCloudMetadata?: GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata;
1526
+ /** The full resource name of the resource associated with the issue. */
1527
+ name?: string;
1528
+ /** The type of the resource associated with the issue. */
1529
+ type?: string;
1530
+ }
1531
+ interface GoogleCloudSecuritycenterV2IssueResourceAwsMetadata {
1532
+ /** The AWS account of the resource associated with the issue. */
1533
+ account?: GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount;
1534
+ }
1535
+ interface GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount {
1536
+ /** The AWS account ID of the resource associated with the issue. */
1537
+ id?: string;
1538
+ /** The AWS account name of the resource associated with the issue. */
1539
+ name?: string;
1540
+ }
1541
+ interface GoogleCloudSecuritycenterV2IssueResourceAzureMetadata {
1542
+ /** The Azure subscription of the resource associated with the issue. */
1543
+ subscription?: GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription;
1544
+ }
1545
+ interface GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription {
1546
+ /** The Azure subscription display name of the resource associated with the issue. */
1547
+ displayName?: string;
1548
+ /** The Azure subscription ID of the resource associated with the issue. */
1549
+ id?: string;
1550
+ }
1551
+ interface GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata {
1552
+ /** The project ID that the resource associated with the issue belongs to. */
1553
+ projectId?: string;
1554
+ }
1555
+ interface GoogleCloudSecuritycenterV2IssueSecurityContext {
1556
+ /** The aggregated count of the security context. */
1557
+ aggregatedCount?: GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount;
1558
+ /** The context of the security context. */
1559
+ context?: GoogleCloudSecuritycenterV2IssueSecurityContextContext;
1560
+ }
1561
+ interface GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount {
1562
+ /** Aggregation key. */
1563
+ key?: string;
1564
+ /** Aggregation value. */
1565
+ value?: number;
1566
+ }
1567
+ interface GoogleCloudSecuritycenterV2IssueSecurityContextContext {
1568
+ /** Context type. */
1569
+ type?: string;
1570
+ /** Context values. */
1571
+ values?: string[];
1572
+ }
1449
1573
  interface GoogleCloudSecuritycenterV2KernelRootkit {
1450
1574
  /** Rootkit name, when available. */
1451
1575
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.securitycenter-v1beta2",
3
- "version": "0.0.20241111",
3
+ "version": "0.0.20241204",
4
4
  "description": "TypeScript typings for Security Command Center API v1beta2",
5
5
  "repository": {
6
6
  "type": "git",