oci-apigateway 2.2.2 → 2.5.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.
Files changed (50) hide show
  1. package/lib/client.d.ts +38 -38
  2. package/lib/client.js +40 -39
  3. package/lib/client.js.map +1 -1
  4. package/lib/model/create-gateway-details.d.ts +5 -0
  5. package/lib/model/create-gateway-details.js.map +1 -1
  6. package/lib/model/gateway-summary.d.ts +5 -0
  7. package/lib/model/gateway-summary.js.map +1 -1
  8. package/lib/model/gateway.d.ts +5 -0
  9. package/lib/model/gateway.js.map +1 -1
  10. package/lib/model/update-gateway-details.d.ts +5 -0
  11. package/lib/model/update-gateway-details.js.map +1 -1
  12. package/lib/request/cancel-work-request-request.d.ts +1 -1
  13. package/lib/request/change-api-compartment-request.d.ts +1 -1
  14. package/lib/request/change-certificate-compartment-request.d.ts +1 -1
  15. package/lib/request/change-deployment-compartment-request.d.ts +1 -1
  16. package/lib/request/change-gateway-compartment-request.d.ts +1 -1
  17. package/lib/request/create-api-request.d.ts +1 -1
  18. package/lib/request/create-certificate-request.d.ts +1 -1
  19. package/lib/request/create-deployment-request.d.ts +1 -1
  20. package/lib/request/create-gateway-request.d.ts +1 -1
  21. package/lib/request/create-sdk-request.d.ts +1 -1
  22. package/lib/request/delete-api-request.d.ts +1 -1
  23. package/lib/request/delete-certificate-request.d.ts +1 -1
  24. package/lib/request/delete-deployment-request.d.ts +1 -1
  25. package/lib/request/delete-gateway-request.d.ts +1 -1
  26. package/lib/request/delete-sdk-request.d.ts +1 -1
  27. package/lib/request/get-api-content-request.d.ts +8 -1
  28. package/lib/request/get-api-deployment-specification-request.d.ts +1 -1
  29. package/lib/request/get-api-request.d.ts +1 -1
  30. package/lib/request/get-api-validations-request.d.ts +1 -1
  31. package/lib/request/get-certificate-request.d.ts +1 -1
  32. package/lib/request/get-deployment-request.d.ts +1 -1
  33. package/lib/request/get-gateway-request.d.ts +1 -1
  34. package/lib/request/get-sdk-request.d.ts +1 -1
  35. package/lib/request/get-work-request-request.d.ts +1 -1
  36. package/lib/request/list-apis-request.d.ts +1 -1
  37. package/lib/request/list-certificates-request.d.ts +1 -1
  38. package/lib/request/list-deployments-request.d.ts +1 -1
  39. package/lib/request/list-gateways-request.d.ts +1 -1
  40. package/lib/request/list-sdk-language-types-request.d.ts +1 -1
  41. package/lib/request/list-sdks-request.d.ts +1 -1
  42. package/lib/request/list-work-request-errors-request.d.ts +1 -1
  43. package/lib/request/list-work-request-logs-request.d.ts +1 -1
  44. package/lib/request/list-work-requests-request.d.ts +1 -1
  45. package/lib/request/update-api-request.d.ts +1 -1
  46. package/lib/request/update-certificate-request.d.ts +1 -1
  47. package/lib/request/update-deployment-request.d.ts +1 -1
  48. package/lib/request/update-gateway-request.d.ts +1 -1
  49. package/lib/request/update-sdk-request.d.ts +1 -1
  50. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -145,7 +145,7 @@ class ApiGatewayClient {
145
145
  * @param ChangeApiCompartmentRequest
146
146
  * @return ChangeApiCompartmentResponse
147
147
  * @throws OciError when an error occurs
148
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
148
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ChangeApiCompartment.ts.html |here} to see how to use ChangeApiCompartment API.
149
149
  */
150
150
  changeApiCompartment(changeApiCompartmentRequest) {
151
151
  return __awaiter(this, void 0, void 0, function* () {
@@ -203,7 +203,7 @@ class ApiGatewayClient {
203
203
  * @param ChangeCertificateCompartmentRequest
204
204
  * @return ChangeCertificateCompartmentResponse
205
205
  * @throws OciError when an error occurs
206
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
206
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ChangeCertificateCompartment.ts.html |here} to see how to use ChangeCertificateCompartment API.
207
207
  */
208
208
  changeCertificateCompartment(changeCertificateCompartmentRequest) {
209
209
  return __awaiter(this, void 0, void 0, function* () {
@@ -257,7 +257,7 @@ class ApiGatewayClient {
257
257
  * @param CreateApiRequest
258
258
  * @return CreateApiResponse
259
259
  * @throws OciError when an error occurs
260
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
260
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/CreateApi.ts.html |here} to see how to use CreateApi API.
261
261
  */
262
262
  createApi(createApiRequest) {
263
263
  return __awaiter(this, void 0, void 0, function* () {
@@ -327,7 +327,7 @@ class ApiGatewayClient {
327
327
  * @param CreateCertificateRequest
328
328
  * @return CreateCertificateResponse
329
329
  * @throws OciError when an error occurs
330
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
330
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/CreateCertificate.ts.html |here} to see how to use CreateCertificate API.
331
331
  */
332
332
  createCertificate(createCertificateRequest) {
333
333
  return __awaiter(this, void 0, void 0, function* () {
@@ -396,7 +396,7 @@ class ApiGatewayClient {
396
396
  * @param CreateSdkRequest
397
397
  * @return CreateSdkResponse
398
398
  * @throws OciError when an error occurs
399
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
399
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/CreateSdk.ts.html |here} to see how to use CreateSdk API.
400
400
  */
401
401
  createSdk(createSdkRequest) {
402
402
  return __awaiter(this, void 0, void 0, function* () {
@@ -465,7 +465,7 @@ class ApiGatewayClient {
465
465
  * @param DeleteApiRequest
466
466
  * @return DeleteApiResponse
467
467
  * @throws OciError when an error occurs
468
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
468
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/DeleteApi.ts.html |here} to see how to use DeleteApi API.
469
469
  */
470
470
  deleteApi(deleteApiRequest) {
471
471
  return __awaiter(this, void 0, void 0, function* () {
@@ -521,7 +521,7 @@ class ApiGatewayClient {
521
521
  * @param DeleteCertificateRequest
522
522
  * @return DeleteCertificateResponse
523
523
  * @throws OciError when an error occurs
524
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
524
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/DeleteCertificate.ts.html |here} to see how to use DeleteCertificate API.
525
525
  */
526
526
  deleteCertificate(deleteCertificateRequest) {
527
527
  return __awaiter(this, void 0, void 0, function* () {
@@ -577,7 +577,7 @@ class ApiGatewayClient {
577
577
  * @param DeleteSdkRequest
578
578
  * @return DeleteSdkResponse
579
579
  * @throws OciError when an error occurs
580
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
580
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/DeleteSdk.ts.html |here} to see how to use DeleteSdk API.
581
581
  */
582
582
  deleteSdk(deleteSdkRequest) {
583
583
  return __awaiter(this, void 0, void 0, function* () {
@@ -633,7 +633,7 @@ class ApiGatewayClient {
633
633
  * @param GetApiRequest
634
634
  * @return GetApiResponse
635
635
  * @throws OciError when an error occurs
636
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
636
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetApi.ts.html |here} to see how to use GetApi API.
637
637
  */
638
638
  getApi(getApiRequest) {
639
639
  return __awaiter(this, void 0, void 0, function* () {
@@ -692,7 +692,7 @@ class ApiGatewayClient {
692
692
  * @param GetApiContentRequest
693
693
  * @return GetApiContentResponse
694
694
  * @throws OciError when an error occurs
695
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
695
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetApiContent.ts.html |here} to see how to use GetApiContent API.
696
696
  */
697
697
  getApiContent(getApiContentRequest) {
698
698
  return __awaiter(this, void 0, void 0, function* () {
@@ -705,7 +705,8 @@ class ApiGatewayClient {
705
705
  let headerParams = {
706
706
  "Content-Type": common.Constants.APPLICATION_JSON,
707
707
  "opc-request-id": getApiContentRequest.opcRequestId,
708
- "if-match": getApiContentRequest.ifMatch
708
+ "if-match": getApiContentRequest.ifMatch,
709
+ "range": getApiContentRequest.range
709
710
  };
710
711
  const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : {}, getApiContentRequest.retryConfiguration);
711
712
  if (this.logger)
@@ -756,7 +757,7 @@ class ApiGatewayClient {
756
757
  * @param GetApiDeploymentSpecificationRequest
757
758
  * @return GetApiDeploymentSpecificationResponse
758
759
  * @throws OciError when an error occurs
759
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
760
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetApiDeploymentSpecification.ts.html |here} to see how to use GetApiDeploymentSpecification API.
760
761
  */
761
762
  getApiDeploymentSpecification(getApiDeploymentSpecificationRequest) {
762
763
  return __awaiter(this, void 0, void 0, function* () {
@@ -816,7 +817,7 @@ class ApiGatewayClient {
816
817
  * @param GetApiValidationsRequest
817
818
  * @return GetApiValidationsResponse
818
819
  * @throws OciError when an error occurs
819
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
820
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetApiValidations.ts.html |here} to see how to use GetApiValidations API.
820
821
  */
821
822
  getApiValidations(getApiValidationsRequest) {
822
823
  return __awaiter(this, void 0, void 0, function* () {
@@ -876,7 +877,7 @@ class ApiGatewayClient {
876
877
  * @param GetCertificateRequest
877
878
  * @return GetCertificateResponse
878
879
  * @throws OciError when an error occurs
879
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
880
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetCertificate.ts.html |here} to see how to use GetCertificate API.
880
881
  */
881
882
  getCertificate(getCertificateRequest) {
882
883
  return __awaiter(this, void 0, void 0, function* () {
@@ -935,7 +936,7 @@ class ApiGatewayClient {
935
936
  * @param GetSdkRequest
936
937
  * @return GetSdkResponse
937
938
  * @throws OciError when an error occurs
938
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
939
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetSdk.ts.html |here} to see how to use GetSdk API.
939
940
  */
940
941
  getSdk(getSdkRequest) {
941
942
  return __awaiter(this, void 0, void 0, function* () {
@@ -995,7 +996,7 @@ class ApiGatewayClient {
995
996
  * @param ListApisRequest
996
997
  * @return ListApisResponse
997
998
  * @throws OciError when an error occurs
998
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
999
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListApis.ts.html |here} to see how to use ListApis API.
999
1000
  */
1000
1001
  listApis(listApisRequest) {
1001
1002
  return __awaiter(this, void 0, void 0, function* () {
@@ -1066,7 +1067,7 @@ class ApiGatewayClient {
1066
1067
  * @param ListCertificatesRequest
1067
1068
  * @return ListCertificatesResponse
1068
1069
  * @throws OciError when an error occurs
1069
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1070
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListCertificates.ts.html |here} to see how to use ListCertificates API.
1070
1071
  */
1071
1072
  listCertificates(listCertificatesRequest) {
1072
1073
  return __awaiter(this, void 0, void 0, function* () {
@@ -1136,7 +1137,7 @@ class ApiGatewayClient {
1136
1137
  * @param ListSdkLanguageTypesRequest
1137
1138
  * @return ListSdkLanguageTypesResponse
1138
1139
  * @throws OciError when an error occurs
1139
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1140
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListSdkLanguageTypes.ts.html |here} to see how to use ListSdkLanguageTypes API.
1140
1141
  */
1141
1142
  listSdkLanguageTypes(listSdkLanguageTypesRequest) {
1142
1143
  return __awaiter(this, void 0, void 0, function* () {
@@ -1205,7 +1206,7 @@ class ApiGatewayClient {
1205
1206
  * @param ListSdksRequest
1206
1207
  * @return ListSdksResponse
1207
1208
  * @throws OciError when an error occurs
1208
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1209
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListSdks.ts.html |here} to see how to use ListSdks API.
1209
1210
  */
1210
1211
  listSdks(listSdksRequest) {
1211
1212
  return __awaiter(this, void 0, void 0, function* () {
@@ -1276,7 +1277,7 @@ class ApiGatewayClient {
1276
1277
  * @param UpdateApiRequest
1277
1278
  * @return UpdateApiResponse
1278
1279
  * @throws OciError when an error occurs
1279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1280
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/UpdateApi.ts.html |here} to see how to use UpdateApi API.
1280
1281
  */
1281
1282
  updateApi(updateApiRequest) {
1282
1283
  return __awaiter(this, void 0, void 0, function* () {
@@ -1333,7 +1334,7 @@ class ApiGatewayClient {
1333
1334
  * @param UpdateCertificateRequest
1334
1335
  * @return UpdateCertificateResponse
1335
1336
  * @throws OciError when an error occurs
1336
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1337
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/UpdateCertificate.ts.html |here} to see how to use UpdateCertificate API.
1337
1338
  */
1338
1339
  updateCertificate(updateCertificateRequest) {
1339
1340
  return __awaiter(this, void 0, void 0, function* () {
@@ -1390,7 +1391,7 @@ class ApiGatewayClient {
1390
1391
  * @param UpdateSdkRequest
1391
1392
  * @return UpdateSdkResponse
1392
1393
  * @throws OciError when an error occurs
1393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1394
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/UpdateSdk.ts.html |here} to see how to use UpdateSdk API.
1394
1395
  */
1395
1396
  updateSdk(updateSdkRequest) {
1396
1397
  return __awaiter(this, void 0, void 0, function* () {
@@ -1531,7 +1532,7 @@ class DeploymentClient {
1531
1532
  * @param ChangeDeploymentCompartmentRequest
1532
1533
  * @return ChangeDeploymentCompartmentResponse
1533
1534
  * @throws OciError when an error occurs
1534
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1535
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ChangeDeploymentCompartment.ts.html |here} to see how to use ChangeDeploymentCompartment API.
1535
1536
  */
1536
1537
  changeDeploymentCompartment(changeDeploymentCompartmentRequest) {
1537
1538
  return __awaiter(this, void 0, void 0, function* () {
@@ -1590,7 +1591,7 @@ class DeploymentClient {
1590
1591
  * @param CreateDeploymentRequest
1591
1592
  * @return CreateDeploymentResponse
1592
1593
  * @throws OciError when an error occurs
1593
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1594
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/CreateDeployment.ts.html |here} to see how to use CreateDeployment API.
1594
1595
  */
1595
1596
  createDeployment(createDeploymentRequest) {
1596
1597
  return __awaiter(this, void 0, void 0, function* () {
@@ -1659,7 +1660,7 @@ class DeploymentClient {
1659
1660
  * @param DeleteDeploymentRequest
1660
1661
  * @return DeleteDeploymentResponse
1661
1662
  * @throws OciError when an error occurs
1662
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1663
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/DeleteDeployment.ts.html |here} to see how to use DeleteDeployment API.
1663
1664
  */
1664
1665
  deleteDeployment(deleteDeploymentRequest) {
1665
1666
  return __awaiter(this, void 0, void 0, function* () {
@@ -1715,7 +1716,7 @@ class DeploymentClient {
1715
1716
  * @param GetDeploymentRequest
1716
1717
  * @return GetDeploymentResponse
1717
1718
  * @throws OciError when an error occurs
1718
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1719
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetDeployment.ts.html |here} to see how to use GetDeployment API.
1719
1720
  */
1720
1721
  getDeployment(getDeploymentRequest) {
1721
1722
  return __awaiter(this, void 0, void 0, function* () {
@@ -1775,7 +1776,7 @@ class DeploymentClient {
1775
1776
  * @param ListDeploymentsRequest
1776
1777
  * @return ListDeploymentsResponse
1777
1778
  * @throws OciError when an error occurs
1778
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1779
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListDeployments.ts.html |here} to see how to use ListDeployments API.
1779
1780
  */
1780
1781
  listDeployments(listDeploymentsRequest) {
1781
1782
  return __awaiter(this, void 0, void 0, function* () {
@@ -1846,7 +1847,7 @@ class DeploymentClient {
1846
1847
  * @param UpdateDeploymentRequest
1847
1848
  * @return UpdateDeploymentResponse
1848
1849
  * @throws OciError when an error occurs
1849
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
1850
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/UpdateDeployment.ts.html |here} to see how to use UpdateDeployment API.
1850
1851
  */
1851
1852
  updateDeployment(updateDeploymentRequest) {
1852
1853
  return __awaiter(this, void 0, void 0, function* () {
@@ -1992,7 +1993,7 @@ class GatewayClient {
1992
1993
  * @param ChangeGatewayCompartmentRequest
1993
1994
  * @return ChangeGatewayCompartmentResponse
1994
1995
  * @throws OciError when an error occurs
1995
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
1996
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ChangeGatewayCompartment.ts.html |here} to see how to use ChangeGatewayCompartment API.
1996
1997
  */
1997
1998
  changeGatewayCompartment(changeGatewayCompartmentRequest) {
1998
1999
  return __awaiter(this, void 0, void 0, function* () {
@@ -2051,7 +2052,7 @@ class GatewayClient {
2051
2052
  * @param CreateGatewayRequest
2052
2053
  * @return CreateGatewayResponse
2053
2054
  * @throws OciError when an error occurs
2054
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2055
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/CreateGateway.ts.html |here} to see how to use CreateGateway API.
2055
2056
  */
2056
2057
  createGateway(createGatewayRequest) {
2057
2058
  return __awaiter(this, void 0, void 0, function* () {
@@ -2120,7 +2121,7 @@ class GatewayClient {
2120
2121
  * @param DeleteGatewayRequest
2121
2122
  * @return DeleteGatewayResponse
2122
2123
  * @throws OciError when an error occurs
2123
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2124
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/DeleteGateway.ts.html |here} to see how to use DeleteGateway API.
2124
2125
  */
2125
2126
  deleteGateway(deleteGatewayRequest) {
2126
2127
  return __awaiter(this, void 0, void 0, function* () {
@@ -2176,7 +2177,7 @@ class GatewayClient {
2176
2177
  * @param GetGatewayRequest
2177
2178
  * @return GetGatewayResponse
2178
2179
  * @throws OciError when an error occurs
2179
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2180
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetGateway.ts.html |here} to see how to use GetGateway API.
2180
2181
  */
2181
2182
  getGateway(getGatewayRequest) {
2182
2183
  return __awaiter(this, void 0, void 0, function* () {
@@ -2236,7 +2237,7 @@ class GatewayClient {
2236
2237
  * @param ListGatewaysRequest
2237
2238
  * @return ListGatewaysResponse
2238
2239
  * @throws OciError when an error occurs
2239
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2240
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListGateways.ts.html |here} to see how to use ListGateways API.
2240
2241
  */
2241
2242
  listGateways(listGatewaysRequest) {
2242
2243
  return __awaiter(this, void 0, void 0, function* () {
@@ -2307,7 +2308,7 @@ class GatewayClient {
2307
2308
  * @param UpdateGatewayRequest
2308
2309
  * @return UpdateGatewayResponse
2309
2310
  * @throws OciError when an error occurs
2310
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2311
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/UpdateGateway.ts.html |here} to see how to use UpdateGateway API.
2311
2312
  */
2312
2313
  updateGateway(updateGatewayRequest) {
2313
2314
  return __awaiter(this, void 0, void 0, function* () {
@@ -2453,7 +2454,7 @@ class WorkRequestsClient {
2453
2454
  * @param CancelWorkRequestRequest
2454
2455
  * @return CancelWorkRequestResponse
2455
2456
  * @throws OciError when an error occurs
2456
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
2457
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequest API.
2457
2458
  */
2458
2459
  cancelWorkRequest(cancelWorkRequestRequest) {
2459
2460
  return __awaiter(this, void 0, void 0, function* () {
@@ -2505,7 +2506,7 @@ class WorkRequestsClient {
2505
2506
  * @param GetWorkRequestRequest
2506
2507
  * @return GetWorkRequestResponse
2507
2508
  * @throws OciError when an error occurs
2508
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2509
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
2509
2510
  */
2510
2511
  getWorkRequest(getWorkRequestRequest) {
2511
2512
  return __awaiter(this, void 0, void 0, function* () {
@@ -2570,7 +2571,7 @@ class WorkRequestsClient {
2570
2571
  * @param ListWorkRequestErrorsRequest
2571
2572
  * @return ListWorkRequestErrorsResponse
2572
2573
  * @throws OciError when an error occurs
2573
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2574
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
2574
2575
  */
2575
2576
  listWorkRequestErrors(listWorkRequestErrorsRequest) {
2576
2577
  return __awaiter(this, void 0, void 0, function* () {
@@ -2640,7 +2641,7 @@ class WorkRequestsClient {
2640
2641
  * @param ListWorkRequestLogsRequest
2641
2642
  * @return ListWorkRequestLogsResponse
2642
2643
  * @throws OciError when an error occurs
2643
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2644
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
2644
2645
  */
2645
2646
  listWorkRequestLogs(listWorkRequestLogsRequest) {
2646
2647
  return __awaiter(this, void 0, void 0, function* () {
@@ -2710,7 +2711,7 @@ class WorkRequestsClient {
2710
2711
  * @param ListWorkRequestsRequest
2711
2712
  * @return ListWorkRequestsResponse
2712
2713
  * @throws OciError when an error occurs
2713
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.2.2/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2714
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/apigateway/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
2714
2715
  */
2715
2716
  listWorkRequests(listWorkRequestsRequest) {
2716
2717
  return __awaiter(this, void 0, void 0, function* () {