@devopness/sdk-js 2.79.0 → 2.81.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.
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { NetworkProvisionInput } from './network-provision-input';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -28,27 +29,21 @@ export interface ActionTargetNetworkData {
28
29
  */
29
30
  name: string;
30
31
  /**
31
- * The name of the network\'s provider.
32
+ * The name of the network\'s cloud provider.
32
33
  * @type {string}
33
34
  * @memberof ActionTargetNetworkData
34
35
  */
35
36
  provider_name: string;
36
37
  /**
37
- * The human readable version of the provider\'s name
38
+ * The human readable version of the cloud provider\'s name
38
39
  * @type {string}
39
40
  * @memberof ActionTargetNetworkData
40
41
  */
41
42
  provider_name_human_readable: string;
42
43
  /**
43
- * The cloud provider region where the network are created
44
- * @type {string}
45
- * @memberof ActionTargetNetworkData
46
- */
47
- region: string;
48
- /**
49
- * The IP CIDR range of the network
50
- * @type {string}
44
+ *
45
+ * @type {NetworkProvisionInput}
51
46
  * @memberof ActionTargetNetworkData
52
47
  */
53
- cidr_block: string | null;
48
+ provision_input: NetworkProvisionInput;
54
49
  }
@@ -76,12 +76,6 @@ export interface ApplicationUpdate {
76
76
  * @memberof ApplicationUpdate
77
77
  */
78
78
  repository?: string;
79
- /**
80
- * Numeric ID of the pipeline used as default on deploy the application.
81
- * @type {string}
82
- * @memberof ApplicationUpdate
83
- */
84
- default_pipeline_id?: string;
85
79
  /**
86
80
  * Numeric ID of the source provider account where the repository is hosted. This field is required when <code>repository</code> is present.
87
81
  * @type {number}
@@ -10,7 +10,6 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { ApplicationLastDeployments } from './application-last-deployments';
13
- import { ApplicationPipeline } from './application-pipeline';
14
13
  import { ApplicationType } from './application-type';
15
14
  import { EnvironmentRelation } from './environment-relation';
16
15
  import { ServerRelation } from './server-relation';
@@ -161,12 +160,6 @@ export interface Application {
161
160
  * @memberof Application
162
161
  */
163
162
  requires_daemon: boolean;
164
- /**
165
- *
166
- * @type {ApplicationPipeline}
167
- * @memberof Application
168
- */
169
- default_pipeline: ApplicationPipeline | null;
170
163
  /**
171
164
  *
172
165
  * @type {UserRelation}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { NetworkProvisionInput } from './network-provision-input';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -58,17 +59,11 @@ export interface NetworkRelation {
58
59
  */
59
60
  name: string;
60
61
  /**
61
- * The cloud provider region where the network are created
62
- * @type {string}
63
- * @memberof NetworkRelation
64
- */
65
- region: string;
66
- /**
67
- * The IP CIDR range of the network
68
- * @type {string}
62
+ *
63
+ * @type {NetworkProvisionInput}
69
64
  * @memberof NetworkRelation
70
65
  */
71
- cidr_block: string | null;
66
+ provision_input: NetworkProvisionInput;
72
67
  /**
73
68
  * The date and time when the record was created
74
69
  * @type {string}
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { ActionRelation } from './action-relation';
13
13
  import { EnvironmentRelation } from './environment-relation';
14
+ import { NetworkProvisionInput } from './network-provision-input';
14
15
  import { ProjectRelation } from './project-relation';
15
16
  import { UserRelation } from './user-relation';
16
17
  /**
@@ -44,17 +45,11 @@ export interface Network {
44
45
  */
45
46
  name: string;
46
47
  /**
47
- * The cloud provider region where the network are created
48
- * @type {string}
49
- * @memberof Network
50
- */
51
- region: string;
52
- /**
53
- * The IP CIDR range of the network
54
- * @type {string}
48
+ *
49
+ * @type {NetworkProvisionInput}
55
50
  * @memberof Network
56
51
  */
57
- cidr_block: string | null;
52
+ provision_input: NetworkProvisionInput;
58
53
  /**
59
54
  *
60
55
  * @type {UserRelation}
@@ -17,6 +17,18 @@ import { PipelineSettingsVariable } from './pipeline-settings-variable';
17
17
  * @interface PipelineSettings
18
18
  */
19
19
  export interface PipelineSettings {
20
+ /**
21
+ *
22
+ * @type {number}
23
+ * @memberof PipelineSettings
24
+ */
25
+ max_pipelines_per_resource?: number;
26
+ /**
27
+ *
28
+ * @type {boolean}
29
+ * @memberof PipelineSettings
30
+ */
31
+ allow_custom_steps?: boolean;
20
32
  /**
21
33
  * The list of pipeline setting stage
22
34
  * @type {Array<PipelineSettingsStage>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.79.0",
3
+ "version": "2.81.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },