@maxim_mazurok/gapi.client.managedidentities-v1 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250116
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -425,7 +425,7 @@ declare namespace gapi.client {
|
|
|
425
425
|
interface OperationMetadata {
|
|
426
426
|
/** Output only. API version used to start the operation. */
|
|
427
427
|
apiVersion?: string;
|
|
428
|
-
/** 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
|
|
428
|
+
/** 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`. */
|
|
429
429
|
cancelRequested?: boolean;
|
|
430
430
|
/** Output only. The time the operation was created. */
|
|
431
431
|
createTime?: string;
|
|
@@ -520,13 +520,13 @@ declare namespace gapi.client {
|
|
|
520
520
|
permissions?: string[];
|
|
521
521
|
}
|
|
522
522
|
interface TimeOfDay {
|
|
523
|
-
/** Hours of day in 24 hour format.
|
|
523
|
+
/** 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. */
|
|
524
524
|
hours?: number;
|
|
525
|
-
/** Minutes of hour
|
|
525
|
+
/** Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59. */
|
|
526
526
|
minutes?: number;
|
|
527
|
-
/** Fractions of seconds in nanoseconds. Must be
|
|
527
|
+
/** Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999. */
|
|
528
528
|
nanos?: number;
|
|
529
|
-
/** Seconds of
|
|
529
|
+
/** 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. */
|
|
530
530
|
seconds?: number;
|
|
531
531
|
}
|
|
532
532
|
interface Trust {
|
|
@@ -1971,7 +1971,7 @@ declare namespace gapi.client {
|
|
|
1971
1971
|
sqlIntegrations: SqlIntegrationsResource;
|
|
1972
1972
|
}
|
|
1973
1973
|
interface OperationsResource {
|
|
1974
|
-
/** 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
|
|
1974
|
+
/** 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`. */
|
|
1975
1975
|
cancel(request: {
|
|
1976
1976
|
/** V1 error format. */
|
|
1977
1977
|
'$.xgafv'?: string;
|
package/package.json
CHANGED