@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.
@@ -16,6 +16,7 @@
16
16
  */
17
17
  export declare enum CloudProviderCode {
18
18
  Aws = "aws",
19
+ Azure = "azure",
19
20
  Digitalocean = "digitalocean",
20
21
  Gcp = "gcp"
21
22
  }
@@ -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?: NetworkRuleProtocol;
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
- * strubg The name of the server\'s provider.
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?: string;
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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devopness/sdk-js",
3
- "version": "2.142.2",
3
+ "version": "2.143.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },