Skip to content

Commit

Permalink
Merge pull request #369 from apivideo/update-video-status-endpoint-de…
Browse files Browse the repository at this point in the history
…scription

Update VideoStatusIngest enum descriptions
  • Loading branch information
olivier-lando authored Feb 19, 2024
2 parents 0eda0e6 + 4c9e95a commit 0e54dfa
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 2 deletions.
2 changes: 2 additions & 0 deletions config/android.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.5.5 (2024-02-19):
- Update VideoStatusIngest enum
- 1.5.4 (2024-01-08):
- Upgrade dependencies, gradle and Kotlin
- 1.5.3 (2023-12-14):
Expand Down
2 changes: 2 additions & 0 deletions config/csharp.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.3.1 (2024-02-19):
- Update VideoStatusIngest enum
- 1.3.0 (2023-06-28):
- Introducing new live streams restream feature
- Introducing new analytics endpoints
Expand Down
2 changes: 2 additions & 0 deletions config/go.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.3.1 (2024-02-19):
- Update VideoStatusIngest enum
- 1.3.0 (2023-06-28):
- Introducing new live streams restream feature
- Introducing new analytics endpoints
Expand Down
2 changes: 2 additions & 0 deletions config/java.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.3.2 (2024-02-19):
- Update VideoStatusIngest enum
- 1.3.1 (2023-08-10):
- Fix upload with upload token and video id when video is smaller than chunk size
- 1.3.0 (2023-06-28):
Expand Down
2 changes: 2 additions & 0 deletions config/nodejs.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 2.5.6 (2024-02-19):
- Update VideoStatusIngest enum
- 2.5.5 (2023-12-19):
- Fix documentation links
- 2.5.4 (2023-08-21):
Expand Down
2 changes: 2 additions & 0 deletions config/php.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.3.2 (2024-02-19):
- Update VideoStatusIngest enum
- 1.3.1 (2023-06-28):
- Added missing AuthenticationFailedException
- 1.3.0 (2023-06-28):
Expand Down
2 changes: 2 additions & 0 deletions config/python.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.3.1 (2024-02-19):
- Update VideoStatusIngest enum
- 1.3.0 (2023-06-28):
- Introducing new live streams restream feature
- Introducing new analytics endpoints
Expand Down
2 changes: 2 additions & 0 deletions config/swift5.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
changelog:
- 1.2.2 (2024-02-19):
- Update VideoStatusIngest enum
- 1.2.1 (2023-08-25):
- Fix progressive upload with upload token and video id
- Use pascal case for enums
Expand Down
10 changes: 8 additions & 2 deletions oas_apivideo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12859,12 +12859,18 @@ components:
properties:
status:
type: string
description: There are three possible ingest statuses. missing - you are missing information required to ingest the video. uploading - the video is in the process of being uploaded. uploaded - the video is ready for use.
description: |
There are four possible statuses depending on how you provide a video file:
- `uploading` - the API is gathering the video source file from an upload.
- `uploaded` - the video file is fully uploaded.
- `ingesting` - the API is gathering the video source file from either a URL, or from cloning.
- `ingested` - the video file is fully stored.
example: uploaded
enum:
- missing
- uploading
- uploaded
- ingesting
- ingested
filesize:
type: integer
description: The size of your file in bytes.
Expand Down

0 comments on commit 0e54dfa

Please sign in to comment.