@maxim_mazurok/gapi.client.run-v1 0.0.20250509 → 0.0.20250613
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 +5 -3
- 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://run.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250613
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -572,7 +572,7 @@ declare namespace gapi.client {
|
|
|
572
572
|
revision?: string;
|
|
573
573
|
}
|
|
574
574
|
interface GoogleDevtoolsCloudbuildV1GitSourceRepository {
|
|
575
|
-
/** The Developer Connect Git repository link
|
|
575
|
+
/** The Developer Connect Git repository link formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*` */
|
|
576
576
|
developerConnect?: string;
|
|
577
577
|
/** Location of the Git repository. */
|
|
578
578
|
url?: string;
|
|
@@ -1343,10 +1343,12 @@ declare namespace gapi.client {
|
|
|
1343
1343
|
status?: TaskStatus;
|
|
1344
1344
|
}
|
|
1345
1345
|
interface TaskAttemptResult {
|
|
1346
|
-
/** Optional. The exit code of this attempt. This may be unset if the container was unable to exit cleanly with a code due to some other failure. See status field for possible failure details. */
|
|
1346
|
+
/** Optional. The exit code of this attempt. This may be unset if the container was unable to exit cleanly with a code due to some other failure. See status field for possible failure details. At most one of exit_code or term_signal will be set. */
|
|
1347
1347
|
exitCode?: number;
|
|
1348
1348
|
/** Optional. The status of this attempt. If the status code is OK, then the attempt succeeded. */
|
|
1349
1349
|
status?: GoogleRpcStatus;
|
|
1350
|
+
/** Optional. Termination signal of the container. This is set to non-zero if the container is terminated by the system. At most one of exit_code or term_signal will be set. */
|
|
1351
|
+
termSignal?: number;
|
|
1350
1352
|
}
|
|
1351
1353
|
interface TaskSpec {
|
|
1352
1354
|
/** Optional. List of containers belonging to the task. We disallow a number of fields on this Container. */
|