@devopness/sdk-js 2.79.0 → 2.80.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.
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { NetworkProvisionInput } from './network-provision-input';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -28,27 +29,21 @@ export interface ActionTargetNetworkData {
|
|
|
28
29
|
*/
|
|
29
30
|
name: string;
|
|
30
31
|
/**
|
|
31
|
-
* The name of the network\'s provider.
|
|
32
|
+
* The name of the network\'s cloud provider.
|
|
32
33
|
* @type {string}
|
|
33
34
|
* @memberof ActionTargetNetworkData
|
|
34
35
|
*/
|
|
35
36
|
provider_name: string;
|
|
36
37
|
/**
|
|
37
|
-
* The human readable version of the provider\'s name
|
|
38
|
+
* The human readable version of the cloud provider\'s name
|
|
38
39
|
* @type {string}
|
|
39
40
|
* @memberof ActionTargetNetworkData
|
|
40
41
|
*/
|
|
41
42
|
provider_name_human_readable: string;
|
|
42
43
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {
|
|
45
|
-
* @memberof ActionTargetNetworkData
|
|
46
|
-
*/
|
|
47
|
-
region: string;
|
|
48
|
-
/**
|
|
49
|
-
* The IP CIDR range of the network
|
|
50
|
-
* @type {string}
|
|
44
|
+
*
|
|
45
|
+
* @type {NetworkProvisionInput}
|
|
51
46
|
* @memberof ActionTargetNetworkData
|
|
52
47
|
*/
|
|
53
|
-
|
|
48
|
+
provision_input: NetworkProvisionInput;
|
|
54
49
|
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { NetworkProvisionInput } from './network-provision-input';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -58,17 +59,11 @@ export interface NetworkRelation {
|
|
|
58
59
|
*/
|
|
59
60
|
name: string;
|
|
60
61
|
/**
|
|
61
|
-
*
|
|
62
|
-
* @type {
|
|
63
|
-
* @memberof NetworkRelation
|
|
64
|
-
*/
|
|
65
|
-
region: string;
|
|
66
|
-
/**
|
|
67
|
-
* The IP CIDR range of the network
|
|
68
|
-
* @type {string}
|
|
62
|
+
*
|
|
63
|
+
* @type {NetworkProvisionInput}
|
|
69
64
|
* @memberof NetworkRelation
|
|
70
65
|
*/
|
|
71
|
-
|
|
66
|
+
provision_input: NetworkProvisionInput;
|
|
72
67
|
/**
|
|
73
68
|
* The date and time when the record was created
|
|
74
69
|
* @type {string}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { ActionRelation } from './action-relation';
|
|
13
13
|
import { EnvironmentRelation } from './environment-relation';
|
|
14
|
+
import { NetworkProvisionInput } from './network-provision-input';
|
|
14
15
|
import { ProjectRelation } from './project-relation';
|
|
15
16
|
import { UserRelation } from './user-relation';
|
|
16
17
|
/**
|
|
@@ -44,17 +45,11 @@ export interface Network {
|
|
|
44
45
|
*/
|
|
45
46
|
name: string;
|
|
46
47
|
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {
|
|
49
|
-
* @memberof Network
|
|
50
|
-
*/
|
|
51
|
-
region: string;
|
|
52
|
-
/**
|
|
53
|
-
* The IP CIDR range of the network
|
|
54
|
-
* @type {string}
|
|
48
|
+
*
|
|
49
|
+
* @type {NetworkProvisionInput}
|
|
55
50
|
* @memberof Network
|
|
56
51
|
*/
|
|
57
|
-
|
|
52
|
+
provision_input: NetworkProvisionInput;
|
|
58
53
|
/**
|
|
59
54
|
*
|
|
60
55
|
* @type {UserRelation}
|