@devopness/sdk-js 2.142.2 → 2.143.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.
- package/dist/api/generated/models/cloud-provider-code.d.ts +1 -0
- package/dist/api/generated/models/cloud-provider-code.js +1 -0
- package/dist/api/generated/models/network-rule-environment-create.d.ts +1 -1
- package/dist/api/generated/models/server-relation.d.ts +14 -1
- package/dist/api/generated/models/virtual-host-update.d.ts +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ exports.CloudProviderCode = void 0;
|
|
|
21
21
|
var CloudProviderCode;
|
|
22
22
|
(function (CloudProviderCode) {
|
|
23
23
|
CloudProviderCode["Aws"] = "aws";
|
|
24
|
+
CloudProviderCode["Azure"] = "azure";
|
|
24
25
|
CloudProviderCode["Digitalocean"] = "digitalocean";
|
|
25
26
|
CloudProviderCode["Gcp"] = "gcp";
|
|
26
27
|
})(CloudProviderCode || (exports.CloudProviderCode = CloudProviderCode = {}));
|
|
@@ -34,7 +34,7 @@ export interface NetworkRuleEnvironmentCreate {
|
|
|
34
34
|
* @type {NetworkRuleProtocol}
|
|
35
35
|
* @memberof NetworkRuleEnvironmentCreate
|
|
36
36
|
*/
|
|
37
|
-
protocol
|
|
37
|
+
protocol: NetworkRuleProtocol;
|
|
38
38
|
/**
|
|
39
39
|
* IP address range this rule applies for, defined using CIDR notation.
|
|
40
40
|
* @type {string}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { ActionRelation } from './action-relation';
|
|
13
13
|
import { ActionStatus } from './action-status';
|
|
14
|
+
import { Credential } from './credential';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
16
17
|
* @export
|
|
@@ -42,7 +43,7 @@ export interface ServerRelation {
|
|
|
42
43
|
*/
|
|
43
44
|
hostname: string;
|
|
44
45
|
/**
|
|
45
|
-
*
|
|
46
|
+
* The name of the server\'s provider.
|
|
46
47
|
* @type {string}
|
|
47
48
|
* @memberof ServerRelation
|
|
48
49
|
*/
|
|
@@ -53,6 +54,18 @@ export interface ServerRelation {
|
|
|
53
54
|
* @memberof ServerRelation
|
|
54
55
|
*/
|
|
55
56
|
provider_name_human_readable: string;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {Credential}
|
|
60
|
+
* @memberof ServerRelation
|
|
61
|
+
*/
|
|
62
|
+
credential?: Credential;
|
|
63
|
+
/**
|
|
64
|
+
* The region in which the server is located
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof ServerRelation
|
|
67
|
+
*/
|
|
68
|
+
region: string;
|
|
56
69
|
/**
|
|
57
70
|
* Public ipv4 address for server access
|
|
58
71
|
* @type {string}
|
|
@@ -26,7 +26,7 @@ export interface VirtualHostUpdate {
|
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof VirtualHostUpdate
|
|
28
28
|
*/
|
|
29
|
-
name
|
|
29
|
+
name: string;
|
|
30
30
|
/**
|
|
31
31
|
* The document root location, within the application directory, that contains the public files to be served when a user visits the domain name associated with this virtual host. Must not be greater than 255 characters.
|
|
32
32
|
* @type {string}
|