@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20250605 → 0.0.20250616
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 +93 -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:
|
|
12
|
+
// Revision: 20250616
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -76,6 +76,22 @@ declare namespace gapi.client {
|
|
|
76
76
|
/** The count of resources affected by the finding. */
|
|
77
77
|
count?: string;
|
|
78
78
|
}
|
|
79
|
+
interface AiModel {
|
|
80
|
+
/** The platform on which the model is deployed. */
|
|
81
|
+
deploymentPlatform?: string;
|
|
82
|
+
/** The user defined display name of model. Ex. baseline-classification-model */
|
|
83
|
+
displayName?: string;
|
|
84
|
+
/** The domain of the model, for example, “image-classification”. */
|
|
85
|
+
domain?: string;
|
|
86
|
+
/** The name of the model library, for example, “transformers”. */
|
|
87
|
+
library?: string;
|
|
88
|
+
/** The region in which the model is used, for example, “us-central1”. */
|
|
89
|
+
location?: string;
|
|
90
|
+
/** The name of the AI model, for example, "gemini:1.0.0". */
|
|
91
|
+
name?: string;
|
|
92
|
+
/** The publisher of the model, for example, “google” or “nvidia”. */
|
|
93
|
+
publisher?: string;
|
|
94
|
+
}
|
|
79
95
|
interface Allowed {
|
|
80
96
|
/** Optional. Optional list of allowed IP rules. */
|
|
81
97
|
ipRules?: IpRule[];
|
|
@@ -194,6 +210,10 @@ declare namespace gapi.client {
|
|
|
194
210
|
/** The name of the Backup and DR storage pool that the backup and recovery appliance is storing data in. The storage pool could be of type Cloud, Primary, Snapshot, or OnVault. See the [Backup and DR documentation on storage pools](https://cloud.google.com/backup-disaster-recovery/docs/concepts/storage-pools). For example, `DiskPoolOne`. */
|
|
195
211
|
storagePool?: string;
|
|
196
212
|
}
|
|
213
|
+
interface BigQueryDestination {
|
|
214
|
+
/** Required. The relative resource name of the destination dataset, in the form projects/{projectId}/datasets/{datasetId}. */
|
|
215
|
+
dataset?: string;
|
|
216
|
+
}
|
|
197
217
|
interface Chokepoint {
|
|
198
218
|
/** List of resource names of findings associated with this chokepoint. For example, organizations/123/sources/456/findings/789. This list will have at most 100 findings. */
|
|
199
219
|
relatedFindings?: string[];
|
|
@@ -390,6 +410,14 @@ declare namespace gapi.client {
|
|
|
390
410
|
/** 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. */
|
|
391
411
|
maxRetentionAllowed?: string;
|
|
392
412
|
}
|
|
413
|
+
interface Dataset {
|
|
414
|
+
/** The user defined display name of dataset, e.g. plants-dataset */
|
|
415
|
+
displayName?: string;
|
|
416
|
+
/** Resource name of the dataset, e.g. projects/{project}/locations/{location}/datasets/2094040236064505856 */
|
|
417
|
+
name?: string;
|
|
418
|
+
/** Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod */
|
|
419
|
+
source?: string;
|
|
420
|
+
}
|
|
393
421
|
interface Denied {
|
|
394
422
|
/** Optional. Optional list of denied IP rules. */
|
|
395
423
|
ipRules?: IpRule[];
|
|
@@ -454,6 +482,13 @@ declare namespace gapi.client {
|
|
|
454
482
|
/** Total exfiltrated bytes processed for the entire job. */
|
|
455
483
|
totalExfiltratedBytes?: string;
|
|
456
484
|
}
|
|
485
|
+
interface ExportFindingsMetadata {
|
|
486
|
+
/** Required. The destination big query dataset to export findings to. */
|
|
487
|
+
bigQueryDestination?: BigQueryDestination;
|
|
488
|
+
/** Optional. Timestamp at which export was started */
|
|
489
|
+
exportStartTime?: string;
|
|
490
|
+
}
|
|
491
|
+
interface ExportFindingsResponse {}
|
|
457
492
|
interface Expr {
|
|
458
493
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
459
494
|
description?: string;
|
|
@@ -491,6 +526,8 @@ declare namespace gapi.client {
|
|
|
491
526
|
access?: Access;
|
|
492
527
|
/** AffectedResources associated with the finding. */
|
|
493
528
|
affectedResources?: AffectedResources;
|
|
529
|
+
/** The AI model associated with the finding. */
|
|
530
|
+
aiModel?: AiModel;
|
|
494
531
|
/** Represents an application associated with the finding. */
|
|
495
532
|
application?: Application;
|
|
496
533
|
/** The results of an attack path simulation relevant to this finding. */
|
|
@@ -605,6 +642,8 @@ declare namespace gapi.client {
|
|
|
605
642
|
state?: string;
|
|
606
643
|
/** Contains details about a group of security issues that, when the issues occur together, represent a greater risk than when the issues occur independently. A group of such issues is referred to as a toxic combination. This field cannot be updated. Its value is ignored in all update requests. */
|
|
607
644
|
toxicCombination?: ToxicCombination;
|
|
645
|
+
/** VertexAi associated with the finding. */
|
|
646
|
+
vertexAi?: VertexAi;
|
|
608
647
|
/** Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) */
|
|
609
648
|
vulnerability?: Vulnerability;
|
|
610
649
|
}
|
|
@@ -963,6 +1002,22 @@ declare namespace gapi.client {
|
|
|
963
1002
|
/** The count of resources affected by the finding. */
|
|
964
1003
|
count?: string;
|
|
965
1004
|
}
|
|
1005
|
+
interface GoogleCloudSecuritycenterV2AiModel {
|
|
1006
|
+
/** The platform on which the model is deployed. */
|
|
1007
|
+
deploymentPlatform?: string;
|
|
1008
|
+
/** The user defined display name of model. Ex. baseline-classification-model */
|
|
1009
|
+
displayName?: string;
|
|
1010
|
+
/** The domain of the model, for example, “image-classification”. */
|
|
1011
|
+
domain?: string;
|
|
1012
|
+
/** The name of the model library, for example, “transformers”. */
|
|
1013
|
+
library?: string;
|
|
1014
|
+
/** The region in which the model is used, for example, “us-central1”. */
|
|
1015
|
+
location?: string;
|
|
1016
|
+
/** The name of the AI model, for example, "gemini:1.0.0". */
|
|
1017
|
+
name?: string;
|
|
1018
|
+
/** The publisher of the model, for example, “google” or “nvidia”. */
|
|
1019
|
+
publisher?: string;
|
|
1020
|
+
}
|
|
966
1021
|
interface GoogleCloudSecuritycenterV2Allowed {
|
|
967
1022
|
/** Optional. Optional list of allowed IP rules. */
|
|
968
1023
|
ipRules?: GoogleCloudSecuritycenterV2IpRule[];
|
|
@@ -1288,6 +1343,14 @@ declare namespace gapi.client {
|
|
|
1288
1343
|
/** 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. */
|
|
1289
1344
|
maxRetentionAllowed?: string;
|
|
1290
1345
|
}
|
|
1346
|
+
interface GoogleCloudSecuritycenterV2Dataset {
|
|
1347
|
+
/** The user defined display name of dataset, e.g. plants-dataset */
|
|
1348
|
+
displayName?: string;
|
|
1349
|
+
/** Resource name of the dataset, e.g. projects/{project}/locations/{location}/datasets/2094040236064505856 */
|
|
1350
|
+
name?: string;
|
|
1351
|
+
/** Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.gsod */
|
|
1352
|
+
source?: string;
|
|
1353
|
+
}
|
|
1291
1354
|
interface GoogleCloudSecuritycenterV2Denied {
|
|
1292
1355
|
/** Optional. Optional list of denied IP rules. */
|
|
1293
1356
|
ipRules?: GoogleCloudSecuritycenterV2IpRule[];
|
|
@@ -1385,6 +1448,8 @@ declare namespace gapi.client {
|
|
|
1385
1448
|
access?: GoogleCloudSecuritycenterV2Access;
|
|
1386
1449
|
/** AffectedResources associated with the finding. */
|
|
1387
1450
|
affectedResources?: GoogleCloudSecuritycenterV2AffectedResources;
|
|
1451
|
+
/** The AI model associated with the finding. */
|
|
1452
|
+
aiModel?: GoogleCloudSecuritycenterV2AiModel;
|
|
1388
1453
|
/** Represents an application associated with the finding. */
|
|
1389
1454
|
application?: GoogleCloudSecuritycenterV2Application;
|
|
1390
1455
|
/** The results of an attack path simulation relevant to this finding. */
|
|
@@ -1469,7 +1534,7 @@ declare namespace gapi.client {
|
|
|
1469
1534
|
muteInitiator?: string;
|
|
1470
1535
|
/** Output only. The most recent time this finding was muted or unmuted. */
|
|
1471
1536
|
muteUpdateTime?: string;
|
|
1472
|
-
/** The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. The following list shows some examples: + `organizations/{organization_id}/sources/{source_id}/findings/{finding_id}` + `organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}` + `folders/{folder_id}/sources/{source_id}/findings/{finding_id}` + `folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}` + `projects/{project_id}/sources/{source_id}/findings/{finding_id}` + `projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}` */
|
|
1537
|
+
/** Identifier. The [relative resource name](https://cloud.google.com/apis/design/resource_names#relative_resource_name) of the finding. The following list shows some examples: + `organizations/{organization_id}/sources/{source_id}/findings/{finding_id}` + `organizations/{organization_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}` + `folders/{folder_id}/sources/{source_id}/findings/{finding_id}` + `folders/{folder_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}` + `projects/{project_id}/sources/{source_id}/findings/{finding_id}` + `projects/{project_id}/sources/{source_id}/locations/{location_id}/findings/{finding_id}` */
|
|
1473
1538
|
name?: string;
|
|
1474
1539
|
/** Represents the VPC networks that the resource is attached to. */
|
|
1475
1540
|
networks?: GoogleCloudSecuritycenterV2Network[];
|
|
@@ -1499,6 +1564,8 @@ declare namespace gapi.client {
|
|
|
1499
1564
|
state?: string;
|
|
1500
1565
|
/** Contains details about a group of security issues that, when the issues occur together, represent a greater risk than when the issues occur independently. A group of such issues is referred to as a toxic combination. This field cannot be updated. Its value is ignored in all update requests. */
|
|
1501
1566
|
toxicCombination?: GoogleCloudSecuritycenterV2ToxicCombination;
|
|
1567
|
+
/** VertexAi associated with the finding. */
|
|
1568
|
+
vertexAi?: GoogleCloudSecuritycenterV2VertexAi;
|
|
1502
1569
|
/** Represents vulnerability-specific fields like CVE and CVSS scores. CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) */
|
|
1503
1570
|
vulnerability?: GoogleCloudSecuritycenterV2Vulnerability;
|
|
1504
1571
|
}
|
|
@@ -1840,6 +1907,12 @@ declare namespace gapi.client {
|
|
|
1840
1907
|
/** The version of the package. */
|
|
1841
1908
|
packageVersion?: string;
|
|
1842
1909
|
}
|
|
1910
|
+
interface GoogleCloudSecuritycenterV2Pipeline {
|
|
1911
|
+
/** The user-defined display name of pipeline, e.g. plants-classification */
|
|
1912
|
+
displayName?: string;
|
|
1913
|
+
/** Resource name of the pipeline, e.g. projects/{project}/locations/{location}/trainingPipelines/5253428229225578496 */
|
|
1914
|
+
name?: string;
|
|
1915
|
+
}
|
|
1843
1916
|
interface GoogleCloudSecuritycenterV2Pod {
|
|
1844
1917
|
/** Pod containers associated with this finding, if any. */
|
|
1845
1918
|
containers?: GoogleCloudSecuritycenterV2Container[];
|
|
@@ -2066,6 +2139,12 @@ declare namespace gapi.client {
|
|
|
2066
2139
|
/** List of resource names of findings associated with this toxic combination. For example, `organizations/123/sources/456/findings/789`. */
|
|
2067
2140
|
relatedFindings?: string[];
|
|
2068
2141
|
}
|
|
2142
|
+
interface GoogleCloudSecuritycenterV2VertexAi {
|
|
2143
|
+
/** Datasets associated with the finding. */
|
|
2144
|
+
datasets?: GoogleCloudSecuritycenterV2Dataset[];
|
|
2145
|
+
/** Pipelines associated with the finding. */
|
|
2146
|
+
pipelines?: GoogleCloudSecuritycenterV2Pipeline[];
|
|
2147
|
+
}
|
|
2069
2148
|
interface GoogleCloudSecuritycenterV2Vulnerability {
|
|
2070
2149
|
/** CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/) */
|
|
2071
2150
|
cve?: GoogleCloudSecuritycenterV2Cve;
|
|
@@ -2265,6 +2344,12 @@ declare namespace gapi.client {
|
|
|
2265
2344
|
/** The version of the package. */
|
|
2266
2345
|
packageVersion?: string;
|
|
2267
2346
|
}
|
|
2347
|
+
interface Pipeline {
|
|
2348
|
+
/** The user defined display name of pipeline, e.g. plants-classification */
|
|
2349
|
+
displayName?: string;
|
|
2350
|
+
/** Resource name of the pipeline, e.g. projects/{project}/locations/{location}/trainingPipelines/5253428229225578496 */
|
|
2351
|
+
name?: string;
|
|
2352
|
+
}
|
|
2268
2353
|
interface Pod {
|
|
2269
2354
|
/** Pod containers associated with this finding, if any. */
|
|
2270
2355
|
containers?: Container[];
|
|
@@ -2477,6 +2562,12 @@ declare namespace gapi.client {
|
|
|
2477
2562
|
/** List of resource names of findings associated with this toxic combination. For example, `organizations/123/sources/456/findings/789`. */
|
|
2478
2563
|
relatedFindings?: string[];
|
|
2479
2564
|
}
|
|
2565
|
+
interface VertexAi {
|
|
2566
|
+
/** Datasets associated with the finding. */
|
|
2567
|
+
datasets?: Dataset[];
|
|
2568
|
+
/** Pipelines associated with the finding. */
|
|
2569
|
+
pipelines?: Pipeline[];
|
|
2570
|
+
}
|
|
2480
2571
|
interface VirtualMachineThreatDetectionSettings {
|
|
2481
2572
|
/** The configurations including the state of enablement for the service's different modules. The absence of a module in the map implies its configuration is inherited from its parent's configuration. */
|
|
2482
2573
|
modules?: {[P in string]: Config};
|