@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20231218 → 0.0.20240101
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 +23 -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: 20240101
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -486,6 +486,12 @@ declare namespace gapi.client {
|
|
|
486
486
|
interface GoogleCloudSecuritycenterV1ExternalSystem {
|
|
487
487
|
/** References primary/secondary etc assignees in the external system. */
|
|
488
488
|
assignees?: string[];
|
|
489
|
+
/** The priority of the finding's corresponding case in the external system. */
|
|
490
|
+
casePriority?: string;
|
|
491
|
+
/** The SLA of the finding's corresponding case in the external system. */
|
|
492
|
+
caseSla?: string;
|
|
493
|
+
/** The link to the finding's corresponding case in the external system. */
|
|
494
|
+
caseUri?: string;
|
|
489
495
|
/** The time when the case was last updated, as reported by the external system. */
|
|
490
496
|
externalSystemUpdateTime?: string;
|
|
491
497
|
/** The identifier that's used to track the finding's corresponding case in the external system. */
|
|
@@ -494,6 +500,8 @@ declare namespace gapi.client {
|
|
|
494
500
|
name?: string;
|
|
495
501
|
/** The most recent status of the finding's corresponding case, as reported by the external system. */
|
|
496
502
|
status?: string;
|
|
503
|
+
/** Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding. */
|
|
504
|
+
ticketInfo?: TicketInfo;
|
|
497
505
|
}
|
|
498
506
|
interface GoogleCloudSecuritycenterV1MuteConfig {
|
|
499
507
|
/** Output only. The time at which the mute config was created. This field is set by the server and will be ignored if provided on config creation. */
|
|
@@ -916,6 +924,20 @@ declare namespace gapi.client {
|
|
|
916
924
|
/** The tier of SCC features this organization currently has access to. */
|
|
917
925
|
tier?: string;
|
|
918
926
|
}
|
|
927
|
+
interface TicketInfo {
|
|
928
|
+
/** The assignee of the ticket in the ticket system. */
|
|
929
|
+
assignee?: string;
|
|
930
|
+
/** The description of the ticket in the ticket system. */
|
|
931
|
+
description?: string;
|
|
932
|
+
/** The identifier of the ticket in the ticket system. */
|
|
933
|
+
id?: string;
|
|
934
|
+
/** The latest status of the ticket, as reported by the ticket system. */
|
|
935
|
+
status?: string;
|
|
936
|
+
/** The time when the ticket was last updated, as reported by the ticket system. */
|
|
937
|
+
updateTime?: string;
|
|
938
|
+
/** The link to the ticket in the ticket system. */
|
|
939
|
+
uri?: string;
|
|
940
|
+
}
|
|
919
941
|
interface VirtualMachineThreatDetectionSettings {
|
|
920
942
|
/** 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. */
|
|
921
943
|
modules?: {[P in string]: Config};
|