@devopness/sdk-js 2.87.0 → 2.89.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.
|
@@ -19,6 +19,7 @@ import { ServerRelation } from './server-relation';
|
|
|
19
19
|
import { ServiceRelation } from './service-relation';
|
|
20
20
|
import { SshKeyRelation } from './ssh-key-relation';
|
|
21
21
|
import { SslCertificateRelation } from './ssl-certificate-relation';
|
|
22
|
+
import { SubnetRelation } from './subnet-relation';
|
|
22
23
|
/**
|
|
23
24
|
* The resource that triggered an action
|
|
24
25
|
* @export
|
|
@@ -45,8 +46,8 @@ export interface ActionResource {
|
|
|
45
46
|
type_human_readable: string;
|
|
46
47
|
/**
|
|
47
48
|
* The resource data of type specified on `resource.type`
|
|
48
|
-
* @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation}
|
|
49
|
+
* @type {ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation}
|
|
49
50
|
* @memberof ActionResource
|
|
50
51
|
*/
|
|
51
|
-
data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | null;
|
|
52
|
+
data?: ApplicationRelation | CronJobRelation | DaemonRelation | NetworkRelation | NetworkRuleRelation | ServerRelation | ServiceRelation | SshKeyRelation | SslCertificateRelation | SubnetRelation | null;
|
|
52
53
|
}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { CloudProviderInputSettings } from './cloud-provider-input-settings';
|
|
13
13
|
import { CloudProviderServiceResourceTypeScope } from './cloud-provider-service-resource-type-scope';
|
|
14
|
+
import { OperatingSystem } from './operating-system';
|
|
14
15
|
/**
|
|
15
16
|
* Resource type details
|
|
16
17
|
* @export
|
|
@@ -41,4 +42,10 @@ export interface CloudProviderServiceResourceType {
|
|
|
41
42
|
* @memberof CloudProviderServiceResourceType
|
|
42
43
|
*/
|
|
43
44
|
input_settings: Array<CloudProviderInputSettings>;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {Array<OperatingSystem>}
|
|
48
|
+
* @memberof CloudProviderServiceResourceType
|
|
49
|
+
*/
|
|
50
|
+
os?: Array<OperatingSystem>;
|
|
44
51
|
}
|
|
@@ -13,7 +13,6 @@ import { CloudProviderRelation } from './cloud-provider-relation';
|
|
|
13
13
|
import { CloudProviderServiceCode } from './cloud-provider-service-code';
|
|
14
14
|
import { CloudProviderServiceRegion } from './cloud-provider-service-region';
|
|
15
15
|
import { CloudProviderServiceResourceType } from './cloud-provider-service-resource-type';
|
|
16
|
-
import { OperatingSystem } from './operating-system';
|
|
17
16
|
/**
|
|
18
17
|
*
|
|
19
18
|
* @export
|
|
@@ -44,12 +43,6 @@ export interface CloudProviderService {
|
|
|
44
43
|
* @memberof CloudProviderService
|
|
45
44
|
*/
|
|
46
45
|
regions?: Array<CloudProviderServiceRegion>;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {Array<OperatingSystem>}
|
|
50
|
-
* @memberof CloudProviderService
|
|
51
|
-
*/
|
|
52
|
-
os?: Array<OperatingSystem>;
|
|
53
46
|
/**
|
|
54
47
|
*
|
|
55
48
|
* @type {Array<CloudProviderServiceResourceType>}
|