telestream_cloud_flip 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/README.md +130 -0
  4. data/Rakefile +8 -0
  5. data/docs/CanceledResponse.md +8 -0
  6. data/docs/CloudNotificationSettings.md +11 -0
  7. data/docs/CloudNotificationSettingsEvents.md +11 -0
  8. data/docs/CopyProfileBody.md +9 -0
  9. data/docs/CountResponse.md +8 -0
  10. data/docs/CreateEncodingBody.md +10 -0
  11. data/docs/CreateVideoBody.md +12 -0
  12. data/docs/DeletedResponse.md +8 -0
  13. data/docs/Encoding.md +38 -0
  14. data/docs/EncodingSignedUrl.md +8 -0
  15. data/docs/EncodingSignedUrls.md +8 -0
  16. data/docs/Error.md +9 -0
  17. data/docs/ExtraFile.md +10 -0
  18. data/docs/Factory.md +25 -0
  19. data/docs/FactoryBody.md +23 -0
  20. data/docs/FactoryBodyStorageCredentialAttributes.md +11 -0
  21. data/docs/FactorySync.md +8 -0
  22. data/docs/FactorySyncBody.md +8 -0
  23. data/docs/FlipApi.md +2179 -0
  24. data/docs/PaginatedEncodingsCollection.md +11 -0
  25. data/docs/PaginatedFactoryCollection.md +11 -0
  26. data/docs/PaginatedProfilesCollection.md +11 -0
  27. data/docs/PaginatedVideoCollection.md +11 -0
  28. data/docs/PaginatedWorkflowsCollection.md +11 -0
  29. data/docs/Profile.md +135 -0
  30. data/docs/ProfileBody.md +137 -0
  31. data/docs/ResubmitVideoBody.md +8 -0
  32. data/docs/RetriedResponse.md +8 -0
  33. data/docs/SignedVideoUrl.md +8 -0
  34. data/docs/UpdateEncodingBody.md +9 -0
  35. data/docs/UploadSession.md +13 -0
  36. data/docs/Video.md +31 -0
  37. data/docs/VideoMetadata.md +7 -0
  38. data/docs/VideoUploadBody.md +24 -0
  39. data/git_push.sh +55 -0
  40. data/lib/telestream_cloud_flip/api/flip_api.rb +2385 -0
  41. data/lib/telestream_cloud_flip/api_client.rb +389 -0
  42. data/lib/telestream_cloud_flip/api_error.rb +38 -0
  43. data/lib/telestream_cloud_flip/configuration.rb +209 -0
  44. data/lib/telestream_cloud_flip/models/canceled_response.rb +189 -0
  45. data/lib/telestream_cloud_flip/models/cloud_notification_settings.rb +237 -0
  46. data/lib/telestream_cloud_flip/models/cloud_notification_settings_events.rb +239 -0
  47. data/lib/telestream_cloud_flip/models/copy_profile_body.rb +209 -0
  48. data/lib/telestream_cloud_flip/models/count_response.rb +189 -0
  49. data/lib/telestream_cloud_flip/models/create_encoding_body.rb +214 -0
  50. data/lib/telestream_cloud_flip/models/create_video_body.rb +231 -0
  51. data/lib/telestream_cloud_flip/models/deleted_response.rb +189 -0
  52. data/lib/telestream_cloud_flip/models/encoding.rb +486 -0
  53. data/lib/telestream_cloud_flip/models/encoding_signed_url.rb +189 -0
  54. data/lib/telestream_cloud_flip/models/encoding_signed_urls.rb +191 -0
  55. data/lib/telestream_cloud_flip/models/error.rb +199 -0
  56. data/lib/telestream_cloud_flip/models/extra_file.rb +221 -0
  57. data/lib/telestream_cloud_flip/models/factory.rb +388 -0
  58. data/lib/telestream_cloud_flip/models/factory_body.rb +374 -0
  59. data/lib/telestream_cloud_flip/models/factory_body_storage_credential_attributes.rb +215 -0
  60. data/lib/telestream_cloud_flip/models/factory_sync.rb +222 -0
  61. data/lib/telestream_cloud_flip/models/factory_sync_body.rb +227 -0
  62. data/lib/telestream_cloud_flip/models/paginated_encodings_collection.rb +240 -0
  63. data/lib/telestream_cloud_flip/models/paginated_factory_collection.rb +220 -0
  64. data/lib/telestream_cloud_flip/models/paginated_profiles_collection.rb +220 -0
  65. data/lib/telestream_cloud_flip/models/paginated_video_collection.rb +220 -0
  66. data/lib/telestream_cloud_flip/models/paginated_workflows_collection.rb +220 -0
  67. data/lib/telestream_cloud_flip/models/profile.rb +1777 -0
  68. data/lib/telestream_cloud_flip/models/profile_body.rb +1762 -0
  69. data/lib/telestream_cloud_flip/models/resubmit_video_body.rb +189 -0
  70. data/lib/telestream_cloud_flip/models/retried_response.rb +189 -0
  71. data/lib/telestream_cloud_flip/models/signed_video_url.rb +189 -0
  72. data/lib/telestream_cloud_flip/models/update_encoding_body.rb +199 -0
  73. data/lib/telestream_cloud_flip/models/upload_session.rb +249 -0
  74. data/lib/telestream_cloud_flip/models/video.rb +418 -0
  75. data/lib/telestream_cloud_flip/models/video_metadata.rb +179 -0
  76. data/lib/telestream_cloud_flip/models/video_upload_body.rb +362 -0
  77. data/lib/telestream_cloud_flip/uploader.rb +244 -0
  78. data/lib/telestream_cloud_flip/version.rb +18 -0
  79. data/lib/telestream_cloud_flip.rb +79 -0
  80. data/spec/api/flip_api_spec.rb +550 -0
  81. data/spec/api_client_spec.rb +226 -0
  82. data/spec/configuration_spec.rb +42 -0
  83. data/spec/models/canceled_response_spec.rb +42 -0
  84. data/spec/models/cloud_notification_settings_events_spec.rb +60 -0
  85. data/spec/models/cloud_notification_settings_spec.rb +60 -0
  86. data/spec/models/copy_profile_body_spec.rb +48 -0
  87. data/spec/models/count_response_spec.rb +42 -0
  88. data/spec/models/create_encoding_body_spec.rb +54 -0
  89. data/spec/models/create_video_body_spec.rb +66 -0
  90. data/spec/models/deleted_response_spec.rb +42 -0
  91. data/spec/models/encoding_signed_url_spec.rb +42 -0
  92. data/spec/models/encoding_signed_urls_spec.rb +42 -0
  93. data/spec/models/encoding_spec.rb +222 -0
  94. data/spec/models/error_spec.rb +48 -0
  95. data/spec/models/extra_file_spec.rb +54 -0
  96. data/spec/models/factory_body_spec.rb +136 -0
  97. data/spec/models/factory_body_storage_credential_attributes_spec.rb +60 -0
  98. data/spec/models/factory_spec.rb +148 -0
  99. data/spec/models/factory_sync_body_spec.rb +46 -0
  100. data/spec/models/factory_sync_spec.rb +46 -0
  101. data/spec/models/paginated_encodings_collection_spec.rb +60 -0
  102. data/spec/models/paginated_factory_collection_spec.rb +60 -0
  103. data/spec/models/paginated_profiles_collection_spec.rb +60 -0
  104. data/spec/models/paginated_video_collection_spec.rb +60 -0
  105. data/spec/models/paginated_workflows_collection_spec.rb +60 -0
  106. data/spec/models/profile_body_spec.rb +916 -0
  107. data/spec/models/profile_spec.rb +916 -0
  108. data/spec/models/resubmit_video_body_spec.rb +42 -0
  109. data/spec/models/retried_response_spec.rb +42 -0
  110. data/spec/models/signed_video_url_spec.rb +42 -0
  111. data/spec/models/update_encoding_body_spec.rb +48 -0
  112. data/spec/models/upload_session_spec.rb +72 -0
  113. data/spec/models/video_metadata_spec.rb +36 -0
  114. data/spec/models/video_spec.rb +180 -0
  115. data/spec/models/video_upload_body_spec.rb +138 -0
  116. data/spec/spec_helper.rb +111 -0
  117. data/telestream_cloud_flip.gemspec +47 -0
  118. metadata +396 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 95853ff716c2f4e6b82b9911123c536fe1f21060
4
+ data.tar.gz: cf7f9cfab031ec209703edf7b2092d3da7c085dd
5
+ SHA512:
6
+ metadata.gz: 0bf6f3ae138e5f44ac05e2ebb7079bf6eac7c6168d089a057874c15185c753fed1f00a67bd78350149a4414c7c4b8ecbee42265b155a1689a7ae7fa8a8106cd4
7
+ data.tar.gz: 965d43fac20540f095ffab5d5d4819b2285ec76e9bb8573067b8876b99e5467932cab35465f66fa5abad25f60fb9ba55679ea35e90daa59ab67b4ac6b02ebc10
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development, :test do
6
+ gem 'rake', '~> 12.0.0'
7
+ end
data/README.md ADDED
@@ -0,0 +1,130 @@
1
+ # Telestream Cloud Flip Ruby SDK
2
+
3
+ This library provides a low-level interface to the REST API of Telestream Cloud, the online video encoding service.
4
+
5
+ ## Getting Started
6
+ ### Initialize client
7
+
8
+ ```ruby
9
+ require 'telestream_cloud'
10
+
11
+ TelestreamCloud::Flip.configure do |config|
12
+ config.api_key['X-Api-Key'] = '[API KEY]'
13
+ end
14
+
15
+ client = TelestreamCloud::Flip::FlipApi.new
16
+ ```
17
+
18
+ ### Upload video to Flip service
19
+
20
+ ```ruby
21
+ factory_id = '...'
22
+ uploader = TelestreamCloud::Flip::Uploader.new(
23
+ client,
24
+ factory_id: factory_id,
25
+ file: '/path/to/file.mp4',
26
+ extra_files: {
27
+ subtitles: '/path/to/subtitles'
28
+ }
29
+ )
30
+
31
+ video_id = uploader.upload
32
+ ```
33
+
34
+ ### Create video from source URL
35
+ ```ruby
36
+ factory_id = '...'
37
+ client.create_video(factory_id, source_url: 'http://url/to/file.mp4')
38
+ ```
39
+
40
+ ## Documentation for API Endpoints
41
+
42
+ All URIs are relative to *https://api.cloud.telestream.net/flip/3.1*
43
+
44
+ Class | Method | HTTP request | Description
45
+ ------------ | ------------- | ------------- | -------------
46
+ *TelestreamCloud::Flip::FlipApi* | [**cancel_encoding**](docs/FlipApi.md#cancel_encoding) | **POST** /encodings/{id}/cancel.json | Cancels an Encoding.
47
+ *TelestreamCloud::Flip::FlipApi* | [**copy_profile**](docs/FlipApi.md#copy_profile) | **POST** /profiles/{id}/copy.json | Copies a given Profile
48
+ *TelestreamCloud::Flip::FlipApi* | [**create_encoding**](docs/FlipApi.md#create_encoding) | **POST** /encodings.json | Creates an Encoding
49
+ *TelestreamCloud::Flip::FlipApi* | [**create_factory**](docs/FlipApi.md#create_factory) | **POST** /factories.json | Creates a new factory
50
+ *TelestreamCloud::Flip::FlipApi* | [**create_profile**](docs/FlipApi.md#create_profile) | **POST** /profiles.json | Creates a Profile
51
+ *TelestreamCloud::Flip::FlipApi* | [**create_video**](docs/FlipApi.md#create_video) | **POST** /videos.json | Creates a Video from a provided source_url.
52
+ *TelestreamCloud::Flip::FlipApi* | [**create_workorder**](docs/FlipApi.md#create_workorder) | **POST** /workorders.json | Creates a Workorder.
53
+ *TelestreamCloud::Flip::FlipApi* | [**delete_encoding**](docs/FlipApi.md#delete_encoding) | **DELETE** /encodings/{id}.json | Deletes an Encoding from both Telestream Cloud and your storage. Returns an information whether the operation was successful.
54
+ *TelestreamCloud::Flip::FlipApi* | [**delete_profile**](docs/FlipApi.md#delete_profile) | **DELETE** /profiles/{id}.json | Deletes a given Profile
55
+ *TelestreamCloud::Flip::FlipApi* | [**delete_video**](docs/FlipApi.md#delete_video) | **DELETE** /videos/{id}.json | Deletes a Video object.
56
+ *TelestreamCloud::Flip::FlipApi* | [**delete_video_source**](docs/FlipApi.md#delete_video_source) | **DELETE** /videos/{id}/source.json | Delete a video's source file.
57
+ *TelestreamCloud::Flip::FlipApi* | [**encoding**](docs/FlipApi.md#encoding) | **GET** /encodings/{id}.json | Returns an Encoding object.
58
+ *TelestreamCloud::Flip::FlipApi* | [**encodings**](docs/FlipApi.md#encodings) | **GET** /encodings.json | Returns a list of Encoding objects
59
+ *TelestreamCloud::Flip::FlipApi* | [**encodings_count**](docs/FlipApi.md#encodings_count) | **GET** /encodings/count.json | Returns a number of Encoding objects created using a given factory.
60
+ *TelestreamCloud::Flip::FlipApi* | [**factories**](docs/FlipApi.md#factories) | **GET** /factories.json | Returns a collection of Factory objects.
61
+ *TelestreamCloud::Flip::FlipApi* | [**factory**](docs/FlipApi.md#factory) | **GET** /factories/{id}.json | Returns a Factory object.
62
+ *TelestreamCloud::Flip::FlipApi* | [**notifications**](docs/FlipApi.md#notifications) | **GET** /notifications.json | Returns a Factory's notification settings.
63
+ *TelestreamCloud::Flip::FlipApi* | [**profile**](docs/FlipApi.md#profile) | **GET** /profiles/{id_or_name}.json | Returns a Profile object.
64
+ *TelestreamCloud::Flip::FlipApi* | [**profile_encodings**](docs/FlipApi.md#profile_encodings) | **GET** /profiles/{id_or_name}/encodings.json | Returns a list of Encodings that belong to a Profile.
65
+ *TelestreamCloud::Flip::FlipApi* | [**profiles**](docs/FlipApi.md#profiles) | **GET** /profiles.json | Returns a collection of Profile objects.
66
+ *TelestreamCloud::Flip::FlipApi* | [**queued_videos**](docs/FlipApi.md#queued_videos) | **GET** /videos/queued.json | Returns a collection of Video objects queued for encoding.
67
+ *TelestreamCloud::Flip::FlipApi* | [**resubmit_video**](docs/FlipApi.md#resubmit_video) | **POST** /videos/resubmit.json | Resubmits a video to encode.
68
+ *TelestreamCloud::Flip::FlipApi* | [**retry_encoding**](docs/FlipApi.md#retry_encoding) | **POST** /encodings/{id}/retry.json | Retries a failed encoding.
69
+ *TelestreamCloud::Flip::FlipApi* | [**signed_encoding_url**](docs/FlipApi.md#signed_encoding_url) | **GET** /encodings/{id}/signed-url.json | Returns a signed url pointing to an Encoding.
70
+ *TelestreamCloud::Flip::FlipApi* | [**signed_encoding_urls**](docs/FlipApi.md#signed_encoding_urls) | **GET** /encodings/{id}/signed-urls.json | Returns a list of signed urls pointing to an Encoding's outputs.
71
+ *TelestreamCloud::Flip::FlipApi* | [**signed_video_url**](docs/FlipApi.md#signed_video_url) | **GET** /videos/{id}/signed-url.json | Returns a signed url pointing to a Video.
72
+ *TelestreamCloud::Flip::FlipApi* | [**toggle_factory_sync**](docs/FlipApi.md#toggle_factory_sync) | **POST** /factories/{id}/sync.json | Toggles synchronisation settings.
73
+ *TelestreamCloud::Flip::FlipApi* | [**update_encoding**](docs/FlipApi.md#update_encoding) | **PUT** /encodings/{id}.json | Updates an Encoding
74
+ *TelestreamCloud::Flip::FlipApi* | [**update_factory**](docs/FlipApi.md#update_factory) | **PATCH** /factories/{id}.json | Updates a Factory's settings. Returns a Factory object.
75
+ *TelestreamCloud::Flip::FlipApi* | [**update_notifications**](docs/FlipApi.md#update_notifications) | **PUT** /notifications.json | Updates a Factory's notification settings.
76
+ *TelestreamCloud::Flip::FlipApi* | [**update_profile**](docs/FlipApi.md#update_profile) | **PUT** /profiles/{id}.json | Updates a given Profile
77
+ *TelestreamCloud::Flip::FlipApi* | [**upload_video**](docs/FlipApi.md#upload_video) | **POST** /videos/upload.json | Creates an upload session.
78
+ *TelestreamCloud::Flip::FlipApi* | [**video**](docs/FlipApi.md#video) | **GET** /videos/{id}.json | Returns a Video object.
79
+ *TelestreamCloud::Flip::FlipApi* | [**video_encodings**](docs/FlipApi.md#video_encodings) | **GET** /videos/{id}/encodings.json | Returns a list of Encodings that belong to a Video.
80
+ *TelestreamCloud::Flip::FlipApi* | [**video_metadata**](docs/FlipApi.md#video_metadata) | **GET** /videos/{id}/metadata.json | Returns a Video's metadata
81
+ *TelestreamCloud::Flip::FlipApi* | [**videos**](docs/FlipApi.md#videos) | **GET** /videos.json | Returns a collection of Video objects.
82
+ *TelestreamCloud::Flip::FlipApi* | [**workflows**](docs/FlipApi.md#workflows) | **GET** /workflows.json | Returns a collection of Workflows that belong to a Factory.
83
+
84
+
85
+ ## Documentation for Models
86
+
87
+ - [TelestreamCloud::Flip::CanceledResponse](docs/CanceledResponse.md)
88
+ - [TelestreamCloud::Flip::CloudNotificationSettings](docs/CloudNotificationSettings.md)
89
+ - [TelestreamCloud::Flip::CloudNotificationSettingsEvents](docs/CloudNotificationSettingsEvents.md)
90
+ - [TelestreamCloud::Flip::CopyProfileBody](docs/CopyProfileBody.md)
91
+ - [TelestreamCloud::Flip::CountResponse](docs/CountResponse.md)
92
+ - [TelestreamCloud::Flip::CreateEncodingBody](docs/CreateEncodingBody.md)
93
+ - [TelestreamCloud::Flip::CreateVideoBody](docs/CreateVideoBody.md)
94
+ - [TelestreamCloud::Flip::DeletedResponse](docs/DeletedResponse.md)
95
+ - [TelestreamCloud::Flip::Encoding](docs/Encoding.md)
96
+ - [TelestreamCloud::Flip::EncodingSignedUrl](docs/EncodingSignedUrl.md)
97
+ - [TelestreamCloud::Flip::EncodingSignedUrls](docs/EncodingSignedUrls.md)
98
+ - [TelestreamCloud::Flip::Error](docs/Error.md)
99
+ - [TelestreamCloud::Flip::ExtraFile](docs/ExtraFile.md)
100
+ - [TelestreamCloud::Flip::Factory](docs/Factory.md)
101
+ - [TelestreamCloud::Flip::FactoryBody](docs/FactoryBody.md)
102
+ - [TelestreamCloud::Flip::FactoryBodyStorageCredentialAttributes](docs/FactoryBodyStorageCredentialAttributes.md)
103
+ - [TelestreamCloud::Flip::FactorySync](docs/FactorySync.md)
104
+ - [TelestreamCloud::Flip::FactorySyncBody](docs/FactorySyncBody.md)
105
+ - [TelestreamCloud::Flip::PaginatedEncodingsCollection](docs/PaginatedEncodingsCollection.md)
106
+ - [TelestreamCloud::Flip::PaginatedFactoryCollection](docs/PaginatedFactoryCollection.md)
107
+ - [TelestreamCloud::Flip::PaginatedProfilesCollection](docs/PaginatedProfilesCollection.md)
108
+ - [TelestreamCloud::Flip::PaginatedVideoCollection](docs/PaginatedVideoCollection.md)
109
+ - [TelestreamCloud::Flip::PaginatedWorkflowsCollection](docs/PaginatedWorkflowsCollection.md)
110
+ - [TelestreamCloud::Flip::Profile](docs/Profile.md)
111
+ - [TelestreamCloud::Flip::ProfileBody](docs/ProfileBody.md)
112
+ - [TelestreamCloud::Flip::ResubmitVideoBody](docs/ResubmitVideoBody.md)
113
+ - [TelestreamCloud::Flip::RetriedResponse](docs/RetriedResponse.md)
114
+ - [TelestreamCloud::Flip::SignedVideoUrl](docs/SignedVideoUrl.md)
115
+ - [TelestreamCloud::Flip::UpdateEncodingBody](docs/UpdateEncodingBody.md)
116
+ - [TelestreamCloud::Flip::UploadSession](docs/UploadSession.md)
117
+ - [TelestreamCloud::Flip::Video](docs/Video.md)
118
+ - [TelestreamCloud::Flip::VideoMetadata](docs/VideoMetadata.md)
119
+ - [TelestreamCloud::Flip::VideoUploadBody](docs/VideoUploadBody.md)
120
+
121
+
122
+ ## Documentation for Authorization
123
+
124
+
125
+ ### api_key
126
+
127
+ - **Type**: API key
128
+ - **API key parameter name**: X-Api-Key
129
+ - **Location**: HTTP header
130
+
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ begin
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+ task default: :spec
6
+ rescue LoadError
7
+ # no rspec available
8
+ end
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::CanceledResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **canceled** | **BOOLEAN** | Informs whether an action has been canceled successfully. | [optional]
7
+
8
+
@@ -0,0 +1,11 @@
1
+ # TelestreamCloud::Flip::CloudNotificationSettings
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **url** | **String** | Notifications will be sent to this endpoint. |
7
+ **delay** | **Integer** | |
8
+ **send_video_payload** | **BOOLEAN** | Determines whether a video payload will be included in notification messages. |
9
+ **events** | [**CloudNotificationSettingsEvents**](CloudNotificationSettingsEvents.md) | |
10
+
11
+
@@ -0,0 +1,11 @@
1
+ # TelestreamCloud::Flip::CloudNotificationSettingsEvents
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **encoding_completed** | **BOOLEAN** | If set to `true`, a notification will be sent after an encoding becomes complete. |
7
+ **encoding_progress** | **BOOLEAN** | If set to `true`, a notification will be sent after an encoding's progess changes. |
8
+ **video_created** | **BOOLEAN** | If set to `true`, a notification will be sent after a video is created. |
9
+ **video_encoded** | **BOOLEAN** | If set to `true`, a notification will be sent after a video is encoded. |
10
+
11
+
@@ -0,0 +1,9 @@
1
+ # TelestreamCloud::Flip::CopyProfileBody
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **dest_factory_id** | **String** | an id of a target Factory that will own a copy of the Profile |
7
+ **profile_name** | **String** | a name for a copy of the Profile |
8
+
9
+
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::CountResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **total** | **Integer** | Informs how many objects are stored in the database. | [optional]
7
+
8
+
@@ -0,0 +1,10 @@
1
+ # TelestreamCloud::Flip::CreateEncodingBody
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **video_id** | **String** | Id of a Video that will be encoded. |
7
+ **profile_id** | **String** | Id of a Profile that will be used for encoding. | [optional]
8
+ **profile_name** | **String** | A name of a Profile that will be used for encoding. | [optional]
9
+
10
+
@@ -0,0 +1,12 @@
1
+ # TelestreamCloud::Flip::CreateVideoBody
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **source_url** | **String** | An URL pointing to a source file. | [optional]
7
+ **profiles** | **String** | Comma-separated list of profile names or IDs to be used during encoding. Alternatively, specify none so no encodings are created yet. | [optional]
8
+ **payload** | **String** | Arbitrary string stored along the Video object. | [optional]
9
+ **pipeline** | **String** | String-encoded JSON describing profiles pipeline. | [optional]
10
+ **subtitle_files** | **Array<String>** | A list of urls pointing to remote subtitle files. | [optional]
11
+
12
+
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::DeletedResponse
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **deleted** | **BOOLEAN** | Informs whether an object has been deleted successfully. | [optional]
7
+
8
+
data/docs/Encoding.md ADDED
@@ -0,0 +1,38 @@
1
+ # TelestreamCloud::Flip::Encoding
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **id** | **String** | A unique identifier of an Encoding. | [optional]
7
+ **audio_bitrate** | **Integer** | Audio bitrate (in bits/s). | [optional]
8
+ **audio_channels** | **Integer** | A number of audio channels. | [optional]
9
+ **audio_codec** | **String** | A codec that is used to encode audio streams. | [optional]
10
+ **audio_sample_rate** | **String** | A number of samples of audio carried per second. | [optional]
11
+ **created_at** | **String** | A date and time when the Encoding has been created. | [optional]
12
+ **duration** | **String** | | [optional]
13
+ **encoding_progress** | **String** | | [optional]
14
+ **encoding_time** | **String** | | [optional]
15
+ **error_class** | **String** | A class of an error that has occurred during the encoding process. It is present only if the encoding status is equal to `fail`. | [optional]
16
+ **error_message** | **String** | A message that explains why the encoding process has resulted in an error. It is present only if the encoding status is equal to `fail`. | [optional]
17
+ **external_id** | **String** | | [optional]
18
+ **extname** | **String** | Extension of the output file. | [optional]
19
+ **file_size** | **String** | A size of the output file. | [optional]
20
+ **files** | **Array<String>** | An array of output file names. | [optional]
21
+ **fps** | **String** | Number of frames per second. | [optional]
22
+ **height** | **String** | Height of the output video. | [optional]
23
+ **width** | **String** | Width of the output video. | [optional]
24
+ **logfile_url** | **String** | An URL pointing to a logfile. | [optional]
25
+ **mime_type** | **String** | A mime type of the encoded file. | [optional]
26
+ **parent_encoding_id** | **String** | | [optional]
27
+ **path** | **String** | | [optional]
28
+ **profile_id** | **String** | An id of a related Profile. | [optional]
29
+ **profile_name** | **String** | A name of the used Profile. | [optional]
30
+ **screenshots** | **Array<String>** | | [optional]
31
+ **started_encoding_at** | **String** | A date and time when the encoding process has been started | [optional]
32
+ **status** | **String** | Determines at what stage the encoding process is at the moment. | [optional]
33
+ **updated_at** | **String** | A date and time when a Encoding has been updated last time. | [optional]
34
+ **video_bitrate** | **String** | video bitrate (in bits/s) | [optional]
35
+ **video_codec** | **String** | A codec that is used to encode video streams. | [optional]
36
+ **video_id** | **String** | An id of a related Video object | [optional]
37
+
38
+
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::EncodingSignedUrl
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **signed_url** | **String** | A signed URLs pointing to the encoding's output. | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::EncodingSignedUrls
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **signed_urls** | **Array<String>** | A list of signed URLs pointing to the encoding's outputs. | [optional]
7
+
8
+
data/docs/Error.md ADDED
@@ -0,0 +1,9 @@
1
+ # TelestreamCloud::Flip::Error
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **error** | **String** | Error type | [optional]
7
+ **message** | **String** | Explanation why the error has been raised. | [optional]
8
+
9
+
data/docs/ExtraFile.md ADDED
@@ -0,0 +1,10 @@
1
+ # TelestreamCloud::Flip::ExtraFile
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **tag** | **String** | |
7
+ **file_size** | **Integer** | |
8
+ **file_name** | **String** | |
9
+
10
+
data/docs/Factory.md ADDED
@@ -0,0 +1,25 @@
1
+ # TelestreamCloud::Flip::Factory
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **id** | **String** | A unique identifier of a Factory. | [optional]
7
+ **name** | **String** | Human-readable identifier of a Factory. | [optional]
8
+ **factory_region** | **String** | A region where the factory is located. | [optional]
9
+ **output_bucket_name** | **String** | A bucket where processed files will be stored. | [optional]
10
+ **acl** | **String** | Specify if your files are public or private (private files need authorization url to access). By default this is not set. | [optional]
11
+ **created_at** | **String** | A date and time when a Factory has been created. | [optional]
12
+ **updated_at** | **String** | A date and time when a Factory has been updated last time. | [optional]
13
+ **url** | **String** | An URL pointing to the output_bucket_name. | [optional]
14
+ **server_side_encryption** | **BOOLEAN** | Specify if you want to use multi-factor server-side 256-bit AES-256 data encryption with Amazon S3-managed encryption keys (SSE-S3). Each object is encrypted using a unique key which as an additional safeguard is encrypted itself with a master key that S3 regularly rotates. By default this is not set. | [optional]
15
+ **input_bucket_name** | **String** | A name of an input bucket. | [optional]
16
+ **input_bucket_watch** | **BOOLEAN** | Determines whether the Factory should be notified about new files added to the input bucket. | [optional]
17
+ **input_bucket_files_map** | **String** | | [optional]
18
+ **input_bucket_sync_every_n_min** | **String** | Determines how often the input bucket is synchronised. | [optional]
19
+ **input_bucket_recursive** | **String** | | [optional]
20
+ **input_bucket_file_pattern** | **String** | A pattern that will be used to locate files in the input bucket. Valid wildcards might be used. | [optional]
21
+ **outputs_path_format** | **String** | | [optional]
22
+ **storage_provider** | **Integer** | Specifies which storage provider the factory should use. Available options: S3: 0, Google Cloud Storage: 1, FTP storage: 2, Google Cloud Interoperability Storage: 5, Flip storage: 7, FASP storage: 8, Azure Blob Storage: 9 | [optional]
23
+ **provider_specific_settings** | **Object** | | [optional]
24
+
25
+
@@ -0,0 +1,23 @@
1
+ # TelestreamCloud::Flip::FactoryBody
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **aws_access_key** | **String** | AWS access key. | [optional]
7
+ **aws_secret_key** | **String** | AWS secret key. | [optional]
8
+ **factory_region** | **String** | A region where the factory is located. | [optional]
9
+ **input_bucket_file_pattern** | **String** | A pattern that will be used to locate files in the input bucket. Valid wildcards might be used. | [optional]
10
+ **input_bucket_name** | **String** | A name of an input bucket. | [optional]
11
+ **input_bucket_recursive** | **BOOLEAN** | | [optional]
12
+ **input_bucket_sync_every_n_min** | **Integer** | Determines how often the input bucket is synchronised. | [optional]
13
+ **input_bucket_watch** | **BOOLEAN** | Determines whether the Factory should be notified about new files added to the input bucket. | [optional]
14
+ **name** | **String** | Name of the Factory. |
15
+ **outputs_path_format** | **String** | Specify the directory where the output files should be stored. By default it is not set. More info [here](https://cloud.telestream.net/docs#path-format---know-how). | [optional]
16
+ **provider_specific_settings** | **Object** | | [optional]
17
+ **acl** | **String** | Specify if your files are public or private (private files need authorization url to access). By default this is not set. | [optional]
18
+ **output_bucket_name** | **String** | A bucket where processed files will be stored. | [optional]
19
+ **server_side_encryption** | **BOOLEAN** | Specify if you want to use multi-factor server-side 256-bit AES-256 data encryption with Amazon S3-managed encryption keys (SSE-S3). Each object is encrypted using a unique key which as an additional safeguard is encrypted itself with a master key that S3 regularly rotates. By default this is not set. | [optional]
20
+ **storage_credential_attributes** | [**FactoryBodyStorageCredentialAttributes**](FactoryBodyStorageCredentialAttributes.md) | | [optional]
21
+ **storage_provider** | **Integer** | Specifies which storage provider the factory should use. Available options: S3: 0, Google Cloud Storage: 1, FTP storage: 2, Google Cloud Interoperability Storage: 5, Flip storage: 7, FASP storage: 8, Azure Blob Storage: 9 | [optional]
22
+
23
+
@@ -0,0 +1,11 @@
1
+ # TelestreamCloud::Flip::FactoryBodyStorageCredentialAttributes
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **host** | **String** | | [optional]
7
+ **username** | **String** | | [optional]
8
+ **password** | **String** | | [optional]
9
+ **port** | **Integer** | | [optional]
10
+
11
+
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::FactorySync
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **syncing** | **String** | Determines whether a Factory will be synchronised with an input bucket. | [optional]
7
+
8
+
@@ -0,0 +1,8 @@
1
+ # TelestreamCloud::Flip::FactorySyncBody
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **sync** | **String** | Determines whether a Factory's data will be synchronised. |
7
+
8
+