oci-disasterrecovery 2.98.1 → 2.100.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 +23 -0
- package/lib/client.js +137 -1
- package/lib/client.js.map +1 -1
- package/lib/model/create-dr-plan-details.d.ts +7 -0
- package/lib/model/create-dr-plan-details.js.map +1 -1
- package/lib/model/dr-plan-group-refresh-status.d.ts +37 -0
- package/lib/model/dr-plan-group-refresh-status.js +48 -0
- package/lib/model/dr-plan-group-refresh-status.js.map +1 -0
- package/lib/model/dr-plan-group.d.ts +7 -0
- package/lib/model/dr-plan-group.js.map +1 -1
- package/lib/model/dr-plan-lifecycle-sub-state.d.ts +39 -0
- package/lib/model/dr-plan-lifecycle-sub-state.js +50 -0
- package/lib/model/dr-plan-lifecycle-sub-state.js.map +1 -0
- package/lib/model/dr-plan-step-refresh-status.d.ts +35 -0
- package/lib/model/dr-plan-step-refresh-status.js +46 -0
- package/lib/model/dr-plan-step-refresh-status.js.map +1 -0
- package/lib/model/dr-plan-step-type.d.ts +93 -0
- package/lib/model/dr-plan-step-type.js +93 -0
- package/lib/model/dr-plan-step-type.js.map +1 -1
- package/lib/model/dr-plan-step.d.ts +7 -0
- package/lib/model/dr-plan-step.js.map +1 -1
- package/lib/model/dr-plan-summary.d.ts +7 -0
- package/lib/model/dr-plan-summary.js.map +1 -1
- package/lib/model/dr-plan.d.ts +13 -0
- package/lib/model/dr-plan.js.map +1 -1
- package/lib/model/index.d.ts +14 -0
- package/lib/model/index.js +18 -4
- package/lib/model/index.js.map +1 -1
- package/lib/model/operation-type.d.ts +2 -0
- package/lib/model/operation-type.js +2 -0
- package/lib/model/operation-type.js.map +1 -1
- package/lib/model/refresh-dr-plan-default-details.d.ts +28 -0
- package/lib/model/refresh-dr-plan-default-details.js +58 -0
- package/lib/model/refresh-dr-plan-default-details.js.map +1 -0
- package/lib/model/refresh-dr-plan-details.d.ts +26 -0
- package/lib/model/refresh-dr-plan-details.js +72 -0
- package/lib/model/refresh-dr-plan-details.js.map +1 -0
- package/lib/model/verify-dr-plan-default-details.d.ts +28 -0
- package/lib/model/verify-dr-plan-default-details.js +58 -0
- package/lib/model/verify-dr-plan-default-details.js.map +1 -0
- package/lib/model/verify-dr-plan-details.d.ts +26 -0
- package/lib/model/verify-dr-plan-details.js +72 -0
- package/lib/model/verify-dr-plan-details.js.map +1 -0
- package/lib/request/index.d.ts +4 -0
- package/lib/request/list-dr-plans-request.d.ts +5 -0
- package/lib/request/list-dr-plans-request.js.map +1 -1
- package/lib/request/refresh-dr-plan-request.d.ts +53 -0
- package/lib/request/refresh-dr-plan-request.js +15 -0
- package/lib/request/refresh-dr-plan-request.js.map +1 -0
- package/lib/request/verify-dr-plan-request.d.ts +53 -0
- package/lib/request/verify-dr-plan-request.js +15 -0
- package/lib/request/verify-dr-plan-request.js.map +1 -0
- package/lib/response/index.d.ts +4 -0
- package/lib/response/refresh-dr-plan-response.d.ts +25 -0
- package/lib/response/refresh-dr-plan-response.js +15 -0
- package/lib/response/refresh-dr-plan-response.js.map +1 -0
- package/lib/response/verify-dr-plan-response.d.ts +25 -0
- package/lib/response/verify-dr-plan-response.js +15 -0
- package/lib/response/verify-dr-plan-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20220125
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/disasterrecovery/RefreshDrPlan.ts.html |here} to see how to use RefreshDrPlanRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface RefreshDrPlanRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* Details for refreshing a DR plan.
|
|
21
|
+
*/
|
|
22
|
+
"refreshDrPlanDetails": model.RefreshDrPlanDefaultDetails;
|
|
23
|
+
/**
|
|
24
|
+
* The OCID of the DR plan.
|
|
25
|
+
* <p>
|
|
26
|
+
Example: {@code ocid1.drplan.oc1..uniqueID}
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
"drPlanId": string;
|
|
30
|
+
/**
|
|
31
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
32
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
33
|
+
* etag from a previous GET or POST response for that resource.
|
|
34
|
+
* The resource will be updated or deleted only if the etag you
|
|
35
|
+
* provide matches the resource's current etag value.
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
"ifMatch"?: string;
|
|
39
|
+
/**
|
|
40
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
41
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
42
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
43
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
44
|
+
* might be rejected.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
"opcRetryToken"?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The client request ID for tracing.
|
|
50
|
+
*
|
|
51
|
+
*/
|
|
52
|
+
"opcRequestId"?: string;
|
|
53
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20220125
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=refresh-dr-plan-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"refresh-dr-plan-request.js","sourceRoot":"","sources":["../../../../../lib/disasterrecovery/lib/request/refresh-dr-plan-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20220125
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/disasterrecovery/VerifyDrPlan.ts.html |here} to see how to use VerifyDrPlanRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface VerifyDrPlanRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* Details for verifying a DR plan.
|
|
21
|
+
*/
|
|
22
|
+
"verifyDrPlanDetails": model.VerifyDrPlanDefaultDetails;
|
|
23
|
+
/**
|
|
24
|
+
* The OCID of the DR plan.
|
|
25
|
+
* <p>
|
|
26
|
+
Example: {@code ocid1.drplan.oc1..uniqueID}
|
|
27
|
+
*
|
|
28
|
+
*/
|
|
29
|
+
"drPlanId": string;
|
|
30
|
+
/**
|
|
31
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
32
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
33
|
+
* etag from a previous GET or POST response for that resource.
|
|
34
|
+
* The resource will be updated or deleted only if the etag you
|
|
35
|
+
* provide matches the resource's current etag value.
|
|
36
|
+
*
|
|
37
|
+
*/
|
|
38
|
+
"ifMatch"?: string;
|
|
39
|
+
/**
|
|
40
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
41
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
42
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
43
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
44
|
+
* might be rejected.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
"opcRetryToken"?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The client request ID for tracing.
|
|
50
|
+
*
|
|
51
|
+
*/
|
|
52
|
+
"opcRequestId"?: string;
|
|
53
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20220125
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=verify-dr-plan-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verify-dr-plan-request.js","sourceRoot":"","sources":["../../../../../lib/disasterrecovery/lib/request/verify-dr-plan-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -60,6 +60,8 @@ import * as ListWorkRequestsResponse from "./list-work-requests-response";
|
|
|
60
60
|
export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
|
|
61
61
|
import * as PauseDrPlanExecutionResponse from "./pause-dr-plan-execution-response";
|
|
62
62
|
export import PauseDrPlanExecutionResponse = PauseDrPlanExecutionResponse.PauseDrPlanExecutionResponse;
|
|
63
|
+
import * as RefreshDrPlanResponse from "./refresh-dr-plan-response";
|
|
64
|
+
export import RefreshDrPlanResponse = RefreshDrPlanResponse.RefreshDrPlanResponse;
|
|
63
65
|
import * as ResumeDrPlanExecutionResponse from "./resume-dr-plan-execution-response";
|
|
64
66
|
export import ResumeDrPlanExecutionResponse = ResumeDrPlanExecutionResponse.ResumeDrPlanExecutionResponse;
|
|
65
67
|
import * as RetryDrPlanExecutionResponse from "./retry-dr-plan-execution-response";
|
|
@@ -72,3 +74,5 @@ import * as UpdateDrProtectionGroupResponse from "./update-dr-protection-group-r
|
|
|
72
74
|
export import UpdateDrProtectionGroupResponse = UpdateDrProtectionGroupResponse.UpdateDrProtectionGroupResponse;
|
|
73
75
|
import * as UpdateDrProtectionGroupRoleResponse from "./update-dr-protection-group-role-response";
|
|
74
76
|
export import UpdateDrProtectionGroupRoleResponse = UpdateDrProtectionGroupRoleResponse.UpdateDrProtectionGroupRoleResponse;
|
|
77
|
+
import * as VerifyDrPlanResponse from "./verify-dr-plan-response";
|
|
78
|
+
export import VerifyDrPlanResponse = VerifyDrPlanResponse.VerifyDrPlanResponse;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20220125
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
export interface RefreshDrPlanResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier (OCID) for the asynchronous request. You can use this to query status of the asynchronous operation. Use {@link #getWorkRequest(GetWorkRequestRequest) getWorkRequest} with this OCID to track the status of the request.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
"opcWorkRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
21
|
+
* Oracle about a particular request, please provide the request ID.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20220125
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=refresh-dr-plan-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"refresh-dr-plan-response.js","sourceRoot":"","sources":["../../../../../lib/disasterrecovery/lib/response/refresh-dr-plan-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20220125
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* 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.
|
|
12
|
+
*/
|
|
13
|
+
export interface VerifyDrPlanResponse {
|
|
14
|
+
/**
|
|
15
|
+
* Unique Oracle-assigned identifier (OCID) for the asynchronous request. You can use this to query status of the asynchronous operation. Use {@link #getWorkRequest(GetWorkRequestRequest) getWorkRequest} with this OCID to track the status of the request.
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
"opcWorkRequestId": string;
|
|
19
|
+
/**
|
|
20
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
21
|
+
* Oracle about a particular request, please provide the request ID.
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
"opcRequestId": string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20220125
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* 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.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=verify-dr-plan-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"verify-dr-plan-response.js","sourceRoot":"","sources":["../../../../../lib/disasterrecovery/lib/response/verify-dr-plan-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-disasterrecovery",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.100.0",
|
|
4
4
|
"description": "OCI NodeJS client for Disaster Recovery Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.100.0",
|
|
19
|
+
"oci-workrequests": "2.100.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|