@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.2.20260119 → 0.2.20260123

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.
Files changed (2) hide show
  1. package/index.d.ts +61 -1
  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: 20260119
12
+ // Revision: 20260123
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -72,6 +72,20 @@ declare namespace gapi.client {
72
72
  /** A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation. */
73
73
  confidence?: number;
74
74
  }
75
+ interface AdcApplication {
76
+ /** Consumer provided attributes for the AppHub application. */
77
+ attributes?: GoogleCloudSecuritycenterV1ResourceApplicationAttributes;
78
+ /** The resource name of an ADC Application. Format: projects/{project}/locations/{location}/spaces/{space}/applications/{application} */
79
+ name?: string;
80
+ }
81
+ interface AdcApplicationTemplateRevision {
82
+ /** The resource name of an ADC Application Template Revision. Format: projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision} */
83
+ name?: string;
84
+ }
85
+ interface AdcSharedTemplateRevision {
86
+ /** The resource name of an ADC Shared Template Revision. Format: projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision} */
87
+ name?: string;
88
+ }
75
89
  interface AffectedResources {
76
90
  /** The count of resources affected by the finding. */
77
91
  count?: string;
@@ -925,6 +939,12 @@ declare namespace gapi.client {
925
939
  valueExpression?: Expr;
926
940
  }
927
941
  interface GoogleCloudSecuritycenterV1Resource {
942
+ /** The ADC application associated with the finding. */
943
+ adcApplication?: AdcApplication;
944
+ /** The ADC template associated with the finding. */
945
+ adcApplicationTemplate?: AdcApplicationTemplateRevision;
946
+ /** The ADC shared template associated with the finding. */
947
+ adcSharedTemplate?: AdcSharedTemplateRevision;
928
948
  /** The App Hub application this resource belongs to. */
929
949
  application?: GoogleCloudSecuritycenterV1ResourceApplication;
930
950
  /** The AWS metadata associated with the finding. */
@@ -1092,6 +1112,20 @@ declare namespace gapi.client {
1092
1112
  /** A score of 0 means that there is low confidence that the detected event is an actual attack. A score of 1 means that there is high confidence that the detected event is an attack. See the [Adaptive Protection documentation](https://cloud.google.com/armor/docs/adaptive-protection-overview#configure-alert-tuning) for further explanation. */
1093
1113
  confidence?: number;
1094
1114
  }
1115
+ interface GoogleCloudSecuritycenterV2AdcApplication {
1116
+ /** Consumer provided attributes for the AppHub application. */
1117
+ attributes?: GoogleCloudSecuritycenterV2ResourceApplicationAttributes;
1118
+ /** The resource name of an ADC Application. Format: projects/{project}/locations/{location}/spaces/{space}/applications/{application} */
1119
+ name?: string;
1120
+ }
1121
+ interface GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision {
1122
+ /** The resource name of an ADC Application Template Revision. Format: projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision} */
1123
+ name?: string;
1124
+ }
1125
+ interface GoogleCloudSecuritycenterV2AdcSharedTemplateRevision {
1126
+ /** The resource name of an ADC Shared Template Revision. Format: projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision} */
1127
+ name?: string;
1128
+ }
1095
1129
  interface GoogleCloudSecuritycenterV2AffectedResources {
1096
1130
  /** The count of resources affected by the finding. */
1097
1131
  count?: string;
@@ -1858,6 +1892,12 @@ declare namespace gapi.client {
1858
1892
  muteUpdateTime?: string;
1859
1893
  }
1860
1894
  interface GoogleCloudSecuritycenterV2IssueResource {
1895
+ /** The ADC application associated with the finding. */
1896
+ adcApplication?: GoogleCloudSecuritycenterV2IssueResourceAdcApplication;
1897
+ /** The ADC template associated with the finding. */
1898
+ adcApplicationTemplate?: GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision;
1899
+ /** The ADC shared template associated with the finding. */
1900
+ adcSharedTemplate?: GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision;
1861
1901
  /** The AppHub application associated with the resource, if any. Only populated for the primary resource. */
1862
1902
  application?: GoogleCloudSecuritycenterV2IssueResourceApplication;
1863
1903
  /** The AWS metadata of the resource associated with the issue. Only populated for AWS resources. */
@@ -1875,6 +1915,20 @@ declare namespace gapi.client {
1875
1915
  /** The type of the resource associated with the issue. */
1876
1916
  type?: string;
1877
1917
  }
1918
+ interface GoogleCloudSecuritycenterV2IssueResourceAdcApplication {
1919
+ /** Consumer provided attributes for the AppHub application. */
1920
+ attributes?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes;
1921
+ /** The resource name of an ADC Application. Format: projects/{project}/locations/{location}/spaces/{space}/applications/{application} */
1922
+ name?: string;
1923
+ }
1924
+ interface GoogleCloudSecuritycenterV2IssueResourceAdcApplicationTemplateRevision {
1925
+ /** The resource name of an ADC Application Template Revision. Format: projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision} */
1926
+ name?: string;
1927
+ }
1928
+ interface GoogleCloudSecuritycenterV2IssueResourceAdcSharedTemplateRevision {
1929
+ /** The resource name of an ADC Shared Template Revision. Format: projects/{project}/locations/{location}/spaces/{space}/applicationTemplates/{application_template}/revisions/{revision} */
1930
+ name?: string;
1931
+ }
1878
1932
  interface GoogleCloudSecuritycenterV2IssueResourceApplication {
1879
1933
  /** Consumer provided attributes for the application */
1880
1934
  attributes?: GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes;
@@ -2188,6 +2242,12 @@ declare namespace gapi.client {
2188
2242
  shortTermAllowed?: number;
2189
2243
  }
2190
2244
  interface GoogleCloudSecuritycenterV2Resource {
2245
+ /** The ADC application associated with the finding. */
2246
+ adcApplication?: GoogleCloudSecuritycenterV2AdcApplication;
2247
+ /** The ADC template associated with the finding. */
2248
+ adcApplicationTemplate?: GoogleCloudSecuritycenterV2AdcApplicationTemplateRevision;
2249
+ /** The ADC shared template associated with the finding. */
2250
+ adcSharedTemplate?: GoogleCloudSecuritycenterV2AdcSharedTemplateRevision;
2191
2251
  /** The App Hub application this resource belongs to. */
2192
2252
  application?: GoogleCloudSecuritycenterV2ResourceApplication;
2193
2253
  /** The AWS metadata associated with the finding. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.securitycenter-v1beta2",
3
- "version": "0.2.20260119",
3
+ "version": "0.2.20260123",
4
4
  "description": "TypeScript typings for Security Command Center API v1beta2",
5
5
  "repository": {
6
6
  "type": "git",