@maxim_mazurok/gapi.client.workstations-v1beta 0.3.20260622 → 0.3.20260708
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 +8 -6
- 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://workstations.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260708
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -286,13 +286,15 @@ declare namespace gapi.client {
|
|
|
286
286
|
workstations?: Workstation[];
|
|
287
287
|
}
|
|
288
288
|
interface OAuthToken {
|
|
289
|
-
/** Required. The OAuth token. */
|
|
289
|
+
/** Required. The OAuth 2.0 access token value. */
|
|
290
290
|
accessToken?: string;
|
|
291
|
-
/** Optional. The email address
|
|
291
|
+
/** Optional. The email address associated with the OAuth 2.0 access token. */
|
|
292
292
|
email?: string;
|
|
293
|
-
/** Optional. The
|
|
293
|
+
/** Optional. The lifetime duration of the access token. Only one of `expire_time` or `expires_in` should be specified. */
|
|
294
|
+
expiresIn?: string;
|
|
295
|
+
/** Optional. The time the OAuth access token will expire. This should be the time the access token was generated plus the expires_in offset returned from the Access Token Response. Only one of `expire_time` or `expires_in` should be specified. */
|
|
294
296
|
expireTime?: string;
|
|
295
|
-
/** Optional. The scopes
|
|
297
|
+
/** Optional. The scopes associated with the OAuth 2.0 access token. See https://developers.google.com/identity/protocols/oauth2/scopes for more information. */
|
|
296
298
|
scopes?: string;
|
|
297
299
|
}
|
|
298
300
|
interface Operation {
|
|
@@ -358,7 +360,7 @@ declare namespace gapi.client {
|
|
|
358
360
|
serviceAttachmentUri?: string;
|
|
359
361
|
}
|
|
360
362
|
interface PushCredentialsRequest {
|
|
361
|
-
/** Optional. Credentials used by Cloud Client Libraries, Google API Client Libraries, and other tooling within the user
|
|
363
|
+
/** Optional. Credentials used by Cloud Client Libraries, Google API Client Libraries, and other tooling within the user container. For more information, see https://cloud.google.com/docs/authentication/application-default-credentials */
|
|
362
364
|
applicationDefaultCredentials?: OAuthToken;
|
|
363
365
|
}
|
|
364
366
|
interface ReadinessCheck {
|