@devopness/sdk-js 2.101.0 → 2.102.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.
|
@@ -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
|
-
*
|
|
21
|
-
* @type {
|
|
21
|
+
*
|
|
22
|
+
* @type {ServerCloudServiceCode}
|
|
22
23
|
* @memberof NetworkProvisionInput
|
|
23
24
|
*/
|
|
24
|
-
cloud_service_code:
|
|
25
|
+
cloud_service_code: ServerCloudServiceCode;
|
|
25
26
|
/**
|
|
26
27
|
* The ID of the cloud credential
|
|
27
28
|
* @type {number}
|
|
@@ -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
|
-
*
|
|
64
|
-
* @type {
|
|
64
|
+
*
|
|
65
|
+
* @type {ServerCloudServiceCode}
|
|
65
66
|
* @memberof Server
|
|
66
67
|
*/
|
|
67
|
-
cloud_service_code:
|
|
68
|
+
cloud_service_code: ServerCloudServiceCode;
|
|
68
69
|
/**
|
|
69
70
|
* Public ipv4 address for server access
|
|
70
71
|
* @type {string}
|