@devopness/sdk-js 2.142.0 → 2.142.1

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,41 +9,20 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { CredentialInputSettingsValidation } from './credential-input-settings-validation';
12
+ import { CredentialAws } from './credential-aws';
13
+ import { CredentialDigitalOcean } from './credential-digital-ocean';
14
+ import { CredentialGoogleCloud } from './credential-google-cloud';
15
+ import { CredentialSourceProvider } from './credential-source-provider';
13
16
  /**
14
- * A input setting for credential cloud provider
17
+ *
15
18
  * @export
16
19
  * @interface CredentialInputSettings
17
20
  */
18
21
  export interface CredentialInputSettings {
19
22
  /**
20
- * The name of the input setting
21
- * @type {string}
22
- * @memberof CredentialInputSettings
23
- */
24
- name: string;
25
- /**
26
- * The human readable version of the input setting name
27
- * @type {string}
28
- * @memberof CredentialInputSettings
29
- */
30
- name_human_readable: string;
31
- /**
32
- *
33
- * @type {CredentialInputSettingsValidation}
34
- * @memberof CredentialInputSettings
35
- */
36
- validation: CredentialInputSettingsValidation;
37
- /**
38
- * The default value of the input setting
39
- * @type {string}
40
- * @memberof CredentialInputSettings
41
- */
42
- default_value: string | null;
43
- /**
44
- * Defines if the input setting data is a sensitive content
45
- * @type {boolean}
23
+ * Cloud provider credential
24
+ * @type {CredentialAws | CredentialDigitalOcean | CredentialGoogleCloud | CredentialSourceProvider}
46
25
  * @memberof CredentialInputSettings
47
26
  */
48
- sensitive: boolean;
27
+ credential: CredentialAws | CredentialDigitalOcean | CredentialGoogleCloud | CredentialSourceProvider;
49
28
  }
@@ -58,7 +58,6 @@ export * from './credential-digital-ocean';
58
58
  export * from './credential-environment-create';
59
59
  export * from './credential-google-cloud';
60
60
  export * from './credential-input-settings';
61
- export * from './credential-input-settings-validation';
62
61
  export * from './credential-options';
63
62
  export * from './credential-provider-type';
64
63
  export * from './credential-relation';
@@ -156,6 +155,8 @@ export * from './project-create';
156
155
  export * from './project-relation';
157
156
  export * from './project-update';
158
157
  export * from './provider-code';
158
+ export * from './provider-input-settings';
159
+ export * from './provider-input-settings-validation';
159
160
  export * from './provider-relation';
160
161
  export * from './provider-settings';
161
162
  export * from './provider-type';
@@ -74,7 +74,6 @@ __exportStar(require("./credential-digital-ocean"), exports);
74
74
  __exportStar(require("./credential-environment-create"), exports);
75
75
  __exportStar(require("./credential-google-cloud"), exports);
76
76
  __exportStar(require("./credential-input-settings"), exports);
77
- __exportStar(require("./credential-input-settings-validation"), exports);
78
77
  __exportStar(require("./credential-options"), exports);
79
78
  __exportStar(require("./credential-provider-type"), exports);
80
79
  __exportStar(require("./credential-relation"), exports);
@@ -172,6 +171,8 @@ __exportStar(require("./project-create"), exports);
172
171
  __exportStar(require("./project-relation"), exports);
173
172
  __exportStar(require("./project-update"), exports);
174
173
  __exportStar(require("./provider-code"), exports);
174
+ __exportStar(require("./provider-input-settings"), exports);
175
+ __exportStar(require("./provider-input-settings-validation"), exports);
175
176
  __exportStar(require("./provider-relation"), exports);
176
177
  __exportStar(require("./provider-settings"), exports);
177
178
  __exportStar(require("./provider-type"), exports);
@@ -12,37 +12,37 @@
12
12
  /**
13
13
  * The validation of the input setting
14
14
  * @export
15
- * @interface CredentialInputSettingsValidation
15
+ * @interface ProviderInputSettingsValidation
16
16
  */
17
- export interface CredentialInputSettingsValidation {
17
+ export interface ProviderInputSettingsValidation {
18
18
  /**
19
19
  *
20
20
  * @type {boolean}
21
- * @memberof CredentialInputSettingsValidation
21
+ * @memberof ProviderInputSettingsValidation
22
22
  */
23
23
  required?: boolean;
24
24
  /**
25
25
  *
26
26
  * @type {string}
27
- * @memberof CredentialInputSettingsValidation
27
+ * @memberof ProviderInputSettingsValidation
28
28
  */
29
29
  type?: string;
30
30
  /**
31
31
  *
32
32
  * @type {number}
33
- * @memberof CredentialInputSettingsValidation
33
+ * @memberof ProviderInputSettingsValidation
34
34
  */
35
35
  min?: number;
36
36
  /**
37
37
  *
38
38
  * @type {number}
39
- * @memberof CredentialInputSettingsValidation
39
+ * @memberof ProviderInputSettingsValidation
40
40
  */
41
41
  max?: number;
42
42
  /**
43
43
  *
44
44
  * @type {Array<string>}
45
- * @memberof CredentialInputSettingsValidation
45
+ * @memberof ProviderInputSettingsValidation
46
46
  */
47
47
  allowed_values?: Array<string>;
48
48
  }
@@ -0,0 +1,49 @@
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 { ProviderInputSettingsValidation } from './provider-input-settings-validation';
13
+ /**
14
+ * A input setting for credential cloud provider
15
+ * @export
16
+ * @interface ProviderInputSettings
17
+ */
18
+ export interface ProviderInputSettings {
19
+ /**
20
+ * The name of the input setting
21
+ * @type {string}
22
+ * @memberof ProviderInputSettings
23
+ */
24
+ name: string;
25
+ /**
26
+ * The human readable version of the input setting name
27
+ * @type {string}
28
+ * @memberof ProviderInputSettings
29
+ */
30
+ name_human_readable: string;
31
+ /**
32
+ *
33
+ * @type {ProviderInputSettingsValidation}
34
+ * @memberof ProviderInputSettings
35
+ */
36
+ validation: ProviderInputSettingsValidation;
37
+ /**
38
+ * The default value of the input setting
39
+ * @type {string}
40
+ * @memberof ProviderInputSettings
41
+ */
42
+ default_value: string | null;
43
+ /**
44
+ * Defines if the input setting data is a sensitive content
45
+ * @type {boolean}
46
+ * @memberof ProviderInputSettings
47
+ */
48
+ sensitive: boolean;
49
+ }
@@ -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,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { CloudProviderService } from './cloud-provider-service';
13
- import { CredentialInputSettings } from './credential-input-settings';
13
+ import { ProviderInputSettings } from './provider-input-settings';
14
14
  /**
15
15
  * Settings of supported provider
16
16
  * @export
@@ -25,10 +25,10 @@ export interface ProviderSettings {
25
25
  connect_url?: string;
26
26
  /**
27
27
  * The list of input settings for credential cloud provider
28
- * @type {Array<CredentialInputSettings>}
28
+ * @type {Array<ProviderInputSettings>}
29
29
  * @memberof ProviderSettings
30
30
  */
31
- input_settings: Array<CredentialInputSettings>;
31
+ input_settings: Array<ProviderInputSettings>;
32
32
  /**
33
33
  *
34
34
  * @type {Array<CloudProviderService>}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.142.0",
3
+ "version": "2.142.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },