@devopness/sdk-js 2.101.0 → 2.103.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.
@@ -28,7 +28,7 @@ export interface CloudProviderRelation {
28
28
  */
29
29
  name: string;
30
30
  /**
31
- * Text describing what is the provider
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof CloudProviderRelation
34
34
  */
@@ -28,7 +28,7 @@ export interface CloudProviderServiceRegion {
28
28
  */
29
29
  name: string;
30
30
  /**
31
- * Text describing the region
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof CloudProviderServiceRegion
34
34
  */
@@ -30,7 +30,7 @@ export interface CloudProvider {
30
30
  */
31
31
  name: string;
32
32
  /**
33
- * Text describing what is the provider
33
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
34
34
  * @type {string}
35
35
  * @memberof CloudProvider
36
36
  */
@@ -29,7 +29,7 @@ export interface DeploymentDefaultStep {
29
29
  */
30
30
  human_readable: string;
31
31
  /**
32
- * Text describing when the event is triggered
32
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
33
33
  * @type {string}
34
34
  * @memberof DeploymentDefaultStep
35
35
  */
@@ -209,6 +209,7 @@ export * from './static-billing-info';
209
209
  export * from './static-cloud-provider-code';
210
210
  export * from './static-cron-job-frequency';
211
211
  export * from './static-environment-type';
212
+ export * from './static-network-rule-direction';
212
213
  export * from './static-network-rule-protocol';
213
214
  export * from './static-network-rule-protocol-defaults';
214
215
  export * from './static-permission';
@@ -225,6 +225,7 @@ __exportStar(require("./static-billing-info"), exports);
225
225
  __exportStar(require("./static-cloud-provider-code"), exports);
226
226
  __exportStar(require("./static-cron-job-frequency"), exports);
227
227
  __exportStar(require("./static-environment-type"), exports);
228
+ __exportStar(require("./static-network-rule-direction"), exports);
228
229
  __exportStar(require("./static-network-rule-protocol"), exports);
229
230
  __exportStar(require("./static-network-rule-protocol-defaults"), exports);
230
231
  __exportStar(require("./static-permission"), exports);
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { NetworkProvisionInputSettings } from './network-provision-input-settings';
13
+ import { ServerCloudServiceCode } from './server-cloud-service-code';
13
14
  /**
14
15
  * Network provision input parameters
15
16
  * @export
@@ -17,11 +18,11 @@ import { NetworkProvisionInputSettings } from './network-provision-input-setting
17
18
  */
18
19
  export interface NetworkProvisionInput {
19
20
  /**
20
- * The cloud service of the cloud provider
21
- * @type {string}
21
+ *
22
+ * @type {ServerCloudServiceCode}
22
23
  * @memberof NetworkProvisionInput
23
24
  */
24
- cloud_service_code: string;
25
+ cloud_service_code: ServerCloudServiceCode;
25
26
  /**
26
27
  * The ID of the cloud credential
27
28
  * @type {number}
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { StaticNetworkRuleDirection } from './static-network-rule-direction';
12
13
  import { StaticNetworkRuleProtocol } from './static-network-rule-protocol';
13
14
  /**
14
15
  *
@@ -17,7 +18,13 @@ import { StaticNetworkRuleProtocol } from './static-network-rule-protocol';
17
18
  */
18
19
  export interface NetworkRuleOptions {
19
20
  /**
20
- * The supported network rules protocols
21
+ * The supported network rule\'s traffic directions
22
+ * @type {Array<StaticNetworkRuleDirection>}
23
+ * @memberof NetworkRuleOptions
24
+ */
25
+ directions: Array<StaticNetworkRuleDirection>;
26
+ /**
27
+ * The supported network rule\'s protocols
21
28
  * @type {Array<StaticNetworkRuleProtocol>}
22
29
  * @memberof NetworkRuleOptions
23
30
  */
@@ -29,7 +29,7 @@ export interface OperatingSystem {
29
29
  */
30
30
  name: string;
31
31
  /**
32
- * Text describing the operating system
32
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
33
33
  * @type {string}
34
34
  * @memberof OperatingSystem
35
35
  */
@@ -28,7 +28,7 @@ export interface PipelineSettingsStage {
28
28
  */
29
29
  human_readable?: string;
30
30
  /**
31
- *
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof PipelineSettingsStage
34
34
  */
@@ -28,7 +28,7 @@ export interface PipelineSettingsVariable {
28
28
  */
29
29
  human_readable?: string;
30
30
  /**
31
- *
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof PipelineSettingsVariable
34
34
  */
@@ -28,7 +28,7 @@ export interface ScriptRunner {
28
28
  */
29
29
  human_readable: string;
30
30
  /**
31
- * A brief description about the runner
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof ScriptRunner
34
34
  */
@@ -15,6 +15,7 @@ import { CloudOsVersionCode } from './cloud-os-version-code';
15
15
  import { EnvironmentRelation } from './environment-relation';
16
16
  import { ProjectRelation } from './project-relation';
17
17
  import { ServerBlueprint } from './server-blueprint';
18
+ import { ServerCloudServiceCode } from './server-cloud-service-code';
18
19
  import { ServerProvisionInput } from './server-provision-input';
19
20
  import { UserRelation } from './user-relation';
20
21
  /**
@@ -60,11 +61,11 @@ export interface Server {
60
61
  */
61
62
  provider_name_human_readable: string;
62
63
  /**
63
- * The cloud service code
64
- * @type {string}
64
+ *
65
+ * @type {ServerCloudServiceCode}
65
66
  * @memberof Server
66
67
  */
67
- cloud_service_code: string;
68
+ cloud_service_code: ServerCloudServiceCode;
68
69
  /**
69
70
  * Public ipv4 address for server access
70
71
  * @type {string}
@@ -29,7 +29,7 @@ export interface StaticCronJobFrequency {
29
29
  */
30
30
  human_readable: CronJobPattern;
31
31
  /**
32
- * Text hint describing the frequency
32
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
33
33
  * @type {string}
34
34
  * @memberof StaticCronJobFrequency
35
35
  */
@@ -28,7 +28,7 @@ export interface StaticEnvironmentType {
28
28
  */
29
29
  human_readable: string;
30
30
  /**
31
- * Text describing the environment purpose
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof StaticEnvironmentType
34
34
  */
@@ -0,0 +1,37 @@
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
+ import { NetworkRuleDirection } from './network-rule-direction';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface StaticNetworkRuleDirection
17
+ */
18
+ export interface StaticNetworkRuleDirection {
19
+ /**
20
+ *
21
+ * @type {NetworkRuleDirection}
22
+ * @memberof StaticNetworkRuleDirection
23
+ */
24
+ value: NetworkRuleDirection;
25
+ /**
26
+ * The formatted name to be displayed in user interfaces
27
+ * @type {string}
28
+ * @memberof StaticNetworkRuleDirection
29
+ */
30
+ human_readable: string;
31
+ /**
32
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
33
+ * @type {string}
34
+ * @memberof StaticNetworkRuleDirection
35
+ */
36
+ hint: string;
37
+ }
@@ -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 });
@@ -28,7 +28,7 @@ export interface StaticPermission {
28
28
  */
29
29
  human_readable: string;
30
30
  /**
31
- * Description of what a role is allowed to do with a resource if she has this permission
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof StaticPermission
34
34
  */
@@ -30,7 +30,7 @@ export interface StaticServiceType {
30
30
  */
31
31
  human_readable: string;
32
32
  /**
33
- * Text describing the service
33
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
34
34
  * @type {string}
35
35
  * @memberof StaticServiceType
36
36
  */
@@ -28,7 +28,7 @@ export interface VariableTargets {
28
28
  */
29
29
  name_human_readable?: string;
30
30
  /**
31
- * Text describing what is the variable target
31
+ * Descriptive text to help users to know what data is stored in the field and optional extra information on how to enter data to the field
32
32
  * @type {string}
33
33
  * @memberof VariableTargets
34
34
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.101.0",
3
+ "version": "2.103.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },