@devopness/sdk-js 2.59.0 → 2.60.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.
|
@@ -21,4 +21,10 @@ export interface PipelineCreate {
|
|
|
21
21
|
* @memberof PipelineCreate
|
|
22
22
|
*/
|
|
23
23
|
name: string;
|
|
24
|
+
/**
|
|
25
|
+
* The resource operation associated to the pipeline. Must not be greater than 20 characters.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PipelineCreate
|
|
28
|
+
*/
|
|
29
|
+
operation: string;
|
|
24
30
|
}
|
|
@@ -46,12 +46,30 @@ export interface PipelineRelation {
|
|
|
46
46
|
* @memberof PipelineRelation
|
|
47
47
|
*/
|
|
48
48
|
resource_type: string;
|
|
49
|
+
/**
|
|
50
|
+
* Human readable version of the resource type
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof PipelineRelation
|
|
53
|
+
*/
|
|
54
|
+
resource_type_human_readable: string;
|
|
49
55
|
/**
|
|
50
56
|
* The pipeline\'s resource ID
|
|
51
57
|
* @type {number}
|
|
52
58
|
* @memberof PipelineRelation
|
|
53
59
|
*/
|
|
54
60
|
resource_id: number;
|
|
61
|
+
/**
|
|
62
|
+
* The resource operation associated to the pipeline.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof PipelineRelation
|
|
65
|
+
*/
|
|
66
|
+
operation: string;
|
|
67
|
+
/**
|
|
68
|
+
* Human readable version of the operation
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof PipelineRelation
|
|
71
|
+
*/
|
|
72
|
+
operation_human_readable: string;
|
|
55
73
|
/**
|
|
56
74
|
*
|
|
57
75
|
* @type {UserRelation}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { ResourceType } from './resource-type';
|
|
12
13
|
import { Step } from './step';
|
|
13
14
|
import { UserRelation } from './user-relation';
|
|
14
15
|
/**
|
|
@@ -42,17 +43,35 @@ export interface Pipeline {
|
|
|
42
43
|
*/
|
|
43
44
|
project_id: number;
|
|
44
45
|
/**
|
|
45
|
-
*
|
|
46
|
+
*
|
|
47
|
+
* @type {ResourceType}
|
|
48
|
+
* @memberof Pipeline
|
|
49
|
+
*/
|
|
50
|
+
resource_type: ResourceType;
|
|
51
|
+
/**
|
|
52
|
+
* Human readable version of the resource type
|
|
46
53
|
* @type {string}
|
|
47
54
|
* @memberof Pipeline
|
|
48
55
|
*/
|
|
49
|
-
|
|
56
|
+
resource_type_human_readable: string;
|
|
50
57
|
/**
|
|
51
58
|
* The pipeline\'s resource ID
|
|
52
59
|
* @type {number}
|
|
53
60
|
* @memberof Pipeline
|
|
54
61
|
*/
|
|
55
62
|
resource_id: number;
|
|
63
|
+
/**
|
|
64
|
+
* The resource operation associated to the pipeline.
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof Pipeline
|
|
67
|
+
*/
|
|
68
|
+
operation: string;
|
|
69
|
+
/**
|
|
70
|
+
* Human readable version of the operation
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof Pipeline
|
|
73
|
+
*/
|
|
74
|
+
operation_human_readable: string;
|
|
56
75
|
/**
|
|
57
76
|
*
|
|
58
77
|
* @type {Array<Step>}
|