@maxim_mazurok/gapi.client.batch-v1 0.0.20240229 → 0.0.20240315
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 +3 -3
- package/package.json +1 -1
- package/readme.md +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://batch.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240315
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -145,7 +145,7 @@ declare namespace gapi.client {
|
|
|
145
145
|
interface AgentTaskSpec {
|
|
146
146
|
/** Environment variables to set before running the Task. */
|
|
147
147
|
environment?: AgentEnvironment;
|
|
148
|
-
/** Maximum duration the task should run. The task will be killed and marked as FAILED if over this limit. */
|
|
148
|
+
/** Maximum duration the task should run. The task will be killed and marked as FAILED if over this limit. The valid value range for max_run_duration in seconds is [0, 315576000000.999999999], */
|
|
149
149
|
maxRunDuration?: string;
|
|
150
150
|
/** AgentTaskRunnable is runanbles that will be executed on the agent. */
|
|
151
151
|
runnables?: AgentTaskRunnable[];
|
|
@@ -570,7 +570,7 @@ declare namespace gapi.client {
|
|
|
570
570
|
lifecyclePolicies?: LifecyclePolicy[];
|
|
571
571
|
/** Maximum number of retries on failures. The default, 0, which means never retry. The valid value range is [0, 10]. */
|
|
572
572
|
maxRetryCount?: number;
|
|
573
|
-
/** Maximum duration the task should run. The task will be killed and marked as FAILED if over this limit. */
|
|
573
|
+
/** Maximum duration the task should run. The task will be killed and marked as FAILED if over this limit. The valid value range for max_run_duration in seconds is [0, 315576000000.999999999], */
|
|
574
574
|
maxRunDuration?: string;
|
|
575
575
|
/** The sequence of scripts or containers to run for this Task. Each Task using this TaskSpec executes its list of runnables in order. The Task succeeds if all of its runnables either exit with a zero status or any that exit with a non-zero status have the ignore_exit_status flag. Background runnables are killed automatically (if they have not already exited) a short time after all foreground runnables have completed. Even though this is likely to result in a non-zero exit status for the background runnable, these automatic kills are not treated as Task failures. */
|
|
576
576
|
runnables?: Runnable[];
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TypeScript typings for Batch API v1
|
|
2
2
|
|
|
3
|
-
An API to manage the running of
|
|
3
|
+
An API to manage the running of Batch resources on Google Cloud Platform.
|
|
4
4
|
For detailed description please check [documentation](https://cloud.google.com/batch/).
|
|
5
5
|
|
|
6
6
|
## Installing
|