oci-ailanguage 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 +43 -37
- package/lib/client.js +45 -36
- package/lib/client.js.map +1 -1
- package/lib/model/create-endpoint-details.d.ts +2 -2
- package/lib/model/create-model-details.d.ts +2 -2
- package/lib/model/create-project-details.d.ts +2 -2
- package/lib/model/detected-language.d.ts +3 -3
- package/lib/model/endpoint-summary.d.ts +3 -3
- package/lib/model/endpoint.d.ts +3 -3
- package/lib/model/entity.d.ts +1 -1
- package/lib/model/evaluation-result-summary.d.ts +2 -2
- package/lib/model/key-phrase.d.ts +1 -1
- package/lib/model/model-summary.d.ts +3 -3
- package/lib/model/model.d.ts +3 -3
- package/lib/model/project-summary.d.ts +3 -3
- package/lib/model/project.d.ts +3 -3
- package/lib/model/sentiment-aspect.d.ts +1 -1
- package/lib/model/sentiment-sentence.d.ts +1 -1
- package/lib/model/text-classification.d.ts +1 -1
- package/lib/model/update-endpoint-details.d.ts +2 -2
- package/lib/model/update-model-details.d.ts +2 -2
- package/lib/model/update-project-details.d.ts +2 -2
- package/lib/request/batch-detect-dominant-language-request.d.ts +1 -1
- package/lib/request/batch-detect-language-entities-request.d.ts +1 -1
- package/lib/request/batch-detect-language-key-phrases-request.d.ts +1 -1
- package/lib/request/batch-detect-language-pii-entities-request.d.ts +1 -1
- package/lib/request/batch-detect-language-sentiments-request.d.ts +1 -1
- package/lib/request/batch-detect-language-text-classification-request.d.ts +1 -1
- package/lib/request/batch-language-translation-request.d.ts +1 -1
- package/lib/request/change-endpoint-compartment-request.d.ts +2 -2
- package/lib/request/change-model-compartment-request.d.ts +2 -2
- package/lib/request/change-project-compartment-request.d.ts +2 -2
- package/lib/request/create-endpoint-request.d.ts +1 -1
- package/lib/request/create-model-request.d.ts +1 -1
- package/lib/request/create-project-request.d.ts +1 -1
- package/lib/request/delete-endpoint-request.d.ts +2 -2
- package/lib/request/delete-model-request.d.ts +2 -2
- package/lib/request/delete-project-request.d.ts +2 -2
- package/lib/request/detect-dominant-language-request.d.ts +1 -1
- package/lib/request/detect-language-entities-request.d.ts +1 -1
- package/lib/request/detect-language-key-phrases-request.d.ts +1 -1
- package/lib/request/detect-language-sentiments-request.d.ts +1 -1
- package/lib/request/detect-language-text-classification-request.d.ts +1 -1
- package/lib/request/get-endpoint-request.d.ts +1 -1
- package/lib/request/get-model-request.d.ts +1 -1
- package/lib/request/get-model-type-request.d.ts +1 -1
- package/lib/request/get-project-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-endpoints-request.d.ts +4 -4
- package/lib/request/list-evaluation-results-request.d.ts +1 -1
- package/lib/request/list-models-request.d.ts +4 -4
- package/lib/request/list-projects-request.d.ts +4 -4
- 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-endpoint-request.d.ts +2 -2
- package/lib/request/update-model-request.d.ts +2 -2
- package/lib/request/update-project-request.d.ts +2 -2
- package/lib/response/create-endpoint-response.d.ts +1 -1
- package/lib/response/create-model-response.d.ts +1 -1
- package/lib/response/create-project-response.d.ts +1 -1
- package/lib/response/get-endpoint-response.d.ts +1 -1
- package/lib/response/get-model-response.d.ts +1 -1
- package/lib/response/get-project-response.d.ts +1 -1
- package/lib/response/get-work-request-response.d.ts +1 -1
- package/lib/response/list-endpoints-response.d.ts +1 -1
- package/lib/response/list-evaluation-results-response.d.ts +1 -1
- package/lib/response/list-models-response.d.ts +1 -1
- package/lib/response/list-projects-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.js
CHANGED
|
@@ -48,6 +48,7 @@ const common = require("oci-common");
|
|
|
48
48
|
const model = __importStar(require("./model"));
|
|
49
49
|
const aiservicelanguage_waiter_1 = require("./aiservicelanguage-waiter");
|
|
50
50
|
const oci_common_1 = require("oci-common");
|
|
51
|
+
const Breaker = require("opossum");
|
|
51
52
|
// ===============================================
|
|
52
53
|
// This file is autogenerated - Please do not edit
|
|
53
54
|
// ===============================================
|
|
@@ -184,6 +185,14 @@ class AIServiceLanguageClient {
|
|
|
184
185
|
}
|
|
185
186
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
186
187
|
}
|
|
188
|
+
/**
|
|
189
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
190
|
+
*/
|
|
191
|
+
shutdownCircuitBreaker() {
|
|
192
|
+
if (this._circuitBreaker) {
|
|
193
|
+
this._circuitBreaker.shutdown();
|
|
194
|
+
}
|
|
195
|
+
}
|
|
187
196
|
/**
|
|
188
197
|
* The API returns the detected language and a related confidence score (between 0 and 1). It supports passing a batch of records.
|
|
189
198
|
* <p>
|
|
@@ -198,7 +207,7 @@ class AIServiceLanguageClient {
|
|
|
198
207
|
* @param BatchDetectDominantLanguageRequest
|
|
199
208
|
* @return BatchDetectDominantLanguageResponse
|
|
200
209
|
* @throws OciError when an error occurs
|
|
201
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchDetectDominantLanguage.ts.html |here} to see how to use BatchDetectDominantLanguage API.
|
|
202
211
|
*/
|
|
203
212
|
batchDetectDominantLanguage(batchDetectDominantLanguageRequest) {
|
|
204
213
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -263,7 +272,7 @@ class AIServiceLanguageClient {
|
|
|
263
272
|
* @param BatchDetectLanguageEntitiesRequest
|
|
264
273
|
* @return BatchDetectLanguageEntitiesResponse
|
|
265
274
|
* @throws OciError when an error occurs
|
|
266
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
275
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchDetectLanguageEntities.ts.html |here} to see how to use BatchDetectLanguageEntities API.
|
|
267
276
|
*/
|
|
268
277
|
batchDetectLanguageEntities(batchDetectLanguageEntitiesRequest) {
|
|
269
278
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -326,7 +335,7 @@ class AIServiceLanguageClient {
|
|
|
326
335
|
* @param BatchDetectLanguageKeyPhrasesRequest
|
|
327
336
|
* @return BatchDetectLanguageKeyPhrasesResponse
|
|
328
337
|
* @throws OciError when an error occurs
|
|
329
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
338
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchDetectLanguageKeyPhrases.ts.html |here} to see how to use BatchDetectLanguageKeyPhrases API.
|
|
330
339
|
*/
|
|
331
340
|
batchDetectLanguageKeyPhrases(batchDetectLanguageKeyPhrasesRequest) {
|
|
332
341
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -389,7 +398,7 @@ class AIServiceLanguageClient {
|
|
|
389
398
|
* @param BatchDetectLanguagePiiEntitiesRequest
|
|
390
399
|
* @return BatchDetectLanguagePiiEntitiesResponse
|
|
391
400
|
* @throws OciError when an error occurs
|
|
392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
401
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchDetectLanguagePiiEntities.ts.html |here} to see how to use BatchDetectLanguagePiiEntities API.
|
|
393
402
|
*/
|
|
394
403
|
batchDetectLanguagePiiEntities(batchDetectLanguagePiiEntitiesRequest) {
|
|
395
404
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -458,7 +467,7 @@ class AIServiceLanguageClient {
|
|
|
458
467
|
* @param BatchDetectLanguageSentimentsRequest
|
|
459
468
|
* @return BatchDetectLanguageSentimentsResponse
|
|
460
469
|
* @throws OciError when an error occurs
|
|
461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
470
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchDetectLanguageSentiments.ts.html |here} to see how to use BatchDetectLanguageSentiments API.
|
|
462
471
|
*/
|
|
463
472
|
batchDetectLanguageSentiments(batchDetectLanguageSentimentsRequest) {
|
|
464
473
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -527,7 +536,7 @@ class AIServiceLanguageClient {
|
|
|
527
536
|
* @param BatchDetectLanguageTextClassificationRequest
|
|
528
537
|
* @return BatchDetectLanguageTextClassificationResponse
|
|
529
538
|
* @throws OciError when an error occurs
|
|
530
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
539
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchDetectLanguageTextClassification.ts.html |here} to see how to use BatchDetectLanguageTextClassification API.
|
|
531
540
|
*/
|
|
532
541
|
batchDetectLanguageTextClassification(batchDetectLanguageTextClassificationRequest) {
|
|
533
542
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -590,7 +599,7 @@ class AIServiceLanguageClient {
|
|
|
590
599
|
* @param BatchLanguageTranslationRequest
|
|
591
600
|
* @return BatchLanguageTranslationResponse
|
|
592
601
|
* @throws OciError when an error occurs
|
|
593
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
602
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/BatchLanguageTranslation.ts.html |here} to see how to use BatchLanguageTranslation API.
|
|
594
603
|
*/
|
|
595
604
|
batchLanguageTranslation(batchLanguageTranslationRequest) {
|
|
596
605
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -647,7 +656,7 @@ class AIServiceLanguageClient {
|
|
|
647
656
|
* @param ChangeEndpointCompartmentRequest
|
|
648
657
|
* @return ChangeEndpointCompartmentResponse
|
|
649
658
|
* @throws OciError when an error occurs
|
|
650
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
659
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ChangeEndpointCompartment.ts.html |here} to see how to use ChangeEndpointCompartment API.
|
|
651
660
|
*/
|
|
652
661
|
changeEndpointCompartment(changeEndpointCompartmentRequest) {
|
|
653
662
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -704,7 +713,7 @@ class AIServiceLanguageClient {
|
|
|
704
713
|
* @param ChangeModelCompartmentRequest
|
|
705
714
|
* @return ChangeModelCompartmentResponse
|
|
706
715
|
* @throws OciError when an error occurs
|
|
707
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
716
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ChangeModelCompartment.ts.html |here} to see how to use ChangeModelCompartment API.
|
|
708
717
|
*/
|
|
709
718
|
changeModelCompartment(changeModelCompartmentRequest) {
|
|
710
719
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -761,7 +770,7 @@ class AIServiceLanguageClient {
|
|
|
761
770
|
* @param ChangeProjectCompartmentRequest
|
|
762
771
|
* @return ChangeProjectCompartmentResponse
|
|
763
772
|
* @throws OciError when an error occurs
|
|
764
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
773
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ChangeProjectCompartment.ts.html |here} to see how to use ChangeProjectCompartment API.
|
|
765
774
|
*/
|
|
766
775
|
changeProjectCompartment(changeProjectCompartmentRequest) {
|
|
767
776
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -819,7 +828,7 @@ class AIServiceLanguageClient {
|
|
|
819
828
|
* @param CreateEndpointRequest
|
|
820
829
|
* @return CreateEndpointResponse
|
|
821
830
|
* @throws OciError when an error occurs
|
|
822
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
831
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/CreateEndpoint.ts.html |here} to see how to use CreateEndpoint API.
|
|
823
832
|
*/
|
|
824
833
|
createEndpoint(createEndpointRequest) {
|
|
825
834
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -893,7 +902,7 @@ class AIServiceLanguageClient {
|
|
|
893
902
|
* @param CreateModelRequest
|
|
894
903
|
* @return CreateModelResponse
|
|
895
904
|
* @throws OciError when an error occurs
|
|
896
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
905
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/CreateModel.ts.html |here} to see how to use CreateModel API.
|
|
897
906
|
*/
|
|
898
907
|
createModel(createModelRequest) {
|
|
899
908
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -967,7 +976,7 @@ class AIServiceLanguageClient {
|
|
|
967
976
|
* @param CreateProjectRequest
|
|
968
977
|
* @return CreateProjectResponse
|
|
969
978
|
* @throws OciError when an error occurs
|
|
970
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
979
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/CreateProject.ts.html |here} to see how to use CreateProject API.
|
|
971
980
|
*/
|
|
972
981
|
createProject(createProjectRequest) {
|
|
973
982
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1035,7 +1044,7 @@ class AIServiceLanguageClient {
|
|
|
1035
1044
|
* @param DeleteEndpointRequest
|
|
1036
1045
|
* @return DeleteEndpointResponse
|
|
1037
1046
|
* @throws OciError when an error occurs
|
|
1038
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1047
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DeleteEndpoint.ts.html |here} to see how to use DeleteEndpoint API.
|
|
1039
1048
|
*/
|
|
1040
1049
|
deleteEndpoint(deleteEndpointRequest) {
|
|
1041
1050
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1095,7 +1104,7 @@ class AIServiceLanguageClient {
|
|
|
1095
1104
|
* @param DeleteModelRequest
|
|
1096
1105
|
* @return DeleteModelResponse
|
|
1097
1106
|
* @throws OciError when an error occurs
|
|
1098
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DeleteModel.ts.html |here} to see how to use DeleteModel API.
|
|
1099
1108
|
*/
|
|
1100
1109
|
deleteModel(deleteModelRequest) {
|
|
1101
1110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1155,7 +1164,7 @@ class AIServiceLanguageClient {
|
|
|
1155
1164
|
* @param DeleteProjectRequest
|
|
1156
1165
|
* @return DeleteProjectResponse
|
|
1157
1166
|
* @throws OciError when an error occurs
|
|
1158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DeleteProject.ts.html |here} to see how to use DeleteProject API.
|
|
1159
1168
|
*/
|
|
1160
1169
|
deleteProject(deleteProjectRequest) {
|
|
1161
1170
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1222,7 +1231,7 @@ class AIServiceLanguageClient {
|
|
|
1222
1231
|
* @param DetectDominantLanguageRequest
|
|
1223
1232
|
* @return DetectDominantLanguageResponse
|
|
1224
1233
|
* @throws OciError when an error occurs
|
|
1225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1234
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DetectDominantLanguage.ts.html |here} to see how to use DetectDominantLanguage API.
|
|
1226
1235
|
*/
|
|
1227
1236
|
detectDominantLanguage(detectDominantLanguageRequest) {
|
|
1228
1237
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1289,7 +1298,7 @@ class AIServiceLanguageClient {
|
|
|
1289
1298
|
* @param DetectLanguageEntitiesRequest
|
|
1290
1299
|
* @return DetectLanguageEntitiesResponse
|
|
1291
1300
|
* @throws OciError when an error occurs
|
|
1292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1301
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DetectLanguageEntities.ts.html |here} to see how to use DetectLanguageEntities API.
|
|
1293
1302
|
*/
|
|
1294
1303
|
detectLanguageEntities(detectLanguageEntitiesRequest) {
|
|
1295
1304
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1359,7 +1368,7 @@ class AIServiceLanguageClient {
|
|
|
1359
1368
|
* @param DetectLanguageKeyPhrasesRequest
|
|
1360
1369
|
* @return DetectLanguageKeyPhrasesResponse
|
|
1361
1370
|
* @throws OciError when an error occurs
|
|
1362
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1371
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DetectLanguageKeyPhrases.ts.html |here} to see how to use DetectLanguageKeyPhrases API.
|
|
1363
1372
|
*/
|
|
1364
1373
|
detectLanguageKeyPhrases(detectLanguageKeyPhrasesRequest) {
|
|
1365
1374
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1432,7 +1441,7 @@ class AIServiceLanguageClient {
|
|
|
1432
1441
|
* @param DetectLanguageSentimentsRequest
|
|
1433
1442
|
* @return DetectLanguageSentimentsResponse
|
|
1434
1443
|
* @throws OciError when an error occurs
|
|
1435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DetectLanguageSentiments.ts.html |here} to see how to use DetectLanguageSentiments API.
|
|
1436
1445
|
*/
|
|
1437
1446
|
detectLanguageSentiments(detectLanguageSentimentsRequest) {
|
|
1438
1447
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1501,7 +1510,7 @@ class AIServiceLanguageClient {
|
|
|
1501
1510
|
* @param DetectLanguageTextClassificationRequest
|
|
1502
1511
|
* @return DetectLanguageTextClassificationResponse
|
|
1503
1512
|
* @throws OciError when an error occurs
|
|
1504
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1513
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/DetectLanguageTextClassification.ts.html |here} to see how to use DetectLanguageTextClassification API.
|
|
1505
1514
|
*/
|
|
1506
1515
|
detectLanguageTextClassification(detectLanguageTextClassificationRequest) {
|
|
1507
1516
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1563,7 +1572,7 @@ class AIServiceLanguageClient {
|
|
|
1563
1572
|
* @param GetEndpointRequest
|
|
1564
1573
|
* @return GetEndpointResponse
|
|
1565
1574
|
* @throws OciError when an error occurs
|
|
1566
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1575
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/GetEndpoint.ts.html |here} to see how to use GetEndpoint API.
|
|
1567
1576
|
*/
|
|
1568
1577
|
getEndpoint(getEndpointRequest) {
|
|
1569
1578
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1626,7 +1635,7 @@ class AIServiceLanguageClient {
|
|
|
1626
1635
|
* @param GetModelRequest
|
|
1627
1636
|
* @return GetModelResponse
|
|
1628
1637
|
* @throws OciError when an error occurs
|
|
1629
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1638
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/GetModel.ts.html |here} to see how to use GetModel API.
|
|
1630
1639
|
*/
|
|
1631
1640
|
getModel(getModelRequest) {
|
|
1632
1641
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1689,7 +1698,7 @@ class AIServiceLanguageClient {
|
|
|
1689
1698
|
* @param GetModelTypeRequest
|
|
1690
1699
|
* @return GetModelTypeResponse
|
|
1691
1700
|
* @throws OciError when an error occurs
|
|
1692
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1701
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/GetModelType.ts.html |here} to see how to use GetModelType API.
|
|
1693
1702
|
*/
|
|
1694
1703
|
getModelType(getModelTypeRequest) {
|
|
1695
1704
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1747,7 +1756,7 @@ class AIServiceLanguageClient {
|
|
|
1747
1756
|
* @param GetProjectRequest
|
|
1748
1757
|
* @return GetProjectResponse
|
|
1749
1758
|
* @throws OciError when an error occurs
|
|
1750
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1759
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/GetProject.ts.html |here} to see how to use GetProject API.
|
|
1751
1760
|
*/
|
|
1752
1761
|
getProject(getProjectRequest) {
|
|
1753
1762
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1810,7 +1819,7 @@ class AIServiceLanguageClient {
|
|
|
1810
1819
|
* @param GetWorkRequestRequest
|
|
1811
1820
|
* @return GetWorkRequestResponse
|
|
1812
1821
|
* @throws OciError when an error occurs
|
|
1813
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1822
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1814
1823
|
*/
|
|
1815
1824
|
getWorkRequest(getWorkRequestRequest) {
|
|
1816
1825
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1874,7 +1883,7 @@ class AIServiceLanguageClient {
|
|
|
1874
1883
|
* @param ListEndpointsRequest
|
|
1875
1884
|
* @return ListEndpointsResponse
|
|
1876
1885
|
* @throws OciError when an error occurs
|
|
1877
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1886
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListEndpoints.ts.html |here} to see how to use ListEndpoints API.
|
|
1878
1887
|
*/
|
|
1879
1888
|
listEndpoints(listEndpointsRequest) {
|
|
1880
1889
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1946,7 +1955,7 @@ class AIServiceLanguageClient {
|
|
|
1946
1955
|
* @param ListEvaluationResultsRequest
|
|
1947
1956
|
* @return ListEvaluationResultsResponse
|
|
1948
1957
|
* @throws OciError when an error occurs
|
|
1949
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1958
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListEvaluationResults.ts.html |here} to see how to use ListEvaluationResults API.
|
|
1950
1959
|
*/
|
|
1951
1960
|
listEvaluationResults(listEvaluationResultsRequest) {
|
|
1952
1961
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2013,7 +2022,7 @@ class AIServiceLanguageClient {
|
|
|
2013
2022
|
* @param ListModelsRequest
|
|
2014
2023
|
* @return ListModelsResponse
|
|
2015
2024
|
* @throws OciError when an error occurs
|
|
2016
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2025
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListModels.ts.html |here} to see how to use ListModels API.
|
|
2017
2026
|
*/
|
|
2018
2027
|
listModels(listModelsRequest) {
|
|
2019
2028
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2085,7 +2094,7 @@ class AIServiceLanguageClient {
|
|
|
2085
2094
|
* @param ListProjectsRequest
|
|
2086
2095
|
* @return ListProjectsResponse
|
|
2087
2096
|
* @throws OciError when an error occurs
|
|
2088
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2097
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListProjects.ts.html |here} to see how to use ListProjects API.
|
|
2089
2098
|
*/
|
|
2090
2099
|
listProjects(listProjectsRequest) {
|
|
2091
2100
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2156,7 +2165,7 @@ class AIServiceLanguageClient {
|
|
|
2156
2165
|
* @param ListWorkRequestErrorsRequest
|
|
2157
2166
|
* @return ListWorkRequestErrorsResponse
|
|
2158
2167
|
* @throws OciError when an error occurs
|
|
2159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2168
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
2160
2169
|
*/
|
|
2161
2170
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
2162
2171
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2225,7 +2234,7 @@ class AIServiceLanguageClient {
|
|
|
2225
2234
|
* @param ListWorkRequestLogsRequest
|
|
2226
2235
|
* @return ListWorkRequestLogsResponse
|
|
2227
2236
|
* @throws OciError when an error occurs
|
|
2228
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2237
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
2229
2238
|
*/
|
|
2230
2239
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
2231
2240
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2294,7 +2303,7 @@ class AIServiceLanguageClient {
|
|
|
2294
2303
|
* @param ListWorkRequestsRequest
|
|
2295
2304
|
* @return ListWorkRequestsResponse
|
|
2296
2305
|
* @throws OciError when an error occurs
|
|
2297
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
2298
2307
|
*/
|
|
2299
2308
|
listWorkRequests(listWorkRequestsRequest) {
|
|
2300
2309
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2363,7 +2372,7 @@ class AIServiceLanguageClient {
|
|
|
2363
2372
|
* @param UpdateEndpointRequest
|
|
2364
2373
|
* @return UpdateEndpointResponse
|
|
2365
2374
|
* @throws OciError when an error occurs
|
|
2366
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2375
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/UpdateEndpoint.ts.html |here} to see how to use UpdateEndpoint API.
|
|
2367
2376
|
*/
|
|
2368
2377
|
updateEndpoint(updateEndpointRequest) {
|
|
2369
2378
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2424,7 +2433,7 @@ class AIServiceLanguageClient {
|
|
|
2424
2433
|
* @param UpdateModelRequest
|
|
2425
2434
|
* @return UpdateModelResponse
|
|
2426
2435
|
* @throws OciError when an error occurs
|
|
2427
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2436
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/UpdateModel.ts.html |here} to see how to use UpdateModel API.
|
|
2428
2437
|
*/
|
|
2429
2438
|
updateModel(updateModelRequest) {
|
|
2430
2439
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2485,7 +2494,7 @@ class AIServiceLanguageClient {
|
|
|
2485
2494
|
* @param UpdateProjectRequest
|
|
2486
2495
|
* @return UpdateProjectResponse
|
|
2487
2496
|
* @throws OciError when an error occurs
|
|
2488
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2497
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/ailanguage/UpdateProject.ts.html |here} to see how to use UpdateProject API.
|
|
2489
2498
|
*/
|
|
2490
2499
|
updateProject(updateProjectRequest) {
|
|
2491
2500
|
return __awaiter(this, void 0, void 0, function* () {
|