oci-mediaservices 2.83.0 → 2.84.2
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 +70 -62
- package/lib/client.js +74 -62
- package/lib/client.js.map +1 -1
- package/lib/request/add-media-asset-lock-request.d.ts +1 -1
- package/lib/request/add-media-workflow-configuration-lock-request.d.ts +1 -1
- package/lib/request/add-media-workflow-job-lock-request.d.ts +1 -1
- package/lib/request/add-media-workflow-lock-request.d.ts +1 -1
- package/lib/request/add-stream-cdn-config-lock-request.d.ts +1 -1
- package/lib/request/add-stream-distribution-channel-lock-request.d.ts +1 -1
- package/lib/request/add-stream-packaging-config-lock-request.d.ts +1 -1
- package/lib/request/change-media-asset-compartment-request.d.ts +1 -1
- package/lib/request/change-media-workflow-compartment-request.d.ts +1 -1
- package/lib/request/change-media-workflow-configuration-compartment-request.d.ts +1 -1
- package/lib/request/change-media-workflow-job-compartment-request.d.ts +1 -1
- package/lib/request/change-stream-distribution-channel-compartment-request.d.ts +1 -1
- package/lib/request/create-media-asset-request.d.ts +1 -1
- package/lib/request/create-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/create-media-workflow-job-request.d.ts +1 -1
- package/lib/request/create-media-workflow-request.d.ts +1 -1
- package/lib/request/create-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/create-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/create-stream-packaging-config-request.d.ts +1 -1
- package/lib/request/delete-media-asset-distribution-channel-attachment-request.d.ts +1 -1
- package/lib/request/delete-media-asset-request.d.ts +1 -1
- package/lib/request/delete-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/delete-media-workflow-job-request.d.ts +1 -1
- package/lib/request/delete-media-workflow-request.d.ts +1 -1
- package/lib/request/delete-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/delete-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/delete-stream-packaging-config-request.d.ts +1 -1
- package/lib/request/generate-playlist-request.d.ts +1 -1
- package/lib/request/generate-session-token-request.d.ts +1 -1
- package/lib/request/get-media-asset-distribution-channel-attachment-request.d.ts +1 -1
- package/lib/request/get-media-asset-request.d.ts +1 -1
- package/lib/request/get-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/get-media-workflow-job-request.d.ts +1 -1
- package/lib/request/get-media-workflow-request.d.ts +1 -1
- package/lib/request/get-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/get-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/get-stream-packaging-config-request.d.ts +1 -1
- package/lib/request/ingest-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/list-media-asset-distribution-channel-attachments-request.d.ts +1 -1
- package/lib/request/list-media-assets-request.d.ts +1 -1
- package/lib/request/list-media-workflow-configurations-request.d.ts +1 -1
- package/lib/request/list-media-workflow-jobs-request.d.ts +1 -1
- package/lib/request/list-media-workflow-task-declarations-request.d.ts +1 -1
- package/lib/request/list-media-workflows-request.d.ts +1 -1
- package/lib/request/list-stream-cdn-configs-request.d.ts +1 -1
- package/lib/request/list-stream-distribution-channels-request.d.ts +1 -1
- package/lib/request/list-stream-packaging-configs-request.d.ts +1 -1
- package/lib/request/list-system-media-workflows-request.d.ts +1 -1
- package/lib/request/remove-media-asset-lock-request.d.ts +1 -1
- package/lib/request/remove-media-workflow-configuration-lock-request.d.ts +1 -1
- package/lib/request/remove-media-workflow-job-lock-request.d.ts +1 -1
- package/lib/request/remove-media-workflow-lock-request.d.ts +1 -1
- package/lib/request/remove-stream-cdn-config-lock-request.d.ts +1 -1
- package/lib/request/remove-stream-distribution-channel-lock-request.d.ts +1 -1
- package/lib/request/remove-stream-packaging-config-lock-request.d.ts +1 -1
- package/lib/request/update-media-asset-request.d.ts +1 -1
- package/lib/request/update-media-workflow-configuration-request.d.ts +1 -1
- package/lib/request/update-media-workflow-job-request.d.ts +1 -1
- package/lib/request/update-media-workflow-request.d.ts +1 -1
- package/lib/request/update-stream-cdn-config-request.d.ts +1 -1
- package/lib/request/update-stream-distribution-channel-request.d.ts +1 -1
- package/lib/request/update-stream-packaging-config-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -193,6 +193,12 @@ class MediaServicesClient {
|
|
|
193
193
|
this._circuitBreaker.shutdown();
|
|
194
194
|
}
|
|
195
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* Close the client once it is no longer needed
|
|
198
|
+
*/
|
|
199
|
+
close() {
|
|
200
|
+
this.shutdownCircuitBreaker();
|
|
201
|
+
}
|
|
196
202
|
/**
|
|
197
203
|
* Add a lock to an MediaAsset.
|
|
198
204
|
*
|
|
@@ -200,7 +206,7 @@ class MediaServicesClient {
|
|
|
200
206
|
* @param AddMediaAssetLockRequest
|
|
201
207
|
* @return AddMediaAssetLockResponse
|
|
202
208
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
209
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddMediaAssetLock.ts.html |here} to see how to use AddMediaAssetLock API.
|
|
204
210
|
*/
|
|
205
211
|
addMediaAssetLock(addMediaAssetLockRequest) {
|
|
206
212
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -267,7 +273,7 @@ class MediaServicesClient {
|
|
|
267
273
|
* @param AddMediaWorkflowConfigurationLockRequest
|
|
268
274
|
* @return AddMediaWorkflowConfigurationLockResponse
|
|
269
275
|
* @throws OciError when an error occurs
|
|
270
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddMediaWorkflowConfigurationLock.ts.html |here} to see how to use AddMediaWorkflowConfigurationLock API.
|
|
271
277
|
*/
|
|
272
278
|
addMediaWorkflowConfigurationLock(addMediaWorkflowConfigurationLockRequest) {
|
|
273
279
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -334,7 +340,7 @@ class MediaServicesClient {
|
|
|
334
340
|
* @param AddMediaWorkflowJobLockRequest
|
|
335
341
|
* @return AddMediaWorkflowJobLockResponse
|
|
336
342
|
* @throws OciError when an error occurs
|
|
337
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddMediaWorkflowJobLock.ts.html |here} to see how to use AddMediaWorkflowJobLock API.
|
|
338
344
|
*/
|
|
339
345
|
addMediaWorkflowJobLock(addMediaWorkflowJobLockRequest) {
|
|
340
346
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -401,7 +407,7 @@ class MediaServicesClient {
|
|
|
401
407
|
* @param AddMediaWorkflowLockRequest
|
|
402
408
|
* @return AddMediaWorkflowLockResponse
|
|
403
409
|
* @throws OciError when an error occurs
|
|
404
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddMediaWorkflowLock.ts.html |here} to see how to use AddMediaWorkflowLock API.
|
|
405
411
|
*/
|
|
406
412
|
addMediaWorkflowLock(addMediaWorkflowLockRequest) {
|
|
407
413
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -468,7 +474,7 @@ class MediaServicesClient {
|
|
|
468
474
|
* @param AddStreamCdnConfigLockRequest
|
|
469
475
|
* @return AddStreamCdnConfigLockResponse
|
|
470
476
|
* @throws OciError when an error occurs
|
|
471
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
477
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddStreamCdnConfigLock.ts.html |here} to see how to use AddStreamCdnConfigLock API.
|
|
472
478
|
*/
|
|
473
479
|
addStreamCdnConfigLock(addStreamCdnConfigLockRequest) {
|
|
474
480
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -535,7 +541,7 @@ class MediaServicesClient {
|
|
|
535
541
|
* @param AddStreamDistributionChannelLockRequest
|
|
536
542
|
* @return AddStreamDistributionChannelLockResponse
|
|
537
543
|
* @throws OciError when an error occurs
|
|
538
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
544
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddStreamDistributionChannelLock.ts.html |here} to see how to use AddStreamDistributionChannelLock API.
|
|
539
545
|
*/
|
|
540
546
|
addStreamDistributionChannelLock(addStreamDistributionChannelLockRequest) {
|
|
541
547
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -602,7 +608,7 @@ class MediaServicesClient {
|
|
|
602
608
|
* @param AddStreamPackagingConfigLockRequest
|
|
603
609
|
* @return AddStreamPackagingConfigLockResponse
|
|
604
610
|
* @throws OciError when an error occurs
|
|
605
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
611
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/AddStreamPackagingConfigLock.ts.html |here} to see how to use AddStreamPackagingConfigLock API.
|
|
606
612
|
*/
|
|
607
613
|
addStreamPackagingConfigLock(addStreamPackagingConfigLockRequest) {
|
|
608
614
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -668,7 +674,7 @@ class MediaServicesClient {
|
|
|
668
674
|
* @param ChangeMediaAssetCompartmentRequest
|
|
669
675
|
* @return ChangeMediaAssetCompartmentResponse
|
|
670
676
|
* @throws OciError when an error occurs
|
|
671
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
677
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ChangeMediaAssetCompartment.ts.html |here} to see how to use ChangeMediaAssetCompartment API.
|
|
672
678
|
*/
|
|
673
679
|
changeMediaAssetCompartment(changeMediaAssetCompartmentRequest) {
|
|
674
680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -727,7 +733,7 @@ class MediaServicesClient {
|
|
|
727
733
|
* @param ChangeMediaWorkflowCompartmentRequest
|
|
728
734
|
* @return ChangeMediaWorkflowCompartmentResponse
|
|
729
735
|
* @throws OciError when an error occurs
|
|
730
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ChangeMediaWorkflowCompartment.ts.html |here} to see how to use ChangeMediaWorkflowCompartment API.
|
|
731
737
|
*/
|
|
732
738
|
changeMediaWorkflowCompartment(changeMediaWorkflowCompartmentRequest) {
|
|
733
739
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -786,7 +792,7 @@ class MediaServicesClient {
|
|
|
786
792
|
* @param ChangeMediaWorkflowConfigurationCompartmentRequest
|
|
787
793
|
* @return ChangeMediaWorkflowConfigurationCompartmentResponse
|
|
788
794
|
* @throws OciError when an error occurs
|
|
789
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
795
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ChangeMediaWorkflowConfigurationCompartment.ts.html |here} to see how to use ChangeMediaWorkflowConfigurationCompartment API.
|
|
790
796
|
*/
|
|
791
797
|
changeMediaWorkflowConfigurationCompartment(changeMediaWorkflowConfigurationCompartmentRequest) {
|
|
792
798
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -845,7 +851,7 @@ class MediaServicesClient {
|
|
|
845
851
|
* @param ChangeMediaWorkflowJobCompartmentRequest
|
|
846
852
|
* @return ChangeMediaWorkflowJobCompartmentResponse
|
|
847
853
|
* @throws OciError when an error occurs
|
|
848
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
854
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ChangeMediaWorkflowJobCompartment.ts.html |here} to see how to use ChangeMediaWorkflowJobCompartment API.
|
|
849
855
|
*/
|
|
850
856
|
changeMediaWorkflowJobCompartment(changeMediaWorkflowJobCompartmentRequest) {
|
|
851
857
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -904,7 +910,7 @@ class MediaServicesClient {
|
|
|
904
910
|
* @param ChangeStreamDistributionChannelCompartmentRequest
|
|
905
911
|
* @return ChangeStreamDistributionChannelCompartmentResponse
|
|
906
912
|
* @throws OciError when an error occurs
|
|
907
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
913
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ChangeStreamDistributionChannelCompartment.ts.html |here} to see how to use ChangeStreamDistributionChannelCompartment API.
|
|
908
914
|
*/
|
|
909
915
|
changeStreamDistributionChannelCompartment(changeStreamDistributionChannelCompartmentRequest) {
|
|
910
916
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -964,7 +970,7 @@ class MediaServicesClient {
|
|
|
964
970
|
* @param CreateMediaAssetRequest
|
|
965
971
|
* @return CreateMediaAssetResponse
|
|
966
972
|
* @throws OciError when an error occurs
|
|
967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
973
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateMediaAsset.ts.html |here} to see how to use CreateMediaAsset API.
|
|
968
974
|
*/
|
|
969
975
|
createMediaAsset(createMediaAssetRequest) {
|
|
970
976
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1028,7 +1034,7 @@ class MediaServicesClient {
|
|
|
1028
1034
|
* @param CreateMediaWorkflowRequest
|
|
1029
1035
|
* @return CreateMediaWorkflowResponse
|
|
1030
1036
|
* @throws OciError when an error occurs
|
|
1031
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1037
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateMediaWorkflow.ts.html |here} to see how to use CreateMediaWorkflow API.
|
|
1032
1038
|
*/
|
|
1033
1039
|
createMediaWorkflow(createMediaWorkflowRequest) {
|
|
1034
1040
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1092,7 +1098,7 @@ class MediaServicesClient {
|
|
|
1092
1098
|
* @param CreateMediaWorkflowConfigurationRequest
|
|
1093
1099
|
* @return CreateMediaWorkflowConfigurationResponse
|
|
1094
1100
|
* @throws OciError when an error occurs
|
|
1095
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateMediaWorkflowConfiguration.ts.html |here} to see how to use CreateMediaWorkflowConfiguration API.
|
|
1096
1102
|
*/
|
|
1097
1103
|
createMediaWorkflowConfiguration(createMediaWorkflowConfigurationRequest) {
|
|
1098
1104
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1155,7 +1161,7 @@ class MediaServicesClient {
|
|
|
1155
1161
|
* @param CreateMediaWorkflowJobRequest
|
|
1156
1162
|
* @return CreateMediaWorkflowJobResponse
|
|
1157
1163
|
* @throws OciError when an error occurs
|
|
1158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1164
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateMediaWorkflowJob.ts.html |here} to see how to use CreateMediaWorkflowJob API.
|
|
1159
1165
|
*/
|
|
1160
1166
|
createMediaWorkflowJob(createMediaWorkflowJobRequest) {
|
|
1161
1167
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1219,7 +1225,7 @@ class MediaServicesClient {
|
|
|
1219
1225
|
* @param CreateStreamCdnConfigRequest
|
|
1220
1226
|
* @return CreateStreamCdnConfigResponse
|
|
1221
1227
|
* @throws OciError when an error occurs
|
|
1222
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1228
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateStreamCdnConfig.ts.html |here} to see how to use CreateStreamCdnConfig API.
|
|
1223
1229
|
*/
|
|
1224
1230
|
createStreamCdnConfig(createStreamCdnConfigRequest) {
|
|
1225
1231
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1283,7 +1289,7 @@ class MediaServicesClient {
|
|
|
1283
1289
|
* @param CreateStreamDistributionChannelRequest
|
|
1284
1290
|
* @return CreateStreamDistributionChannelResponse
|
|
1285
1291
|
* @throws OciError when an error occurs
|
|
1286
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1292
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateStreamDistributionChannel.ts.html |here} to see how to use CreateStreamDistributionChannel API.
|
|
1287
1293
|
*/
|
|
1288
1294
|
createStreamDistributionChannel(createStreamDistributionChannelRequest) {
|
|
1289
1295
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1347,7 +1353,7 @@ class MediaServicesClient {
|
|
|
1347
1353
|
* @param CreateStreamPackagingConfigRequest
|
|
1348
1354
|
* @return CreateStreamPackagingConfigResponse
|
|
1349
1355
|
* @throws OciError when an error occurs
|
|
1350
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1356
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/CreateStreamPackagingConfig.ts.html |here} to see how to use CreateStreamPackagingConfig API.
|
|
1351
1357
|
*/
|
|
1352
1358
|
createStreamPackagingConfig(createStreamPackagingConfigRequest) {
|
|
1353
1359
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1410,7 +1416,7 @@ class MediaServicesClient {
|
|
|
1410
1416
|
* @param DeleteMediaAssetRequest
|
|
1411
1417
|
* @return DeleteMediaAssetResponse
|
|
1412
1418
|
* @throws OciError when an error occurs
|
|
1413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1419
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteMediaAsset.ts.html |here} to see how to use DeleteMediaAsset API.
|
|
1414
1420
|
*/
|
|
1415
1421
|
deleteMediaAsset(deleteMediaAssetRequest) {
|
|
1416
1422
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1468,7 +1474,7 @@ class MediaServicesClient {
|
|
|
1468
1474
|
* @param DeleteMediaAssetDistributionChannelAttachmentRequest
|
|
1469
1475
|
* @return DeleteMediaAssetDistributionChannelAttachmentResponse
|
|
1470
1476
|
* @throws OciError when an error occurs
|
|
1471
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1477
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use DeleteMediaAssetDistributionChannelAttachment API.
|
|
1472
1478
|
*/
|
|
1473
1479
|
deleteMediaAssetDistributionChannelAttachment(deleteMediaAssetDistributionChannelAttachmentRequest) {
|
|
1474
1480
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1527,7 +1533,7 @@ class MediaServicesClient {
|
|
|
1527
1533
|
* @param DeleteMediaWorkflowRequest
|
|
1528
1534
|
* @return DeleteMediaWorkflowResponse
|
|
1529
1535
|
* @throws OciError when an error occurs
|
|
1530
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1536
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteMediaWorkflow.ts.html |here} to see how to use DeleteMediaWorkflow API.
|
|
1531
1537
|
*/
|
|
1532
1538
|
deleteMediaWorkflow(deleteMediaWorkflowRequest) {
|
|
1533
1539
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1584,7 +1590,7 @@ class MediaServicesClient {
|
|
|
1584
1590
|
* @param DeleteMediaWorkflowConfigurationRequest
|
|
1585
1591
|
* @return DeleteMediaWorkflowConfigurationResponse
|
|
1586
1592
|
* @throws OciError when an error occurs
|
|
1587
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1593
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteMediaWorkflowConfiguration.ts.html |here} to see how to use DeleteMediaWorkflowConfiguration API.
|
|
1588
1594
|
*/
|
|
1589
1595
|
deleteMediaWorkflowConfiguration(deleteMediaWorkflowConfigurationRequest) {
|
|
1590
1596
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1641,7 +1647,7 @@ class MediaServicesClient {
|
|
|
1641
1647
|
* @param DeleteMediaWorkflowJobRequest
|
|
1642
1648
|
* @return DeleteMediaWorkflowJobResponse
|
|
1643
1649
|
* @throws OciError when an error occurs
|
|
1644
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1650
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteMediaWorkflowJob.ts.html |here} to see how to use DeleteMediaWorkflowJob API.
|
|
1645
1651
|
*/
|
|
1646
1652
|
deleteMediaWorkflowJob(deleteMediaWorkflowJobRequest) {
|
|
1647
1653
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1698,7 +1704,7 @@ class MediaServicesClient {
|
|
|
1698
1704
|
* @param DeleteStreamCdnConfigRequest
|
|
1699
1705
|
* @return DeleteStreamCdnConfigResponse
|
|
1700
1706
|
* @throws OciError when an error occurs
|
|
1701
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1707
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteStreamCdnConfig.ts.html |here} to see how to use DeleteStreamCdnConfig API.
|
|
1702
1708
|
*/
|
|
1703
1709
|
deleteStreamCdnConfig(deleteStreamCdnConfigRequest) {
|
|
1704
1710
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1755,7 +1761,7 @@ class MediaServicesClient {
|
|
|
1755
1761
|
* @param DeleteStreamDistributionChannelRequest
|
|
1756
1762
|
* @return DeleteStreamDistributionChannelResponse
|
|
1757
1763
|
* @throws OciError when an error occurs
|
|
1758
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1764
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteStreamDistributionChannel.ts.html |here} to see how to use DeleteStreamDistributionChannel API.
|
|
1759
1765
|
*/
|
|
1760
1766
|
deleteStreamDistributionChannel(deleteStreamDistributionChannelRequest) {
|
|
1761
1767
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1812,7 +1818,7 @@ class MediaServicesClient {
|
|
|
1812
1818
|
* @param DeleteStreamPackagingConfigRequest
|
|
1813
1819
|
* @return DeleteStreamPackagingConfigResponse
|
|
1814
1820
|
* @throws OciError when an error occurs
|
|
1815
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1821
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/DeleteStreamPackagingConfig.ts.html |here} to see how to use DeleteStreamPackagingConfig API.
|
|
1816
1822
|
*/
|
|
1817
1823
|
deleteStreamPackagingConfig(deleteStreamPackagingConfigRequest) {
|
|
1818
1824
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1869,7 +1875,7 @@ class MediaServicesClient {
|
|
|
1869
1875
|
* @param GetMediaAssetRequest
|
|
1870
1876
|
* @return GetMediaAssetResponse
|
|
1871
1877
|
* @throws OciError when an error occurs
|
|
1872
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1878
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetMediaAsset.ts.html |here} to see how to use GetMediaAsset API.
|
|
1873
1879
|
*/
|
|
1874
1880
|
getMediaAsset(getMediaAssetRequest) {
|
|
1875
1881
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1932,7 +1938,7 @@ class MediaServicesClient {
|
|
|
1932
1938
|
* @param GetMediaAssetDistributionChannelAttachmentRequest
|
|
1933
1939
|
* @return GetMediaAssetDistributionChannelAttachmentResponse
|
|
1934
1940
|
* @throws OciError when an error occurs
|
|
1935
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1941
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetMediaAssetDistributionChannelAttachment.ts.html |here} to see how to use GetMediaAssetDistributionChannelAttachment API.
|
|
1936
1942
|
*/
|
|
1937
1943
|
getMediaAssetDistributionChannelAttachment(getMediaAssetDistributionChannelAttachmentRequest) {
|
|
1938
1944
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1998,7 +2004,7 @@ class MediaServicesClient {
|
|
|
1998
2004
|
* @param GetMediaWorkflowRequest
|
|
1999
2005
|
* @return GetMediaWorkflowResponse
|
|
2000
2006
|
* @throws OciError when an error occurs
|
|
2001
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2007
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetMediaWorkflow.ts.html |here} to see how to use GetMediaWorkflow API.
|
|
2002
2008
|
*/
|
|
2003
2009
|
getMediaWorkflow(getMediaWorkflowRequest) {
|
|
2004
2010
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2061,7 +2067,7 @@ class MediaServicesClient {
|
|
|
2061
2067
|
* @param GetMediaWorkflowConfigurationRequest
|
|
2062
2068
|
* @return GetMediaWorkflowConfigurationResponse
|
|
2063
2069
|
* @throws OciError when an error occurs
|
|
2064
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2070
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetMediaWorkflowConfiguration.ts.html |here} to see how to use GetMediaWorkflowConfiguration API.
|
|
2065
2071
|
*/
|
|
2066
2072
|
getMediaWorkflowConfiguration(getMediaWorkflowConfigurationRequest) {
|
|
2067
2073
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2124,7 +2130,7 @@ class MediaServicesClient {
|
|
|
2124
2130
|
* @param GetMediaWorkflowJobRequest
|
|
2125
2131
|
* @return GetMediaWorkflowJobResponse
|
|
2126
2132
|
* @throws OciError when an error occurs
|
|
2127
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetMediaWorkflowJob.ts.html |here} to see how to use GetMediaWorkflowJob API.
|
|
2128
2134
|
*/
|
|
2129
2135
|
getMediaWorkflowJob(getMediaWorkflowJobRequest) {
|
|
2130
2136
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2187,7 +2193,7 @@ class MediaServicesClient {
|
|
|
2187
2193
|
* @param GetStreamCdnConfigRequest
|
|
2188
2194
|
* @return GetStreamCdnConfigResponse
|
|
2189
2195
|
* @throws OciError when an error occurs
|
|
2190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2196
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetStreamCdnConfig.ts.html |here} to see how to use GetStreamCdnConfig API.
|
|
2191
2197
|
*/
|
|
2192
2198
|
getStreamCdnConfig(getStreamCdnConfigRequest) {
|
|
2193
2199
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2250,7 +2256,7 @@ class MediaServicesClient {
|
|
|
2250
2256
|
* @param GetStreamDistributionChannelRequest
|
|
2251
2257
|
* @return GetStreamDistributionChannelResponse
|
|
2252
2258
|
* @throws OciError when an error occurs
|
|
2253
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetStreamDistributionChannel.ts.html |here} to see how to use GetStreamDistributionChannel API.
|
|
2254
2260
|
*/
|
|
2255
2261
|
getStreamDistributionChannel(getStreamDistributionChannelRequest) {
|
|
2256
2262
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2313,7 +2319,7 @@ class MediaServicesClient {
|
|
|
2313
2319
|
* @param GetStreamPackagingConfigRequest
|
|
2314
2320
|
* @return GetStreamPackagingConfigResponse
|
|
2315
2321
|
* @throws OciError when an error occurs
|
|
2316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2322
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GetStreamPackagingConfig.ts.html |here} to see how to use GetStreamPackagingConfig API.
|
|
2317
2323
|
*/
|
|
2318
2324
|
getStreamPackagingConfig(getStreamPackagingConfigRequest) {
|
|
2319
2325
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2376,7 +2382,7 @@ class MediaServicesClient {
|
|
|
2376
2382
|
* @param IngestStreamDistributionChannelRequest
|
|
2377
2383
|
* @return IngestStreamDistributionChannelResponse
|
|
2378
2384
|
* @throws OciError when an error occurs
|
|
2379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2385
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/IngestStreamDistributionChannel.ts.html |here} to see how to use IngestStreamDistributionChannel API.
|
|
2380
2386
|
*/
|
|
2381
2387
|
ingestStreamDistributionChannel(ingestStreamDistributionChannelRequest) {
|
|
2382
2388
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2436,7 +2442,7 @@ class MediaServicesClient {
|
|
|
2436
2442
|
* @param ListMediaAssetDistributionChannelAttachmentsRequest
|
|
2437
2443
|
* @return ListMediaAssetDistributionChannelAttachmentsResponse
|
|
2438
2444
|
* @throws OciError when an error occurs
|
|
2439
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2445
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListMediaAssetDistributionChannelAttachments.ts.html |here} to see how to use ListMediaAssetDistributionChannelAttachments API.
|
|
2440
2446
|
*/
|
|
2441
2447
|
listMediaAssetDistributionChannelAttachments(listMediaAssetDistributionChannelAttachmentsRequest) {
|
|
2442
2448
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2507,7 +2513,7 @@ class MediaServicesClient {
|
|
|
2507
2513
|
* @param ListMediaAssetsRequest
|
|
2508
2514
|
* @return ListMediaAssetsResponse
|
|
2509
2515
|
* @throws OciError when an error occurs
|
|
2510
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2516
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListMediaAssets.ts.html |here} to see how to use ListMediaAssets API.
|
|
2511
2517
|
*/
|
|
2512
2518
|
listMediaAssets(listMediaAssetsRequest) {
|
|
2513
2519
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2586,7 +2592,7 @@ class MediaServicesClient {
|
|
|
2586
2592
|
* @param ListMediaWorkflowConfigurationsRequest
|
|
2587
2593
|
* @return ListMediaWorkflowConfigurationsResponse
|
|
2588
2594
|
* @throws OciError when an error occurs
|
|
2589
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListMediaWorkflowConfigurations.ts.html |here} to see how to use ListMediaWorkflowConfigurations API.
|
|
2590
2596
|
*/
|
|
2591
2597
|
listMediaWorkflowConfigurations(listMediaWorkflowConfigurationsRequest) {
|
|
2592
2598
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2656,7 +2662,7 @@ class MediaServicesClient {
|
|
|
2656
2662
|
* @param ListMediaWorkflowJobsRequest
|
|
2657
2663
|
* @return ListMediaWorkflowJobsResponse
|
|
2658
2664
|
* @throws OciError when an error occurs
|
|
2659
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2665
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListMediaWorkflowJobs.ts.html |here} to see how to use ListMediaWorkflowJobs API.
|
|
2660
2666
|
*/
|
|
2661
2667
|
listMediaWorkflowJobs(listMediaWorkflowJobsRequest) {
|
|
2662
2668
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2728,7 +2734,7 @@ class MediaServicesClient {
|
|
|
2728
2734
|
* @param ListMediaWorkflowTaskDeclarationsRequest
|
|
2729
2735
|
* @return ListMediaWorkflowTaskDeclarationsResponse
|
|
2730
2736
|
* @throws OciError when an error occurs
|
|
2731
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2737
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListMediaWorkflowTaskDeclarations.ts.html |here} to see how to use ListMediaWorkflowTaskDeclarations API.
|
|
2732
2738
|
*/
|
|
2733
2739
|
listMediaWorkflowTaskDeclarations(listMediaWorkflowTaskDeclarationsRequest) {
|
|
2734
2740
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2798,7 +2804,7 @@ class MediaServicesClient {
|
|
|
2798
2804
|
* @param ListMediaWorkflowsRequest
|
|
2799
2805
|
* @return ListMediaWorkflowsResponse
|
|
2800
2806
|
* @throws OciError when an error occurs
|
|
2801
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2807
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListMediaWorkflows.ts.html |here} to see how to use ListMediaWorkflows API.
|
|
2802
2808
|
*/
|
|
2803
2809
|
listMediaWorkflows(listMediaWorkflowsRequest) {
|
|
2804
2810
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2868,7 +2874,7 @@ class MediaServicesClient {
|
|
|
2868
2874
|
* @param ListStreamCdnConfigsRequest
|
|
2869
2875
|
* @return ListStreamCdnConfigsResponse
|
|
2870
2876
|
* @throws OciError when an error occurs
|
|
2871
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2877
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListStreamCdnConfigs.ts.html |here} to see how to use ListStreamCdnConfigs API.
|
|
2872
2878
|
*/
|
|
2873
2879
|
listStreamCdnConfigs(listStreamCdnConfigsRequest) {
|
|
2874
2880
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2938,7 +2944,7 @@ class MediaServicesClient {
|
|
|
2938
2944
|
* @param ListStreamDistributionChannelsRequest
|
|
2939
2945
|
* @return ListStreamDistributionChannelsResponse
|
|
2940
2946
|
* @throws OciError when an error occurs
|
|
2941
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2947
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListStreamDistributionChannels.ts.html |here} to see how to use ListStreamDistributionChannels API.
|
|
2942
2948
|
*/
|
|
2943
2949
|
listStreamDistributionChannels(listStreamDistributionChannelsRequest) {
|
|
2944
2950
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3008,7 +3014,7 @@ class MediaServicesClient {
|
|
|
3008
3014
|
* @param ListStreamPackagingConfigsRequest
|
|
3009
3015
|
* @return ListStreamPackagingConfigsResponse
|
|
3010
3016
|
* @throws OciError when an error occurs
|
|
3011
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3017
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListStreamPackagingConfigs.ts.html |here} to see how to use ListStreamPackagingConfigs API.
|
|
3012
3018
|
*/
|
|
3013
3019
|
listStreamPackagingConfigs(listStreamPackagingConfigsRequest) {
|
|
3014
3020
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3079,7 +3085,7 @@ class MediaServicesClient {
|
|
|
3079
3085
|
* @param ListSystemMediaWorkflowsRequest
|
|
3080
3086
|
* @return ListSystemMediaWorkflowsResponse
|
|
3081
3087
|
* @throws OciError when an error occurs
|
|
3082
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3088
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/ListSystemMediaWorkflows.ts.html |here} to see how to use ListSystemMediaWorkflows API.
|
|
3083
3089
|
*/
|
|
3084
3090
|
listSystemMediaWorkflows(listSystemMediaWorkflowsRequest) {
|
|
3085
3091
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3147,7 +3153,7 @@ class MediaServicesClient {
|
|
|
3147
3153
|
* @param RemoveMediaAssetLockRequest
|
|
3148
3154
|
* @return RemoveMediaAssetLockResponse
|
|
3149
3155
|
* @throws OciError when an error occurs
|
|
3150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveMediaAssetLock.ts.html |here} to see how to use RemoveMediaAssetLock API.
|
|
3151
3157
|
*/
|
|
3152
3158
|
removeMediaAssetLock(removeMediaAssetLockRequest) {
|
|
3153
3159
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3214,7 +3220,7 @@ class MediaServicesClient {
|
|
|
3214
3220
|
* @param RemoveMediaWorkflowConfigurationLockRequest
|
|
3215
3221
|
* @return RemoveMediaWorkflowConfigurationLockResponse
|
|
3216
3222
|
* @throws OciError when an error occurs
|
|
3217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveMediaWorkflowConfigurationLock.ts.html |here} to see how to use RemoveMediaWorkflowConfigurationLock API.
|
|
3218
3224
|
*/
|
|
3219
3225
|
removeMediaWorkflowConfigurationLock(removeMediaWorkflowConfigurationLockRequest) {
|
|
3220
3226
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3281,7 +3287,7 @@ class MediaServicesClient {
|
|
|
3281
3287
|
* @param RemoveMediaWorkflowJobLockRequest
|
|
3282
3288
|
* @return RemoveMediaWorkflowJobLockResponse
|
|
3283
3289
|
* @throws OciError when an error occurs
|
|
3284
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3290
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveMediaWorkflowJobLock.ts.html |here} to see how to use RemoveMediaWorkflowJobLock API.
|
|
3285
3291
|
*/
|
|
3286
3292
|
removeMediaWorkflowJobLock(removeMediaWorkflowJobLockRequest) {
|
|
3287
3293
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3348,7 +3354,7 @@ class MediaServicesClient {
|
|
|
3348
3354
|
* @param RemoveMediaWorkflowLockRequest
|
|
3349
3355
|
* @return RemoveMediaWorkflowLockResponse
|
|
3350
3356
|
* @throws OciError when an error occurs
|
|
3351
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveMediaWorkflowLock.ts.html |here} to see how to use RemoveMediaWorkflowLock API.
|
|
3352
3358
|
*/
|
|
3353
3359
|
removeMediaWorkflowLock(removeMediaWorkflowLockRequest) {
|
|
3354
3360
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3415,7 +3421,7 @@ class MediaServicesClient {
|
|
|
3415
3421
|
* @param RemoveStreamCdnConfigLockRequest
|
|
3416
3422
|
* @return RemoveStreamCdnConfigLockResponse
|
|
3417
3423
|
* @throws OciError when an error occurs
|
|
3418
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveStreamCdnConfigLock.ts.html |here} to see how to use RemoveStreamCdnConfigLock API.
|
|
3419
3425
|
*/
|
|
3420
3426
|
removeStreamCdnConfigLock(removeStreamCdnConfigLockRequest) {
|
|
3421
3427
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3482,7 +3488,7 @@ class MediaServicesClient {
|
|
|
3482
3488
|
* @param RemoveStreamDistributionChannelLockRequest
|
|
3483
3489
|
* @return RemoveStreamDistributionChannelLockResponse
|
|
3484
3490
|
* @throws OciError when an error occurs
|
|
3485
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3491
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveStreamDistributionChannelLock.ts.html |here} to see how to use RemoveStreamDistributionChannelLock API.
|
|
3486
3492
|
*/
|
|
3487
3493
|
removeStreamDistributionChannelLock(removeStreamDistributionChannelLockRequest) {
|
|
3488
3494
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3549,7 +3555,7 @@ class MediaServicesClient {
|
|
|
3549
3555
|
* @param RemoveStreamPackagingConfigLockRequest
|
|
3550
3556
|
* @return RemoveStreamPackagingConfigLockResponse
|
|
3551
3557
|
* @throws OciError when an error occurs
|
|
3552
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3558
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/RemoveStreamPackagingConfigLock.ts.html |here} to see how to use RemoveStreamPackagingConfigLock API.
|
|
3553
3559
|
*/
|
|
3554
3560
|
removeStreamPackagingConfigLock(removeStreamPackagingConfigLockRequest) {
|
|
3555
3561
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3615,7 +3621,7 @@ class MediaServicesClient {
|
|
|
3615
3621
|
* @param UpdateMediaAssetRequest
|
|
3616
3622
|
* @return UpdateMediaAssetResponse
|
|
3617
3623
|
* @throws OciError when an error occurs
|
|
3618
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3624
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateMediaAsset.ts.html |here} to see how to use UpdateMediaAsset API.
|
|
3619
3625
|
*/
|
|
3620
3626
|
updateMediaAsset(updateMediaAssetRequest) {
|
|
3621
3627
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3682,7 +3688,7 @@ class MediaServicesClient {
|
|
|
3682
3688
|
* @param UpdateMediaWorkflowRequest
|
|
3683
3689
|
* @return UpdateMediaWorkflowResponse
|
|
3684
3690
|
* @throws OciError when an error occurs
|
|
3685
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3691
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateMediaWorkflow.ts.html |here} to see how to use UpdateMediaWorkflow API.
|
|
3686
3692
|
*/
|
|
3687
3693
|
updateMediaWorkflow(updateMediaWorkflowRequest) {
|
|
3688
3694
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3749,7 +3755,7 @@ class MediaServicesClient {
|
|
|
3749
3755
|
* @param UpdateMediaWorkflowConfigurationRequest
|
|
3750
3756
|
* @return UpdateMediaWorkflowConfigurationResponse
|
|
3751
3757
|
* @throws OciError when an error occurs
|
|
3752
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3758
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateMediaWorkflowConfiguration.ts.html |here} to see how to use UpdateMediaWorkflowConfiguration API.
|
|
3753
3759
|
*/
|
|
3754
3760
|
updateMediaWorkflowConfiguration(updateMediaWorkflowConfigurationRequest) {
|
|
3755
3761
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3816,7 +3822,7 @@ class MediaServicesClient {
|
|
|
3816
3822
|
* @param UpdateMediaWorkflowJobRequest
|
|
3817
3823
|
* @return UpdateMediaWorkflowJobResponse
|
|
3818
3824
|
* @throws OciError when an error occurs
|
|
3819
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3825
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateMediaWorkflowJob.ts.html |here} to see how to use UpdateMediaWorkflowJob API.
|
|
3820
3826
|
*/
|
|
3821
3827
|
updateMediaWorkflowJob(updateMediaWorkflowJobRequest) {
|
|
3822
3828
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3883,7 +3889,7 @@ class MediaServicesClient {
|
|
|
3883
3889
|
* @param UpdateStreamCdnConfigRequest
|
|
3884
3890
|
* @return UpdateStreamCdnConfigResponse
|
|
3885
3891
|
* @throws OciError when an error occurs
|
|
3886
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3892
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateStreamCdnConfig.ts.html |here} to see how to use UpdateStreamCdnConfig API.
|
|
3887
3893
|
*/
|
|
3888
3894
|
updateStreamCdnConfig(updateStreamCdnConfigRequest) {
|
|
3889
3895
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3950,7 +3956,7 @@ class MediaServicesClient {
|
|
|
3950
3956
|
* @param UpdateStreamDistributionChannelRequest
|
|
3951
3957
|
* @return UpdateStreamDistributionChannelResponse
|
|
3952
3958
|
* @throws OciError when an error occurs
|
|
3953
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3959
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateStreamDistributionChannel.ts.html |here} to see how to use UpdateStreamDistributionChannel API.
|
|
3954
3960
|
*/
|
|
3955
3961
|
updateStreamDistributionChannel(updateStreamDistributionChannelRequest) {
|
|
3956
3962
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4017,7 +4023,7 @@ class MediaServicesClient {
|
|
|
4017
4023
|
* @param UpdateStreamPackagingConfigRequest
|
|
4018
4024
|
* @return UpdateStreamPackagingConfigResponse
|
|
4019
4025
|
* @throws OciError when an error occurs
|
|
4020
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4026
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/UpdateStreamPackagingConfig.ts.html |here} to see how to use UpdateStreamPackagingConfig API.
|
|
4021
4027
|
*/
|
|
4022
4028
|
updateStreamPackagingConfig(updateStreamPackagingConfigRequest) {
|
|
4023
4029
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4202,13 +4208,19 @@ class MediaStreamClient {
|
|
|
4202
4208
|
this._circuitBreaker.shutdown();
|
|
4203
4209
|
}
|
|
4204
4210
|
}
|
|
4211
|
+
/**
|
|
4212
|
+
* Close the client once it is no longer needed
|
|
4213
|
+
*/
|
|
4214
|
+
close() {
|
|
4215
|
+
this.shutdownCircuitBreaker();
|
|
4216
|
+
}
|
|
4205
4217
|
/**
|
|
4206
4218
|
* Gets the playlist content for the specified Packaging Configuration and Media Asset combination. This API call is made using the MediaStreamsClient, which requires the endpoint to be set with the value of the distribution channel domain name (for example, https://example_channel.dc.mediaservices.example_region.oci.oraclecloud.com) to generate a session token or playlist for a media asset registered in this distribution channel.
|
|
4207
4219
|
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
4208
4220
|
* @param GeneratePlaylistRequest
|
|
4209
4221
|
* @return GeneratePlaylistResponse
|
|
4210
4222
|
* @throws OciError when an error occurs
|
|
4211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GeneratePlaylist.ts.html |here} to see how to use GeneratePlaylist API.
|
|
4212
4224
|
*/
|
|
4213
4225
|
generatePlaylist(generatePlaylistRequest) {
|
|
4214
4226
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -4272,7 +4284,7 @@ class MediaStreamClient {
|
|
|
4272
4284
|
* @param GenerateSessionTokenRequest
|
|
4273
4285
|
* @return GenerateSessionTokenResponse
|
|
4274
4286
|
* @throws OciError when an error occurs
|
|
4275
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
4287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/mediaservices/GenerateSessionToken.ts.html |here} to see how to use GenerateSessionToken API.
|
|
4276
4288
|
*/
|
|
4277
4289
|
generateSessionToken(generateSessionTokenRequest) {
|
|
4278
4290
|
return __awaiter(this, void 0, void 0, function* () {
|