@devopness/sdk-js 1.92.0 → 1.93.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.
|
@@ -28,6 +28,12 @@ export interface DeploymentRelation {
|
|
|
28
28
|
* @memberof DeploymentRelation
|
|
29
29
|
*/
|
|
30
30
|
id: number;
|
|
31
|
+
/**
|
|
32
|
+
* The application\'s name that the deployment belongs to
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof DeploymentRelation
|
|
35
|
+
*/
|
|
36
|
+
name: string;
|
|
31
37
|
/**
|
|
32
38
|
*
|
|
33
39
|
* @type {ActionStatus}
|
|
@@ -31,6 +31,12 @@ export interface SslCertificateRelation {
|
|
|
31
31
|
* @memberof SslCertificateRelation
|
|
32
32
|
*/
|
|
33
33
|
domains: Array<string>;
|
|
34
|
+
/**
|
|
35
|
+
* The name given to SSL certificate
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof SslCertificateRelation
|
|
38
|
+
*/
|
|
39
|
+
name: string;
|
|
34
40
|
/**
|
|
35
41
|
*
|
|
36
42
|
* @type {SslCertificateIssuer}
|
|
@@ -33,6 +33,12 @@ export interface SslCertificate {
|
|
|
33
33
|
* @memberof SslCertificate
|
|
34
34
|
*/
|
|
35
35
|
domains: Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
* The name given to SSL certificate
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SslCertificate
|
|
40
|
+
*/
|
|
41
|
+
name: string;
|
|
36
42
|
/**
|
|
37
43
|
*
|
|
38
44
|
* @type {SslCertificateIssuer}
|