@maxim_mazurok/gapi.client.kmsinventory-v1 0.0.20230702 → 0.0.20230708
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 +10 -1
- package/package.json +1 -1
- package/tests.ts +2 -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://kmsinventory.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230708
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -295,6 +295,15 @@ declare namespace gapi.client {
|
|
|
295
295
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
296
296
|
quotaUser?:
|
|
297
297
|
string;
|
|
298
|
+
/**
|
|
299
|
+
* Optional. A list of resource types that this request searches for. If empty, it will search all the [trackable resource
|
|
300
|
+
* types](https://cloud.google.com/kms/docs/view-key-usage#tracked-resource-types). Regular expressions are also supported. For example: * `compute.googleapis.com.*` snapshots
|
|
301
|
+
* resources whose type starts with `compute.googleapis.com`. * `.*Image` snapshots resources whose type ends with `Image`. * `.*Image.*` snapshots resources whose type contains
|
|
302
|
+
* `Image`. See [RE2](https://github.com/google/re2/wiki/Syntax) for all supported regular expression syntax. If the regular expression does not match any supported resource type,
|
|
303
|
+
* an INVALID_ARGUMENT error will be returned.
|
|
304
|
+
*/
|
|
305
|
+
resourceTypes?:
|
|
306
|
+
string | string[];
|
|
298
307
|
/** Required. Resource name of the organization. Example: organizations/123 */
|
|
299
308
|
scope:
|
|
300
309
|
string;
|
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: 20230708
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -34,6 +34,7 @@ gapi.load('client', async () => {
|
|
|
34
34
|
cryptoKey: "Test string",
|
|
35
35
|
pageSize: 42,
|
|
36
36
|
pageToken: "Test string",
|
|
37
|
+
resourceTypes: "Test string",
|
|
37
38
|
scope: "Test string",
|
|
38
39
|
});
|
|
39
40
|
/**
|