oci-apigateway 2.74.0 → 2.76.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 +50 -50
- package/lib/client.js +74 -50
- package/lib/client.js.map +1 -1
- package/lib/request/cancel-work-request-request.d.ts +1 -1
- package/lib/request/change-api-compartment-request.d.ts +1 -1
- package/lib/request/change-certificate-compartment-request.d.ts +1 -1
- package/lib/request/change-deployment-compartment-request.d.ts +1 -1
- package/lib/request/change-gateway-compartment-request.d.ts +1 -1
- package/lib/request/change-subscriber-compartment-request.d.ts +1 -1
- package/lib/request/change-usage-plan-compartment-request.d.ts +1 -1
- package/lib/request/create-api-request.d.ts +1 -1
- package/lib/request/create-certificate-request.d.ts +1 -1
- package/lib/request/create-deployment-request.d.ts +1 -1
- package/lib/request/create-gateway-request.d.ts +1 -1
- package/lib/request/create-sdk-request.d.ts +1 -1
- package/lib/request/create-subscriber-request.d.ts +1 -1
- package/lib/request/create-usage-plan-request.d.ts +1 -1
- package/lib/request/delete-api-request.d.ts +1 -1
- package/lib/request/delete-certificate-request.d.ts +1 -1
- package/lib/request/delete-deployment-request.d.ts +1 -1
- package/lib/request/delete-gateway-request.d.ts +1 -1
- package/lib/request/delete-sdk-request.d.ts +1 -1
- package/lib/request/delete-subscriber-request.d.ts +1 -1
- package/lib/request/delete-usage-plan-request.d.ts +1 -1
- package/lib/request/get-api-content-request.d.ts +1 -1
- package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
- package/lib/request/get-api-request.d.ts +1 -1
- package/lib/request/get-api-validations-request.d.ts +1 -1
- package/lib/request/get-certificate-request.d.ts +1 -1
- package/lib/request/get-deployment-request.d.ts +1 -1
- package/lib/request/get-gateway-request.d.ts +1 -1
- package/lib/request/get-sdk-request.d.ts +1 -1
- package/lib/request/get-subscriber-request.d.ts +1 -1
- package/lib/request/get-usage-plan-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-apis-request.d.ts +1 -1
- package/lib/request/list-certificates-request.d.ts +1 -1
- package/lib/request/list-deployments-request.d.ts +1 -1
- package/lib/request/list-gateways-request.d.ts +1 -1
- package/lib/request/list-sdk-language-types-request.d.ts +1 -1
- package/lib/request/list-sdks-request.d.ts +1 -1
- package/lib/request/list-subscribers-request.d.ts +1 -1
- package/lib/request/list-usage-plans-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-api-request.d.ts +1 -1
- package/lib/request/update-certificate-request.d.ts +1 -1
- package/lib/request/update-deployment-request.d.ts +1 -1
- package/lib/request/update-gateway-request.d.ts +1 -1
- package/lib/request/update-sdk-request.d.ts +1 -1
- package/lib/request/update-subscriber-request.d.ts +1 -1
- package/lib/request/update-usage-plan-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -88,6 +88,10 @@ class ApiGatewayClient {
|
|
|
88
88
|
? clientConfiguration.bodyDuplexMode
|
|
89
89
|
: undefined;
|
|
90
90
|
}
|
|
91
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("apigateway")) {
|
|
92
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
93
|
+
throw errmsg.concat("apigateway");
|
|
94
|
+
}
|
|
91
95
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
92
96
|
const specCircuitBreakerEnabled = true;
|
|
93
97
|
if (!this._circuitBreaker &&
|
|
@@ -191,7 +195,7 @@ class ApiGatewayClient {
|
|
|
191
195
|
* @param ChangeApiCompartmentRequest
|
|
192
196
|
* @return ChangeApiCompartmentResponse
|
|
193
197
|
* @throws OciError when an error occurs
|
|
194
|
-
* @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.76.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
|
|
195
199
|
*/
|
|
196
200
|
changeApiCompartment(changeApiCompartmentRequest) {
|
|
197
201
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -253,7 +257,7 @@ class ApiGatewayClient {
|
|
|
253
257
|
* @param ChangeCertificateCompartmentRequest
|
|
254
258
|
* @return ChangeCertificateCompartmentResponse
|
|
255
259
|
* @throws OciError when an error occurs
|
|
256
|
-
* @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.76.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
|
|
257
261
|
*/
|
|
258
262
|
changeCertificateCompartment(changeCertificateCompartmentRequest) {
|
|
259
263
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -311,7 +315,7 @@ class ApiGatewayClient {
|
|
|
311
315
|
* @param CreateApiRequest
|
|
312
316
|
* @return CreateApiResponse
|
|
313
317
|
* @throws OciError when an error occurs
|
|
314
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
318
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
|
|
315
319
|
*/
|
|
316
320
|
createApi(createApiRequest) {
|
|
317
321
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -385,7 +389,7 @@ class ApiGatewayClient {
|
|
|
385
389
|
* @param CreateCertificateRequest
|
|
386
390
|
* @return CreateCertificateResponse
|
|
387
391
|
* @throws OciError when an error occurs
|
|
388
|
-
* @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.76.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
|
|
389
393
|
*/
|
|
390
394
|
createCertificate(createCertificateRequest) {
|
|
391
395
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -458,7 +462,7 @@ class ApiGatewayClient {
|
|
|
458
462
|
* @param CreateSdkRequest
|
|
459
463
|
* @return CreateSdkResponse
|
|
460
464
|
* @throws OciError when an error occurs
|
|
461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
465
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
|
|
462
466
|
*/
|
|
463
467
|
createSdk(createSdkRequest) {
|
|
464
468
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -531,7 +535,7 @@ class ApiGatewayClient {
|
|
|
531
535
|
* @param DeleteApiRequest
|
|
532
536
|
* @return DeleteApiResponse
|
|
533
537
|
* @throws OciError when an error occurs
|
|
534
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
538
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
|
|
535
539
|
*/
|
|
536
540
|
deleteApi(deleteApiRequest) {
|
|
537
541
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -591,7 +595,7 @@ class ApiGatewayClient {
|
|
|
591
595
|
* @param DeleteCertificateRequest
|
|
592
596
|
* @return DeleteCertificateResponse
|
|
593
597
|
* @throws OciError when an error occurs
|
|
594
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
598
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
|
|
595
599
|
*/
|
|
596
600
|
deleteCertificate(deleteCertificateRequest) {
|
|
597
601
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -651,7 +655,7 @@ class ApiGatewayClient {
|
|
|
651
655
|
* @param DeleteSdkRequest
|
|
652
656
|
* @return DeleteSdkResponse
|
|
653
657
|
* @throws OciError when an error occurs
|
|
654
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
658
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
|
|
655
659
|
*/
|
|
656
660
|
deleteSdk(deleteSdkRequest) {
|
|
657
661
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -711,7 +715,7 @@ class ApiGatewayClient {
|
|
|
711
715
|
* @param GetApiRequest
|
|
712
716
|
* @return GetApiResponse
|
|
713
717
|
* @throws OciError when an error occurs
|
|
714
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
718
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
|
|
715
719
|
*/
|
|
716
720
|
getApi(getApiRequest) {
|
|
717
721
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -774,7 +778,7 @@ class ApiGatewayClient {
|
|
|
774
778
|
* @param GetApiContentRequest
|
|
775
779
|
* @return GetApiContentResponse
|
|
776
780
|
* @throws OciError when an error occurs
|
|
777
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
781
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
|
|
778
782
|
*/
|
|
779
783
|
getApiContent(getApiContentRequest) {
|
|
780
784
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -843,7 +847,7 @@ class ApiGatewayClient {
|
|
|
843
847
|
* @param GetApiDeploymentSpecificationRequest
|
|
844
848
|
* @return GetApiDeploymentSpecificationResponse
|
|
845
849
|
* @throws OciError when an error occurs
|
|
846
|
-
* @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.76.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
|
|
847
851
|
*/
|
|
848
852
|
getApiDeploymentSpecification(getApiDeploymentSpecificationRequest) {
|
|
849
853
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -907,7 +911,7 @@ class ApiGatewayClient {
|
|
|
907
911
|
* @param GetApiValidationsRequest
|
|
908
912
|
* @return GetApiValidationsResponse
|
|
909
913
|
* @throws OciError when an error occurs
|
|
910
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
914
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
|
|
911
915
|
*/
|
|
912
916
|
getApiValidations(getApiValidationsRequest) {
|
|
913
917
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -971,7 +975,7 @@ class ApiGatewayClient {
|
|
|
971
975
|
* @param GetCertificateRequest
|
|
972
976
|
* @return GetCertificateResponse
|
|
973
977
|
* @throws OciError when an error occurs
|
|
974
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
|
|
975
979
|
*/
|
|
976
980
|
getCertificate(getCertificateRequest) {
|
|
977
981
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1034,7 +1038,7 @@ class ApiGatewayClient {
|
|
|
1034
1038
|
* @param GetSdkRequest
|
|
1035
1039
|
* @return GetSdkResponse
|
|
1036
1040
|
* @throws OciError when an error occurs
|
|
1037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1041
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
|
|
1038
1042
|
*/
|
|
1039
1043
|
getSdk(getSdkRequest) {
|
|
1040
1044
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1098,7 +1102,7 @@ class ApiGatewayClient {
|
|
|
1098
1102
|
* @param ListApisRequest
|
|
1099
1103
|
* @return ListApisResponse
|
|
1100
1104
|
* @throws OciError when an error occurs
|
|
1101
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
|
|
1102
1106
|
*/
|
|
1103
1107
|
listApis(listApisRequest) {
|
|
1104
1108
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1173,7 +1177,7 @@ class ApiGatewayClient {
|
|
|
1173
1177
|
* @param ListCertificatesRequest
|
|
1174
1178
|
* @return ListCertificatesResponse
|
|
1175
1179
|
* @throws OciError when an error occurs
|
|
1176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1180
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
|
|
1177
1181
|
*/
|
|
1178
1182
|
listCertificates(listCertificatesRequest) {
|
|
1179
1183
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1247,7 +1251,7 @@ class ApiGatewayClient {
|
|
|
1247
1251
|
* @param ListSdkLanguageTypesRequest
|
|
1248
1252
|
* @return ListSdkLanguageTypesResponse
|
|
1249
1253
|
* @throws OciError when an error occurs
|
|
1250
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1254
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
|
|
1251
1255
|
*/
|
|
1252
1256
|
listSdkLanguageTypes(listSdkLanguageTypesRequest) {
|
|
1253
1257
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1320,7 +1324,7 @@ class ApiGatewayClient {
|
|
|
1320
1324
|
* @param ListSdksRequest
|
|
1321
1325
|
* @return ListSdksResponse
|
|
1322
1326
|
* @throws OciError when an error occurs
|
|
1323
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1327
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
|
|
1324
1328
|
*/
|
|
1325
1329
|
listSdks(listSdksRequest) {
|
|
1326
1330
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1395,7 +1399,7 @@ class ApiGatewayClient {
|
|
|
1395
1399
|
* @param UpdateApiRequest
|
|
1396
1400
|
* @return UpdateApiResponse
|
|
1397
1401
|
* @throws OciError when an error occurs
|
|
1398
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1402
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
|
|
1399
1403
|
*/
|
|
1400
1404
|
updateApi(updateApiRequest) {
|
|
1401
1405
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1456,7 +1460,7 @@ class ApiGatewayClient {
|
|
|
1456
1460
|
* @param UpdateCertificateRequest
|
|
1457
1461
|
* @return UpdateCertificateResponse
|
|
1458
1462
|
* @throws OciError when an error occurs
|
|
1459
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1463
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
|
|
1460
1464
|
*/
|
|
1461
1465
|
updateCertificate(updateCertificateRequest) {
|
|
1462
1466
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1517,7 +1521,7 @@ class ApiGatewayClient {
|
|
|
1517
1521
|
* @param UpdateSdkRequest
|
|
1518
1522
|
* @return UpdateSdkResponse
|
|
1519
1523
|
* @throws OciError when an error occurs
|
|
1520
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
|
|
1521
1525
|
*/
|
|
1522
1526
|
updateSdk(updateSdkRequest) {
|
|
1523
1527
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1603,6 +1607,10 @@ class DeploymentClient {
|
|
|
1603
1607
|
? clientConfiguration.bodyDuplexMode
|
|
1604
1608
|
: undefined;
|
|
1605
1609
|
}
|
|
1610
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("apigateway")) {
|
|
1611
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
1612
|
+
throw errmsg.concat("apigateway");
|
|
1613
|
+
}
|
|
1606
1614
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
1607
1615
|
const specCircuitBreakerEnabled = true;
|
|
1608
1616
|
if (!this._circuitBreaker &&
|
|
@@ -1706,7 +1714,7 @@ class DeploymentClient {
|
|
|
1706
1714
|
* @param ChangeDeploymentCompartmentRequest
|
|
1707
1715
|
* @return ChangeDeploymentCompartmentResponse
|
|
1708
1716
|
* @throws OciError when an error occurs
|
|
1709
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1717
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
|
|
1710
1718
|
*/
|
|
1711
1719
|
changeDeploymentCompartment(changeDeploymentCompartmentRequest) {
|
|
1712
1720
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1769,7 +1777,7 @@ class DeploymentClient {
|
|
|
1769
1777
|
* @param CreateDeploymentRequest
|
|
1770
1778
|
* @return CreateDeploymentResponse
|
|
1771
1779
|
* @throws OciError when an error occurs
|
|
1772
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1780
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
|
|
1773
1781
|
*/
|
|
1774
1782
|
createDeployment(createDeploymentRequest) {
|
|
1775
1783
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1842,7 +1850,7 @@ class DeploymentClient {
|
|
|
1842
1850
|
* @param DeleteDeploymentRequest
|
|
1843
1851
|
* @return DeleteDeploymentResponse
|
|
1844
1852
|
* @throws OciError when an error occurs
|
|
1845
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1853
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
|
|
1846
1854
|
*/
|
|
1847
1855
|
deleteDeployment(deleteDeploymentRequest) {
|
|
1848
1856
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1902,7 +1910,7 @@ class DeploymentClient {
|
|
|
1902
1910
|
* @param GetDeploymentRequest
|
|
1903
1911
|
* @return GetDeploymentResponse
|
|
1904
1912
|
* @throws OciError when an error occurs
|
|
1905
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1913
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
|
|
1906
1914
|
*/
|
|
1907
1915
|
getDeployment(getDeploymentRequest) {
|
|
1908
1916
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1966,7 +1974,7 @@ class DeploymentClient {
|
|
|
1966
1974
|
* @param ListDeploymentsRequest
|
|
1967
1975
|
* @return ListDeploymentsResponse
|
|
1968
1976
|
* @throws OciError when an error occurs
|
|
1969
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1977
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
|
|
1970
1978
|
*/
|
|
1971
1979
|
listDeployments(listDeploymentsRequest) {
|
|
1972
1980
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2041,7 +2049,7 @@ class DeploymentClient {
|
|
|
2041
2049
|
* @param UpdateDeploymentRequest
|
|
2042
2050
|
* @return UpdateDeploymentResponse
|
|
2043
2051
|
* @throws OciError when an error occurs
|
|
2044
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2052
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
|
|
2045
2053
|
*/
|
|
2046
2054
|
updateDeployment(updateDeploymentRequest) {
|
|
2047
2055
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2132,6 +2140,10 @@ class GatewayClient {
|
|
|
2132
2140
|
? clientConfiguration.bodyDuplexMode
|
|
2133
2141
|
: undefined;
|
|
2134
2142
|
}
|
|
2143
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("apigateway")) {
|
|
2144
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
2145
|
+
throw errmsg.concat("apigateway");
|
|
2146
|
+
}
|
|
2135
2147
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2136
2148
|
const specCircuitBreakerEnabled = true;
|
|
2137
2149
|
if (!this._circuitBreaker &&
|
|
@@ -2235,7 +2247,7 @@ class GatewayClient {
|
|
|
2235
2247
|
* @param ChangeGatewayCompartmentRequest
|
|
2236
2248
|
* @return ChangeGatewayCompartmentResponse
|
|
2237
2249
|
* @throws OciError when an error occurs
|
|
2238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
|
|
2239
2251
|
*/
|
|
2240
2252
|
changeGatewayCompartment(changeGatewayCompartmentRequest) {
|
|
2241
2253
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2298,7 +2310,7 @@ class GatewayClient {
|
|
|
2298
2310
|
* @param CreateGatewayRequest
|
|
2299
2311
|
* @return CreateGatewayResponse
|
|
2300
2312
|
* @throws OciError when an error occurs
|
|
2301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
|
|
2302
2314
|
*/
|
|
2303
2315
|
createGateway(createGatewayRequest) {
|
|
2304
2316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2371,7 +2383,7 @@ class GatewayClient {
|
|
|
2371
2383
|
* @param DeleteGatewayRequest
|
|
2372
2384
|
* @return DeleteGatewayResponse
|
|
2373
2385
|
* @throws OciError when an error occurs
|
|
2374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2386
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
|
|
2375
2387
|
*/
|
|
2376
2388
|
deleteGateway(deleteGatewayRequest) {
|
|
2377
2389
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2431,7 +2443,7 @@ class GatewayClient {
|
|
|
2431
2443
|
* @param GetGatewayRequest
|
|
2432
2444
|
* @return GetGatewayResponse
|
|
2433
2445
|
* @throws OciError when an error occurs
|
|
2434
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2446
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
|
|
2435
2447
|
*/
|
|
2436
2448
|
getGateway(getGatewayRequest) {
|
|
2437
2449
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2495,7 +2507,7 @@ class GatewayClient {
|
|
|
2495
2507
|
* @param ListGatewaysRequest
|
|
2496
2508
|
* @return ListGatewaysResponse
|
|
2497
2509
|
* @throws OciError when an error occurs
|
|
2498
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2510
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
|
|
2499
2511
|
*/
|
|
2500
2512
|
listGateways(listGatewaysRequest) {
|
|
2501
2513
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2570,7 +2582,7 @@ class GatewayClient {
|
|
|
2570
2582
|
* @param UpdateGatewayRequest
|
|
2571
2583
|
* @return UpdateGatewayResponse
|
|
2572
2584
|
* @throws OciError when an error occurs
|
|
2573
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2585
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
|
|
2574
2586
|
*/
|
|
2575
2587
|
updateGateway(updateGatewayRequest) {
|
|
2576
2588
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2661,6 +2673,10 @@ class SubscribersClient {
|
|
|
2661
2673
|
? clientConfiguration.bodyDuplexMode
|
|
2662
2674
|
: undefined;
|
|
2663
2675
|
}
|
|
2676
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("apigateway")) {
|
|
2677
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
2678
|
+
throw errmsg.concat("apigateway");
|
|
2679
|
+
}
|
|
2664
2680
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
2665
2681
|
const specCircuitBreakerEnabled = true;
|
|
2666
2682
|
if (!this._circuitBreaker &&
|
|
@@ -2764,7 +2780,7 @@ class SubscribersClient {
|
|
|
2764
2780
|
* @param ChangeSubscriberCompartmentRequest
|
|
2765
2781
|
* @return ChangeSubscriberCompartmentResponse
|
|
2766
2782
|
* @throws OciError when an error occurs
|
|
2767
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2783
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ChangeSubscriberCompartment.ts.html |here} to see how to use ChangeSubscriberCompartment API.
|
|
2768
2784
|
*/
|
|
2769
2785
|
changeSubscriberCompartment(changeSubscriberCompartmentRequest) {
|
|
2770
2786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2826,7 +2842,7 @@ class SubscribersClient {
|
|
|
2826
2842
|
* @param CreateSubscriberRequest
|
|
2827
2843
|
* @return CreateSubscriberResponse
|
|
2828
2844
|
* @throws OciError when an error occurs
|
|
2829
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2845
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CreateSubscriber.ts.html |here} to see how to use CreateSubscriber API.
|
|
2830
2846
|
*/
|
|
2831
2847
|
createSubscriber(createSubscriberRequest) {
|
|
2832
2848
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2899,7 +2915,7 @@ class SubscribersClient {
|
|
|
2899
2915
|
* @param DeleteSubscriberRequest
|
|
2900
2916
|
* @return DeleteSubscriberResponse
|
|
2901
2917
|
* @throws OciError when an error occurs
|
|
2902
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteSubscriber.ts.html |here} to see how to use DeleteSubscriber API.
|
|
2903
2919
|
*/
|
|
2904
2920
|
deleteSubscriber(deleteSubscriberRequest) {
|
|
2905
2921
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2959,7 +2975,7 @@ class SubscribersClient {
|
|
|
2959
2975
|
* @param GetSubscriberRequest
|
|
2960
2976
|
* @return GetSubscriberResponse
|
|
2961
2977
|
* @throws OciError when an error occurs
|
|
2962
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2978
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetSubscriber.ts.html |here} to see how to use GetSubscriber API.
|
|
2963
2979
|
*/
|
|
2964
2980
|
getSubscriber(getSubscriberRequest) {
|
|
2965
2981
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3022,7 +3038,7 @@ class SubscribersClient {
|
|
|
3022
3038
|
* @param ListSubscribersRequest
|
|
3023
3039
|
* @return ListSubscribersResponse
|
|
3024
3040
|
* @throws OciError when an error occurs
|
|
3025
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3041
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListSubscribers.ts.html |here} to see how to use ListSubscribers API.
|
|
3026
3042
|
*/
|
|
3027
3043
|
listSubscribers(listSubscribersRequest) {
|
|
3028
3044
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3096,7 +3112,7 @@ class SubscribersClient {
|
|
|
3096
3112
|
* @param UpdateSubscriberRequest
|
|
3097
3113
|
* @return UpdateSubscriberResponse
|
|
3098
3114
|
* @throws OciError when an error occurs
|
|
3099
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3115
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateSubscriber.ts.html |here} to see how to use UpdateSubscriber API.
|
|
3100
3116
|
*/
|
|
3101
3117
|
updateSubscriber(updateSubscriberRequest) {
|
|
3102
3118
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3187,6 +3203,10 @@ class UsagePlansClient {
|
|
|
3187
3203
|
? clientConfiguration.bodyDuplexMode
|
|
3188
3204
|
: undefined;
|
|
3189
3205
|
}
|
|
3206
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("apigateway")) {
|
|
3207
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
3208
|
+
throw errmsg.concat("apigateway");
|
|
3209
|
+
}
|
|
3190
3210
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
3191
3211
|
const specCircuitBreakerEnabled = true;
|
|
3192
3212
|
if (!this._circuitBreaker &&
|
|
@@ -3290,7 +3310,7 @@ class UsagePlansClient {
|
|
|
3290
3310
|
* @param ChangeUsagePlanCompartmentRequest
|
|
3291
3311
|
* @return ChangeUsagePlanCompartmentResponse
|
|
3292
3312
|
* @throws OciError when an error occurs
|
|
3293
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3313
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ChangeUsagePlanCompartment.ts.html |here} to see how to use ChangeUsagePlanCompartment API.
|
|
3294
3314
|
*/
|
|
3295
3315
|
changeUsagePlanCompartment(changeUsagePlanCompartmentRequest) {
|
|
3296
3316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3352,7 +3372,7 @@ class UsagePlansClient {
|
|
|
3352
3372
|
* @param CreateUsagePlanRequest
|
|
3353
3373
|
* @return CreateUsagePlanResponse
|
|
3354
3374
|
* @throws OciError when an error occurs
|
|
3355
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3375
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CreateUsagePlan.ts.html |here} to see how to use CreateUsagePlan API.
|
|
3356
3376
|
*/
|
|
3357
3377
|
createUsagePlan(createUsagePlanRequest) {
|
|
3358
3378
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3425,7 +3445,7 @@ class UsagePlansClient {
|
|
|
3425
3445
|
* @param DeleteUsagePlanRequest
|
|
3426
3446
|
* @return DeleteUsagePlanResponse
|
|
3427
3447
|
* @throws OciError when an error occurs
|
|
3428
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/DeleteUsagePlan.ts.html |here} to see how to use DeleteUsagePlan API.
|
|
3429
3449
|
*/
|
|
3430
3450
|
deleteUsagePlan(deleteUsagePlanRequest) {
|
|
3431
3451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3485,7 +3505,7 @@ class UsagePlansClient {
|
|
|
3485
3505
|
* @param GetUsagePlanRequest
|
|
3486
3506
|
* @return GetUsagePlanResponse
|
|
3487
3507
|
* @throws OciError when an error occurs
|
|
3488
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3508
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetUsagePlan.ts.html |here} to see how to use GetUsagePlan API.
|
|
3489
3509
|
*/
|
|
3490
3510
|
getUsagePlan(getUsagePlanRequest) {
|
|
3491
3511
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3548,7 +3568,7 @@ class UsagePlansClient {
|
|
|
3548
3568
|
* @param ListUsagePlansRequest
|
|
3549
3569
|
* @return ListUsagePlansResponse
|
|
3550
3570
|
* @throws OciError when an error occurs
|
|
3551
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3571
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListUsagePlans.ts.html |here} to see how to use ListUsagePlans API.
|
|
3552
3572
|
*/
|
|
3553
3573
|
listUsagePlans(listUsagePlansRequest) {
|
|
3554
3574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3622,7 +3642,7 @@ class UsagePlansClient {
|
|
|
3622
3642
|
* @param UpdateUsagePlanRequest
|
|
3623
3643
|
* @return UpdateUsagePlanResponse
|
|
3624
3644
|
* @throws OciError when an error occurs
|
|
3625
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3645
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/UpdateUsagePlan.ts.html |here} to see how to use UpdateUsagePlan API.
|
|
3626
3646
|
*/
|
|
3627
3647
|
updateUsagePlan(updateUsagePlanRequest) {
|
|
3628
3648
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3713,6 +3733,10 @@ class WorkRequestsClient {
|
|
|
3713
3733
|
? clientConfiguration.bodyDuplexMode
|
|
3714
3734
|
: undefined;
|
|
3715
3735
|
}
|
|
3736
|
+
if (!oci_common_1.developerToolConfiguration.isServiceEnabled("apigateway")) {
|
|
3737
|
+
let errmsg = "The developerToolConfiguration configuration disabled this service, this behavior is controlled by developerToolConfiguration.ociEnabledServiceSet variable. Please check if your local developer_tool_configuration file has configured the service you're targeting or contact the cloud provider on the availability of this service : ";
|
|
3738
|
+
throw errmsg.concat("apigateway");
|
|
3739
|
+
}
|
|
3716
3740
|
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
3717
3741
|
const specCircuitBreakerEnabled = true;
|
|
3718
3742
|
if (!this._circuitBreaker &&
|
|
@@ -3816,7 +3840,7 @@ class WorkRequestsClient {
|
|
|
3816
3840
|
* @param CancelWorkRequestRequest
|
|
3817
3841
|
* @return CancelWorkRequestResponse
|
|
3818
3842
|
* @throws OciError when an error occurs
|
|
3819
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3843
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
|
|
3820
3844
|
*/
|
|
3821
3845
|
cancelWorkRequest(cancelWorkRequestRequest) {
|
|
3822
3846
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3872,7 +3896,7 @@ class WorkRequestsClient {
|
|
|
3872
3896
|
* @param GetWorkRequestRequest
|
|
3873
3897
|
* @return GetWorkRequestResponse
|
|
3874
3898
|
* @throws OciError when an error occurs
|
|
3875
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3899
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
3876
3900
|
*/
|
|
3877
3901
|
getWorkRequest(getWorkRequestRequest) {
|
|
3878
3902
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3941,7 +3965,7 @@ class WorkRequestsClient {
|
|
|
3941
3965
|
* @param ListWorkRequestErrorsRequest
|
|
3942
3966
|
* @return ListWorkRequestErrorsResponse
|
|
3943
3967
|
* @throws OciError when an error occurs
|
|
3944
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3968
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
3945
3969
|
*/
|
|
3946
3970
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
3947
3971
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4015,7 +4039,7 @@ class WorkRequestsClient {
|
|
|
4015
4039
|
* @param ListWorkRequestLogsRequest
|
|
4016
4040
|
* @return ListWorkRequestLogsResponse
|
|
4017
4041
|
* @throws OciError when an error occurs
|
|
4018
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4042
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
4019
4043
|
*/
|
|
4020
4044
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
4021
4045
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4089,7 +4113,7 @@ class WorkRequestsClient {
|
|
|
4089
4113
|
* @param ListWorkRequestsRequest
|
|
4090
4114
|
* @return ListWorkRequestsResponse
|
|
4091
4115
|
* @throws OciError when an error occurs
|
|
4092
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4116
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.76.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
4093
4117
|
*/
|
|
4094
4118
|
listWorkRequests(listWorkRequestsRequest) {
|
|
4095
4119
|
return __awaiter(this, void 0, void 0, function* () {
|