@maxim_mazurok/gapi.client.managedidentities-v1alpha1 0.0.20240530 → 0.0.20250116
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 -7
- 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://managedidentities.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250116
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -429,7 +429,7 @@ declare namespace gapi.client {
|
|
|
429
429
|
interface OperationMetadata {
|
|
430
430
|
/** Output only. API version used to start the operation. */
|
|
431
431
|
apiVersion?: string;
|
|
432
|
-
/** Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have Operation.error value with a google.rpc.Status.code of 1
|
|
432
|
+
/** Output only. Identifies whether the user has requested cancellation of the operation. Operations that have been cancelled successfully have google.longrunning.Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
433
433
|
cancelRequested?: boolean;
|
|
434
434
|
/** Output only. The time the operation was created. */
|
|
435
435
|
createTime?: string;
|
|
@@ -522,13 +522,13 @@ declare namespace gapi.client {
|
|
|
522
522
|
permissions?: string[];
|
|
523
523
|
}
|
|
524
524
|
interface TimeOfDay {
|
|
525
|
-
/** Hours of day in 24 hour format.
|
|
525
|
+
/** Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time. */
|
|
526
526
|
hours?: number;
|
|
527
|
-
/** Minutes of hour
|
|
527
|
+
/** Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59. */
|
|
528
528
|
minutes?: number;
|
|
529
|
-
/** Fractions of seconds in nanoseconds. Must be
|
|
529
|
+
/** Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999. */
|
|
530
530
|
nanos?: number;
|
|
531
|
-
/** Seconds of
|
|
531
|
+
/** Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds. */
|
|
532
532
|
seconds?: number;
|
|
533
533
|
}
|
|
534
534
|
interface Trust {
|
|
@@ -1973,7 +1973,7 @@ declare namespace gapi.client {
|
|
|
1973
1973
|
sqlIntegrations: SqlIntegrationsResource;
|
|
1974
1974
|
}
|
|
1975
1975
|
interface OperationsResource {
|
|
1976
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
1976
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
1977
1977
|
cancel(request: {
|
|
1978
1978
|
/** V1 error format. */
|
|
1979
1979
|
'$.xgafv'?: string;
|
package/package.json
CHANGED