@devopness/sdk-js 2.105.0 → 2.106.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.
@@ -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_server_delete?: 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';
@@ -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);
@@ -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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.105.0",
3
+ "version": "2.106.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },