@maxim_mazurok/gapi.client.storage-v1 0.0.20240613 → 0.0.20240621
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://storage.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240621
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -415,6 +415,8 @@ declare namespace gapi.client {
|
|
|
415
415
|
nextPageToken?: string;
|
|
416
416
|
}
|
|
417
417
|
interface GoogleLongrunningListOperationsResponse {
|
|
418
|
+
/** The kind of item this is. For lists of operations, this is always storage#operations. */
|
|
419
|
+
kind?: string;
|
|
418
420
|
/** The continuation token, used to page through large result sets. Provide this value in a subsequent request to return the next page of results. */
|
|
419
421
|
nextPageToken?: string;
|
|
420
422
|
/** A list of operations that matches the specified filter in the request. */
|
|
@@ -425,12 +427,16 @@ declare namespace gapi.client {
|
|
|
425
427
|
done?: boolean;
|
|
426
428
|
/** The error result of the operation in case of failure or cancellation. */
|
|
427
429
|
error?: GoogleRpcStatus;
|
|
430
|
+
/** The kind of item this is. For operations, this is always storage#operation. */
|
|
431
|
+
kind?: string;
|
|
428
432
|
/** Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any. */
|
|
429
433
|
metadata?: {[P in string]: any};
|
|
430
434
|
/** The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the "name" should be a resource name ending with "operations/{operationId}". */
|
|
431
435
|
name?: string;
|
|
432
436
|
/** The normal response of the operation in case of success. If the original method returns no data on success, such as "Delete", the response is google.protobuf.Empty. If the original method is standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type "XxxResponse", where "Xxx" is the original method name. For example, if the original method name is "TakeSnapshot()", the inferred response type is "TakeSnapshotResponse". */
|
|
433
437
|
response?: {[P in string]: any};
|
|
438
|
+
/** The link to this long running operation. */
|
|
439
|
+
selfLink?: string;
|
|
434
440
|
}
|
|
435
441
|
interface GoogleRpcStatus {
|
|
436
442
|
/** The status code, which should be an enum value of google.rpc.Code. */
|