@maxim_mazurok/gapi.client.securitycenter-v1 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260223
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -569,6 +569,8 @@ declare namespace gapi.client {
|
|
|
569
569
|
eventType?: string;
|
|
570
570
|
/** 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. */
|
|
571
571
|
maxRetentionAllowed?: string;
|
|
572
|
+
/** 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. */
|
|
573
|
+
minRetentionAllowed?: string;
|
|
572
574
|
}
|
|
573
575
|
interface Dataset {
|
|
574
576
|
/** The user defined display name of dataset, e.g. plants-dataset */
|
|
@@ -680,6 +682,32 @@ declare namespace gapi.client {
|
|
|
680
682
|
/** 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. */
|
|
681
683
|
title?: string;
|
|
682
684
|
}
|
|
685
|
+
interface ExternalExposure {
|
|
686
|
+
/** The full resource name of load balancer backend service, for example, "//compute.googleapis.com/projects/{project-id}/global/backendServices/{name}". */
|
|
687
|
+
backendService?: string;
|
|
688
|
+
/** The resource which is running the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/zones/{zone}/instances/{instance}.” */
|
|
689
|
+
exposedEndpoint?: string;
|
|
690
|
+
/** The name and version of the service, for example, "Jupyter Notebook 6.14.0". */
|
|
691
|
+
exposedService?: string;
|
|
692
|
+
/** The full resource name of the forwarding rule, for example, "//compute.googleapis.com/projects/{project-id}/global/forwardingRules/{forwarding-rule-name}". */
|
|
693
|
+
forwardingRule?: string;
|
|
694
|
+
/** The full resource name of the instance group, for example, "//compute.googleapis.com/projects/{project-id}/global/instanceGroups/{name}". */
|
|
695
|
+
instanceGroup?: string;
|
|
696
|
+
/** The full resource name of the load balancer firewall policy, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
697
|
+
loadBalancerFirewallPolicy?: string;
|
|
698
|
+
/** The full resource name of the network endpoint group, for example, "//compute.googleapis.com/projects/{project-id}/global/networkEndpointGroups/{name}". */
|
|
699
|
+
networkEndpointGroup?: string;
|
|
700
|
+
/** Private IP address of the exposed endpoint. */
|
|
701
|
+
privateIpAddress?: string;
|
|
702
|
+
/** Port number associated with private IP address. */
|
|
703
|
+
privatePort?: string;
|
|
704
|
+
/** Public IP address of the exposed endpoint. */
|
|
705
|
+
publicIpAddress?: string;
|
|
706
|
+
/** Public port number of the exposed endpoint. */
|
|
707
|
+
publicPort?: string;
|
|
708
|
+
/** The full resource name of the firewall policy of the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
709
|
+
serviceFirewallPolicy?: string;
|
|
710
|
+
}
|
|
683
711
|
interface File {
|
|
684
712
|
/** Prefix of the file contents as a JSON-encoded string. */
|
|
685
713
|
contents?: string;
|
|
@@ -759,6 +787,8 @@ declare namespace gapi.client {
|
|
|
759
787
|
eventTime?: string;
|
|
760
788
|
/** Represents exfiltrations associated with the finding. */
|
|
761
789
|
exfiltration?: Exfiltration;
|
|
790
|
+
/** External exposure associated with the finding. */
|
|
791
|
+
externalExposure?: ExternalExposure;
|
|
762
792
|
/** Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. */
|
|
763
793
|
externalSystems?: {
|
|
764
794
|
[P in string]: GoogleCloudSecuritycenterV1ExternalSystem;
|
|
@@ -1647,6 +1677,8 @@ declare namespace gapi.client {
|
|
|
1647
1677
|
eventType?: string;
|
|
1648
1678
|
/** 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. */
|
|
1649
1679
|
maxRetentionAllowed?: string;
|
|
1680
|
+
/** 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. */
|
|
1681
|
+
minRetentionAllowed?: string;
|
|
1650
1682
|
}
|
|
1651
1683
|
interface GoogleCloudSecuritycenterV2Dataset {
|
|
1652
1684
|
/** The user defined display name of dataset, e.g. plants-dataset */
|
|
@@ -1702,6 +1734,32 @@ declare namespace gapi.client {
|
|
|
1702
1734
|
/** Total exfiltrated bytes processed for the entire job. */
|
|
1703
1735
|
totalExfiltratedBytes?: string;
|
|
1704
1736
|
}
|
|
1737
|
+
interface GoogleCloudSecuritycenterV2ExternalExposure {
|
|
1738
|
+
/** The full resource name of load balancer backend service, for example, "//compute.googleapis.com/projects/{project-id}/global/backendServices/{name}". */
|
|
1739
|
+
backendService?: string;
|
|
1740
|
+
/** The resource which is running the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/zones/{zone}/instances/{instance}.” */
|
|
1741
|
+
exposedEndpoint?: string;
|
|
1742
|
+
/** The name and version of the service, for example, "Jupyter Notebook 6.14.0". */
|
|
1743
|
+
exposedService?: string;
|
|
1744
|
+
/** The full resource name of the forwarding rule, for example, "//compute.googleapis.com/projects/{project-id}/global/forwardingRules/{forwarding-rule-name}". */
|
|
1745
|
+
forwardingRule?: string;
|
|
1746
|
+
/** The full resource name of the instance group, for example, "//compute.googleapis.com/projects/{project-id}/global/instanceGroups/{name}". */
|
|
1747
|
+
instanceGroup?: string;
|
|
1748
|
+
/** The full resource name of the load balancer firewall policy, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
1749
|
+
loadBalancerFirewallPolicy?: string;
|
|
1750
|
+
/** The full resource name of the network endpoint group, for example, "//compute.googleapis.com/projects/{project-id}/global/networkEndpointGroups/{name}". */
|
|
1751
|
+
networkEndpointGroup?: string;
|
|
1752
|
+
/** Private IP address of the exposed endpoint. */
|
|
1753
|
+
privateIpAddress?: string;
|
|
1754
|
+
/** Port number associated with private IP address. */
|
|
1755
|
+
privatePort?: string;
|
|
1756
|
+
/** Public IP address of the exposed endpoint. */
|
|
1757
|
+
publicIpAddress?: string;
|
|
1758
|
+
/** Public port number of the exposed endpoint. */
|
|
1759
|
+
publicPort?: string;
|
|
1760
|
+
/** The full resource name of the firewall policy of the exposed service, for example, "//compute.googleapis.com/projects/{project-id}/global/firewallPolicies/{policy-name}". */
|
|
1761
|
+
serviceFirewallPolicy?: string;
|
|
1762
|
+
}
|
|
1705
1763
|
interface GoogleCloudSecuritycenterV2ExternalSystem {
|
|
1706
1764
|
/** References primary/secondary etc assignees in the external system. */
|
|
1707
1765
|
assignees?: string[];
|
|
@@ -1807,6 +1865,8 @@ declare namespace gapi.client {
|
|
|
1807
1865
|
eventTime?: string;
|
|
1808
1866
|
/** Represents exfiltrations associated with the finding. */
|
|
1809
1867
|
exfiltration?: GoogleCloudSecuritycenterV2Exfiltration;
|
|
1868
|
+
/** External exposure associated with the finding. */
|
|
1869
|
+
externalExposure?: GoogleCloudSecuritycenterV2ExternalExposure;
|
|
1810
1870
|
/** Output only. Third party SIEM/SOAR fields within SCC, contains external system information and external system finding fields. */
|
|
1811
1871
|
externalSystems?: {
|
|
1812
1872
|
[P in string]: GoogleCloudSecuritycenterV2ExternalSystem;
|