@devopness/sdk-js 2.105.0 → 2.107.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.
@@ -65,7 +65,7 @@ export interface ApplicationEnvironmentCreate {
65
65
  */
66
66
  listening_address?: string;
67
67
  /**
68
- * The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than 60 characters.
68
+ * The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than 100 characters.
69
69
  * @type {string}
70
70
  * @memberof ApplicationEnvironmentCreate
71
71
  */
@@ -71,7 +71,7 @@ export interface ApplicationUpdate {
71
71
  */
72
72
  listening_address?: string;
73
73
  /**
74
- * The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than 60 characters.
74
+ * The full name of a repository (`repository_owner/repository_name`) containing the application source code. Required when the `source_provider_id` field is informed. Must not be greater than 100 characters.
75
75
  * @type {string}
76
76
  * @memberof ApplicationUpdate
77
77
  */
@@ -12,6 +12,7 @@
12
12
  import { CloudProviderInputSettings } from './cloud-provider-input-settings';
13
13
  import { CloudProviderServiceResourceTypeScope } from './cloud-provider-service-resource-type-scope';
14
14
  import { OperatingSystem } from './operating-system';
15
+ import { OperationCustomSettings } from './operation-custom-settings';
15
16
  /**
16
17
  * Resource type details
17
18
  * @export
@@ -48,4 +49,16 @@ export interface CloudProviderServiceResourceType {
48
49
  * @memberof CloudProviderServiceResourceType
49
50
  */
50
51
  os?: Array<OperatingSystem>;
52
+ /**
53
+ * Tells if this cloud service allows keeping server\'s persistent disks after a server is deleted. If true, Devopness API will allow users to send a parameter when deleting a server to indicate if the server persistent disks must be retained, keeping data in the disk volumes - possibly incurring extra costs on the user\'s cloud provider account. For cloud services that do not support this option, server disks will always be deleted when a server is deleted.
54
+ * @type {boolean}
55
+ * @memberof CloudProviderServiceResourceType
56
+ */
57
+ can_keep_disk_after_delete_server?: boolean;
58
+ /**
59
+ *
60
+ * @type {OperationCustomSettings}
61
+ * @memberof CloudProviderServiceResourceType
62
+ */
63
+ operation_custom_settings?: OperationCustomSettings;
51
64
  }
@@ -130,6 +130,7 @@ export * from './network-rule-relation';
130
130
  export * from './network-rule-update';
131
131
  export * from './operating-system';
132
132
  export * from './operating-system-version';
133
+ export * from './operation-custom-settings';
133
134
  export * from './password-reset-response';
134
135
  export * from './password-user-reset';
135
136
  export * from './password-user-send-reset-link';
@@ -151,6 +152,7 @@ export * from './related-action';
151
152
  export * from './repository';
152
153
  export * from './repository-branch';
153
154
  export * from './repository-relation';
155
+ export * from './repository-tag';
154
156
  export * from './request-relation';
155
157
  export * from './resource-event';
156
158
  export * from './resource-event-relation';
@@ -146,6 +146,7 @@ __exportStar(require("./network-rule-relation"), exports);
146
146
  __exportStar(require("./network-rule-update"), exports);
147
147
  __exportStar(require("./operating-system"), exports);
148
148
  __exportStar(require("./operating-system-version"), exports);
149
+ __exportStar(require("./operation-custom-settings"), exports);
149
150
  __exportStar(require("./password-reset-response"), exports);
150
151
  __exportStar(require("./password-user-reset"), exports);
151
152
  __exportStar(require("./password-user-send-reset-link"), exports);
@@ -167,6 +168,7 @@ __exportStar(require("./related-action"), exports);
167
168
  __exportStar(require("./repository"), exports);
168
169
  __exportStar(require("./repository-branch"), exports);
169
170
  __exportStar(require("./repository-relation"), exports);
171
+ __exportStar(require("./repository-tag"), exports);
170
172
  __exportStar(require("./request-relation"), exports);
171
173
  __exportStar(require("./resource-event"), exports);
172
174
  __exportStar(require("./resource-event-relation"), exports);
@@ -0,0 +1,36 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface OperationCustomSettings
16
+ */
17
+ export interface OperationCustomSettings {
18
+ /**
19
+ * The resource\'s custom operation that are CSP specific
20
+ * @type {string}
21
+ * @memberof OperationCustomSettings
22
+ */
23
+ operation?: string;
24
+ /**
25
+ * Human redable version of the resource\'s custom operation
26
+ * @type {string}
27
+ * @memberof OperationCustomSettings
28
+ */
29
+ operation_human_readable?: string;
30
+ /**
31
+ * Whether the `server:remove` operation will trigger an action or not
32
+ * @type {boolean}
33
+ * @memberof OperationCustomSettings
34
+ */
35
+ triggers_action?: boolean;
36
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /**
4
+ * devopness API
5
+ * Devopness API - Painless essential DevOps to everyone
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,24 @@
1
+ /**
2
+ * devopness API
3
+ * Devopness API - Painless essential DevOps to everyone
4
+ *
5
+ * The version of the OpenAPI document: latest
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * A repository tag
14
+ * @export
15
+ * @interface RepositoryTag
16
+ */
17
+ export interface RepositoryTag {
18
+ /**
19
+ * The name of the tag
20
+ * @type {string}
21
+ * @memberof RepositoryTag
22
+ */
23
+ name: string;
24
+ }
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /* eslint-disable */
3
+ /**
4
+ * devopness API
5
+ * Devopness API - Painless essential DevOps to everyone
6
+ *
7
+ * The version of the OpenAPI document: latest
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { RepositoryBranch } from './repository-branch';
13
+ import { RepositoryTag } from './repository-tag';
13
14
  /**
14
15
  *
15
16
  * @export
@@ -46,4 +47,10 @@ export interface Repository {
46
47
  * @memberof Repository
47
48
  */
48
49
  branches: Array<RepositoryBranch>;
50
+ /**
51
+ * List of repository tags
52
+ * @type {Array<RepositoryTag>}
53
+ * @memberof Repository
54
+ */
55
+ tags: Array<RepositoryTag>;
49
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.105.0",
3
+ "version": "2.107.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },