@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.2.20251111 → 0.2.20251205
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 +69 -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: 20251205
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -91,6 +91,8 @@ declare namespace gapi.client {
|
|
|
91
91
|
name?: string;
|
|
92
92
|
/** The publisher of the model, for example, “google” or “nvidia”. */
|
|
93
93
|
publisher?: string;
|
|
94
|
+
/** The purpose of the model, for example, "Inteference" or "Training". */
|
|
95
|
+
usageCategory?: string;
|
|
94
96
|
}
|
|
95
97
|
interface Allowed {
|
|
96
98
|
/** Optional. Optional list of allowed IP rules. */
|
|
@@ -903,6 +905,8 @@ declare namespace gapi.client {
|
|
|
903
905
|
valueExpression?: Expr;
|
|
904
906
|
}
|
|
905
907
|
interface GoogleCloudSecuritycenterV1Resource {
|
|
908
|
+
/** The App Hub application this resource belongs to. */
|
|
909
|
+
application?: GoogleCloudSecuritycenterV1ResourceApplication;
|
|
906
910
|
/** The AWS metadata associated with the finding. */
|
|
907
911
|
awsMetadata?: AwsMetadata;
|
|
908
912
|
/** The Azure metadata associated with the finding. */
|
|
@@ -936,6 +940,36 @@ declare namespace gapi.client {
|
|
|
936
940
|
/** The full resource type of the resource. */
|
|
937
941
|
type?: string;
|
|
938
942
|
}
|
|
943
|
+
interface GoogleCloudSecuritycenterV1ResourceApplication {
|
|
944
|
+
/** Consumer provided attributes for the application */
|
|
945
|
+
attributes?: GoogleCloudSecuritycenterV1ResourceApplicationAttributes;
|
|
946
|
+
/** The resource name of an Application. Format: `projects/{host-project-id}/locations/{location}/applications/{application-id}` */
|
|
947
|
+
name?: string;
|
|
948
|
+
}
|
|
949
|
+
interface GoogleCloudSecuritycenterV1ResourceApplicationAttributes {
|
|
950
|
+
/** Business team that ensures user needs are met and value is delivered */
|
|
951
|
+
businessOwners?: GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo[];
|
|
952
|
+
/** User-defined criticality information. */
|
|
953
|
+
criticality?: GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality;
|
|
954
|
+
/** Developer team that owns development and coding. */
|
|
955
|
+
developerOwners?: GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo[];
|
|
956
|
+
/** User-defined environment information. */
|
|
957
|
+
environment?: GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment;
|
|
958
|
+
/** Operator team that ensures runtime and operations. */
|
|
959
|
+
operatorOwners?: GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo[];
|
|
960
|
+
}
|
|
961
|
+
interface GoogleCloudSecuritycenterV1ResourceApplicationAttributesContactInfo {
|
|
962
|
+
/** Email address of the contacts. */
|
|
963
|
+
email?: string;
|
|
964
|
+
}
|
|
965
|
+
interface GoogleCloudSecuritycenterV1ResourceApplicationAttributesCriticality {
|
|
966
|
+
/** Criticality Type. */
|
|
967
|
+
type?: string;
|
|
968
|
+
}
|
|
969
|
+
interface GoogleCloudSecuritycenterV1ResourceApplicationAttributesEnvironment {
|
|
970
|
+
/** Environment Type. */
|
|
971
|
+
type?: string;
|
|
972
|
+
}
|
|
939
973
|
interface GoogleCloudSecuritycenterV1ResourceSelector {
|
|
940
974
|
/** The resource types to run the detector on. */
|
|
941
975
|
resourceTypes?: string[];
|
|
@@ -1057,6 +1091,8 @@ declare namespace gapi.client {
|
|
|
1057
1091
|
name?: string;
|
|
1058
1092
|
/** The publisher of the model, for example, “google” or “nvidia”. */
|
|
1059
1093
|
publisher?: string;
|
|
1094
|
+
/** The purpose of the model, for example, "Inteference" or "Training". */
|
|
1095
|
+
usageCategory?: string;
|
|
1060
1096
|
}
|
|
1061
1097
|
interface GoogleCloudSecuritycenterV2Allowed {
|
|
1062
1098
|
/** Optional. Optional list of allowed IP rules. */
|
|
@@ -2112,6 +2148,8 @@ declare namespace gapi.client {
|
|
|
2112
2148
|
shortTermAllowed?: number;
|
|
2113
2149
|
}
|
|
2114
2150
|
interface GoogleCloudSecuritycenterV2Resource {
|
|
2151
|
+
/** The App Hub application this resource belongs to. */
|
|
2152
|
+
application?: GoogleCloudSecuritycenterV2ResourceApplication;
|
|
2115
2153
|
/** The AWS metadata associated with the finding. */
|
|
2116
2154
|
awsMetadata?: GoogleCloudSecuritycenterV2AwsMetadata;
|
|
2117
2155
|
/** The Azure metadata associated with the finding. */
|
|
@@ -2135,6 +2173,36 @@ declare namespace gapi.client {
|
|
|
2135
2173
|
/** The full resource type of the resource. */
|
|
2136
2174
|
type?: string;
|
|
2137
2175
|
}
|
|
2176
|
+
interface GoogleCloudSecuritycenterV2ResourceApplication {
|
|
2177
|
+
/** Consumer provided attributes for the application */
|
|
2178
|
+
attributes?: GoogleCloudSecuritycenterV2ResourceApplicationAttributes;
|
|
2179
|
+
/** The resource name of an Application. Format: `projects/{host-project-id}/locations/{location}/applications/{application-id}` */
|
|
2180
|
+
name?: string;
|
|
2181
|
+
}
|
|
2182
|
+
interface GoogleCloudSecuritycenterV2ResourceApplicationAttributes {
|
|
2183
|
+
/** Business team that ensures user needs are met and value is delivered */
|
|
2184
|
+
businessOwners?: GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo[];
|
|
2185
|
+
/** User-defined criticality information. */
|
|
2186
|
+
criticality?: GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality;
|
|
2187
|
+
/** Developer team that owns development and coding. */
|
|
2188
|
+
developerOwners?: GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo[];
|
|
2189
|
+
/** User-defined environment information. */
|
|
2190
|
+
environment?: GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment;
|
|
2191
|
+
/** Operator team that ensures runtime and operations. */
|
|
2192
|
+
operatorOwners?: GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo[];
|
|
2193
|
+
}
|
|
2194
|
+
interface GoogleCloudSecuritycenterV2ResourceApplicationAttributesContactInfo {
|
|
2195
|
+
/** Email address of the contacts. */
|
|
2196
|
+
email?: string;
|
|
2197
|
+
}
|
|
2198
|
+
interface GoogleCloudSecuritycenterV2ResourceApplicationAttributesCriticality {
|
|
2199
|
+
/** Criticality Type. */
|
|
2200
|
+
type?: string;
|
|
2201
|
+
}
|
|
2202
|
+
interface GoogleCloudSecuritycenterV2ResourceApplicationAttributesEnvironment {
|
|
2203
|
+
/** Environment Type. */
|
|
2204
|
+
type?: string;
|
|
2205
|
+
}
|
|
2138
2206
|
interface GoogleCloudSecuritycenterV2ResourcePath {
|
|
2139
2207
|
/** The list of nodes that make the up resource path, ordered from lowest level to highest level. */
|
|
2140
2208
|
nodes?: GoogleCloudSecuritycenterV2ResourcePathNode[];
|