@maxim_mazurok/gapi.client.logging-v2 0.0.20240108 → 0.0.20240207
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 +9 -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: 20240207
|
|
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
|
}
|
|
@@ -689,6 +695,8 @@ declare namespace gapi.client {
|
|
|
689
695
|
updateTime?: string;
|
|
690
696
|
}
|
|
691
697
|
interface Settings {
|
|
698
|
+
/** Optional. The default analytics mode of an org or folder which is inherited by all newly created child project buckets. */
|
|
699
|
+
analyticsMode?: string;
|
|
692
700
|
/** Optional. Overrides the built-in configuration for _Default sink. */
|
|
693
701
|
defaultSinkConfig?: DefaultSinkConfig;
|
|
694
702
|
/** Optional. If set to true, the _Default sink in newly created projects and folders will created in a disabled state. This can be used to automatically disable log storage if there is already an aggregated sink configured in the hierarchy. The _Default sink can be re-enabled manually if needed. */
|