@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.2.20260206 → 0.2.20260223
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/index.d.ts +61 -1
- 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:
|
|
12
|
+
// Revision: 20260223
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -465,6 +465,8 @@ declare namespace gapi.client {
|
|
|
465
465
|
eventType?: string;
|
|
466
466
|
/** Maximum duration of retention allowed from the DRD control. This comes from the DRD control where users set a max TTL for their data. For example, suppose that a user sets the max TTL for a Cloud Storage bucket to 90 days. However, an object in that bucket is 100 days old. In this case, a DataRetentionDeletionEvent will be generated for that Cloud Storage bucket, and the max_retention_allowed is 90 days. */
|
|
467
467
|
maxRetentionAllowed?: string;
|
|
468
|
+
/** Min duration of retention allowed from the DSPM retention control. This field is only populated when event type is set to EVENT_TYPE_MIN_TTL_FROM_CREATION. */
|
|
469
|
+
minRetentionAllowed?: string;
|
|
468
470
|
}
|
|
469
471
|
interface Dataset {
|
|
470
472
|
/** The user defined display name of dataset, e.g. plants-dataset */
|
|
@@ -555,6 +557,32 @@ declare namespace gapi.client {
|
|
|
555
557
|
/** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
|
|
556
558
|
title?: string;
|
|
557
559
|
}
|
|
560
|
+
interface ExternalExposure {
|
|
561
|
+
/** The full resource name of load balancer backend service, for example, "//compute.googleapis.com/projects/{project-id}/global/backendServices/{name}". */
|
|
562
|
+
backendService?: string;
|
|
563
|
+
/** The resource which is running the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/zones/{zone}/instances/{instance}.” */
|
|
564
|
+
exposedEndpoint?: string;
|
|
565
|
+
/** The name and version of the service, for example, "Jupyter Notebook 6.14.0". */
|
|
566
|
+
exposedService?: string;
|
|
567
|
+
/** The full resource name of the forwarding rule, for example, "//compute.googleapis.com/projects/{project-id}/global/forwardingRules/{forwarding-rule-name}". */
|
|
568
|
+
forwardingRule?: string;
|
|
569
|
+
/** The full resource name of the instance group, for example, "//compute.googleapis.com/projects/{project-id}/global/instanceGroups/{name}". */
|
|
570
|
+
instanceGroup?: string;
|
|
571
|
+
/** The full resource name of the load balancer firewall policy, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
572
|
+
loadBalancerFirewallPolicy?: string;
|
|
573
|
+
/** The full resource name of the network endpoint group, for example, "//compute.googleapis.com/projects/{project-id}/global/networkEndpointGroups/{name}". */
|
|
574
|
+
networkEndpointGroup?: string;
|
|
575
|
+
/** Private IP address of the exposed endpoint. */
|
|
576
|
+
privateIpAddress?: string;
|
|
577
|
+
/** Port number associated with private IP address. */
|
|
578
|
+
privatePort?: string;
|
|
579
|
+
/** Public IP address of the exposed endpoint. */
|
|
580
|
+
publicIpAddress?: string;
|
|
581
|
+
/** Public port number of the exposed endpoint. */
|
|
582
|
+
publicPort?: string;
|
|
583
|
+
/** The full resource name of the firewall policy of the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
584
|
+
serviceFirewallPolicy?: string;
|
|
585
|
+
}
|
|
558
586
|
interface File {
|
|
559
587
|
/** Prefix of the file contents as a JSON-encoded string. */
|
|
560
588
|
contents?: string;
|
|
@@ -634,6 +662,8 @@ declare namespace gapi.client {
|
|
|
634
662
|
eventTime?: string;
|
|
635
663
|
/** Represents exfiltrations associated with the finding. */
|
|
636
664
|
exfiltration?: Exfiltration;
|
|
665
|
+
/** External exposure associated with the finding. */
|
|
666
|
+
externalExposure?: ExternalExposure;
|
|
637
667
|
/** Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. */
|
|
638
668
|
externalSystems?: {
|
|
639
669
|
[P in string]: GoogleCloudSecuritycenterV1ExternalSystem;
|
|
@@ -1514,6 +1544,8 @@ declare namespace gapi.client {
|
|
|
1514
1544
|
eventType?: string;
|
|
1515
1545
|
/** Maximum duration of retention allowed from the DRD control. This comes from the DRD control where users set a max TTL for their data. For example, suppose that a user sets the max TTL for a Cloud Storage bucket to 90 days. However, an object in that bucket is 100 days old. In this case, a DataRetentionDeletionEvent will be generated for that Cloud Storage bucket, and the max_retention_allowed is 90 days. */
|
|
1516
1546
|
maxRetentionAllowed?: string;
|
|
1547
|
+
/** Min duration of retention allowed from the DSPM retention control. This field is only populated when event type is set to EVENT_TYPE_MIN_TTL_FROM_CREATION. */
|
|
1548
|
+
minRetentionAllowed?: string;
|
|
1517
1549
|
}
|
|
1518
1550
|
interface GoogleCloudSecuritycenterV2Dataset {
|
|
1519
1551
|
/** The user defined display name of dataset, e.g. plants-dataset */
|
|
@@ -1569,6 +1601,32 @@ declare namespace gapi.client {
|
|
|
1569
1601
|
/** Total exfiltrated bytes processed for the entire job. */
|
|
1570
1602
|
totalExfiltratedBytes?: string;
|
|
1571
1603
|
}
|
|
1604
|
+
interface GoogleCloudSecuritycenterV2ExternalExposure {
|
|
1605
|
+
/** The full resource name of load balancer backend service, for example, "//compute.googleapis.com/projects/{project-id}/global/backendServices/{name}". */
|
|
1606
|
+
backendService?: string;
|
|
1607
|
+
/** The resource which is running the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/zones/{zone}/instances/{instance}.” */
|
|
1608
|
+
exposedEndpoint?: string;
|
|
1609
|
+
/** The name and version of the service, for example, "Jupyter Notebook 6.14.0". */
|
|
1610
|
+
exposedService?: string;
|
|
1611
|
+
/** The full resource name of the forwarding rule, for example, "//compute.googleapis.com/projects/{project-id}/global/forwardingRules/{forwarding-rule-name}". */
|
|
1612
|
+
forwardingRule?: string;
|
|
1613
|
+
/** The full resource name of the instance group, for example, "//compute.googleapis.com/projects/{project-id}/global/instanceGroups/{name}". */
|
|
1614
|
+
instanceGroup?: string;
|
|
1615
|
+
/** The full resource name of the load balancer firewall policy, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
1616
|
+
loadBalancerFirewallPolicy?: string;
|
|
1617
|
+
/** The full resource name of the network endpoint group, for example, "//compute.googleapis.com/projects/{project-id}/global/networkEndpointGroups/{name}". */
|
|
1618
|
+
networkEndpointGroup?: string;
|
|
1619
|
+
/** Private IP address of the exposed endpoint. */
|
|
1620
|
+
privateIpAddress?: string;
|
|
1621
|
+
/** Port number associated with private IP address. */
|
|
1622
|
+
privatePort?: string;
|
|
1623
|
+
/** Public IP address of the exposed endpoint. */
|
|
1624
|
+
publicIpAddress?: string;
|
|
1625
|
+
/** Public port number of the exposed endpoint. */
|
|
1626
|
+
publicPort?: string;
|
|
1627
|
+
/** The full resource name of the firewall policy of the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
1628
|
+
serviceFirewallPolicy?: string;
|
|
1629
|
+
}
|
|
1572
1630
|
interface GoogleCloudSecuritycenterV2ExternalSystem {
|
|
1573
1631
|
/** References primary/secondary etc assignees in the external system. */
|
|
1574
1632
|
assignees?: string[];
|
|
@@ -1674,6 +1732,8 @@ declare namespace gapi.client {
|
|
|
1674
1732
|
eventTime?: string;
|
|
1675
1733
|
/** Represents exfiltrations associated with the finding. */
|
|
1676
1734
|
exfiltration?: GoogleCloudSecuritycenterV2Exfiltration;
|
|
1735
|
+
/** External exposure associated with the finding. */
|
|
1736
|
+
externalExposure?: GoogleCloudSecuritycenterV2ExternalExposure;
|
|
1677
1737
|
/** Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. */
|
|
1678
1738
|
externalSystems?: {
|
|
1679
1739
|
[P in string]: GoogleCloudSecuritycenterV2ExternalSystem;
|