@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.2.20250916 → 0.2.20251024
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 +55 -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: 20251024
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -245,6 +245,8 @@ declare namespace gapi.client {
|
|
|
245
245
|
interface CloudDlpDataProfile {
|
|
246
246
|
/** Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`. */
|
|
247
247
|
dataProfile?: string;
|
|
248
|
+
/** Type of information detected by SDP. Info type includes name, version and sensitivity of the detected information type. */
|
|
249
|
+
infoTypes?: InfoType[];
|
|
248
250
|
/** The resource hierarchy level at which the data profile was generated. */
|
|
249
251
|
parentType?: string;
|
|
250
252
|
}
|
|
@@ -1236,6 +1238,8 @@ declare namespace gapi.client {
|
|
|
1236
1238
|
interface GoogleCloudSecuritycenterV2CloudDlpDataProfile {
|
|
1237
1239
|
/** Name of the data profile, for example, `projects/123/locations/europe/tableProfiles/8383929`. */
|
|
1238
1240
|
dataProfile?: string;
|
|
1241
|
+
/** Type of information detected by SDP. Info type includes name, version and sensitivity of the detected information type. */
|
|
1242
|
+
infoTypes?: GoogleCloudSecuritycenterV2InfoType[];
|
|
1239
1243
|
/** The resource hierarchy level at which the data profile was generated. */
|
|
1240
1244
|
parentType?: string;
|
|
1241
1245
|
}
|
|
@@ -1683,6 +1687,14 @@ declare namespace gapi.client {
|
|
|
1683
1687
|
/** The list of URIs associated to the Findings. */
|
|
1684
1688
|
uris?: string[];
|
|
1685
1689
|
}
|
|
1690
|
+
interface GoogleCloudSecuritycenterV2InfoType {
|
|
1691
|
+
/** 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/sensitive-data-protection/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}`. */
|
|
1692
|
+
name?: string;
|
|
1693
|
+
/** Optional custom sensitivity for this InfoType. This only applies to data profiling. */
|
|
1694
|
+
sensitivityScore?: GoogleCloudSecuritycenterV2SensitivityScore;
|
|
1695
|
+
/** Optional version name for this InfoType. */
|
|
1696
|
+
version?: string;
|
|
1697
|
+
}
|
|
1686
1698
|
interface GoogleCloudSecuritycenterV2IpRule {
|
|
1687
1699
|
/** Optional. An optional list of ports to which this rule applies. This field is only applicable for the UDP or (S)TCP protocols. Each entry must be either an integer or a range including a min and max port number. */
|
|
1688
1700
|
portRanges?: GoogleCloudSecuritycenterV2PortRange[];
|
|
@@ -1788,9 +1800,35 @@ declare namespace gapi.client {
|
|
|
1788
1800
|
type?: string;
|
|
1789
1801
|
}
|
|
1790
1802
|
interface GoogleCloudSecuritycenterV2IssueResourceApplication {
|
|
1803
|
+
/** Consumer provided attributes for the application */
|
|
1804
|
+
attributes?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes;
|
|
1791
1805
|
/** The resource name of an Application. Format: `projects/{host-project-id}/locations/{location}/applications/{application-id}` */
|
|
1792
1806
|
name?: string;
|
|
1793
1807
|
}
|
|
1808
|
+
interface GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes {
|
|
1809
|
+
/** Business team that ensures user needs are met and value is delivered */
|
|
1810
|
+
businessOwners?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo[];
|
|
1811
|
+
/** User-defined criticality information. */
|
|
1812
|
+
criticality?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality;
|
|
1813
|
+
/** Developer team that owns development and coding. */
|
|
1814
|
+
developerOwners?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo[];
|
|
1815
|
+
/** User-defined environment information. */
|
|
1816
|
+
environment?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment;
|
|
1817
|
+
/** Operator team that ensures runtime and operations. */
|
|
1818
|
+
operatorOwners?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo[];
|
|
1819
|
+
}
|
|
1820
|
+
interface GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo {
|
|
1821
|
+
/** Email address of the contacts. */
|
|
1822
|
+
email?: string;
|
|
1823
|
+
}
|
|
1824
|
+
interface GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality {
|
|
1825
|
+
/** Criticality Type. */
|
|
1826
|
+
type?: string;
|
|
1827
|
+
}
|
|
1828
|
+
interface GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment {
|
|
1829
|
+
/** Environment Type. */
|
|
1830
|
+
type?: string;
|
|
1831
|
+
}
|
|
1794
1832
|
interface GoogleCloudSecuritycenterV2IssueResourceAwsMetadata {
|
|
1795
1833
|
/** The AWS account of the resource associated with the issue. */
|
|
1796
1834
|
account?: GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount;
|
|
@@ -2189,6 +2227,10 @@ declare namespace gapi.client {
|
|
|
2189
2227
|
/** Resource value mapping for medium-sensitivity Sensitive Data Protection findings */
|
|
2190
2228
|
mediumSensitivityMapping?: string;
|
|
2191
2229
|
}
|
|
2230
|
+
interface GoogleCloudSecuritycenterV2SensitivityScore {
|
|
2231
|
+
/** The sensitivity score applied to the resource. */
|
|
2232
|
+
score?: string;
|
|
2233
|
+
}
|
|
2192
2234
|
interface GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo {
|
|
2193
2235
|
/** The email address of a Google account. */
|
|
2194
2236
|
principalEmail?: string;
|
|
@@ -2279,6 +2321,14 @@ declare namespace gapi.client {
|
|
|
2279
2321
|
/** The list of URIs associated to the Findings. */
|
|
2280
2322
|
uris?: string[];
|
|
2281
2323
|
}
|
|
2324
|
+
interface InfoType {
|
|
2325
|
+
/** 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/sensitive-data-protection/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}`. */
|
|
2326
|
+
name?: string;
|
|
2327
|
+
/** Optional custom sensitivity for this InfoType. This only applies to data profiling. */
|
|
2328
|
+
sensitivityScore?: SensitivityScore;
|
|
2329
|
+
/** Optional version name for this InfoType. */
|
|
2330
|
+
version?: string;
|
|
2331
|
+
}
|
|
2282
2332
|
interface IpRule {
|
|
2283
2333
|
/** Optional. An optional list of ports to which this rule applies. This field is only applicable for the UDP or (S)TCP protocols. Each entry must be either an integer or a range including a min and max port number. */
|
|
2284
2334
|
portRanges?: PortRange[];
|
|
@@ -2607,6 +2657,10 @@ declare namespace gapi.client {
|
|
|
2607
2657
|
/** The version of the posture, for example, `c7cfa2a8`. */
|
|
2608
2658
|
revisionId?: string;
|
|
2609
2659
|
}
|
|
2660
|
+
interface SensitivityScore {
|
|
2661
|
+
/** The sensitivity score applied to the resource. */
|
|
2662
|
+
score?: string;
|
|
2663
|
+
}
|
|
2610
2664
|
interface ServiceAccountDelegationInfo {
|
|
2611
2665
|
/** The email address of a Google account. */
|
|
2612
2666
|
principalEmail?: string;
|