@@ -856,12 +856,27 @@ paths:
856
856
summary : Live Video To Video
857
857
description : Apply transformations to a live video streamed to the returned endpoints.
858
858
operationId : genLiveVideoToVideo
859
+ security :
860
+ - HTTPBearer : []
861
+ parameters :
862
+ - name : requestID
863
+ in : header
864
+ required : false
865
+ schema :
866
+ type : string
867
+ title : Requestid
868
+ - name : streamID
869
+ in : header
870
+ required : false
871
+ schema :
872
+ type : string
873
+ title : Streamid
859
874
requestBody :
875
+ required : true
860
876
content :
861
877
application/json :
862
878
schema :
863
879
$ref : ' #/components/schemas/LiveVideoToVideoParams'
864
- required : true
865
880
responses :
866
881
' 200 ' :
867
882
description : Successful Response
@@ -871,31 +886,29 @@ paths:
871
886
$ref : ' #/components/schemas/LiveVideoToVideoResponse'
872
887
x-speakeasy-name-override : data
873
888
' 400 ' :
874
- description : Bad Request
875
889
content :
876
890
application/json :
877
891
schema :
878
892
$ref : ' #/components/schemas/HTTPError'
893
+ description : Bad Request
879
894
' 401 ' :
880
- description : Unauthorized
881
895
content :
882
896
application/json :
883
897
schema :
884
898
$ref : ' #/components/schemas/HTTPError'
899
+ description : Unauthorized
885
900
' 500 ' :
886
- description : Internal Server Error
887
901
content :
888
902
application/json :
889
903
schema :
890
904
$ref : ' #/components/schemas/HTTPError'
905
+ description : Internal Server Error
891
906
' 422 ' :
892
907
description : Validation Error
893
908
content :
894
909
application/json :
895
910
schema :
896
911
$ref : ' #/components/schemas/HTTPValidationError'
897
- security :
898
- - HTTPBearer : []
899
912
x-speakeasy-name-override : liveVideoToVideo
900
913
x-codeSamples :
901
914
- lang : typescript
@@ -1512,6 +1525,16 @@ components:
1512
1525
title : Params
1513
1526
description : Initial parameters for the pipeline.
1514
1527
default : {}
1528
+ gateway_request_id :
1529
+ type : string
1530
+ title : Gateway Request Id
1531
+ description : The ID of the Gateway request (for logging purposes).
1532
+ default : ' '
1533
+ stream_id :
1534
+ type : string
1535
+ title : Stream Id
1536
+ description : The Stream ID (for logging purposes).
1537
+ default : ' '
1515
1538
type : object
1516
1539
required :
1517
1540
- subscribe_url
@@ -1538,6 +1561,11 @@ components:
1538
1561
title : Events Url
1539
1562
description : URL for subscribing to events for pipeline status and logs
1540
1563
default : ' '
1564
+ request_id :
1565
+ type : string
1566
+ title : Request Id
1567
+ description : The ID generated for this request
1568
+ default : ' '
1541
1569
type : object
1542
1570
required :
1543
1571
- subscribe_url
0 commit comments