@maxim_mazurok/gapi.client.securitycenter-v1beta2 0.0.20230626 → 0.0.20230713
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 +12 -2
- package/package.json +1 -1
- package/tests.ts +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: 20230713
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -167,6 +167,9 @@ declare namespace gapi.client {
|
|
|
167
167
|
Contact[];
|
|
168
168
|
}
|
|
169
169
|
interface Container {
|
|
170
|
+
/** The time that the container was created. */
|
|
171
|
+
createTime?:
|
|
172
|
+
string;
|
|
170
173
|
/** Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest. */
|
|
171
174
|
imageId?:
|
|
172
175
|
string;
|
|
@@ -260,7 +263,11 @@ declare namespace gapi.client {
|
|
|
260
263
|
/** The target usernames, roles, or groups of an SQL privilege grant, which is not an IAM policy change. */
|
|
261
264
|
grantees?:
|
|
262
265
|
string[];
|
|
263
|
-
/**
|
|
266
|
+
/**
|
|
267
|
+
* Some database resources may not have the [full resource name](https://google.aip.dev/122#full-resource-names) populated because these resource types are not yet supported by Cloud
|
|
268
|
+
* Asset Inventory (e.g. Cloud SQL databases). In these cases only the display name will be provided. The [full resource name](https://google.aip.dev/122#full-resource-names) of the
|
|
269
|
+
* database that the user connected to, if it is supported by Cloud Asset Inventory.
|
|
270
|
+
*/
|
|
264
271
|
name?:
|
|
265
272
|
string;
|
|
266
273
|
/** The SQL statement that is associated with the database access. */
|
|
@@ -269,6 +276,9 @@ declare namespace gapi.client {
|
|
|
269
276
|
/** The username used to connect to the database. The username might not be an IAM principal and does not have a set format. */
|
|
270
277
|
userName?:
|
|
271
278
|
string;
|
|
279
|
+
/** The version of the database, for example, POSTGRES_14. See [the complete list](https://cloud.google.com/sql/docs/mysql/admin-api/rest/v1/SqlDatabaseVersion). */
|
|
280
|
+
version?:
|
|
281
|
+
string;
|
|
272
282
|
}
|
|
273
283
|
interface Details {
|
|
274
284
|
/** The time the subscription has or will end. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230713
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|