oci-bds 2.77.0 → 2.78.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 +58 -52
- package/lib/client.js +60 -51
- package/lib/client.js.map +1 -1
- package/lib/request/activate-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/add-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/add-block-storage-request.d.ts +1 -1
- package/lib/request/add-cloud-sql-request.d.ts +1 -1
- package/lib/request/add-kafka-request.d.ts +1 -1
- package/lib/request/add-master-nodes-request.d.ts +1 -1
- package/lib/request/add-utility-nodes-request.d.ts +1 -1
- package/lib/request/add-worker-nodes-request.d.ts +1 -1
- package/lib/request/certificate-service-info-request.d.ts +1 -1
- package/lib/request/change-bds-instance-compartment-request.d.ts +1 -1
- package/lib/request/change-shape-request.d.ts +1 -1
- package/lib/request/create-bds-api-key-request.d.ts +1 -1
- package/lib/request/create-bds-instance-request.d.ts +1 -1
- package/lib/request/create-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/delete-bds-api-key-request.d.ts +1 -1
- package/lib/request/delete-bds-instance-request.d.ts +1 -1
- package/lib/request/delete-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/disable-certificate-request.d.ts +1 -1
- package/lib/request/enable-certificate-request.d.ts +1 -1
- package/lib/request/execute-bootstrap-script-request.d.ts +1 -1
- package/lib/request/get-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/get-bds-api-key-request.d.ts +1 -1
- package/lib/request/get-bds-instance-request.d.ts +1 -1
- package/lib/request/get-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/get-os-patch-details-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/install-os-patch-request.d.ts +1 -1
- package/lib/request/install-patch-request.d.ts +1 -1
- package/lib/request/list-auto-scaling-configurations-request.d.ts +1 -1
- package/lib/request/list-bds-api-keys-request.d.ts +1 -1
- package/lib/request/list-bds-instances-request.d.ts +1 -1
- package/lib/request/list-bds-metastore-configurations-request.d.ts +1 -1
- package/lib/request/list-os-patches-request.d.ts +1 -1
- package/lib/request/list-patch-histories-request.d.ts +1 -1
- package/lib/request/list-patches-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/remove-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/remove-cloud-sql-request.d.ts +1 -1
- package/lib/request/remove-kafka-request.d.ts +1 -1
- package/lib/request/remove-node-request.d.ts +1 -1
- package/lib/request/renew-certificate-request.d.ts +1 -1
- package/lib/request/restart-node-request.d.ts +1 -1
- package/lib/request/start-bds-instance-request.d.ts +1 -1
- package/lib/request/stop-bds-instance-request.d.ts +1 -1
- package/lib/request/test-bds-metastore-configuration-request.d.ts +1 -1
- package/lib/request/test-bds-object-storage-connection-request.d.ts +1 -1
- package/lib/request/update-auto-scaling-configuration-request.d.ts +1 -1
- package/lib/request/update-bds-instance-request.d.ts +1 -1
- package/lib/request/update-bds-metastore-configuration-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -47,6 +47,7 @@ const model = __importStar(require("./model"));
|
|
|
47
47
|
const oci_common_1 = require("oci-common");
|
|
48
48
|
const bds_waiter_1 = require("./bds-waiter");
|
|
49
49
|
const oci_common_2 = require("oci-common");
|
|
50
|
+
const Breaker = require("opossum");
|
|
50
51
|
// ===============================================
|
|
51
52
|
// This file is autogenerated - Please do not edit
|
|
52
53
|
// ===============================================
|
|
@@ -183,6 +184,14 @@ class BdsClient {
|
|
|
183
184
|
}
|
|
184
185
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
185
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
189
|
+
*/
|
|
190
|
+
shutdownCircuitBreaker() {
|
|
191
|
+
if (this._circuitBreaker) {
|
|
192
|
+
this._circuitBreaker.shutdown();
|
|
193
|
+
}
|
|
194
|
+
}
|
|
186
195
|
/**
|
|
187
196
|
* Activate specified metastore configuration.
|
|
188
197
|
*
|
|
@@ -190,7 +199,7 @@ class BdsClient {
|
|
|
190
199
|
* @param ActivateBdsMetastoreConfigurationRequest
|
|
191
200
|
* @return ActivateBdsMetastoreConfigurationResponse
|
|
192
201
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ActivateBdsMetastoreConfiguration.ts.html |here} to see how to use ActivateBdsMetastoreConfiguration API.
|
|
194
203
|
*/
|
|
195
204
|
activateBdsMetastoreConfiguration(activateBdsMetastoreConfigurationRequest) {
|
|
196
205
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -254,7 +263,7 @@ class BdsClient {
|
|
|
254
263
|
* @param AddAutoScalingConfigurationRequest
|
|
255
264
|
* @return AddAutoScalingConfigurationResponse
|
|
256
265
|
* @throws OciError when an error occurs
|
|
257
|
-
* @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.78.0/bds/AddAutoScalingConfiguration.ts.html |here} to see how to use AddAutoScalingConfiguration API.
|
|
258
267
|
*/
|
|
259
268
|
addAutoScalingConfiguration(addAutoScalingConfigurationRequest) {
|
|
260
269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -317,7 +326,7 @@ class BdsClient {
|
|
|
317
326
|
* @param AddBlockStorageRequest
|
|
318
327
|
* @return AddBlockStorageResponse
|
|
319
328
|
* @throws OciError when an error occurs
|
|
320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddBlockStorage.ts.html |here} to see how to use AddBlockStorage API.
|
|
321
330
|
*/
|
|
322
331
|
addBlockStorage(addBlockStorageRequest) {
|
|
323
332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -380,7 +389,7 @@ class BdsClient {
|
|
|
380
389
|
* @param AddCloudSqlRequest
|
|
381
390
|
* @return AddCloudSqlResponse
|
|
382
391
|
* @throws OciError when an error occurs
|
|
383
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
392
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddCloudSql.ts.html |here} to see how to use AddCloudSql API.
|
|
384
393
|
*/
|
|
385
394
|
addCloudSql(addCloudSqlRequest) {
|
|
386
395
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -443,7 +452,7 @@ class BdsClient {
|
|
|
443
452
|
* @param AddKafkaRequest
|
|
444
453
|
* @return AddKafkaResponse
|
|
445
454
|
* @throws OciError when an error occurs
|
|
446
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddKafka.ts.html |here} to see how to use AddKafka API.
|
|
447
456
|
*/
|
|
448
457
|
addKafka(addKafkaRequest) {
|
|
449
458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -506,7 +515,7 @@ class BdsClient {
|
|
|
506
515
|
* @param AddMasterNodesRequest
|
|
507
516
|
* @return AddMasterNodesResponse
|
|
508
517
|
* @throws OciError when an error occurs
|
|
509
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
518
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddMasterNodes.ts.html |here} to see how to use AddMasterNodes API.
|
|
510
519
|
*/
|
|
511
520
|
addMasterNodes(addMasterNodesRequest) {
|
|
512
521
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -569,7 +578,7 @@ class BdsClient {
|
|
|
569
578
|
* @param AddUtilityNodesRequest
|
|
570
579
|
* @return AddUtilityNodesResponse
|
|
571
580
|
* @throws OciError when an error occurs
|
|
572
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
581
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddUtilityNodes.ts.html |here} to see how to use AddUtilityNodes API.
|
|
573
582
|
*/
|
|
574
583
|
addUtilityNodes(addUtilityNodesRequest) {
|
|
575
584
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -632,7 +641,7 @@ class BdsClient {
|
|
|
632
641
|
* @param AddWorkerNodesRequest
|
|
633
642
|
* @return AddWorkerNodesResponse
|
|
634
643
|
* @throws OciError when an error occurs
|
|
635
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
644
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/AddWorkerNodes.ts.html |here} to see how to use AddWorkerNodes API.
|
|
636
645
|
*/
|
|
637
646
|
addWorkerNodes(addWorkerNodesRequest) {
|
|
638
647
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -695,7 +704,7 @@ class BdsClient {
|
|
|
695
704
|
* @param CertificateServiceInfoRequest
|
|
696
705
|
* @return CertificateServiceInfoResponse
|
|
697
706
|
* @throws OciError when an error occurs
|
|
698
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
707
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CertificateServiceInfo.ts.html |here} to see how to use CertificateServiceInfo API.
|
|
699
708
|
*/
|
|
700
709
|
certificateServiceInfo(certificateServiceInfoRequest) {
|
|
701
710
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -762,7 +771,7 @@ class BdsClient {
|
|
|
762
771
|
* @param ChangeBdsInstanceCompartmentRequest
|
|
763
772
|
* @return ChangeBdsInstanceCompartmentResponse
|
|
764
773
|
* @throws OciError when an error occurs
|
|
765
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
774
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ChangeBdsInstanceCompartment.ts.html |here} to see how to use ChangeBdsInstanceCompartment API.
|
|
766
775
|
*/
|
|
767
776
|
changeBdsInstanceCompartment(changeBdsInstanceCompartmentRequest) {
|
|
768
777
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -825,7 +834,7 @@ class BdsClient {
|
|
|
825
834
|
* @param ChangeShapeRequest
|
|
826
835
|
* @return ChangeShapeResponse
|
|
827
836
|
* @throws OciError when an error occurs
|
|
828
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
837
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ChangeShape.ts.html |here} to see how to use ChangeShape API.
|
|
829
838
|
*/
|
|
830
839
|
changeShape(changeShapeRequest) {
|
|
831
840
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -888,7 +897,7 @@ class BdsClient {
|
|
|
888
897
|
* @param CreateBdsApiKeyRequest
|
|
889
898
|
* @return CreateBdsApiKeyResponse
|
|
890
899
|
* @throws OciError when an error occurs
|
|
891
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
900
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CreateBdsApiKey.ts.html |here} to see how to use CreateBdsApiKey API.
|
|
892
901
|
*/
|
|
893
902
|
createBdsApiKey(createBdsApiKeyRequest) {
|
|
894
903
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -950,7 +959,7 @@ class BdsClient {
|
|
|
950
959
|
* @param CreateBdsInstanceRequest
|
|
951
960
|
* @return CreateBdsInstanceResponse
|
|
952
961
|
* @throws OciError when an error occurs
|
|
953
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
962
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CreateBdsInstance.ts.html |here} to see how to use CreateBdsInstance API.
|
|
954
963
|
*/
|
|
955
964
|
createBdsInstance(createBdsInstanceRequest) {
|
|
956
965
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1010,7 +1019,7 @@ class BdsClient {
|
|
|
1010
1019
|
* @param CreateBdsMetastoreConfigurationRequest
|
|
1011
1020
|
* @return CreateBdsMetastoreConfigurationResponse
|
|
1012
1021
|
* @throws OciError when an error occurs
|
|
1013
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1022
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/CreateBdsMetastoreConfiguration.ts.html |here} to see how to use CreateBdsMetastoreConfiguration API.
|
|
1014
1023
|
*/
|
|
1015
1024
|
createBdsMetastoreConfiguration(createBdsMetastoreConfigurationRequest) {
|
|
1016
1025
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1071,7 +1080,7 @@ class BdsClient {
|
|
|
1071
1080
|
* @param DeleteBdsApiKeyRequest
|
|
1072
1081
|
* @return DeleteBdsApiKeyResponse
|
|
1073
1082
|
* @throws OciError when an error occurs
|
|
1074
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1083
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DeleteBdsApiKey.ts.html |here} to see how to use DeleteBdsApiKey API.
|
|
1075
1084
|
*/
|
|
1076
1085
|
deleteBdsApiKey(deleteBdsApiKeyRequest) {
|
|
1077
1086
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1132,7 +1141,7 @@ class BdsClient {
|
|
|
1132
1141
|
* @param DeleteBdsInstanceRequest
|
|
1133
1142
|
* @return DeleteBdsInstanceResponse
|
|
1134
1143
|
* @throws OciError when an error occurs
|
|
1135
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1144
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DeleteBdsInstance.ts.html |here} to see how to use DeleteBdsInstance API.
|
|
1136
1145
|
*/
|
|
1137
1146
|
deleteBdsInstance(deleteBdsInstanceRequest) {
|
|
1138
1147
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1192,7 +1201,7 @@ class BdsClient {
|
|
|
1192
1201
|
* @param DeleteBdsMetastoreConfigurationRequest
|
|
1193
1202
|
* @return DeleteBdsMetastoreConfigurationResponse
|
|
1194
1203
|
* @throws OciError when an error occurs
|
|
1195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DeleteBdsMetastoreConfiguration.ts.html |here} to see how to use DeleteBdsMetastoreConfiguration API.
|
|
1196
1205
|
*/
|
|
1197
1206
|
deleteBdsMetastoreConfiguration(deleteBdsMetastoreConfigurationRequest) {
|
|
1198
1207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1254,7 +1263,7 @@ class BdsClient {
|
|
|
1254
1263
|
* @param DisableCertificateRequest
|
|
1255
1264
|
* @return DisableCertificateResponse
|
|
1256
1265
|
* @throws OciError when an error occurs
|
|
1257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/DisableCertificate.ts.html |here} to see how to use DisableCertificate API.
|
|
1258
1267
|
*/
|
|
1259
1268
|
disableCertificate(disableCertificateRequest) {
|
|
1260
1269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1317,7 +1326,7 @@ class BdsClient {
|
|
|
1317
1326
|
* @param EnableCertificateRequest
|
|
1318
1327
|
* @return EnableCertificateResponse
|
|
1319
1328
|
* @throws OciError when an error occurs
|
|
1320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1329
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/EnableCertificate.ts.html |here} to see how to use EnableCertificate API.
|
|
1321
1330
|
*/
|
|
1322
1331
|
enableCertificate(enableCertificateRequest) {
|
|
1323
1332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1380,7 +1389,7 @@ class BdsClient {
|
|
|
1380
1389
|
* @param ExecuteBootstrapScriptRequest
|
|
1381
1390
|
* @return ExecuteBootstrapScriptResponse
|
|
1382
1391
|
* @throws OciError when an error occurs
|
|
1383
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1392
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ExecuteBootstrapScript.ts.html |here} to see how to use ExecuteBootstrapScript API.
|
|
1384
1393
|
*/
|
|
1385
1394
|
executeBootstrapScript(executeBootstrapScriptRequest) {
|
|
1386
1395
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1443,7 +1452,7 @@ class BdsClient {
|
|
|
1443
1452
|
* @param GetAutoScalingConfigurationRequest
|
|
1444
1453
|
* @return GetAutoScalingConfigurationResponse
|
|
1445
1454
|
* @throws OciError when an error occurs
|
|
1446
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetAutoScalingConfiguration.ts.html |here} to see how to use GetAutoScalingConfiguration API.
|
|
1447
1456
|
*/
|
|
1448
1457
|
getAutoScalingConfiguration(getAutoScalingConfigurationRequest) {
|
|
1449
1458
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1507,7 +1516,7 @@ class BdsClient {
|
|
|
1507
1516
|
* @param GetBdsApiKeyRequest
|
|
1508
1517
|
* @return GetBdsApiKeyResponse
|
|
1509
1518
|
* @throws OciError when an error occurs
|
|
1510
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1519
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetBdsApiKey.ts.html |here} to see how to use GetBdsApiKey API.
|
|
1511
1520
|
*/
|
|
1512
1521
|
getBdsApiKey(getBdsApiKeyRequest) {
|
|
1513
1522
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1571,7 +1580,7 @@ class BdsClient {
|
|
|
1571
1580
|
* @param GetBdsInstanceRequest
|
|
1572
1581
|
* @return GetBdsInstanceResponse
|
|
1573
1582
|
* @throws OciError when an error occurs
|
|
1574
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1583
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetBdsInstance.ts.html |here} to see how to use GetBdsInstance API.
|
|
1575
1584
|
*/
|
|
1576
1585
|
getBdsInstance(getBdsInstanceRequest) {
|
|
1577
1586
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1634,7 +1643,7 @@ class BdsClient {
|
|
|
1634
1643
|
* @param GetBdsMetastoreConfigurationRequest
|
|
1635
1644
|
* @return GetBdsMetastoreConfigurationResponse
|
|
1636
1645
|
* @throws OciError when an error occurs
|
|
1637
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1646
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetBdsMetastoreConfiguration.ts.html |here} to see how to use GetBdsMetastoreConfiguration API.
|
|
1638
1647
|
*/
|
|
1639
1648
|
getBdsMetastoreConfiguration(getBdsMetastoreConfigurationRequest) {
|
|
1640
1649
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1698,7 +1707,7 @@ class BdsClient {
|
|
|
1698
1707
|
* @param GetOsPatchDetailsRequest
|
|
1699
1708
|
* @return GetOsPatchDetailsResponse
|
|
1700
1709
|
* @throws OciError when an error occurs
|
|
1701
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1710
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetOsPatchDetails.ts.html |here} to see how to use GetOsPatchDetails API.
|
|
1702
1711
|
*/
|
|
1703
1712
|
getOsPatchDetails(getOsPatchDetailsRequest) {
|
|
1704
1713
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1765,7 +1774,7 @@ class BdsClient {
|
|
|
1765
1774
|
* @param GetWorkRequestRequest
|
|
1766
1775
|
* @return GetWorkRequestResponse
|
|
1767
1776
|
* @throws OciError when an error occurs
|
|
1768
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1777
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1769
1778
|
*/
|
|
1770
1779
|
getWorkRequest(getWorkRequestRequest) {
|
|
1771
1780
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1829,7 +1838,7 @@ class BdsClient {
|
|
|
1829
1838
|
* @param InstallOsPatchRequest
|
|
1830
1839
|
* @return InstallOsPatchResponse
|
|
1831
1840
|
* @throws OciError when an error occurs
|
|
1832
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1841
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/InstallOsPatch.ts.html |here} to see how to use InstallOsPatch API.
|
|
1833
1842
|
*/
|
|
1834
1843
|
installOsPatch(installOsPatchRequest) {
|
|
1835
1844
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1892,7 +1901,7 @@ class BdsClient {
|
|
|
1892
1901
|
* @param InstallPatchRequest
|
|
1893
1902
|
* @return InstallPatchResponse
|
|
1894
1903
|
* @throws OciError when an error occurs
|
|
1895
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1904
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/InstallPatch.ts.html |here} to see how to use InstallPatch API.
|
|
1896
1905
|
*/
|
|
1897
1906
|
installPatch(installPatchRequest) {
|
|
1898
1907
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1955,7 +1964,7 @@ class BdsClient {
|
|
|
1955
1964
|
* @param ListAutoScalingConfigurationsRequest
|
|
1956
1965
|
* @return ListAutoScalingConfigurationsResponse
|
|
1957
1966
|
* @throws OciError when an error occurs
|
|
1958
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1967
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListAutoScalingConfigurations.ts.html |here} to see how to use ListAutoScalingConfigurations API.
|
|
1959
1968
|
*/
|
|
1960
1969
|
listAutoScalingConfigurations(listAutoScalingConfigurationsRequest) {
|
|
1961
1970
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2067,7 +2076,7 @@ class BdsClient {
|
|
|
2067
2076
|
* @param ListBdsApiKeysRequest
|
|
2068
2077
|
* @return ListBdsApiKeysResponse
|
|
2069
2078
|
* @throws OciError when an error occurs
|
|
2070
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2079
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListBdsApiKeys.ts.html |here} to see how to use ListBdsApiKeys API.
|
|
2071
2080
|
*/
|
|
2072
2081
|
listBdsApiKeys(listBdsApiKeysRequest) {
|
|
2073
2082
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2179,7 +2188,7 @@ class BdsClient {
|
|
|
2179
2188
|
* @param ListBdsInstancesRequest
|
|
2180
2189
|
* @return ListBdsInstancesResponse
|
|
2181
2190
|
* @throws OciError when an error occurs
|
|
2182
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2191
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListBdsInstances.ts.html |here} to see how to use ListBdsInstances API.
|
|
2183
2192
|
*/
|
|
2184
2193
|
listBdsInstances(listBdsInstancesRequest) {
|
|
2185
2194
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2289,7 +2298,7 @@ class BdsClient {
|
|
|
2289
2298
|
* @param ListBdsMetastoreConfigurationsRequest
|
|
2290
2299
|
* @return ListBdsMetastoreConfigurationsResponse
|
|
2291
2300
|
* @throws OciError when an error occurs
|
|
2292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2301
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListBdsMetastoreConfigurations.ts.html |here} to see how to use ListBdsMetastoreConfigurations API.
|
|
2293
2302
|
*/
|
|
2294
2303
|
listBdsMetastoreConfigurations(listBdsMetastoreConfigurationsRequest) {
|
|
2295
2304
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2402,7 +2411,7 @@ class BdsClient {
|
|
|
2402
2411
|
* @param ListOsPatchesRequest
|
|
2403
2412
|
* @return ListOsPatchesResponse
|
|
2404
2413
|
* @throws OciError when an error occurs
|
|
2405
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2414
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListOsPatches.ts.html |here} to see how to use ListOsPatches API.
|
|
2406
2415
|
*/
|
|
2407
2416
|
listOsPatches(listOsPatchesRequest) {
|
|
2408
2417
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2518,7 +2527,7 @@ class BdsClient {
|
|
|
2518
2527
|
* @param ListPatchHistoriesRequest
|
|
2519
2528
|
* @return ListPatchHistoriesResponse
|
|
2520
2529
|
* @throws OciError when an error occurs
|
|
2521
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2530
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListPatchHistories.ts.html |here} to see how to use ListPatchHistories API.
|
|
2522
2531
|
*/
|
|
2523
2532
|
listPatchHistories(listPatchHistoriesRequest) {
|
|
2524
2533
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2630,7 +2639,7 @@ class BdsClient {
|
|
|
2630
2639
|
* @param ListPatchesRequest
|
|
2631
2640
|
* @return ListPatchesResponse
|
|
2632
2641
|
* @throws OciError when an error occurs
|
|
2633
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2642
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListPatches.ts.html |here} to see how to use ListPatches API.
|
|
2634
2643
|
*/
|
|
2635
2644
|
listPatches(listPatchesRequest) {
|
|
2636
2645
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2737,7 +2746,7 @@ class BdsClient {
|
|
|
2737
2746
|
* @param ListWorkRequestErrorsRequest
|
|
2738
2747
|
* @return ListWorkRequestErrorsResponse
|
|
2739
2748
|
* @throws OciError when an error occurs
|
|
2740
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2749
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2741
2750
|
*/
|
|
2742
2751
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2743
2752
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2846,7 +2855,7 @@ class BdsClient {
|
|
|
2846
2855
|
* @param ListWorkRequestLogsRequest
|
|
2847
2856
|
* @return ListWorkRequestLogsResponse
|
|
2848
2857
|
* @throws OciError when an error occurs
|
|
2849
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2850
2859
|
*/
|
|
2851
2860
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2852
2861
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2955,7 +2964,7 @@ class BdsClient {
|
|
|
2955
2964
|
* @param ListWorkRequestsRequest
|
|
2956
2965
|
* @return ListWorkRequestsResponse
|
|
2957
2966
|
* @throws OciError when an error occurs
|
|
2958
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2967
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2959
2968
|
*/
|
|
2960
2969
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2961
2970
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3064,7 +3073,7 @@ class BdsClient {
|
|
|
3064
3073
|
* @param RemoveAutoScalingConfigurationRequest
|
|
3065
3074
|
* @return RemoveAutoScalingConfigurationResponse
|
|
3066
3075
|
* @throws OciError when an error occurs
|
|
3067
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3076
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveAutoScalingConfiguration.ts.html |here} to see how to use RemoveAutoScalingConfiguration API.
|
|
3068
3077
|
*/
|
|
3069
3078
|
removeAutoScalingConfiguration(removeAutoScalingConfigurationRequest) {
|
|
3070
3079
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3128,7 +3137,7 @@ class BdsClient {
|
|
|
3128
3137
|
* @param RemoveCloudSqlRequest
|
|
3129
3138
|
* @return RemoveCloudSqlResponse
|
|
3130
3139
|
* @throws OciError when an error occurs
|
|
3131
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3140
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveCloudSql.ts.html |here} to see how to use RemoveCloudSql API.
|
|
3132
3141
|
*/
|
|
3133
3142
|
removeCloudSql(removeCloudSqlRequest) {
|
|
3134
3143
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3191,7 +3200,7 @@ class BdsClient {
|
|
|
3191
3200
|
* @param RemoveKafkaRequest
|
|
3192
3201
|
* @return RemoveKafkaResponse
|
|
3193
3202
|
* @throws OciError when an error occurs
|
|
3194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3203
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveKafka.ts.html |here} to see how to use RemoveKafka API.
|
|
3195
3204
|
*/
|
|
3196
3205
|
removeKafka(removeKafkaRequest) {
|
|
3197
3206
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3254,7 +3263,7 @@ class BdsClient {
|
|
|
3254
3263
|
* @param RemoveNodeRequest
|
|
3255
3264
|
* @return RemoveNodeResponse
|
|
3256
3265
|
* @throws OciError when an error occurs
|
|
3257
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3266
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RemoveNode.ts.html |here} to see how to use RemoveNode API.
|
|
3258
3267
|
*/
|
|
3259
3268
|
removeNode(removeNodeRequest) {
|
|
3260
3269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3316,7 +3325,7 @@ class BdsClient {
|
|
|
3316
3325
|
* @param RenewCertificateRequest
|
|
3317
3326
|
* @return RenewCertificateResponse
|
|
3318
3327
|
* @throws OciError when an error occurs
|
|
3319
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3328
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RenewCertificate.ts.html |here} to see how to use RenewCertificate API.
|
|
3320
3329
|
*/
|
|
3321
3330
|
renewCertificate(renewCertificateRequest) {
|
|
3322
3331
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3379,7 +3388,7 @@ class BdsClient {
|
|
|
3379
3388
|
* @param RestartNodeRequest
|
|
3380
3389
|
* @return RestartNodeResponse
|
|
3381
3390
|
* @throws OciError when an error occurs
|
|
3382
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3391
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/RestartNode.ts.html |here} to see how to use RestartNode API.
|
|
3383
3392
|
*/
|
|
3384
3393
|
restartNode(restartNodeRequest) {
|
|
3385
3394
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3442,7 +3451,7 @@ class BdsClient {
|
|
|
3442
3451
|
* @param StartBdsInstanceRequest
|
|
3443
3452
|
* @return StartBdsInstanceResponse
|
|
3444
3453
|
* @throws OciError when an error occurs
|
|
3445
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3454
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/StartBdsInstance.ts.html |here} to see how to use StartBdsInstance API.
|
|
3446
3455
|
*/
|
|
3447
3456
|
startBdsInstance(startBdsInstanceRequest) {
|
|
3448
3457
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3504,7 +3513,7 @@ class BdsClient {
|
|
|
3504
3513
|
* @param StopBdsInstanceRequest
|
|
3505
3514
|
* @return StopBdsInstanceResponse
|
|
3506
3515
|
* @throws OciError when an error occurs
|
|
3507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3516
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/StopBdsInstance.ts.html |here} to see how to use StopBdsInstance API.
|
|
3508
3517
|
*/
|
|
3509
3518
|
stopBdsInstance(stopBdsInstanceRequest) {
|
|
3510
3519
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3566,7 +3575,7 @@ class BdsClient {
|
|
|
3566
3575
|
* @param TestBdsMetastoreConfigurationRequest
|
|
3567
3576
|
* @return TestBdsMetastoreConfigurationResponse
|
|
3568
3577
|
* @throws OciError when an error occurs
|
|
3569
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3578
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/TestBdsMetastoreConfiguration.ts.html |here} to see how to use TestBdsMetastoreConfiguration API.
|
|
3570
3579
|
*/
|
|
3571
3580
|
testBdsMetastoreConfiguration(testBdsMetastoreConfigurationRequest) {
|
|
3572
3581
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3628,7 +3637,7 @@ class BdsClient {
|
|
|
3628
3637
|
* @param TestBdsObjectStorageConnectionRequest
|
|
3629
3638
|
* @return TestBdsObjectStorageConnectionResponse
|
|
3630
3639
|
* @throws OciError when an error occurs
|
|
3631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3640
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/TestBdsObjectStorageConnection.ts.html |here} to see how to use TestBdsObjectStorageConnection API.
|
|
3632
3641
|
*/
|
|
3633
3642
|
testBdsObjectStorageConnection(testBdsObjectStorageConnectionRequest) {
|
|
3634
3643
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3690,7 +3699,7 @@ class BdsClient {
|
|
|
3690
3699
|
* @param UpdateAutoScalingConfigurationRequest
|
|
3691
3700
|
* @return UpdateAutoScalingConfigurationResponse
|
|
3692
3701
|
* @throws OciError when an error occurs
|
|
3693
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3702
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/UpdateAutoScalingConfiguration.ts.html |here} to see how to use UpdateAutoScalingConfiguration API.
|
|
3694
3703
|
*/
|
|
3695
3704
|
updateAutoScalingConfiguration(updateAutoScalingConfigurationRequest) {
|
|
3696
3705
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3753,7 +3762,7 @@ class BdsClient {
|
|
|
3753
3762
|
* @param UpdateBdsInstanceRequest
|
|
3754
3763
|
* @return UpdateBdsInstanceResponse
|
|
3755
3764
|
* @throws OciError when an error occurs
|
|
3756
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3765
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/UpdateBdsInstance.ts.html |here} to see how to use UpdateBdsInstance API.
|
|
3757
3766
|
*/
|
|
3758
3767
|
updateBdsInstance(updateBdsInstanceRequest) {
|
|
3759
3768
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3814,7 +3823,7 @@ class BdsClient {
|
|
|
3814
3823
|
* @param UpdateBdsMetastoreConfigurationRequest
|
|
3815
3824
|
* @return UpdateBdsMetastoreConfigurationResponse
|
|
3816
3825
|
* @throws OciError when an error occurs
|
|
3817
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3826
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/bds/UpdateBdsMetastoreConfiguration.ts.html |here} to see how to use UpdateBdsMetastoreConfiguration API.
|
|
3818
3827
|
*/
|
|
3819
3828
|
updateBdsMetastoreConfiguration(updateBdsMetastoreConfigurationRequest) {
|
|
3820
3829
|
return __awaiter(this, void 0, void 0, function* () {
|