oci-mediaservices 2.77.0 → 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.
Files changed (54) hide show
  1. package/lib/client.d.ts +62 -52
  2. package/lib/client.js +67 -50
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/change-media-asset-compartment-request.d.ts +1 -1
  5. package/lib/request/change-media-workflow-compartment-request.d.ts +1 -1
  6. package/lib/request/change-media-workflow-configuration-compartment-request.d.ts +1 -1
  7. package/lib/request/change-media-workflow-job-compartment-request.d.ts +1 -1
  8. package/lib/request/change-stream-distribution-channel-compartment-request.d.ts +1 -1
  9. package/lib/request/create-media-asset-request.d.ts +1 -1
  10. package/lib/request/create-media-workflow-configuration-request.d.ts +1 -1
  11. package/lib/request/create-media-workflow-job-request.d.ts +1 -1
  12. package/lib/request/create-media-workflow-request.d.ts +1 -1
  13. package/lib/request/create-stream-cdn-config-request.d.ts +1 -1
  14. package/lib/request/create-stream-distribution-channel-request.d.ts +1 -1
  15. package/lib/request/create-stream-packaging-config-request.d.ts +1 -1
  16. package/lib/request/delete-media-asset-distribution-channel-attachment-request.d.ts +1 -1
  17. package/lib/request/delete-media-asset-request.d.ts +1 -1
  18. package/lib/request/delete-media-workflow-configuration-request.d.ts +1 -1
  19. package/lib/request/delete-media-workflow-job-request.d.ts +1 -1
  20. package/lib/request/delete-media-workflow-request.d.ts +1 -1
  21. package/lib/request/delete-stream-cdn-config-request.d.ts +1 -1
  22. package/lib/request/delete-stream-distribution-channel-request.d.ts +1 -1
  23. package/lib/request/delete-stream-packaging-config-request.d.ts +1 -1
  24. package/lib/request/generate-playlist-request.d.ts +1 -1
  25. package/lib/request/generate-session-token-request.d.ts +1 -1
  26. package/lib/request/get-media-asset-distribution-channel-attachment-request.d.ts +1 -1
  27. package/lib/request/get-media-asset-request.d.ts +1 -1
  28. package/lib/request/get-media-workflow-configuration-request.d.ts +1 -1
  29. package/lib/request/get-media-workflow-job-fact-request.d.ts +1 -1
  30. package/lib/request/get-media-workflow-job-request.d.ts +1 -1
  31. package/lib/request/get-media-workflow-request.d.ts +1 -1
  32. package/lib/request/get-stream-cdn-config-request.d.ts +1 -1
  33. package/lib/request/get-stream-distribution-channel-request.d.ts +1 -1
  34. package/lib/request/get-stream-packaging-config-request.d.ts +1 -1
  35. package/lib/request/ingest-stream-distribution-channel-request.d.ts +1 -1
  36. package/lib/request/list-media-asset-distribution-channel-attachments-request.d.ts +1 -1
  37. package/lib/request/list-media-assets-request.d.ts +1 -1
  38. package/lib/request/list-media-workflow-configurations-request.d.ts +1 -1
  39. package/lib/request/list-media-workflow-job-facts-request.d.ts +1 -1
  40. package/lib/request/list-media-workflow-jobs-request.d.ts +1 -1
  41. package/lib/request/list-media-workflow-task-declarations-request.d.ts +1 -1
  42. package/lib/request/list-media-workflows-request.d.ts +1 -1
  43. package/lib/request/list-stream-cdn-configs-request.d.ts +1 -1
  44. package/lib/request/list-stream-distribution-channels-request.d.ts +1 -1
  45. package/lib/request/list-stream-packaging-configs-request.d.ts +1 -1
  46. package/lib/request/list-system-media-workflows-request.d.ts +1 -1
  47. package/lib/request/update-media-asset-request.d.ts +1 -1
  48. package/lib/request/update-media-workflow-configuration-request.d.ts +1 -1
  49. package/lib/request/update-media-workflow-job-request.d.ts +1 -1
  50. package/lib/request/update-media-workflow-request.d.ts +1 -1
  51. package/lib/request/update-stream-cdn-config-request.d.ts +1 -1
  52. package/lib/request/update-stream-distribution-channel-request.d.ts +1 -1
  53. package/lib/request/update-stream-packaging-config-request.d.ts +1 -1
  54. 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 mediaservices_waiter_1 = require("./mediaservices-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,13 +185,21 @@ class MediaServicesClient {
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
  * Moves a MediaAsset resource from one compartment identifier to another.
189
198
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
190
199
  * @param ChangeMediaAssetCompartmentRequest
191
200
  * @return ChangeMediaAssetCompartmentResponse
192
201
  * @throws OciError when an error occurs
193
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ChangeMediaAssetCompartment.ts.html |here} to see how to use ChangeMediaAssetCompartment API.
202
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ChangeMediaAssetCompartment.ts.html |here} to see how to use ChangeMediaAssetCompartment API.
194
203
  */
195
204
  changeMediaAssetCompartment(changeMediaAssetCompartmentRequest) {
196
205
  return __awaiter(this, void 0, void 0, function* () {
@@ -247,7 +256,7 @@ class MediaServicesClient {
247
256
  * @param ChangeMediaWorkflowCompartmentRequest
248
257
  * @return ChangeMediaWorkflowCompartmentResponse
249
258
  * @throws OciError when an error occurs
250
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ChangeMediaWorkflowCompartment.ts.html |here} to see how to use ChangeMediaWorkflowCompartment API.
259
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ChangeMediaWorkflowCompartment.ts.html |here} to see how to use ChangeMediaWorkflowCompartment API.
251
260
  */
252
261
  changeMediaWorkflowCompartment(changeMediaWorkflowCompartmentRequest) {
253
262
  return __awaiter(this, void 0, void 0, function* () {
@@ -309,7 +318,7 @@ class MediaServicesClient {
309
318
  * @param ChangeMediaWorkflowConfigurationCompartmentRequest
310
319
  * @return ChangeMediaWorkflowConfigurationCompartmentResponse
311
320
  * @throws OciError when an error occurs
312
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ChangeMediaWorkflowConfigurationCompartment.ts.html |here} to see how to use ChangeMediaWorkflowConfigurationCompartment API.
321
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ChangeMediaWorkflowConfigurationCompartment.ts.html |here} to see how to use ChangeMediaWorkflowConfigurationCompartment API.
313
322
  */
314
323
  changeMediaWorkflowConfigurationCompartment(changeMediaWorkflowConfigurationCompartmentRequest) {
315
324
  return __awaiter(this, void 0, void 0, function* () {
@@ -371,7 +380,7 @@ class MediaServicesClient {
371
380
  * @param ChangeMediaWorkflowJobCompartmentRequest
372
381
  * @return ChangeMediaWorkflowJobCompartmentResponse
373
382
  * @throws OciError when an error occurs
374
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ChangeMediaWorkflowJobCompartment.ts.html |here} to see how to use ChangeMediaWorkflowJobCompartment API.
383
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ChangeMediaWorkflowJobCompartment.ts.html |here} to see how to use ChangeMediaWorkflowJobCompartment API.
375
384
  */
376
385
  changeMediaWorkflowJobCompartment(changeMediaWorkflowJobCompartmentRequest) {
377
386
  return __awaiter(this, void 0, void 0, function* () {
@@ -433,7 +442,7 @@ class MediaServicesClient {
433
442
  * @param ChangeStreamDistributionChannelCompartmentRequest
434
443
  * @return ChangeStreamDistributionChannelCompartmentResponse
435
444
  * @throws OciError when an error occurs
436
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ChangeStreamDistributionChannelCompartment.ts.html |here} to see how to use ChangeStreamDistributionChannelCompartment API.
445
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ChangeStreamDistributionChannelCompartment.ts.html |here} to see how to use ChangeStreamDistributionChannelCompartment API.
437
446
  */
438
447
  changeStreamDistributionChannelCompartment(changeStreamDistributionChannelCompartmentRequest) {
439
448
  return __awaiter(this, void 0, void 0, function* () {
@@ -496,7 +505,7 @@ class MediaServicesClient {
496
505
  * @param CreateMediaAssetRequest
497
506
  * @return CreateMediaAssetResponse
498
507
  * @throws OciError when an error occurs
499
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateMediaAsset.ts.html |here} to see how to use CreateMediaAsset API.
508
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateMediaAsset.ts.html |here} to see how to use CreateMediaAsset API.
500
509
  */
501
510
  createMediaAsset(createMediaAssetRequest) {
502
511
  return __awaiter(this, void 0, void 0, function* () {
@@ -560,7 +569,7 @@ class MediaServicesClient {
560
569
  * @param CreateMediaWorkflowRequest
561
570
  * @return CreateMediaWorkflowResponse
562
571
  * @throws OciError when an error occurs
563
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateMediaWorkflow.ts.html |here} to see how to use CreateMediaWorkflow API.
572
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateMediaWorkflow.ts.html |here} to see how to use CreateMediaWorkflow API.
564
573
  */
565
574
  createMediaWorkflow(createMediaWorkflowRequest) {
566
575
  return __awaiter(this, void 0, void 0, function* () {
@@ -624,7 +633,7 @@ class MediaServicesClient {
624
633
  * @param CreateMediaWorkflowConfigurationRequest
625
634
  * @return CreateMediaWorkflowConfigurationResponse
626
635
  * @throws OciError when an error occurs
627
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateMediaWorkflowConfiguration.ts.html |here} to see how to use CreateMediaWorkflowConfiguration API.
636
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateMediaWorkflowConfiguration.ts.html |here} to see how to use CreateMediaWorkflowConfiguration API.
628
637
  */
629
638
  createMediaWorkflowConfiguration(createMediaWorkflowConfigurationRequest) {
630
639
  return __awaiter(this, void 0, void 0, function* () {
@@ -687,7 +696,7 @@ class MediaServicesClient {
687
696
  * @param CreateMediaWorkflowJobRequest
688
697
  * @return CreateMediaWorkflowJobResponse
689
698
  * @throws OciError when an error occurs
690
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateMediaWorkflowJob.ts.html |here} to see how to use CreateMediaWorkflowJob API.
699
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateMediaWorkflowJob.ts.html |here} to see how to use CreateMediaWorkflowJob API.
691
700
  */
692
701
  createMediaWorkflowJob(createMediaWorkflowJobRequest) {
693
702
  return __awaiter(this, void 0, void 0, function* () {
@@ -751,7 +760,7 @@ class MediaServicesClient {
751
760
  * @param CreateStreamCdnConfigRequest
752
761
  * @return CreateStreamCdnConfigResponse
753
762
  * @throws OciError when an error occurs
754
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateStreamCdnConfig.ts.html |here} to see how to use CreateStreamCdnConfig API.
763
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateStreamCdnConfig.ts.html |here} to see how to use CreateStreamCdnConfig API.
755
764
  */
756
765
  createStreamCdnConfig(createStreamCdnConfigRequest) {
757
766
  return __awaiter(this, void 0, void 0, function* () {
@@ -815,7 +824,7 @@ class MediaServicesClient {
815
824
  * @param CreateStreamDistributionChannelRequest
816
825
  * @return CreateStreamDistributionChannelResponse
817
826
  * @throws OciError when an error occurs
818
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateStreamDistributionChannel.ts.html |here} to see how to use CreateStreamDistributionChannel API.
827
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateStreamDistributionChannel.ts.html |here} to see how to use CreateStreamDistributionChannel API.
819
828
  */
820
829
  createStreamDistributionChannel(createStreamDistributionChannelRequest) {
821
830
  return __awaiter(this, void 0, void 0, function* () {
@@ -879,7 +888,7 @@ class MediaServicesClient {
879
888
  * @param CreateStreamPackagingConfigRequest
880
889
  * @return CreateStreamPackagingConfigResponse
881
890
  * @throws OciError when an error occurs
882
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/CreateStreamPackagingConfig.ts.html |here} to see how to use CreateStreamPackagingConfig API.
891
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/CreateStreamPackagingConfig.ts.html |here} to see how to use CreateStreamPackagingConfig API.
883
892
  */
884
893
  createStreamPackagingConfig(createStreamPackagingConfigRequest) {
885
894
  return __awaiter(this, void 0, void 0, function* () {
@@ -942,7 +951,7 @@ class MediaServicesClient {
942
951
  * @param DeleteMediaAssetRequest
943
952
  * @return DeleteMediaAssetResponse
944
953
  * @throws OciError when an error occurs
945
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteMediaAsset.ts.html |here} to see how to use DeleteMediaAsset API.
954
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteMediaAsset.ts.html |here} to see how to use DeleteMediaAsset API.
946
955
  */
947
956
  deleteMediaAsset(deleteMediaAssetRequest) {
948
957
  return __awaiter(this, void 0, void 0, function* () {
@@ -999,7 +1008,7 @@ class MediaServicesClient {
999
1008
  * @param DeleteMediaAssetDistributionChannelAttachmentRequest
1000
1009
  * @return DeleteMediaAssetDistributionChannelAttachmentResponse
1001
1010
  * @throws OciError when an error occurs
1002
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use DeleteMediaAssetDistributionChannelAttachment API.
1011
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use DeleteMediaAssetDistributionChannelAttachment API.
1003
1012
  */
1004
1013
  deleteMediaAssetDistributionChannelAttachment(deleteMediaAssetDistributionChannelAttachmentRequest) {
1005
1014
  return __awaiter(this, void 0, void 0, function* () {
@@ -1057,7 +1066,7 @@ class MediaServicesClient {
1057
1066
  * @param DeleteMediaWorkflowRequest
1058
1067
  * @return DeleteMediaWorkflowResponse
1059
1068
  * @throws OciError when an error occurs
1060
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteMediaWorkflow.ts.html |here} to see how to use DeleteMediaWorkflow API.
1069
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteMediaWorkflow.ts.html |here} to see how to use DeleteMediaWorkflow API.
1061
1070
  */
1062
1071
  deleteMediaWorkflow(deleteMediaWorkflowRequest) {
1063
1072
  return __awaiter(this, void 0, void 0, function* () {
@@ -1112,7 +1121,7 @@ class MediaServicesClient {
1112
1121
  * @param DeleteMediaWorkflowConfigurationRequest
1113
1122
  * @return DeleteMediaWorkflowConfigurationResponse
1114
1123
  * @throws OciError when an error occurs
1115
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteMediaWorkflowConfiguration.ts.html |here} to see how to use DeleteMediaWorkflowConfiguration API.
1124
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteMediaWorkflowConfiguration.ts.html |here} to see how to use DeleteMediaWorkflowConfiguration API.
1116
1125
  */
1117
1126
  deleteMediaWorkflowConfiguration(deleteMediaWorkflowConfigurationRequest) {
1118
1127
  return __awaiter(this, void 0, void 0, function* () {
@@ -1172,7 +1181,7 @@ class MediaServicesClient {
1172
1181
  * @param DeleteMediaWorkflowJobRequest
1173
1182
  * @return DeleteMediaWorkflowJobResponse
1174
1183
  * @throws OciError when an error occurs
1175
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteMediaWorkflowJob.ts.html |here} to see how to use DeleteMediaWorkflowJob API.
1184
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteMediaWorkflowJob.ts.html |here} to see how to use DeleteMediaWorkflowJob API.
1176
1185
  */
1177
1186
  deleteMediaWorkflowJob(deleteMediaWorkflowJobRequest) {
1178
1187
  return __awaiter(this, void 0, void 0, function* () {
@@ -1232,7 +1241,7 @@ class MediaServicesClient {
1232
1241
  * @param DeleteStreamCdnConfigRequest
1233
1242
  * @return DeleteStreamCdnConfigResponse
1234
1243
  * @throws OciError when an error occurs
1235
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteStreamCdnConfig.ts.html |here} to see how to use DeleteStreamCdnConfig API.
1244
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteStreamCdnConfig.ts.html |here} to see how to use DeleteStreamCdnConfig API.
1236
1245
  */
1237
1246
  deleteStreamCdnConfig(deleteStreamCdnConfigRequest) {
1238
1247
  return __awaiter(this, void 0, void 0, function* () {
@@ -1287,7 +1296,7 @@ class MediaServicesClient {
1287
1296
  * @param DeleteStreamDistributionChannelRequest
1288
1297
  * @return DeleteStreamDistributionChannelResponse
1289
1298
  * @throws OciError when an error occurs
1290
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteStreamDistributionChannel.ts.html |here} to see how to use DeleteStreamDistributionChannel API.
1299
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteStreamDistributionChannel.ts.html |here} to see how to use DeleteStreamDistributionChannel API.
1291
1300
  */
1292
1301
  deleteStreamDistributionChannel(deleteStreamDistributionChannelRequest) {
1293
1302
  return __awaiter(this, void 0, void 0, function* () {
@@ -1342,7 +1351,7 @@ class MediaServicesClient {
1342
1351
  * @param DeleteStreamPackagingConfigRequest
1343
1352
  * @return DeleteStreamPackagingConfigResponse
1344
1353
  * @throws OciError when an error occurs
1345
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/DeleteStreamPackagingConfig.ts.html |here} to see how to use DeleteStreamPackagingConfig API.
1354
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/DeleteStreamPackagingConfig.ts.html |here} to see how to use DeleteStreamPackagingConfig API.
1346
1355
  */
1347
1356
  deleteStreamPackagingConfig(deleteStreamPackagingConfigRequest) {
1348
1357
  return __awaiter(this, void 0, void 0, function* () {
@@ -1397,7 +1406,7 @@ class MediaServicesClient {
1397
1406
  * @param GetMediaAssetRequest
1398
1407
  * @return GetMediaAssetResponse
1399
1408
  * @throws OciError when an error occurs
1400
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetMediaAsset.ts.html |here} to see how to use GetMediaAsset API.
1409
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetMediaAsset.ts.html |here} to see how to use GetMediaAsset API.
1401
1410
  */
1402
1411
  getMediaAsset(getMediaAssetRequest) {
1403
1412
  return __awaiter(this, void 0, void 0, function* () {
@@ -1460,7 +1469,7 @@ class MediaServicesClient {
1460
1469
  * @param GetMediaAssetDistributionChannelAttachmentRequest
1461
1470
  * @return GetMediaAssetDistributionChannelAttachmentResponse
1462
1471
  * @throws OciError when an error occurs
1463
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use GetMediaAssetDistributionChannelAttachment API.
1472
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use GetMediaAssetDistributionChannelAttachment API.
1464
1473
  */
1465
1474
  getMediaAssetDistributionChannelAttachment(getMediaAssetDistributionChannelAttachmentRequest) {
1466
1475
  return __awaiter(this, void 0, void 0, function* () {
@@ -1526,7 +1535,7 @@ class MediaServicesClient {
1526
1535
  * @param GetMediaWorkflowRequest
1527
1536
  * @return GetMediaWorkflowResponse
1528
1537
  * @throws OciError when an error occurs
1529
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetMediaWorkflow.ts.html |here} to see how to use GetMediaWorkflow API.
1538
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetMediaWorkflow.ts.html |here} to see how to use GetMediaWorkflow API.
1530
1539
  */
1531
1540
  getMediaWorkflow(getMediaWorkflowRequest) {
1532
1541
  return __awaiter(this, void 0, void 0, function* () {
@@ -1589,7 +1598,7 @@ class MediaServicesClient {
1589
1598
  * @param GetMediaWorkflowConfigurationRequest
1590
1599
  * @return GetMediaWorkflowConfigurationResponse
1591
1600
  * @throws OciError when an error occurs
1592
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetMediaWorkflowConfiguration.ts.html |here} to see how to use GetMediaWorkflowConfiguration API.
1601
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetMediaWorkflowConfiguration.ts.html |here} to see how to use GetMediaWorkflowConfiguration API.
1593
1602
  */
1594
1603
  getMediaWorkflowConfiguration(getMediaWorkflowConfigurationRequest) {
1595
1604
  return __awaiter(this, void 0, void 0, function* () {
@@ -1652,7 +1661,7 @@ class MediaServicesClient {
1652
1661
  * @param GetMediaWorkflowJobRequest
1653
1662
  * @return GetMediaWorkflowJobResponse
1654
1663
  * @throws OciError when an error occurs
1655
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetMediaWorkflowJob.ts.html |here} to see how to use GetMediaWorkflowJob API.
1664
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetMediaWorkflowJob.ts.html |here} to see how to use GetMediaWorkflowJob API.
1656
1665
  */
1657
1666
  getMediaWorkflowJob(getMediaWorkflowJobRequest) {
1658
1667
  return __awaiter(this, void 0, void 0, function* () {
@@ -1715,7 +1724,7 @@ class MediaServicesClient {
1715
1724
  * @param GetMediaWorkflowJobFactRequest
1716
1725
  * @return GetMediaWorkflowJobFactResponse
1717
1726
  * @throws OciError when an error occurs
1718
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetMediaWorkflowJobFact.ts.html |here} to see how to use GetMediaWorkflowJobFact API.
1727
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetMediaWorkflowJobFact.ts.html |here} to see how to use GetMediaWorkflowJobFact API.
1719
1728
  */
1720
1729
  getMediaWorkflowJobFact(getMediaWorkflowJobFactRequest) {
1721
1730
  return __awaiter(this, void 0, void 0, function* () {
@@ -1779,7 +1788,7 @@ class MediaServicesClient {
1779
1788
  * @param GetStreamCdnConfigRequest
1780
1789
  * @return GetStreamCdnConfigResponse
1781
1790
  * @throws OciError when an error occurs
1782
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetStreamCdnConfig.ts.html |here} to see how to use GetStreamCdnConfig API.
1791
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetStreamCdnConfig.ts.html |here} to see how to use GetStreamCdnConfig API.
1783
1792
  */
1784
1793
  getStreamCdnConfig(getStreamCdnConfigRequest) {
1785
1794
  return __awaiter(this, void 0, void 0, function* () {
@@ -1842,7 +1851,7 @@ class MediaServicesClient {
1842
1851
  * @param GetStreamDistributionChannelRequest
1843
1852
  * @return GetStreamDistributionChannelResponse
1844
1853
  * @throws OciError when an error occurs
1845
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetStreamDistributionChannel.ts.html |here} to see how to use GetStreamDistributionChannel API.
1854
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetStreamDistributionChannel.ts.html |here} to see how to use GetStreamDistributionChannel API.
1846
1855
  */
1847
1856
  getStreamDistributionChannel(getStreamDistributionChannelRequest) {
1848
1857
  return __awaiter(this, void 0, void 0, function* () {
@@ -1905,7 +1914,7 @@ class MediaServicesClient {
1905
1914
  * @param GetStreamPackagingConfigRequest
1906
1915
  * @return GetStreamPackagingConfigResponse
1907
1916
  * @throws OciError when an error occurs
1908
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GetStreamPackagingConfig.ts.html |here} to see how to use GetStreamPackagingConfig API.
1917
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GetStreamPackagingConfig.ts.html |here} to see how to use GetStreamPackagingConfig API.
1909
1918
  */
1910
1919
  getStreamPackagingConfig(getStreamPackagingConfigRequest) {
1911
1920
  return __awaiter(this, void 0, void 0, function* () {
@@ -1968,7 +1977,7 @@ class MediaServicesClient {
1968
1977
  * @param IngestStreamDistributionChannelRequest
1969
1978
  * @return IngestStreamDistributionChannelResponse
1970
1979
  * @throws OciError when an error occurs
1971
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/IngestStreamDistributionChannel.ts.html |here} to see how to use IngestStreamDistributionChannel API.
1980
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/IngestStreamDistributionChannel.ts.html |here} to see how to use IngestStreamDistributionChannel API.
1972
1981
  */
1973
1982
  ingestStreamDistributionChannel(ingestStreamDistributionChannelRequest) {
1974
1983
  return __awaiter(this, void 0, void 0, function* () {
@@ -2028,7 +2037,7 @@ class MediaServicesClient {
2028
2037
  * @param ListMediaAssetDistributionChannelAttachmentsRequest
2029
2038
  * @return ListMediaAssetDistributionChannelAttachmentsResponse
2030
2039
  * @throws OciError when an error occurs
2031
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaAssetDistributionChannelAttachments.ts.html |here} to see how to use ListMediaAssetDistributionChannelAttachments API.
2040
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaAssetDistributionChannelAttachments.ts.html |here} to see how to use ListMediaAssetDistributionChannelAttachments API.
2032
2041
  */
2033
2042
  listMediaAssetDistributionChannelAttachments(listMediaAssetDistributionChannelAttachmentsRequest) {
2034
2043
  return __awaiter(this, void 0, void 0, function* () {
@@ -2099,7 +2108,7 @@ class MediaServicesClient {
2099
2108
  * @param ListMediaAssetsRequest
2100
2109
  * @return ListMediaAssetsResponse
2101
2110
  * @throws OciError when an error occurs
2102
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaAssets.ts.html |here} to see how to use ListMediaAssets API.
2111
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaAssets.ts.html |here} to see how to use ListMediaAssets API.
2103
2112
  */
2104
2113
  listMediaAssets(listMediaAssetsRequest) {
2105
2114
  return __awaiter(this, void 0, void 0, function* () {
@@ -2178,7 +2187,7 @@ class MediaServicesClient {
2178
2187
  * @param ListMediaWorkflowConfigurationsRequest
2179
2188
  * @return ListMediaWorkflowConfigurationsResponse
2180
2189
  * @throws OciError when an error occurs
2181
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaWorkflowConfigurations.ts.html |here} to see how to use ListMediaWorkflowConfigurations API.
2190
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaWorkflowConfigurations.ts.html |here} to see how to use ListMediaWorkflowConfigurations API.
2182
2191
  */
2183
2192
  listMediaWorkflowConfigurations(listMediaWorkflowConfigurationsRequest) {
2184
2193
  return __awaiter(this, void 0, void 0, function* () {
@@ -2248,7 +2257,7 @@ class MediaServicesClient {
2248
2257
  * @param ListMediaWorkflowJobFactsRequest
2249
2258
  * @return ListMediaWorkflowJobFactsResponse
2250
2259
  * @throws OciError when an error occurs
2251
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaWorkflowJobFacts.ts.html |here} to see how to use ListMediaWorkflowJobFacts API.
2260
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaWorkflowJobFacts.ts.html |here} to see how to use ListMediaWorkflowJobFacts API.
2252
2261
  */
2253
2262
  listMediaWorkflowJobFacts(listMediaWorkflowJobFactsRequest) {
2254
2263
  return __awaiter(this, void 0, void 0, function* () {
@@ -2318,7 +2327,7 @@ class MediaServicesClient {
2318
2327
  * @param ListMediaWorkflowJobsRequest
2319
2328
  * @return ListMediaWorkflowJobsResponse
2320
2329
  * @throws OciError when an error occurs
2321
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaWorkflowJobs.ts.html |here} to see how to use ListMediaWorkflowJobs API.
2330
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaWorkflowJobs.ts.html |here} to see how to use ListMediaWorkflowJobs API.
2322
2331
  */
2323
2332
  listMediaWorkflowJobs(listMediaWorkflowJobsRequest) {
2324
2333
  return __awaiter(this, void 0, void 0, function* () {
@@ -2390,7 +2399,7 @@ class MediaServicesClient {
2390
2399
  * @param ListMediaWorkflowTaskDeclarationsRequest
2391
2400
  * @return ListMediaWorkflowTaskDeclarationsResponse
2392
2401
  * @throws OciError when an error occurs
2393
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaWorkflowTaskDeclarations.ts.html |here} to see how to use ListMediaWorkflowTaskDeclarations API.
2402
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaWorkflowTaskDeclarations.ts.html |here} to see how to use ListMediaWorkflowTaskDeclarations API.
2394
2403
  */
2395
2404
  listMediaWorkflowTaskDeclarations(listMediaWorkflowTaskDeclarationsRequest) {
2396
2405
  return __awaiter(this, void 0, void 0, function* () {
@@ -2460,7 +2469,7 @@ class MediaServicesClient {
2460
2469
  * @param ListMediaWorkflowsRequest
2461
2470
  * @return ListMediaWorkflowsResponse
2462
2471
  * @throws OciError when an error occurs
2463
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListMediaWorkflows.ts.html |here} to see how to use ListMediaWorkflows API.
2472
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListMediaWorkflows.ts.html |here} to see how to use ListMediaWorkflows API.
2464
2473
  */
2465
2474
  listMediaWorkflows(listMediaWorkflowsRequest) {
2466
2475
  return __awaiter(this, void 0, void 0, function* () {
@@ -2530,7 +2539,7 @@ class MediaServicesClient {
2530
2539
  * @param ListStreamCdnConfigsRequest
2531
2540
  * @return ListStreamCdnConfigsResponse
2532
2541
  * @throws OciError when an error occurs
2533
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListStreamCdnConfigs.ts.html |here} to see how to use ListStreamCdnConfigs API.
2542
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListStreamCdnConfigs.ts.html |here} to see how to use ListStreamCdnConfigs API.
2534
2543
  */
2535
2544
  listStreamCdnConfigs(listStreamCdnConfigsRequest) {
2536
2545
  return __awaiter(this, void 0, void 0, function* () {
@@ -2600,7 +2609,7 @@ class MediaServicesClient {
2600
2609
  * @param ListStreamDistributionChannelsRequest
2601
2610
  * @return ListStreamDistributionChannelsResponse
2602
2611
  * @throws OciError when an error occurs
2603
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListStreamDistributionChannels.ts.html |here} to see how to use ListStreamDistributionChannels API.
2612
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListStreamDistributionChannels.ts.html |here} to see how to use ListStreamDistributionChannels API.
2604
2613
  */
2605
2614
  listStreamDistributionChannels(listStreamDistributionChannelsRequest) {
2606
2615
  return __awaiter(this, void 0, void 0, function* () {
@@ -2670,7 +2679,7 @@ class MediaServicesClient {
2670
2679
  * @param ListStreamPackagingConfigsRequest
2671
2680
  * @return ListStreamPackagingConfigsResponse
2672
2681
  * @throws OciError when an error occurs
2673
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListStreamPackagingConfigs.ts.html |here} to see how to use ListStreamPackagingConfigs API.
2682
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListStreamPackagingConfigs.ts.html |here} to see how to use ListStreamPackagingConfigs API.
2674
2683
  */
2675
2684
  listStreamPackagingConfigs(listStreamPackagingConfigsRequest) {
2676
2685
  return __awaiter(this, void 0, void 0, function* () {
@@ -2741,7 +2750,7 @@ class MediaServicesClient {
2741
2750
  * @param ListSystemMediaWorkflowsRequest
2742
2751
  * @return ListSystemMediaWorkflowsResponse
2743
2752
  * @throws OciError when an error occurs
2744
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/ListSystemMediaWorkflows.ts.html |here} to see how to use ListSystemMediaWorkflows API.
2753
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/ListSystemMediaWorkflows.ts.html |here} to see how to use ListSystemMediaWorkflows API.
2745
2754
  */
2746
2755
  listSystemMediaWorkflows(listSystemMediaWorkflowsRequest) {
2747
2756
  return __awaiter(this, void 0, void 0, function* () {
@@ -2808,7 +2817,7 @@ class MediaServicesClient {
2808
2817
  * @param UpdateMediaAssetRequest
2809
2818
  * @return UpdateMediaAssetResponse
2810
2819
  * @throws OciError when an error occurs
2811
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateMediaAsset.ts.html |here} to see how to use UpdateMediaAsset API.
2820
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateMediaAsset.ts.html |here} to see how to use UpdateMediaAsset API.
2812
2821
  */
2813
2822
  updateMediaAsset(updateMediaAssetRequest) {
2814
2823
  return __awaiter(this, void 0, void 0, function* () {
@@ -2873,7 +2882,7 @@ class MediaServicesClient {
2873
2882
  * @param UpdateMediaWorkflowRequest
2874
2883
  * @return UpdateMediaWorkflowResponse
2875
2884
  * @throws OciError when an error occurs
2876
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateMediaWorkflow.ts.html |here} to see how to use UpdateMediaWorkflow API.
2885
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateMediaWorkflow.ts.html |here} to see how to use UpdateMediaWorkflow API.
2877
2886
  */
2878
2887
  updateMediaWorkflow(updateMediaWorkflowRequest) {
2879
2888
  return __awaiter(this, void 0, void 0, function* () {
@@ -2938,7 +2947,7 @@ class MediaServicesClient {
2938
2947
  * @param UpdateMediaWorkflowConfigurationRequest
2939
2948
  * @return UpdateMediaWorkflowConfigurationResponse
2940
2949
  * @throws OciError when an error occurs
2941
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateMediaWorkflowConfiguration.ts.html |here} to see how to use UpdateMediaWorkflowConfiguration API.
2950
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateMediaWorkflowConfiguration.ts.html |here} to see how to use UpdateMediaWorkflowConfiguration API.
2942
2951
  */
2943
2952
  updateMediaWorkflowConfiguration(updateMediaWorkflowConfigurationRequest) {
2944
2953
  return __awaiter(this, void 0, void 0, function* () {
@@ -3003,7 +3012,7 @@ class MediaServicesClient {
3003
3012
  * @param UpdateMediaWorkflowJobRequest
3004
3013
  * @return UpdateMediaWorkflowJobResponse
3005
3014
  * @throws OciError when an error occurs
3006
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateMediaWorkflowJob.ts.html |here} to see how to use UpdateMediaWorkflowJob API.
3015
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateMediaWorkflowJob.ts.html |here} to see how to use UpdateMediaWorkflowJob API.
3007
3016
  */
3008
3017
  updateMediaWorkflowJob(updateMediaWorkflowJobRequest) {
3009
3018
  return __awaiter(this, void 0, void 0, function* () {
@@ -3068,7 +3077,7 @@ class MediaServicesClient {
3068
3077
  * @param UpdateStreamCdnConfigRequest
3069
3078
  * @return UpdateStreamCdnConfigResponse
3070
3079
  * @throws OciError when an error occurs
3071
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateStreamCdnConfig.ts.html |here} to see how to use UpdateStreamCdnConfig API.
3080
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateStreamCdnConfig.ts.html |here} to see how to use UpdateStreamCdnConfig API.
3072
3081
  */
3073
3082
  updateStreamCdnConfig(updateStreamCdnConfigRequest) {
3074
3083
  return __awaiter(this, void 0, void 0, function* () {
@@ -3133,7 +3142,7 @@ class MediaServicesClient {
3133
3142
  * @param UpdateStreamDistributionChannelRequest
3134
3143
  * @return UpdateStreamDistributionChannelResponse
3135
3144
  * @throws OciError when an error occurs
3136
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateStreamDistributionChannel.ts.html |here} to see how to use UpdateStreamDistributionChannel API.
3145
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateStreamDistributionChannel.ts.html |here} to see how to use UpdateStreamDistributionChannel API.
3137
3146
  */
3138
3147
  updateStreamDistributionChannel(updateStreamDistributionChannelRequest) {
3139
3148
  return __awaiter(this, void 0, void 0, function* () {
@@ -3198,7 +3207,7 @@ class MediaServicesClient {
3198
3207
  * @param UpdateStreamPackagingConfigRequest
3199
3208
  * @return UpdateStreamPackagingConfigResponse
3200
3209
  * @throws OciError when an error occurs
3201
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/UpdateStreamPackagingConfig.ts.html |here} to see how to use UpdateStreamPackagingConfig API.
3210
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/UpdateStreamPackagingConfig.ts.html |here} to see how to use UpdateStreamPackagingConfig API.
3202
3211
  */
3203
3212
  updateStreamPackagingConfig(updateStreamPackagingConfigRequest) {
3204
3213
  return __awaiter(this, void 0, void 0, function* () {
@@ -3378,13 +3387,21 @@ class MediaStreamClient {
3378
3387
  this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(MediaStreamClient.serviceEndpointTemplate, regionId, MediaStreamClient.endpointServiceName);
3379
3388
  this._lastSetRegionOrRegionId = common.Region.REGION_ID_STRING;
3380
3389
  }
3390
+ /**
3391
+ * Shutdown the circuit breaker used by the client when it is no longer needed
3392
+ */
3393
+ shutdownCircuitBreaker() {
3394
+ if (this._circuitBreaker) {
3395
+ this._circuitBreaker.shutdown();
3396
+ }
3397
+ }
3381
3398
  /**
3382
3399
  * Gets the playlist content for the specified Packaging Configuration and Media Asset combination.
3383
3400
  * This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
3384
3401
  * @param GeneratePlaylistRequest
3385
3402
  * @return GeneratePlaylistResponse
3386
3403
  * @throws OciError when an error occurs
3387
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GeneratePlaylist.ts.html |here} to see how to use GeneratePlaylist API.
3404
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GeneratePlaylist.ts.html |here} to see how to use GeneratePlaylist API.
3388
3405
  */
3389
3406
  generatePlaylist(generatePlaylistRequest) {
3390
3407
  return __awaiter(this, void 0, void 0, function* () {
@@ -3448,7 +3465,7 @@ class MediaStreamClient {
3448
3465
  * @param GenerateSessionTokenRequest
3449
3466
  * @return GenerateSessionTokenResponse
3450
3467
  * @throws OciError when an error occurs
3451
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/mediaservices/GenerateSessionToken.ts.html |here} to see how to use GenerateSessionToken API.
3468
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/mediaservices/GenerateSessionToken.ts.html |here} to see how to use GenerateSessionToken API.
3452
3469
  */
3453
3470
  generateSessionToken(generateSessionTokenRequest) {
3454
3471
  return __awaiter(this, void 0, void 0, function* () {