@devopness/sdk-js 2.86.0 → 2.88.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-service-resource-type.d.ts +7 -0
- package/dist/api/generated/models/cloud-provider-service.d.ts +0 -7
- package/dist/api/generated/models/subnet-provision-input-settings-gcp.d.ts +0 -6
- package/dist/api/generated/models/subnet-type.d.ts +1 -2
- package/dist/api/generated/models/subnet-type.js +1 -2
- package/package.json +1 -1
|
@@ -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>}
|
|
@@ -21,12 +21,6 @@ export interface SubnetProvisionInputSettingsGcp {
|
|
|
21
21
|
* @memberof SubnetProvisionInputSettingsGcp
|
|
22
22
|
*/
|
|
23
23
|
region: string;
|
|
24
|
-
/**
|
|
25
|
-
* The cloud provider availability zone where the subnet will be created
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof SubnetProvisionInputSettingsGcp
|
|
28
|
-
*/
|
|
29
|
-
zone: string;
|
|
30
24
|
/**
|
|
31
25
|
* The IP CIDR range of the subnet
|
|
32
26
|
* @type {string}
|
|
@@ -10,11 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
|
-
* The subnet\'s type
|
|
13
|
+
* The subnet\'s type: `public` or `private`. A `public` subnet is typically used to host resources that have a public IP address and are accessible from the public internet. `Example`: a server hosting an API or web app. A `private` subnet is typically used to host resources that should not be accessible from the public internet, such as database servers or internal applications. A server in a private subnet will not have a public IP address associated to it.
|
|
14
14
|
* @export
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare enum SubnetType {
|
|
18
|
-
Private = "private",
|
|
19
18
|
Public = "public"
|
|
20
19
|
}
|
|
@@ -14,12 +14,11 @@
|
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.SubnetType = void 0;
|
|
16
16
|
/**
|
|
17
|
-
* The subnet\'s type
|
|
17
|
+
* The subnet\'s type: `public` or `private`. A `public` subnet is typically used to host resources that have a public IP address and are accessible from the public internet. `Example`: a server hosting an API or web app. A `private` subnet is typically used to host resources that should not be accessible from the public internet, such as database servers or internal applications. A server in a private subnet will not have a public IP address associated to it.
|
|
18
18
|
* @export
|
|
19
19
|
* @enum {string}
|
|
20
20
|
*/
|
|
21
21
|
var SubnetType;
|
|
22
22
|
(function (SubnetType) {
|
|
23
|
-
SubnetType["Private"] = "private";
|
|
24
23
|
SubnetType["Public"] = "public";
|
|
25
24
|
})(SubnetType = exports.SubnetType || (exports.SubnetType = {}));
|