oci-core 2.137.1 → 2.138.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/lib/client.d.ts +42 -0
- package/lib/client.js +110 -0
- package/lib/client.js.map +1 -1
- package/lib/model/boot-volume-backup.d.ts +22 -0
- package/lib/model/boot-volume-backup.js +30 -2
- package/lib/model/boot-volume-backup.js.map +1 -1
- package/lib/model/create-boot-volume-backup-details.d.ts +14 -0
- package/lib/model/create-boot-volume-backup-details.js +30 -2
- package/lib/model/create-boot-volume-backup-details.js.map +1 -1
- package/lib/model/create-dedicated-vm-host-details.d.ts +5 -0
- package/lib/model/create-dedicated-vm-host-details.js.map +1 -1
- package/lib/model/create-virtual-circuit-details.d.ts +10 -0
- package/lib/model/create-virtual-circuit-details.js.map +1 -1
- package/lib/model/create-volume-backup-details.d.ts +14 -0
- package/lib/model/create-volume-backup-details.js +30 -2
- package/lib/model/create-volume-backup-details.js.map +1 -1
- package/lib/model/create-volume-group-backup-details.d.ts +14 -0
- package/lib/model/create-volume-group-backup-details.js +30 -2
- package/lib/model/create-volume-group-backup-details.js.map +1 -1
- package/lib/model/dedicated-vm-host-instance-summary.d.ts +5 -0
- package/lib/model/dedicated-vm-host-instance-summary.js.map +1 -1
- package/lib/model/dedicated-vm-host-summary.d.ts +5 -0
- package/lib/model/dedicated-vm-host-summary.js.map +1 -1
- package/lib/model/dedicated-vm-host.d.ts +5 -0
- package/lib/model/dedicated-vm-host.js.map +1 -1
- package/lib/model/index.d.ts +6 -0
- package/lib/model/index.js +14 -8
- package/lib/model/index.js.map +1 -1
- package/lib/model/instances.d.ts +28 -0
- package/lib/model/instances.js +36 -0
- package/lib/model/instances.js.map +1 -0
- package/lib/model/provider-remote-region-name.d.ts +41 -0
- package/lib/model/provider-remote-region-name.js +36 -0
- package/lib/model/provider-remote-region-name.js.map +1 -0
- package/lib/model/retention-duration.d.ts +45 -0
- package/lib/model/retention-duration.js +46 -0
- package/lib/model/retention-duration.js.map +1 -0
- package/lib/model/supported-capabilities.d.ts +5 -0
- package/lib/model/supported-capabilities.js.map +1 -1
- package/lib/model/update-boot-volume-backup-details.d.ts +14 -0
- package/lib/model/update-boot-volume-backup-details.js +30 -2
- package/lib/model/update-boot-volume-backup-details.js.map +1 -1
- package/lib/model/update-volume-backup-details.d.ts +14 -0
- package/lib/model/update-volume-backup-details.js +30 -2
- package/lib/model/update-volume-backup-details.js.map +1 -1
- package/lib/model/update-volume-group-backup-details.d.ts +14 -0
- package/lib/model/update-volume-group-backup-details.js +30 -2
- package/lib/model/update-volume-group-backup-details.js.map +1 -1
- package/lib/model/virtual-circuit.d.ts +14 -0
- package/lib/model/virtual-circuit.js.map +1 -1
- package/lib/model/volume-backup-schedule.d.ts +10 -0
- package/lib/model/volume-backup-schedule.js +30 -2
- package/lib/model/volume-backup-schedule.js.map +1 -1
- package/lib/model/volume-backup.d.ts +22 -0
- package/lib/model/volume-backup.js +30 -2
- package/lib/model/volume-backup.js.map +1 -1
- package/lib/model/volume-group-backup.d.ts +18 -0
- package/lib/model/volume-group-backup.js +30 -2
- package/lib/model/volume-group-backup.js.map +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-provider-remote-regions-request.d.ts +44 -0
- package/lib/request/list-provider-remote-regions-request.js +15 -0
- package/lib/request/list-provider-remote-regions-request.js.map +1 -0
- package/lib/response/index.d.ts +2 -0
- package/lib/response/list-provider-remote-regions-response.d.ts +32 -0
- package/lib/response/list-provider-remote-regions-response.js +15 -0
- package/lib/response/list-provider-remote-regions-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -17,6 +17,7 @@ The required permissions are documented in the
|
|
|
17
17
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
18
18
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
19
19
|
*/
|
|
20
|
+
import * as model from "../model";
|
|
20
21
|
/**
|
|
21
22
|
* A point-in-time copy of a boot volume that can then be used to create
|
|
22
23
|
* a new boot volume or recover a boot volume. For more information, see [Overview
|
|
@@ -142,6 +143,27 @@ export interface BootVolumeBackup {
|
|
|
142
143
|
* Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
143
144
|
*/
|
|
144
145
|
"uniqueSizeInGBs"?: number;
|
|
146
|
+
/**
|
|
147
|
+
* The date and time when a backup\u2019s retention period ends and it is set to expire. This is an optional field. If it is not specified, it is set to null, no retention period will be applied to the backups.
|
|
148
|
+
*/
|
|
149
|
+
"timeRetentionExpiresAt"?: Date;
|
|
150
|
+
"retentionPeriod"?: model.RetentionDuration;
|
|
151
|
+
/**
|
|
152
|
+
* Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
|
|
153
|
+
*/
|
|
154
|
+
"isPreventDeletionEnabled"?: boolean;
|
|
155
|
+
/**
|
|
156
|
+
* feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
|
|
157
|
+
*/
|
|
158
|
+
"isRetentionLockEnabled"?: boolean;
|
|
159
|
+
/**
|
|
160
|
+
* feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
|
|
161
|
+
*/
|
|
162
|
+
"isIndefiniteRetentionEnabled"?: boolean;
|
|
163
|
+
/**
|
|
164
|
+
* The OCID of the volume group backup associated with the backup. This is an optional field. If it is not present in the response, the backup does not belong to a volume group.
|
|
165
|
+
*/
|
|
166
|
+
"volumeGroupBackupId"?: string;
|
|
145
167
|
}
|
|
146
168
|
export declare namespace BootVolumeBackup {
|
|
147
169
|
enum LifecycleState {
|
|
@@ -18,8 +18,28 @@ The required permissions are documented in the
|
|
|
18
18
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
19
19
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
20
20
|
*/
|
|
21
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
21
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
41
|
exports.BootVolumeBackup = void 0;
|
|
42
|
+
const model = __importStar(require("../model"));
|
|
23
43
|
var BootVolumeBackup;
|
|
24
44
|
(function (BootVolumeBackup) {
|
|
25
45
|
let LifecycleState;
|
|
@@ -57,12 +77,20 @@ var BootVolumeBackup;
|
|
|
57
77
|
Type["UnknownValue"] = "UNKNOWN_VALUE";
|
|
58
78
|
})(Type = BootVolumeBackup.Type || (BootVolumeBackup.Type = {}));
|
|
59
79
|
function getJsonObj(obj) {
|
|
60
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
80
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
81
|
+
"retentionPeriod": obj.retentionPeriod
|
|
82
|
+
? model.RetentionDuration.getJsonObj(obj.retentionPeriod)
|
|
83
|
+
: undefined
|
|
84
|
+
});
|
|
61
85
|
return jsonObj;
|
|
62
86
|
}
|
|
63
87
|
BootVolumeBackup.getJsonObj = getJsonObj;
|
|
64
88
|
function getDeserializedJsonObj(obj) {
|
|
65
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
89
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
90
|
+
"retentionPeriod": obj.retentionPeriod
|
|
91
|
+
? model.RetentionDuration.getDeserializedJsonObj(obj.retentionPeriod)
|
|
92
|
+
: undefined
|
|
93
|
+
});
|
|
66
94
|
return jsonObj;
|
|
67
95
|
}
|
|
68
96
|
BootVolumeBackup.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boot-volume-backup.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/boot-volume-backup.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG
|
|
1
|
+
{"version":3,"file":"boot-volume-backup.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/boot-volume-backup.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA6IlC,IAAiB,gBAAgB,CA2DhC;AA3DD,WAAiB,gBAAgB;IAC/B,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,yCAAuB,CAAA;QACvB,6CAA2B,CAAA;QAC3B,2CAAyB,CAAA;QACzB,mCAAiB,CAAA;QACjB,sDAAoC,CAAA;QACpC;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,+BAAc,KAAd,+BAAc,QAYzB;IAED,IAAY,UAQX;IARD,WAAY,UAAU;QACpB,+BAAiB,CAAA;QACjB,qCAAuB,CAAA;QACvB;;;WAGG;QACH,4CAA8B,CAAA;IAChC,CAAC,EARW,UAAU,GAAV,2BAAU,KAAV,2BAAU,QAQrB;IAED,IAAY,IAQX;IARD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,mCAA2B,CAAA;QAC3B;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EARW,IAAI,GAAJ,qBAAI,KAAJ,qBAAI,QAQf;IAED,SAAgB,UAAU,CAAC,GAAqB;QAC9C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC,eAAe,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,2BAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAqB;QAC1D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,GAAG,CAAC,eAAe,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,uCAAsB,yBAWrC,CAAA;AACH,CAAC,EA3DgB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QA2DhC"}
|
|
@@ -17,6 +17,7 @@ The required permissions are documented in the
|
|
|
17
17
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
18
18
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
19
19
|
*/
|
|
20
|
+
import * as model from "../model";
|
|
20
21
|
export interface CreateBootVolumeBackupDetails {
|
|
21
22
|
/**
|
|
22
23
|
* The OCID of the boot volume that needs to be backed up.
|
|
@@ -62,6 +63,19 @@ export interface CreateBootVolumeBackupDetails {
|
|
|
62
63
|
*
|
|
63
64
|
*/
|
|
64
65
|
"kmsKeyId"?: string;
|
|
66
|
+
"retentionPeriod"?: model.RetentionDuration;
|
|
67
|
+
/**
|
|
68
|
+
* Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
|
|
69
|
+
*/
|
|
70
|
+
"isPreventDeletionEnabled"?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
|
|
73
|
+
*/
|
|
74
|
+
"isRetentionLockEnabled"?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
|
|
77
|
+
*/
|
|
78
|
+
"isIndefiniteRetentionEnabled"?: boolean;
|
|
65
79
|
}
|
|
66
80
|
export declare namespace CreateBootVolumeBackupDetails {
|
|
67
81
|
enum Type {
|
|
@@ -18,8 +18,28 @@ The required permissions are documented in the
|
|
|
18
18
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
19
19
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
20
20
|
*/
|
|
21
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
21
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
41
|
exports.CreateBootVolumeBackupDetails = void 0;
|
|
42
|
+
const model = __importStar(require("../model"));
|
|
23
43
|
var CreateBootVolumeBackupDetails;
|
|
24
44
|
(function (CreateBootVolumeBackupDetails) {
|
|
25
45
|
let Type;
|
|
@@ -28,12 +48,20 @@ var CreateBootVolumeBackupDetails;
|
|
|
28
48
|
Type["Incremental"] = "INCREMENTAL";
|
|
29
49
|
})(Type = CreateBootVolumeBackupDetails.Type || (CreateBootVolumeBackupDetails.Type = {}));
|
|
30
50
|
function getJsonObj(obj) {
|
|
31
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
52
|
+
"retentionPeriod": obj.retentionPeriod
|
|
53
|
+
? model.RetentionDuration.getJsonObj(obj.retentionPeriod)
|
|
54
|
+
: undefined
|
|
55
|
+
});
|
|
32
56
|
return jsonObj;
|
|
33
57
|
}
|
|
34
58
|
CreateBootVolumeBackupDetails.getJsonObj = getJsonObj;
|
|
35
59
|
function getDeserializedJsonObj(obj) {
|
|
36
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
60
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
61
|
+
"retentionPeriod": obj.retentionPeriod
|
|
62
|
+
? model.RetentionDuration.getDeserializedJsonObj(obj.retentionPeriod)
|
|
63
|
+
: undefined
|
|
64
|
+
});
|
|
37
65
|
return jsonObj;
|
|
38
66
|
}
|
|
39
67
|
CreateBootVolumeBackupDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-boot-volume-backup-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-boot-volume-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG
|
|
1
|
+
{"version":3,"file":"create-boot-volume-backup-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-boot-volume-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyDlC,IAAiB,6BAA6B,CA8B7C;AA9BD,WAAiB,6BAA6B;IAC5C,IAAY,IAGX;IAHD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,mCAA2B,CAAA;IAC7B,CAAC,EAHW,IAAI,GAAJ,kCAAI,KAAJ,kCAAI,QAGf;IAED,SAAgB,UAAU,CAAC,GAAkC;QAC3D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC,eAAe,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,wCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkC;QACvE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,GAAG,CAAC,eAAe,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,oDAAsB,yBAWrC,CAAA;AACH,CAAC,EA9BgB,6BAA6B,GAA7B,qCAA6B,KAA7B,qCAA6B,QA8B7C"}
|
|
@@ -93,6 +93,11 @@ export interface CreateDedicatedVmHostDetails {
|
|
|
93
93
|
*
|
|
94
94
|
*/
|
|
95
95
|
"isMemoryEncryptionEnabled"?: boolean;
|
|
96
|
+
/**
|
|
97
|
+
* Specifies if the Dedicated Virtual Machine Host (DVMH) is restricted to running only Burstable VMs. If {@code true}, only Burstable VMs can be launched. If {@code false}, Burstable VMs cannot be launched.
|
|
98
|
+
*
|
|
99
|
+
*/
|
|
100
|
+
"isBurstable"?: boolean;
|
|
96
101
|
}
|
|
97
102
|
export declare namespace CreateDedicatedVmHostDetails {
|
|
98
103
|
function getJsonObj(obj: CreateDedicatedVmHostDetails): object;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-dedicated-vm-host-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-dedicated-vm-host-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"create-dedicated-vm-host-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-dedicated-vm-host-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAkFlC,IAAiB,4BAA4B,CAyB5C;AAzBD,WAAiB,4BAA4B;IAC3C,SAAgB,UAAU,CAAC,GAAiC;QAC1D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBAC7E,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,uCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiC;QACtE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBACzF,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,mDAAsB,yBAWrC,CAAA;AACH,CAAC,EAzBgB,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAyB5C"}
|
|
@@ -162,6 +162,16 @@ export interface CreateVirtualCircuitDetails {
|
|
|
162
162
|
* The layer 3 IP MTU to use with this virtual circuit.
|
|
163
163
|
*/
|
|
164
164
|
"ipMtu"?: model.VirtualCircuitIpMtu;
|
|
165
|
+
/**
|
|
166
|
+
* The OCI's FastConnect MultiCloud Provider/Partner remote region name associated with the OCI region.
|
|
167
|
+
* To get the list of associated provider remote region use the ListProviderRemoteRegions operation
|
|
168
|
+
*
|
|
169
|
+
*/
|
|
170
|
+
"providerRemoteRegion"?: string;
|
|
171
|
+
/**
|
|
172
|
+
* Customer's account on Provider/Partner cloud (AWS, GCP or any other)
|
|
173
|
+
*/
|
|
174
|
+
"remoteAccountId"?: string;
|
|
165
175
|
/**
|
|
166
176
|
* The traffic mode to be set with this Virtual Circuit. This controls whether the traffic is to be drained
|
|
167
177
|
* for the associated Virtual Circuit or not.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-virtual-circuit-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-virtual-circuit-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"create-virtual-circuit-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-virtual-circuit-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA+JlC,IAAiB,2BAA2B,CA+D3C;AA/DD,WAAiB,2BAA2B;IAC1C,IAAY,aAKX;IALD,WAAY,aAAa;QACvB,gEAA+C,CAAA;QAC/C,sCAAqB,CAAA;QACrB,6CAA4B,CAAA;QAC5B,kCAAiB,CAAA;IACnB,CAAC,EALW,aAAa,GAAb,yCAAa,KAAb,yCAAa,QAKxB;IAED,IAAY,aAGX;IAHD,WAAY,aAAa;QACvB,oCAAmB,CAAA;QACnB,sCAAqB,CAAA;IACvB,CAAC,EAHW,aAAa,GAAb,yCAAa,KAAb,yCAAa,QAGxB;IAED,IAAY,IAGX;IAHD,WAAY,IAAI;QACd,yBAAiB,CAAA;QACjB,2BAAmB,CAAA;IACrB,CAAC,EAHW,IAAI,GAAJ,gCAAI,KAAJ,gCAAI,QAGf;IAED,IAAY,WAGX;IAHD,WAAY,WAAW;QACrB,gCAAiB,CAAA;QACjB,8BAAe,CAAA;IACjB,CAAC,EAHW,WAAW,GAAX,uCAAW,KAAX,uCAAW,QAGtB;IAED,SAAgB,UAAU,CAAC,GAAgC;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,sBAAsB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,CAAC,CAAC,GAAG,CAAC,oBAAoB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAClC,OAAO,KAAK,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACpD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC5B,OAAO,KAAK,CAAC,uCAAuC,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBACxE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAnBe,sCAAU,aAmBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAgC;QACrE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,sBAAsB,EAAE,GAAG,CAAC,oBAAoB;gBAC9C,CAAC,CAAC,GAAG,CAAC,oBAAoB,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAClC,OAAO,KAAK,CAAC,mBAAmB,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAChE,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;YAEb,gBAAgB,EAAE,GAAG,CAAC,cAAc;gBAClC,CAAC,CAAC,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC5B,OAAO,KAAK,CAAC,uCAAuC,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACpF,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAnBe,kDAAsB,yBAmBrC,CAAA;AACH,CAAC,EA/DgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QA+D3C"}
|
|
@@ -17,6 +17,7 @@ The required permissions are documented in the
|
|
|
17
17
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
18
18
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
19
19
|
*/
|
|
20
|
+
import * as model from "../model";
|
|
20
21
|
export interface CreateVolumeBackupDetails {
|
|
21
22
|
/**
|
|
22
23
|
* The OCID of the Vault service key which is the master encryption key for the volume backup.
|
|
@@ -62,6 +63,19 @@ export interface CreateVolumeBackupDetails {
|
|
|
62
63
|
* The OCID of the volume that needs to be backed up.
|
|
63
64
|
*/
|
|
64
65
|
"volumeId": string;
|
|
66
|
+
"retentionPeriod"?: model.RetentionDuration;
|
|
67
|
+
/**
|
|
68
|
+
* Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
|
|
69
|
+
*/
|
|
70
|
+
"isPreventDeletionEnabled"?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
|
|
73
|
+
*/
|
|
74
|
+
"isRetentionLockEnabled"?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
|
|
77
|
+
*/
|
|
78
|
+
"isIndefiniteRetentionEnabled"?: boolean;
|
|
65
79
|
}
|
|
66
80
|
export declare namespace CreateVolumeBackupDetails {
|
|
67
81
|
enum Type {
|
|
@@ -18,8 +18,28 @@ The required permissions are documented in the
|
|
|
18
18
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
19
19
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
20
20
|
*/
|
|
21
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
21
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
41
|
exports.CreateVolumeBackupDetails = void 0;
|
|
42
|
+
const model = __importStar(require("../model"));
|
|
23
43
|
var CreateVolumeBackupDetails;
|
|
24
44
|
(function (CreateVolumeBackupDetails) {
|
|
25
45
|
let Type;
|
|
@@ -28,12 +48,20 @@ var CreateVolumeBackupDetails;
|
|
|
28
48
|
Type["Incremental"] = "INCREMENTAL";
|
|
29
49
|
})(Type = CreateVolumeBackupDetails.Type || (CreateVolumeBackupDetails.Type = {}));
|
|
30
50
|
function getJsonObj(obj) {
|
|
31
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
52
|
+
"retentionPeriod": obj.retentionPeriod
|
|
53
|
+
? model.RetentionDuration.getJsonObj(obj.retentionPeriod)
|
|
54
|
+
: undefined
|
|
55
|
+
});
|
|
32
56
|
return jsonObj;
|
|
33
57
|
}
|
|
34
58
|
CreateVolumeBackupDetails.getJsonObj = getJsonObj;
|
|
35
59
|
function getDeserializedJsonObj(obj) {
|
|
36
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
60
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
61
|
+
"retentionPeriod": obj.retentionPeriod
|
|
62
|
+
? model.RetentionDuration.getDeserializedJsonObj(obj.retentionPeriod)
|
|
63
|
+
: undefined
|
|
64
|
+
});
|
|
37
65
|
return jsonObj;
|
|
38
66
|
}
|
|
39
67
|
CreateVolumeBackupDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-volume-backup-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-volume-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG
|
|
1
|
+
{"version":3,"file":"create-volume-backup-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-volume-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAyDlC,IAAiB,yBAAyB,CA8BzC;AA9BD,WAAiB,yBAAyB;IACxC,IAAY,IAGX;IAHD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,mCAA2B,CAAA;IAC7B,CAAC,EAHW,IAAI,GAAJ,8BAAI,KAAJ,8BAAI,QAGf;IAED,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC,eAAe,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,oCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,GAAG,CAAC,eAAe,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,gDAAsB,yBAWrC,CAAA;AACH,CAAC,EA9BgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QA8BzC"}
|
|
@@ -17,6 +17,7 @@ The required permissions are documented in the
|
|
|
17
17
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
18
18
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
19
19
|
*/
|
|
20
|
+
import * as model from "../model";
|
|
20
21
|
export interface CreateVolumeGroupBackupDetails {
|
|
21
22
|
/**
|
|
22
23
|
* The OCID of the compartment that will contain the volume group
|
|
@@ -61,6 +62,19 @@ export interface CreateVolumeGroupBackupDetails {
|
|
|
61
62
|
* The OCID of the volume group that needs to be backed up.
|
|
62
63
|
*/
|
|
63
64
|
"volumeGroupId": string;
|
|
65
|
+
"retentionPeriod"?: model.RetentionDuration;
|
|
66
|
+
/**
|
|
67
|
+
* Prevent backups from being deleted during the configured retention period. This is an optional field. If it is not specified, it is set to null, prevent deletion will not be applied to the backups.
|
|
68
|
+
*/
|
|
69
|
+
"isPreventDeletionEnabled"?: boolean;
|
|
70
|
+
/**
|
|
71
|
+
* feature that prevents deletion or alteration of backup data for a specified period to ensure data protection and regulatory compliance. This is an optional field. If it is not specified, it is set to null, no retention lock will be applied to the backups. This feature should be used in conjunction with the retention-period field.
|
|
72
|
+
*/
|
|
73
|
+
"isRetentionLockEnabled"?: boolean;
|
|
74
|
+
/**
|
|
75
|
+
* feature that preserves backup data from modification or deletion to ensure it remains available for legal or regulatory investigations or litigation, regardless of standard retention policies. This is an optional field. If it is not specified, it is set to null, no legal hold will be applied to the backups.
|
|
76
|
+
*/
|
|
77
|
+
"isIndefiniteRetentionEnabled"?: boolean;
|
|
64
78
|
}
|
|
65
79
|
export declare namespace CreateVolumeGroupBackupDetails {
|
|
66
80
|
enum Type {
|
|
@@ -18,8 +18,28 @@ The required permissions are documented in the
|
|
|
18
18
|
* Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved.
|
|
19
19
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
20
20
|
*/
|
|
21
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
22
|
+
if (k2 === undefined) k2 = k;
|
|
23
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
39
|
+
};
|
|
21
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
41
|
exports.CreateVolumeGroupBackupDetails = void 0;
|
|
42
|
+
const model = __importStar(require("../model"));
|
|
23
43
|
var CreateVolumeGroupBackupDetails;
|
|
24
44
|
(function (CreateVolumeGroupBackupDetails) {
|
|
25
45
|
let Type;
|
|
@@ -28,12 +48,20 @@ var CreateVolumeGroupBackupDetails;
|
|
|
28
48
|
Type["Incremental"] = "INCREMENTAL";
|
|
29
49
|
})(Type = CreateVolumeGroupBackupDetails.Type || (CreateVolumeGroupBackupDetails.Type = {}));
|
|
30
50
|
function getJsonObj(obj) {
|
|
31
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
52
|
+
"retentionPeriod": obj.retentionPeriod
|
|
53
|
+
? model.RetentionDuration.getJsonObj(obj.retentionPeriod)
|
|
54
|
+
: undefined
|
|
55
|
+
});
|
|
32
56
|
return jsonObj;
|
|
33
57
|
}
|
|
34
58
|
CreateVolumeGroupBackupDetails.getJsonObj = getJsonObj;
|
|
35
59
|
function getDeserializedJsonObj(obj) {
|
|
36
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
60
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
61
|
+
"retentionPeriod": obj.retentionPeriod
|
|
62
|
+
? model.RetentionDuration.getDeserializedJsonObj(obj.retentionPeriod)
|
|
63
|
+
: undefined
|
|
64
|
+
});
|
|
37
65
|
return jsonObj;
|
|
38
66
|
}
|
|
39
67
|
CreateVolumeGroupBackupDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-volume-group-backup-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-volume-group-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG
|
|
1
|
+
{"version":3,"file":"create-volume-group-backup-details.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/create-volume-group-backup-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAwDlC,IAAiB,8BAA8B,CA8B9C;AA9BD,WAAiB,8BAA8B;IAC7C,IAAY,IAGX;IAHD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,mCAA2B,CAAA;IAC7B,CAAC,EAHW,IAAI,GAAJ,mCAAI,KAAJ,mCAAI,QAGf;IAED,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,CAAC,eAAe,CAAC;gBACzD,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,yCAAU,aAWzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCACR,GAAG,GACH;YACD,iBAAiB,EAAE,GAAG,CAAC,eAAe;gBACpC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,sBAAsB,CAAC,GAAG,CAAC,eAAe,CAAC;gBACrE,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAXe,qDAAsB,yBAWrC,CAAA;AACH,CAAC,EA9BgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QA8B9C"}
|
|
@@ -44,6 +44,11 @@ export interface DedicatedVmHostInstanceSummary {
|
|
|
44
44
|
*
|
|
45
45
|
*/
|
|
46
46
|
"isMemoryEncryptionEnabled"?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies if the Dedicated Virtual Machine Host (DVMH) is to running only Burstable VMs. If {@code true}, only Burstable VMs can be launched. If {@code false}, Burstable VMs cannot be launched.
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
51
|
+
"isBurstable"?: boolean;
|
|
47
52
|
/**
|
|
48
53
|
* The shape of the VM instance.
|
|
49
54
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dedicated-vm-host-instance-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-instance-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;
|
|
1
|
+
{"version":3,"file":"dedicated-vm-host-instance-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-instance-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAmDH,IAAiB,8BAA8B,CAW9C;AAXD,WAAiB,8BAA8B;IAC7C,SAAgB,UAAU,CAAC,GAAmC;QAC5D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAmC;QACxE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAW9C"}
|
|
@@ -68,6 +68,11 @@ export interface DedicatedVmHostSummary {
|
|
|
68
68
|
*
|
|
69
69
|
*/
|
|
70
70
|
"isMemoryEncryptionEnabled"?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Specifies if the Dedicated Virtual Machine Host (DVMH) is to running only Burstable VMs. If {@code true}, only Burstable VMs can be launched. If {@code false}, Burstable VMs cannot be launched.
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
"isBurstable"?: boolean;
|
|
71
76
|
/**
|
|
72
77
|
* The current state of the dedicated VM host.
|
|
73
78
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dedicated-vm-host-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;
|
|
1
|
+
{"version":3,"file":"dedicated-vm-host-summary.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;AAyGH,IAAiB,sBAAsB,CAyBtC;AAzBD,WAAiB,sBAAsB;IACrC,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,qCAAc,KAAd,qCAAc,QAYzB;IAED,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EAzBgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAyBtC"}
|
|
@@ -98,6 +98,11 @@ export interface DedicatedVmHost {
|
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
100
|
"isMemoryEncryptionEnabled"?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Specifies if the Dedicated Virtual Machine Host (DVMH) is to running only Burstable VMs. If {@code true}, only Burstable VMs can be launched. If {@code false}, Burstable VMs cannot be launched.
|
|
103
|
+
*
|
|
104
|
+
*/
|
|
105
|
+
"isBurstable"?: boolean;
|
|
101
106
|
/**
|
|
102
107
|
* The current state of the dedicated VM host.
|
|
103
108
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dedicated-vm-host.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;
|
|
1
|
+
{"version":3,"file":"dedicated-vm-host.js","sourceRoot":"","sources":["../../../../../lib/core/lib/model/dedicated-vm-host.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;GAkBG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA2IlC,IAAiB,eAAe,CAmD/B;AAnDD,WAAiB,eAAe;IAC9B,IAAY,cAYX;IAZD,WAAY,cAAc;QACxB,uCAAqB,CAAA;QACrB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;QACrB,uCAAqB,CAAA;QACrB,qCAAmB,CAAA;QACnB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAZW,cAAc,GAAd,8BAAc,KAAd,8BAAc,QAYzB;IAED,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,UAAU,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBAC7E,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC5C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,0BAAU,aAiBzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,4BAA4B,EAAE,GAAG,CAAC,0BAA0B;gBAC1D,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,sBAAsB,CAAC,GAAG,CAAC,0BAA0B,CAAC;gBACzF,CAAC,CAAC,SAAS;YAEb,cAAc,EAAE,GAAG,CAAC,YAAY;gBAC9B,CAAC,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBAC1B,OAAO,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACxD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAjBe,sCAAsB,yBAiBrC,CAAA;AACH,CAAC,EAnDgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAmD/B"}
|
package/lib/model/index.d.ts
CHANGED
|
@@ -775,6 +775,8 @@ import * as InstanceSourceImageFilterDetails from "./instance-source-image-filte
|
|
|
775
775
|
export import InstanceSourceImageFilterDetails = InstanceSourceImageFilterDetails.InstanceSourceImageFilterDetails;
|
|
776
776
|
import * as InstanceSummary from "./instance-summary";
|
|
777
777
|
export import InstanceSummary = InstanceSummary.InstanceSummary;
|
|
778
|
+
import * as Instances from "./instances";
|
|
779
|
+
export import Instances = Instances.Instances;
|
|
778
780
|
import * as InternetGateway from "./internet-gateway";
|
|
779
781
|
export import InternetGateway = InternetGateway.InternetGateway;
|
|
780
782
|
import * as InventoryIpAddressSummary from "./inventory-ip-address-summary";
|
|
@@ -897,6 +899,8 @@ import * as PreemptionAction from "./preemption-action";
|
|
|
897
899
|
export import PreemptionAction = PreemptionAction.PreemptionAction;
|
|
898
900
|
import * as PrivateIp from "./private-ip";
|
|
899
901
|
export import PrivateIp = PrivateIp.PrivateIp;
|
|
902
|
+
import * as ProviderRemoteRegionName from "./provider-remote-region-name";
|
|
903
|
+
export import ProviderRemoteRegionName = ProviderRemoteRegionName.ProviderRemoteRegionName;
|
|
900
904
|
import * as PublicIp from "./public-ip";
|
|
901
905
|
export import PublicIp = PublicIp.PublicIp;
|
|
902
906
|
import * as PublicIpPool from "./public-ip-pool";
|
|
@@ -925,6 +929,8 @@ import * as RemoveVcnCidrDetails from "./remove-vcn-cidr-details";
|
|
|
925
929
|
export import RemoveVcnCidrDetails = RemoveVcnCidrDetails.RemoveVcnCidrDetails;
|
|
926
930
|
import * as RemoveVcnIpv6CidrDetails from "./remove-vcn-ipv6-cidr-details";
|
|
927
931
|
export import RemoveVcnIpv6CidrDetails = RemoveVcnIpv6CidrDetails.RemoveVcnIpv6CidrDetails;
|
|
932
|
+
import * as RetentionDuration from "./retention-duration";
|
|
933
|
+
export import RetentionDuration = RetentionDuration.RetentionDuration;
|
|
928
934
|
import * as RouteRule from "./route-rule";
|
|
929
935
|
export import RouteRule = RouteRule.RouteRule;
|
|
930
936
|
import * as RouteTable from "./route-table";
|