oci-recovery 2.76.1 → 2.77.1
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 +30 -24
- package/lib/client.js +32 -23
- package/lib/client.js.map +1 -1
- package/lib/model/create-protected-database-details.d.ts +2 -2
- package/lib/model/create-protection-policy-details.d.ts +2 -2
- package/lib/model/create-recovery-service-subnet-details.d.ts +2 -2
- package/lib/model/protected-database-summary.d.ts +3 -3
- package/lib/model/protected-database.d.ts +3 -3
- package/lib/model/protection-policy-summary.d.ts +3 -3
- package/lib/model/protection-policy.d.ts +3 -3
- package/lib/model/recovery-service-subnet-summary.d.ts +3 -3
- package/lib/model/recovery-service-subnet.d.ts +3 -3
- package/lib/model/update-protected-database-details.d.ts +2 -2
- package/lib/model/update-protection-policy-details.d.ts +2 -2
- package/lib/model/update-recovery-service-subnet-details.d.ts +2 -2
- package/lib/request/change-protected-database-compartment-request.d.ts +2 -2
- package/lib/request/change-protection-policy-compartment-request.d.ts +2 -2
- package/lib/request/change-recovery-service-subnet-compartment-request.d.ts +2 -2
- package/lib/request/create-protected-database-request.d.ts +1 -1
- package/lib/request/create-protection-policy-request.d.ts +1 -1
- package/lib/request/create-recovery-service-subnet-request.d.ts +1 -1
- package/lib/request/delete-protected-database-request.d.ts +2 -2
- package/lib/request/delete-protection-policy-request.d.ts +2 -2
- package/lib/request/delete-recovery-service-subnet-request.d.ts +2 -2
- package/lib/request/fetch-protected-database-configuration-request.d.ts +2 -2
- package/lib/request/get-protected-database-request.d.ts +1 -1
- package/lib/request/get-protection-policy-request.d.ts +1 -1
- package/lib/request/get-recovery-service-subnet-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-protected-databases-request.d.ts +1 -1
- package/lib/request/list-protection-policies-request.d.ts +1 -1
- package/lib/request/list-recovery-service-subnets-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/update-protected-database-request.d.ts +2 -2
- package/lib/request/update-protection-policy-request.d.ts +2 -2
- package/lib/request/update-recovery-service-subnet-request.d.ts +2 -2
- package/lib/response/create-protected-database-response.d.ts +1 -1
- package/lib/response/create-protection-policy-response.d.ts +1 -1
- package/lib/response/create-recovery-service-subnet-response.d.ts +1 -1
- package/lib/response/fetch-protected-database-configuration-response.d.ts +1 -1
- package/lib/response/get-protected-database-response.d.ts +1 -1
- package/lib/response/get-protection-policy-response.d.ts +1 -1
- package/lib/response/get-recovery-service-subnet-response.d.ts +1 -1
- package/lib/response/list-protected-databases-response.d.ts +1 -1
- package/lib/response/list-protection-policies-response.d.ts +1 -1
- package/lib/response/list-recovery-service-subnets-response.d.ts +1 -1
- package/lib/response/list-work-request-errors-response.d.ts +1 -1
- package/lib/response/list-work-request-logs-response.d.ts +1 -1
- package/lib/response/list-work-requests-response.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import common = require("oci-common");
|
|
|
14
14
|
import * as requests from "./request";
|
|
15
15
|
import * as responses from "./response";
|
|
16
16
|
import { DatabaseRecoveryWaiter } from "./databaserecovery-waiter";
|
|
17
|
+
declare const Breaker: any;
|
|
17
18
|
export declare enum DatabaseRecoveryApiKeys {
|
|
18
19
|
}
|
|
19
20
|
/**
|
|
@@ -27,7 +28,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
27
28
|
protected "_defaultHeaders": any;
|
|
28
29
|
protected "_waiters": DatabaseRecoveryWaiter;
|
|
29
30
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
30
|
-
protected _circuitBreaker: null;
|
|
31
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
31
32
|
protected _httpOptions: any;
|
|
32
33
|
protected _bodyDuplexMode: any;
|
|
33
34
|
targetService: string;
|
|
@@ -80,13 +81,17 @@ export declare class DatabaseRecoveryClient {
|
|
|
80
81
|
* @return The service waiters.
|
|
81
82
|
*/
|
|
82
83
|
getWaiters(): DatabaseRecoveryWaiter;
|
|
84
|
+
/**
|
|
85
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
86
|
+
*/
|
|
87
|
+
shutdownCircuitBreaker(): void;
|
|
83
88
|
/**
|
|
84
89
|
* Moves a protected database resource from the existing compartment to the specified compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
85
90
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
86
91
|
* @param ChangeProtectedDatabaseCompartmentRequest
|
|
87
92
|
* @return ChangeProtectedDatabaseCompartmentResponse
|
|
88
93
|
* @throws OciError when an error occurs
|
|
89
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
94
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ChangeProtectedDatabaseCompartment.ts.html |here} to see how to use ChangeProtectedDatabaseCompartment API.
|
|
90
95
|
*/
|
|
91
96
|
changeProtectedDatabaseCompartment(changeProtectedDatabaseCompartmentRequest: requests.ChangeProtectedDatabaseCompartmentRequest): Promise<responses.ChangeProtectedDatabaseCompartmentResponse>;
|
|
92
97
|
/**
|
|
@@ -95,7 +100,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
95
100
|
* @param ChangeProtectionPolicyCompartmentRequest
|
|
96
101
|
* @return ChangeProtectionPolicyCompartmentResponse
|
|
97
102
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ChangeProtectionPolicyCompartment.ts.html |here} to see how to use ChangeProtectionPolicyCompartment API.
|
|
99
104
|
*/
|
|
100
105
|
changeProtectionPolicyCompartment(changeProtectionPolicyCompartmentRequest: requests.ChangeProtectionPolicyCompartmentRequest): Promise<responses.ChangeProtectionPolicyCompartmentResponse>;
|
|
101
106
|
/**
|
|
@@ -104,7 +109,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
104
109
|
* @param ChangeRecoveryServiceSubnetCompartmentRequest
|
|
105
110
|
* @return ChangeRecoveryServiceSubnetCompartmentResponse
|
|
106
111
|
* @throws OciError when an error occurs
|
|
107
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ChangeRecoveryServiceSubnetCompartment.ts.html |here} to see how to use ChangeRecoveryServiceSubnetCompartment API.
|
|
108
113
|
*/
|
|
109
114
|
changeRecoveryServiceSubnetCompartment(changeRecoveryServiceSubnetCompartmentRequest: requests.ChangeRecoveryServiceSubnetCompartmentRequest): Promise<responses.ChangeRecoveryServiceSubnetCompartmentResponse>;
|
|
110
115
|
/**
|
|
@@ -114,7 +119,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
114
119
|
* @param CreateProtectedDatabaseRequest
|
|
115
120
|
* @return CreateProtectedDatabaseResponse
|
|
116
121
|
* @throws OciError when an error occurs
|
|
117
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/CreateProtectedDatabase.ts.html |here} to see how to use CreateProtectedDatabase API.
|
|
118
123
|
*/
|
|
119
124
|
createProtectedDatabase(createProtectedDatabaseRequest: requests.CreateProtectedDatabaseRequest): Promise<responses.CreateProtectedDatabaseResponse>;
|
|
120
125
|
/**
|
|
@@ -124,7 +129,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
124
129
|
* @param CreateProtectionPolicyRequest
|
|
125
130
|
* @return CreateProtectionPolicyResponse
|
|
126
131
|
* @throws OciError when an error occurs
|
|
127
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
132
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/CreateProtectionPolicy.ts.html |here} to see how to use CreateProtectionPolicy API.
|
|
128
133
|
*/
|
|
129
134
|
createProtectionPolicy(createProtectionPolicyRequest: requests.CreateProtectionPolicyRequest): Promise<responses.CreateProtectionPolicyResponse>;
|
|
130
135
|
/**
|
|
@@ -134,7 +139,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
134
139
|
* @param CreateRecoveryServiceSubnetRequest
|
|
135
140
|
* @return CreateRecoveryServiceSubnetResponse
|
|
136
141
|
* @throws OciError when an error occurs
|
|
137
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
142
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/CreateRecoveryServiceSubnet.ts.html |here} to see how to use CreateRecoveryServiceSubnet API.
|
|
138
143
|
*/
|
|
139
144
|
createRecoveryServiceSubnet(createRecoveryServiceSubnetRequest: requests.CreateRecoveryServiceSubnetRequest): Promise<responses.CreateRecoveryServiceSubnetResponse>;
|
|
140
145
|
/**
|
|
@@ -143,7 +148,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
143
148
|
* @param DeleteProtectedDatabaseRequest
|
|
144
149
|
* @return DeleteProtectedDatabaseResponse
|
|
145
150
|
* @throws OciError when an error occurs
|
|
146
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
151
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/DeleteProtectedDatabase.ts.html |here} to see how to use DeleteProtectedDatabase API.
|
|
147
152
|
*/
|
|
148
153
|
deleteProtectedDatabase(deleteProtectedDatabaseRequest: requests.DeleteProtectedDatabaseRequest): Promise<responses.DeleteProtectedDatabaseResponse>;
|
|
149
154
|
/**
|
|
@@ -154,7 +159,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
154
159
|
* @param DeleteProtectionPolicyRequest
|
|
155
160
|
* @return DeleteProtectionPolicyResponse
|
|
156
161
|
* @throws OciError when an error occurs
|
|
157
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
162
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/DeleteProtectionPolicy.ts.html |here} to see how to use DeleteProtectionPolicy API.
|
|
158
163
|
*/
|
|
159
164
|
deleteProtectionPolicy(deleteProtectionPolicyRequest: requests.DeleteProtectionPolicyRequest): Promise<responses.DeleteProtectionPolicyResponse>;
|
|
160
165
|
/**
|
|
@@ -163,7 +168,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
163
168
|
* @param DeleteRecoveryServiceSubnetRequest
|
|
164
169
|
* @return DeleteRecoveryServiceSubnetResponse
|
|
165
170
|
* @throws OciError when an error occurs
|
|
166
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
171
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/DeleteRecoveryServiceSubnet.ts.html |here} to see how to use DeleteRecoveryServiceSubnet API.
|
|
167
172
|
*/
|
|
168
173
|
deleteRecoveryServiceSubnet(deleteRecoveryServiceSubnetRequest: requests.DeleteRecoveryServiceSubnetRequest): Promise<responses.DeleteRecoveryServiceSubnetResponse>;
|
|
169
174
|
/**
|
|
@@ -172,7 +177,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
172
177
|
* @param FetchProtectedDatabaseConfigurationRequest
|
|
173
178
|
* @return FetchProtectedDatabaseConfigurationResponse
|
|
174
179
|
* @throws OciError when an error occurs
|
|
175
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
180
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/FetchProtectedDatabaseConfiguration.ts.html |here} to see how to use FetchProtectedDatabaseConfiguration API.
|
|
176
181
|
*/
|
|
177
182
|
fetchProtectedDatabaseConfiguration(fetchProtectedDatabaseConfigurationRequest: requests.FetchProtectedDatabaseConfigurationRequest): Promise<responses.FetchProtectedDatabaseConfigurationResponse>;
|
|
178
183
|
/**
|
|
@@ -181,7 +186,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
181
186
|
* @param GetProtectedDatabaseRequest
|
|
182
187
|
* @return GetProtectedDatabaseResponse
|
|
183
188
|
* @throws OciError when an error occurs
|
|
184
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
189
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetProtectedDatabase.ts.html |here} to see how to use GetProtectedDatabase API.
|
|
185
190
|
*/
|
|
186
191
|
getProtectedDatabase(getProtectedDatabaseRequest: requests.GetProtectedDatabaseRequest): Promise<responses.GetProtectedDatabaseResponse>;
|
|
187
192
|
/**
|
|
@@ -190,7 +195,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
190
195
|
* @param GetProtectionPolicyRequest
|
|
191
196
|
* @return GetProtectionPolicyResponse
|
|
192
197
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
198
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetProtectionPolicy.ts.html |here} to see how to use GetProtectionPolicy API.
|
|
194
199
|
*/
|
|
195
200
|
getProtectionPolicy(getProtectionPolicyRequest: requests.GetProtectionPolicyRequest): Promise<responses.GetProtectionPolicyResponse>;
|
|
196
201
|
/**
|
|
@@ -199,7 +204,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
199
204
|
* @param GetRecoveryServiceSubnetRequest
|
|
200
205
|
* @return GetRecoveryServiceSubnetResponse
|
|
201
206
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
207
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetRecoveryServiceSubnet.ts.html |here} to see how to use GetRecoveryServiceSubnet API.
|
|
203
208
|
*/
|
|
204
209
|
getRecoveryServiceSubnet(getRecoveryServiceSubnetRequest: requests.GetRecoveryServiceSubnetRequest): Promise<responses.GetRecoveryServiceSubnetResponse>;
|
|
205
210
|
/**
|
|
@@ -208,7 +213,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
208
213
|
* @param GetWorkRequestRequest
|
|
209
214
|
* @return GetWorkRequestResponse
|
|
210
215
|
* @throws OciError when an error occurs
|
|
211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
216
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
212
217
|
*/
|
|
213
218
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
214
219
|
/**
|
|
@@ -218,7 +223,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
218
223
|
* @param ListProtectedDatabasesRequest
|
|
219
224
|
* @return ListProtectedDatabasesResponse
|
|
220
225
|
* @throws OciError when an error occurs
|
|
221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListProtectedDatabases.ts.html |here} to see how to use ListProtectedDatabases API.
|
|
222
227
|
*/
|
|
223
228
|
listProtectedDatabases(listProtectedDatabasesRequest: requests.ListProtectedDatabasesRequest): Promise<responses.ListProtectedDatabasesResponse>;
|
|
224
229
|
/**
|
|
@@ -228,7 +233,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
228
233
|
* @param ListProtectionPoliciesRequest
|
|
229
234
|
* @return ListProtectionPoliciesResponse
|
|
230
235
|
* @throws OciError when an error occurs
|
|
231
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
236
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListProtectionPolicies.ts.html |here} to see how to use ListProtectionPolicies API.
|
|
232
237
|
*/
|
|
233
238
|
listProtectionPolicies(listProtectionPoliciesRequest: requests.ListProtectionPoliciesRequest): Promise<responses.ListProtectionPoliciesResponse>;
|
|
234
239
|
/**
|
|
@@ -238,7 +243,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
238
243
|
* @param ListRecoveryServiceSubnetsRequest
|
|
239
244
|
* @return ListRecoveryServiceSubnetsResponse
|
|
240
245
|
* @throws OciError when an error occurs
|
|
241
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListRecoveryServiceSubnets.ts.html |here} to see how to use ListRecoveryServiceSubnets API.
|
|
242
247
|
*/
|
|
243
248
|
listRecoveryServiceSubnets(listRecoveryServiceSubnetsRequest: requests.ListRecoveryServiceSubnetsRequest): Promise<responses.ListRecoveryServiceSubnetsResponse>;
|
|
244
249
|
/**
|
|
@@ -248,7 +253,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
248
253
|
* @param ListWorkRequestErrorsRequest
|
|
249
254
|
* @return ListWorkRequestErrorsResponse
|
|
250
255
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
256
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
252
257
|
*/
|
|
253
258
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
254
259
|
/**
|
|
@@ -258,7 +263,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
258
263
|
* @param ListWorkRequestLogsRequest
|
|
259
264
|
* @return ListWorkRequestLogsResponse
|
|
260
265
|
* @throws OciError when an error occurs
|
|
261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
262
267
|
*/
|
|
263
268
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
264
269
|
/**
|
|
@@ -268,7 +273,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
268
273
|
* @param ListWorkRequestsRequest
|
|
269
274
|
* @return ListWorkRequestsResponse
|
|
270
275
|
* @throws OciError when an error occurs
|
|
271
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
272
277
|
*/
|
|
273
278
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
274
279
|
/**
|
|
@@ -277,7 +282,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
277
282
|
* @param UpdateProtectedDatabaseRequest
|
|
278
283
|
* @return UpdateProtectedDatabaseResponse
|
|
279
284
|
* @throws OciError when an error occurs
|
|
280
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/UpdateProtectedDatabase.ts.html |here} to see how to use UpdateProtectedDatabase API.
|
|
281
286
|
*/
|
|
282
287
|
updateProtectedDatabase(updateProtectedDatabaseRequest: requests.UpdateProtectedDatabaseRequest): Promise<responses.UpdateProtectedDatabaseResponse>;
|
|
283
288
|
/**
|
|
@@ -286,7 +291,7 @@ export declare class DatabaseRecoveryClient {
|
|
|
286
291
|
* @param UpdateProtectionPolicyRequest
|
|
287
292
|
* @return UpdateProtectionPolicyResponse
|
|
288
293
|
* @throws OciError when an error occurs
|
|
289
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
294
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/UpdateProtectionPolicy.ts.html |here} to see how to use UpdateProtectionPolicy API.
|
|
290
295
|
*/
|
|
291
296
|
updateProtectionPolicy(updateProtectionPolicyRequest: requests.UpdateProtectionPolicyRequest): Promise<responses.UpdateProtectionPolicyResponse>;
|
|
292
297
|
/**
|
|
@@ -295,7 +300,8 @@ export declare class DatabaseRecoveryClient {
|
|
|
295
300
|
* @param UpdateRecoveryServiceSubnetRequest
|
|
296
301
|
* @return UpdateRecoveryServiceSubnetResponse
|
|
297
302
|
* @throws OciError when an error occurs
|
|
298
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
303
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/UpdateRecoveryServiceSubnet.ts.html |here} to see how to use UpdateRecoveryServiceSubnet API.
|
|
299
304
|
*/
|
|
300
305
|
updateRecoveryServiceSubnet(updateRecoveryServiceSubnetRequest: requests.UpdateRecoveryServiceSubnetRequest): Promise<responses.UpdateRecoveryServiceSubnetResponse>;
|
|
301
306
|
}
|
|
307
|
+
export {};
|
package/lib/client.js
CHANGED
|
@@ -45,6 +45,7 @@ const common = require("oci-common");
|
|
|
45
45
|
const model = __importStar(require("./model"));
|
|
46
46
|
const databaserecovery_waiter_1 = require("./databaserecovery-waiter");
|
|
47
47
|
const oci_common_1 = require("oci-common");
|
|
48
|
+
const Breaker = require("opossum");
|
|
48
49
|
// ===============================================
|
|
49
50
|
// This file is autogenerated - Please do not edit
|
|
50
51
|
// ===============================================
|
|
@@ -181,13 +182,21 @@ class DatabaseRecoveryClient {
|
|
|
181
182
|
}
|
|
182
183
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
183
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
187
|
+
*/
|
|
188
|
+
shutdownCircuitBreaker() {
|
|
189
|
+
if (this._circuitBreaker) {
|
|
190
|
+
this._circuitBreaker.shutdown();
|
|
191
|
+
}
|
|
192
|
+
}
|
|
184
193
|
/**
|
|
185
194
|
* Moves a protected database resource from the existing compartment to the specified compartment. When provided, If-Match is checked against ETag values of the resource.
|
|
186
195
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
187
196
|
* @param ChangeProtectedDatabaseCompartmentRequest
|
|
188
197
|
* @return ChangeProtectedDatabaseCompartmentResponse
|
|
189
198
|
* @throws OciError when an error occurs
|
|
190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
199
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ChangeProtectedDatabaseCompartment.ts.html |here} to see how to use ChangeProtectedDatabaseCompartment API.
|
|
191
200
|
*/
|
|
192
201
|
changeProtectedDatabaseCompartment(changeProtectedDatabaseCompartmentRequest) {
|
|
193
202
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -248,7 +257,7 @@ class DatabaseRecoveryClient {
|
|
|
248
257
|
* @param ChangeProtectionPolicyCompartmentRequest
|
|
249
258
|
* @return ChangeProtectionPolicyCompartmentResponse
|
|
250
259
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ChangeProtectionPolicyCompartment.ts.html |here} to see how to use ChangeProtectionPolicyCompartment API.
|
|
252
261
|
*/
|
|
253
262
|
changeProtectionPolicyCompartment(changeProtectionPolicyCompartmentRequest) {
|
|
254
263
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -309,7 +318,7 @@ class DatabaseRecoveryClient {
|
|
|
309
318
|
* @param ChangeRecoveryServiceSubnetCompartmentRequest
|
|
310
319
|
* @return ChangeRecoveryServiceSubnetCompartmentResponse
|
|
311
320
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ChangeRecoveryServiceSubnetCompartment.ts.html |here} to see how to use ChangeRecoveryServiceSubnetCompartment API.
|
|
313
322
|
*/
|
|
314
323
|
changeRecoveryServiceSubnetCompartment(changeRecoveryServiceSubnetCompartmentRequest) {
|
|
315
324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -371,7 +380,7 @@ class DatabaseRecoveryClient {
|
|
|
371
380
|
* @param CreateProtectedDatabaseRequest
|
|
372
381
|
* @return CreateProtectedDatabaseResponse
|
|
373
382
|
* @throws OciError when an error occurs
|
|
374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
383
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/CreateProtectedDatabase.ts.html |here} to see how to use CreateProtectedDatabase API.
|
|
375
384
|
*/
|
|
376
385
|
createProtectedDatabase(createProtectedDatabaseRequest) {
|
|
377
386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -445,7 +454,7 @@ class DatabaseRecoveryClient {
|
|
|
445
454
|
* @param CreateProtectionPolicyRequest
|
|
446
455
|
* @return CreateProtectionPolicyResponse
|
|
447
456
|
* @throws OciError when an error occurs
|
|
448
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/CreateProtectionPolicy.ts.html |here} to see how to use CreateProtectionPolicy API.
|
|
449
458
|
*/
|
|
450
459
|
createProtectionPolicy(createProtectionPolicyRequest) {
|
|
451
460
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -519,7 +528,7 @@ class DatabaseRecoveryClient {
|
|
|
519
528
|
* @param CreateRecoveryServiceSubnetRequest
|
|
520
529
|
* @return CreateRecoveryServiceSubnetResponse
|
|
521
530
|
* @throws OciError when an error occurs
|
|
522
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
531
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/CreateRecoveryServiceSubnet.ts.html |here} to see how to use CreateRecoveryServiceSubnet API.
|
|
523
532
|
*/
|
|
524
533
|
createRecoveryServiceSubnet(createRecoveryServiceSubnetRequest) {
|
|
525
534
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -592,7 +601,7 @@ class DatabaseRecoveryClient {
|
|
|
592
601
|
* @param DeleteProtectedDatabaseRequest
|
|
593
602
|
* @return DeleteProtectedDatabaseResponse
|
|
594
603
|
* @throws OciError when an error occurs
|
|
595
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
604
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/DeleteProtectedDatabase.ts.html |here} to see how to use DeleteProtectedDatabase API.
|
|
596
605
|
*/
|
|
597
606
|
deleteProtectedDatabase(deleteProtectedDatabaseRequest) {
|
|
598
607
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -654,7 +663,7 @@ class DatabaseRecoveryClient {
|
|
|
654
663
|
* @param DeleteProtectionPolicyRequest
|
|
655
664
|
* @return DeleteProtectionPolicyResponse
|
|
656
665
|
* @throws OciError when an error occurs
|
|
657
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
666
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/DeleteProtectionPolicy.ts.html |here} to see how to use DeleteProtectionPolicy API.
|
|
658
667
|
*/
|
|
659
668
|
deleteProtectionPolicy(deleteProtectionPolicyRequest) {
|
|
660
669
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -714,7 +723,7 @@ class DatabaseRecoveryClient {
|
|
|
714
723
|
* @param DeleteRecoveryServiceSubnetRequest
|
|
715
724
|
* @return DeleteRecoveryServiceSubnetResponse
|
|
716
725
|
* @throws OciError when an error occurs
|
|
717
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
726
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/DeleteRecoveryServiceSubnet.ts.html |here} to see how to use DeleteRecoveryServiceSubnet API.
|
|
718
727
|
*/
|
|
719
728
|
deleteRecoveryServiceSubnet(deleteRecoveryServiceSubnetRequest) {
|
|
720
729
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -774,7 +783,7 @@ class DatabaseRecoveryClient {
|
|
|
774
783
|
* @param FetchProtectedDatabaseConfigurationRequest
|
|
775
784
|
* @return FetchProtectedDatabaseConfigurationResponse
|
|
776
785
|
* @throws OciError when an error occurs
|
|
777
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
786
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/FetchProtectedDatabaseConfiguration.ts.html |here} to see how to use FetchProtectedDatabaseConfiguration API.
|
|
778
787
|
*/
|
|
779
788
|
fetchProtectedDatabaseConfiguration(fetchProtectedDatabaseConfigurationRequest) {
|
|
780
789
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -838,7 +847,7 @@ class DatabaseRecoveryClient {
|
|
|
838
847
|
* @param GetProtectedDatabaseRequest
|
|
839
848
|
* @return GetProtectedDatabaseResponse
|
|
840
849
|
* @throws OciError when an error occurs
|
|
841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
850
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetProtectedDatabase.ts.html |here} to see how to use GetProtectedDatabase API.
|
|
842
851
|
*/
|
|
843
852
|
getProtectedDatabase(getProtectedDatabaseRequest) {
|
|
844
853
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -901,7 +910,7 @@ class DatabaseRecoveryClient {
|
|
|
901
910
|
* @param GetProtectionPolicyRequest
|
|
902
911
|
* @return GetProtectionPolicyResponse
|
|
903
912
|
* @throws OciError when an error occurs
|
|
904
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
913
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetProtectionPolicy.ts.html |here} to see how to use GetProtectionPolicy API.
|
|
905
914
|
*/
|
|
906
915
|
getProtectionPolicy(getProtectionPolicyRequest) {
|
|
907
916
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -964,7 +973,7 @@ class DatabaseRecoveryClient {
|
|
|
964
973
|
* @param GetRecoveryServiceSubnetRequest
|
|
965
974
|
* @return GetRecoveryServiceSubnetResponse
|
|
966
975
|
* @throws OciError when an error occurs
|
|
967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
976
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetRecoveryServiceSubnet.ts.html |here} to see how to use GetRecoveryServiceSubnet API.
|
|
968
977
|
*/
|
|
969
978
|
getRecoveryServiceSubnet(getRecoveryServiceSubnetRequest) {
|
|
970
979
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1027,7 +1036,7 @@ class DatabaseRecoveryClient {
|
|
|
1027
1036
|
* @param GetWorkRequestRequest
|
|
1028
1037
|
* @return GetWorkRequestResponse
|
|
1029
1038
|
* @throws OciError when an error occurs
|
|
1030
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1039
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1031
1040
|
*/
|
|
1032
1041
|
getWorkRequest(getWorkRequestRequest) {
|
|
1033
1042
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1091,7 +1100,7 @@ class DatabaseRecoveryClient {
|
|
|
1091
1100
|
* @param ListProtectedDatabasesRequest
|
|
1092
1101
|
* @return ListProtectedDatabasesResponse
|
|
1093
1102
|
* @throws OciError when an error occurs
|
|
1094
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListProtectedDatabases.ts.html |here} to see how to use ListProtectedDatabases API.
|
|
1095
1104
|
*/
|
|
1096
1105
|
listProtectedDatabases(listProtectedDatabasesRequest) {
|
|
1097
1106
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1164,7 +1173,7 @@ class DatabaseRecoveryClient {
|
|
|
1164
1173
|
* @param ListProtectionPoliciesRequest
|
|
1165
1174
|
* @return ListProtectionPoliciesResponse
|
|
1166
1175
|
* @throws OciError when an error occurs
|
|
1167
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListProtectionPolicies.ts.html |here} to see how to use ListProtectionPolicies API.
|
|
1168
1177
|
*/
|
|
1169
1178
|
listProtectionPolicies(listProtectionPoliciesRequest) {
|
|
1170
1179
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1236,7 +1245,7 @@ class DatabaseRecoveryClient {
|
|
|
1236
1245
|
* @param ListRecoveryServiceSubnetsRequest
|
|
1237
1246
|
* @return ListRecoveryServiceSubnetsResponse
|
|
1238
1247
|
* @throws OciError when an error occurs
|
|
1239
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListRecoveryServiceSubnets.ts.html |here} to see how to use ListRecoveryServiceSubnets API.
|
|
1240
1249
|
*/
|
|
1241
1250
|
listRecoveryServiceSubnets(listRecoveryServiceSubnetsRequest) {
|
|
1242
1251
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1308,7 +1317,7 @@ class DatabaseRecoveryClient {
|
|
|
1308
1317
|
* @param ListWorkRequestErrorsRequest
|
|
1309
1318
|
* @return ListWorkRequestErrorsResponse
|
|
1310
1319
|
* @throws OciError when an error occurs
|
|
1311
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1320
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1312
1321
|
*/
|
|
1313
1322
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1314
1323
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1377,7 +1386,7 @@ class DatabaseRecoveryClient {
|
|
|
1377
1386
|
* @param ListWorkRequestLogsRequest
|
|
1378
1387
|
* @return ListWorkRequestLogsResponse
|
|
1379
1388
|
* @throws OciError when an error occurs
|
|
1380
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1389
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1381
1390
|
*/
|
|
1382
1391
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1383
1392
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1446,7 +1455,7 @@ class DatabaseRecoveryClient {
|
|
|
1446
1455
|
* @param ListWorkRequestsRequest
|
|
1447
1456
|
* @return ListWorkRequestsResponse
|
|
1448
1457
|
* @throws OciError when an error occurs
|
|
1449
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1458
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1450
1459
|
*/
|
|
1451
1460
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1452
1461
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1516,7 +1525,7 @@ class DatabaseRecoveryClient {
|
|
|
1516
1525
|
* @param UpdateProtectedDatabaseRequest
|
|
1517
1526
|
* @return UpdateProtectedDatabaseResponse
|
|
1518
1527
|
* @throws OciError when an error occurs
|
|
1519
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1528
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/UpdateProtectedDatabase.ts.html |here} to see how to use UpdateProtectedDatabase API.
|
|
1520
1529
|
*/
|
|
1521
1530
|
updateProtectedDatabase(updateProtectedDatabaseRequest) {
|
|
1522
1531
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1577,7 +1586,7 @@ class DatabaseRecoveryClient {
|
|
|
1577
1586
|
* @param UpdateProtectionPolicyRequest
|
|
1578
1587
|
* @return UpdateProtectionPolicyResponse
|
|
1579
1588
|
* @throws OciError when an error occurs
|
|
1580
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/UpdateProtectionPolicy.ts.html |here} to see how to use UpdateProtectionPolicy API.
|
|
1581
1590
|
*/
|
|
1582
1591
|
updateProtectionPolicy(updateProtectionPolicyRequest) {
|
|
1583
1592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1638,7 +1647,7 @@ class DatabaseRecoveryClient {
|
|
|
1638
1647
|
* @param UpdateRecoveryServiceSubnetRequest
|
|
1639
1648
|
* @return UpdateRecoveryServiceSubnetResponse
|
|
1640
1649
|
* @throws OciError when an error occurs
|
|
1641
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1650
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/recovery/UpdateRecoveryServiceSubnet.ts.html |here} to see how to use UpdateRecoveryServiceSubnet API.
|
|
1642
1651
|
*/
|
|
1643
1652
|
updateRecoveryServiceSubnet(updateRecoveryServiceSubnetRequest) {
|
|
1644
1653
|
return __awaiter(this, void 0, void 0, function* () {
|