@maxim_mazurok/gapi.client.iam-v2beta 0.0.20230810 → 0.0.20231012
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 +27 -1
- 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://iam.googleapis.com/$discovery/rest?version=v2beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231012
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -22,6 +22,32 @@ declare namespace gapi.client {
|
|
|
22
22
|
function load(name: "iam", version: "v2beta", callback: () => any): void;
|
|
23
23
|
|
|
24
24
|
namespace iam {
|
|
25
|
+
interface GoogleCloudCommonOperationMetadata {
|
|
26
|
+
/** Output only. API version used to start the operation. */
|
|
27
|
+
apiVersion?:
|
|
28
|
+
string;
|
|
29
|
+
/**
|
|
30
|
+
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a
|
|
31
|
+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
32
|
+
*/
|
|
33
|
+
cancelRequested?:
|
|
34
|
+
boolean;
|
|
35
|
+
/** Output only. The time the operation was created. */
|
|
36
|
+
createTime?:
|
|
37
|
+
string;
|
|
38
|
+
/** Output only. The time the operation finished running. */
|
|
39
|
+
endTime?:
|
|
40
|
+
string;
|
|
41
|
+
/** Output only. Human-readable status of the operation, if any. */
|
|
42
|
+
statusDetail?:
|
|
43
|
+
string;
|
|
44
|
+
/** Output only. Server-defined resource path for the target of the operation. */
|
|
45
|
+
target?:
|
|
46
|
+
string;
|
|
47
|
+
/** Output only. Name of the verb executed by the operation. */
|
|
48
|
+
verb?:
|
|
49
|
+
string;
|
|
50
|
+
}
|
|
25
51
|
interface GoogleIamAdminV1AuditData {
|
|
26
52
|
/** The permission_delta when when creating or updating a Role. */
|
|
27
53
|
permissionDelta?:
|
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: 20231012
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|