@devopness/sdk-js 2.90.0 → 2.91.0
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.
|
@@ -29,7 +29,7 @@ export interface PipelineCreate {
|
|
|
29
29
|
*/
|
|
30
30
|
operation: string;
|
|
31
31
|
/**
|
|
32
|
-
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and
|
|
32
|
+
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and 10.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof PipelineCreate
|
|
35
35
|
*/
|
|
@@ -29,7 +29,7 @@ export interface PipelineUpdate {
|
|
|
29
29
|
*/
|
|
30
30
|
name: string;
|
|
31
31
|
/**
|
|
32
|
-
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and
|
|
32
|
+
* Maximum number of actions that can run in parallel for this pipeline. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run this pipeline. Must be between 0 and 10.
|
|
33
33
|
* @type {number}
|
|
34
34
|
* @memberof PipelineUpdate
|
|
35
35
|
*/
|
|
@@ -36,7 +36,7 @@ export interface ServerEnvironmentCreate {
|
|
|
36
36
|
*/
|
|
37
37
|
ssh_port?: number;
|
|
38
38
|
/**
|
|
39
|
-
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and
|
|
39
|
+
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and 10.
|
|
40
40
|
* @type {number}
|
|
41
41
|
* @memberof ServerEnvironmentCreate
|
|
42
42
|
*/
|
|
@@ -34,7 +34,7 @@ export interface ServerUpdate {
|
|
|
34
34
|
*/
|
|
35
35
|
ssh_port?: number;
|
|
36
36
|
/**
|
|
37
|
-
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and
|
|
37
|
+
* Maximum number of actions that can run in parallel on this server. `0` means no limit of simultaneous actions. `1` means just a single action will be started at a time to run on this server. Must be between 0 and 10.
|
|
38
38
|
* @type {number}
|
|
39
39
|
* @memberof ServerUpdate
|
|
40
40
|
*/
|