@maxim_mazurok/gapi.client.logging-v2 0.0.20240108 → 0.0.20240112
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 +7 -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://logging.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240112
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -68,16 +68,22 @@ declare namespace gapi.client {
|
|
|
68
68
|
interface CopyLogEntriesMetadata {
|
|
69
69
|
/** Identifies whether the user has requested cancellation of the operation. */
|
|
70
70
|
cancellationRequested?: boolean;
|
|
71
|
+
/** Destination to which to copy log entries.For example, a Cloud Storage bucket:"storage.googleapis.com/my-cloud-storage-bucket" */
|
|
72
|
+
destination?: string;
|
|
71
73
|
/** The end time of an operation. */
|
|
72
74
|
endTime?: string;
|
|
73
75
|
/** Estimated progress of the operation (0 - 100%). */
|
|
74
76
|
progress?: number;
|
|
75
77
|
/** CopyLogEntries RPC request. */
|
|
76
78
|
request?: CopyLogEntriesRequest;
|
|
79
|
+
/** Source from which to copy log entries.For example, a log bucket:"projects/my-project/locations/global/buckets/my-source-bucket" */
|
|
80
|
+
source?: string;
|
|
77
81
|
/** The create time of an operation. */
|
|
78
82
|
startTime?: string;
|
|
79
83
|
/** Output only. State of an operation. */
|
|
80
84
|
state?: string;
|
|
85
|
+
/** Name of the verb executed by the operation.For example,"copy" */
|
|
86
|
+
verb?: string;
|
|
81
87
|
/** The IAM identity of a service account that must be granted access to the destination.If the service account is not granted permission to the destination within an hour, the operation will be cancelled.For example: "serviceAccount:foo@bar.com" */
|
|
82
88
|
writerIdentity?: string;
|
|
83
89
|
}
|