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
@@ -0,0 +1,916 @@
1
+ =begin
2
+ #Flip API
3
+
4
+ #Description
5
+
6
+ OpenAPI spec version: 3.1.0
7
+ Contact: cloudsupport@telestream.net
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for TelestreamCloud::Flip::Profile
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'Profile' do
21
+ before do
22
+ # run before each test
23
+ @instance = TelestreamCloud::Flip::Profile.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of Profile' do
31
+ it 'should create an instance of Profile' do
32
+ expect(@instance).to be_instance_of(TelestreamCloud::Flip::Profile)
33
+ end
34
+ end
35
+ describe 'test attribute "advanced_fps_conversion"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["telestream", "tachyon"])
39
+ #validator.allowable_values.each do |value|
40
+ # expect { @instance.advanced_fps_conversion = value }.not_to raise_error
41
+ #end
42
+ end
43
+ end
44
+
45
+ describe 'test attribute "aspect_mode"' do
46
+ it 'should work' do
47
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
48
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["preserve", "constrain", "letterbox", "pad", "fill (crop)", "stretch", "center"])
49
+ #validator.allowable_values.each do |value|
50
+ # expect { @instance.aspect_mode = value }.not_to raise_error
51
+ #end
52
+ end
53
+ end
54
+
55
+ describe 'test attribute "aspect_ratio"' do
56
+ it 'should work' do
57
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
58
+ end
59
+ end
60
+
61
+ describe 'test attribute "audio_bitrate"' do
62
+ it 'should work' do
63
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
64
+ end
65
+ end
66
+
67
+ describe 'test attribute "audio_channels"' do
68
+ it 'should work' do
69
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
70
+ end
71
+ end
72
+
73
+ describe 'test attribute "audio_channels_layout"' do
74
+ it 'should work' do
75
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
76
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["1.0", "2.0", "2.1", "3.0", "3.0(back)", "3.1", "4.0", "4.1", "quad", "5.0", "5.0(side)", "5.1(side)", "6.0", "6.1", "7.0", "7.1", "mono", "stereo"])
77
+ #validator.allowable_values.each do |value|
78
+ # expect { @instance.audio_channels_layout = value }.not_to raise_error
79
+ #end
80
+ end
81
+ end
82
+
83
+ describe 'test attribute "audio_channels_per_track"' do
84
+ it 'should work' do
85
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
+ end
87
+ end
88
+
89
+ describe 'test attribute "audio_codec"' do
90
+ it 'should work' do
91
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
92
+ end
93
+ end
94
+
95
+ describe 'test attribute "audio_format"' do
96
+ it 'should work' do
97
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
98
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pcm_s24le", "pcm_s16le"])
99
+ #validator.allowable_values.each do |value|
100
+ # expect { @instance.audio_format = value }.not_to raise_error
101
+ #end
102
+ end
103
+ end
104
+
105
+ describe 'test attribute "audio_map"' do
106
+ it 'should work' do
107
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
108
+ end
109
+ end
110
+
111
+ describe 'test attribute "audio_pid"' do
112
+ it 'should work' do
113
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
114
+ end
115
+ end
116
+
117
+ describe 'test attribute "audio_profile"' do
118
+ it 'should work' do
119
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
120
+ end
121
+ end
122
+
123
+ describe 'test attribute "audio_sample_rate"' do
124
+ it 'should work' do
125
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
126
+ end
127
+ end
128
+
129
+ describe 'test attribute "audio_stream_id"' do
130
+ it 'should work' do
131
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
132
+ end
133
+ end
134
+
135
+ describe 'test attribute "audio_streams"' do
136
+ it 'should work' do
137
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
138
+ end
139
+ end
140
+
141
+ describe 'test attribute "avcintra_class"' do
142
+ it 'should work' do
143
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
144
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["50", "100"])
145
+ #validator.allowable_values.each do |value|
146
+ # expect { @instance.avcintra_class = value }.not_to raise_error
147
+ #end
148
+ end
149
+ end
150
+
151
+ describe 'test attribute "buffer_size"' do
152
+ it 'should work' do
153
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
154
+ end
155
+ end
156
+
157
+ describe 'test attribute "buffer_size_in_packets"' do
158
+ it 'should work' do
159
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
160
+ end
161
+ end
162
+
163
+ describe 'test attribute "bumpers"' do
164
+ it 'should work' do
165
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
166
+ end
167
+ end
168
+
169
+ describe 'test attribute "byte_range_requests"' do
170
+ it 'should work' do
171
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
172
+ end
173
+ end
174
+
175
+ describe 'test attribute "clip_length"' do
176
+ it 'should work' do
177
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
178
+ end
179
+ end
180
+
181
+ describe 'test attribute "clip_offset"' do
182
+ it 'should work' do
183
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
184
+ end
185
+ end
186
+
187
+ describe 'test attribute "closed_captions"' do
188
+ it 'should work' do
189
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
190
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["add", "burn"])
191
+ #validator.allowable_values.each do |value|
192
+ # expect { @instance.closed_captions = value }.not_to raise_error
193
+ #end
194
+ end
195
+ end
196
+
197
+ describe 'test attribute "color_metadata"' do
198
+ it 'should work' do
199
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
200
+ end
201
+ end
202
+
203
+ describe 'test attribute "created_at"' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
209
+ describe 'test attribute "crop_input_bottom"' do
210
+ it 'should work' do
211
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
212
+ end
213
+ end
214
+
215
+ describe 'test attribute "crop_input_height"' do
216
+ it 'should work' do
217
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
218
+ end
219
+ end
220
+
221
+ describe 'test attribute "crop_input_left"' do
222
+ it 'should work' do
223
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
224
+ end
225
+ end
226
+
227
+ describe 'test attribute "crop_input_right"' do
228
+ it 'should work' do
229
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
230
+ end
231
+ end
232
+
233
+ describe 'test attribute "crop_input_top"' do
234
+ it 'should work' do
235
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
236
+ end
237
+ end
238
+
239
+ describe 'test attribute "crop_input_width"' do
240
+ it 'should work' do
241
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
242
+ end
243
+ end
244
+
245
+ describe 'test attribute "dash_profile"' do
246
+ it 'should work' do
247
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
248
+ end
249
+ end
250
+
251
+ describe 'test attribute "deinterlace"' do
252
+ it 'should work' do
253
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
254
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["keep_fps", "double_fps"])
255
+ #validator.allowable_values.each do |value|
256
+ # expect { @instance.deinterlace = value }.not_to raise_error
257
+ #end
258
+ end
259
+ end
260
+
261
+ describe 'test attribute "deinterlace_frames"' do
262
+ it 'should work' do
263
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
264
+ end
265
+ end
266
+
267
+ describe 'test attribute "description"' do
268
+ it 'should work' do
269
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
270
+ end
271
+ end
272
+
273
+ describe 'test attribute "dnxhd_type"' do
274
+ it 'should work' do
275
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
276
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["36", "45", "60", "75", "90", "90x", "110", "115", "120", "145", "175x", "175", "185x", "185", "220x", "220"])
277
+ #validator.allowable_values.each do |value|
278
+ # expect { @instance.dnxhd_type = value }.not_to raise_error
279
+ #end
280
+ end
281
+ end
282
+
283
+ describe 'test attribute "encryption"' do
284
+ it 'should work' do
285
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
286
+ end
287
+ end
288
+
289
+ describe 'test attribute "extname"' do
290
+ it 'should work' do
291
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
292
+ end
293
+ end
294
+
295
+ describe 'test attribute "fps"' do
296
+ it 'should work' do
297
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
298
+ end
299
+ end
300
+
301
+ describe 'test attribute "frame_count"' do
302
+ it 'should work' do
303
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
304
+ end
305
+ end
306
+
307
+ describe 'test attribute "frame_interval"' do
308
+ it 'should work' do
309
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
310
+ end
311
+ end
312
+
313
+ describe 'test attribute "frame_offsets"' do
314
+ it 'should work' do
315
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
316
+ end
317
+ end
318
+
319
+ describe 'test attribute "h264_level"' do
320
+ it 'should work' do
321
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
322
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["1.0", "1b", "1.1", "1.2", "1.3", "2.0", "2.1", "2.2", "3.0", "3.1", "3.2", "4.0", "4.1", "4.2", "5.0", "5.1"])
323
+ #validator.allowable_values.each do |value|
324
+ # expect { @instance.h264_level = value }.not_to raise_error
325
+ #end
326
+ end
327
+ end
328
+
329
+ describe 'test attribute "h264_profile"' do
330
+ it 'should work' do
331
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
332
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["baseline", "main", "high", "high10", "high422", "high444"])
333
+ #validator.allowable_values.each do |value|
334
+ # expect { @instance.h264_profile = value }.not_to raise_error
335
+ #end
336
+ end
337
+ end
338
+
339
+ describe 'test attribute "h264_tune"' do
340
+ it 'should work' do
341
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
342
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["film", "animation", "grain", "psnr", "ssim", "fastdecode", "zerolatency"])
343
+ #validator.allowable_values.each do |value|
344
+ # expect { @instance.h264_tune = value }.not_to raise_error
345
+ #end
346
+ end
347
+ end
348
+
349
+ describe 'test attribute "height"' do
350
+ it 'should work' do
351
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
352
+ end
353
+ end
354
+
355
+ describe 'test attribute "id"' do
356
+ it 'should work' do
357
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
358
+ end
359
+ end
360
+
361
+ describe 'test attribute "imx_type"' do
362
+ it 'should work' do
363
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
364
+ end
365
+ end
366
+
367
+ describe 'test attribute "inputs"' do
368
+ it 'should work' do
369
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
370
+ end
371
+ end
372
+
373
+ describe 'test attribute "interlace"' do
374
+ it 'should work' do
375
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
376
+ end
377
+ end
378
+
379
+ describe 'test attribute "keyframe_interval"' do
380
+ it 'should work' do
381
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
382
+ end
383
+ end
384
+
385
+ describe 'test attribute "keyframe_rate"' do
386
+ it 'should work' do
387
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
388
+ end
389
+ end
390
+
391
+ describe 'test attribute "lang"' do
392
+ it 'should work' do
393
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
394
+ end
395
+ end
396
+
397
+ describe 'test attribute "max_rate"' do
398
+ it 'should work' do
399
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
400
+ end
401
+ end
402
+
403
+ describe 'test attribute "merge_audio_streams"' do
404
+ it 'should work' do
405
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
406
+ end
407
+ end
408
+
409
+ describe 'test attribute "mute_audio_tracks"' do
410
+ it 'should work' do
411
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
412
+ end
413
+ end
414
+
415
+ describe 'test attribute "name"' do
416
+ it 'should work' do
417
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
418
+ end
419
+ end
420
+
421
+ describe 'test attribute "outputs"' do
422
+ it 'should work' do
423
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
424
+ end
425
+ end
426
+
427
+ describe 'test attribute "outputs_path_format"' do
428
+ it 'should work' do
429
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
430
+ end
431
+ end
432
+
433
+ describe 'test attribute "playlist_type"' do
434
+ it 'should work' do
435
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
436
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["iframe", "iframe-only"])
437
+ #validator.allowable_values.each do |value|
438
+ # expect { @instance.playlist_type = value }.not_to raise_error
439
+ #end
440
+ end
441
+ end
442
+
443
+ describe 'test attribute "pmt_pid"' do
444
+ it 'should work' do
445
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
446
+ end
447
+ end
448
+
449
+ describe 'test attribute "preset_name"' do
450
+ it 'should work' do
451
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
452
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["aac", "avc.intra", "dash.variant", "dash.variant.audio", "dash.variant.webvtt", "dash.variant.ttml", "dash.variant.playlist", "dash.variant.nvenc", "dash.muxer", "dash.muxer.audio", "dnxhd", "h264", "h264.baseline", "h264.nvenc.telestream.mov", "h264.nvenc", "h265", "h265.4K", "hls.muxer", "hls.muxer.audio", "hls.variant", "hls.variant.audio", "hls.variant.playlist", "hls.variant.nvenc", "hls.variant.webvtt", "hss", "hss.variant", "hss.variant.audio", "hss.variant.playlist", "imx", "jpeg", "m4a", "mp3", "mpeg2", "mpegps", "mpegts.h264", "png", "prores422", "quick_one_thumbnail", "thumbnail", "webm.vp8", "webm.vp9", "xdcam"])
453
+ #validator.allowable_values.each do |value|
454
+ # expect { @instance.preset_name = value }.not_to raise_error
455
+ #end
456
+ end
457
+ end
458
+
459
+ describe 'test attribute "prores_format"' do
460
+ it 'should work' do
461
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
462
+ end
463
+ end
464
+
465
+ describe 'test attribute "segment_time"' do
466
+ it 'should work' do
467
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
468
+ end
469
+ end
470
+
471
+ describe 'test attribute "stack"' do
472
+ it 'should work' do
473
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
474
+ end
475
+ end
476
+
477
+ describe 'test attribute "telestream_block_size"' do
478
+ it 'should work' do
479
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
480
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["16x16", "24x24", "32x32"])
481
+ #validator.allowable_values.each do |value|
482
+ # expect { @instance.telestream_block_size = value }.not_to raise_error
483
+ #end
484
+ end
485
+ end
486
+
487
+ describe 'test attribute "telestream_blur_scaler"' do
488
+ it 'should work' do
489
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
490
+ end
491
+ end
492
+
493
+ describe 'test attribute "telestream_cost_scaler"' do
494
+ it 'should work' do
495
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
496
+ end
497
+ end
498
+
499
+ describe 'test attribute "telestream_search_length_scaler"' do
500
+ it 'should work' do
501
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
502
+ end
503
+ end
504
+
505
+ describe 'test attribute "telestream_subpel_mode"' do
506
+ it 'should work' do
507
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
508
+ end
509
+ end
510
+
511
+ describe 'test attribute "time_code"' do
512
+ it 'should work' do
513
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
514
+ end
515
+ end
516
+
517
+ describe 'test attribute "title"' do
518
+ it 'should work' do
519
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
520
+ end
521
+ end
522
+
523
+ describe 'test attribute "trailers"' do
524
+ it 'should work' do
525
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
526
+ end
527
+ end
528
+
529
+ describe 'test attribute "transport_rate"' do
530
+ it 'should work' do
531
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
532
+ end
533
+ end
534
+
535
+ describe 'test attribute "ts_pids"' do
536
+ it 'should work' do
537
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
538
+ end
539
+ end
540
+
541
+ describe 'test attribute "updated_at"' do
542
+ it 'should work' do
543
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
544
+ end
545
+ end
546
+
547
+ describe 'test attribute "upscale"' do
548
+ it 'should work' do
549
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
550
+ end
551
+ end
552
+
553
+ describe 'test attribute "use_editlist"' do
554
+ it 'should work' do
555
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
556
+ end
557
+ end
558
+
559
+ describe 'test attribute "variants"' do
560
+ it 'should work' do
561
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
562
+ end
563
+ end
564
+
565
+ describe 'test attribute "video_bitrate"' do
566
+ it 'should work' do
567
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
568
+ end
569
+ end
570
+
571
+ describe 'test attribute "video_pid"' do
572
+ it 'should work' do
573
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
574
+ end
575
+ end
576
+
577
+ describe 'test attribute "watermark_bottom"' do
578
+ it 'should work' do
579
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
580
+ end
581
+ end
582
+
583
+ describe 'test attribute "watermark_bumpers"' do
584
+ it 'should work' do
585
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
586
+ end
587
+ end
588
+
589
+ describe 'test attribute "watermark_height"' do
590
+ it 'should work' do
591
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
592
+ end
593
+ end
594
+
595
+ describe 'test attribute "watermark_left"' do
596
+ it 'should work' do
597
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
598
+ end
599
+ end
600
+
601
+ describe 'test attribute "watermark_right"' do
602
+ it 'should work' do
603
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
604
+ end
605
+ end
606
+
607
+ describe 'test attribute "watermark_top"' do
608
+ it 'should work' do
609
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
610
+ end
611
+ end
612
+
613
+ describe 'test attribute "watermark_trailers"' do
614
+ it 'should work' do
615
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
616
+ end
617
+ end
618
+
619
+ describe 'test attribute "watermark_url"' do
620
+ it 'should work' do
621
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
622
+ end
623
+ end
624
+
625
+ describe 'test attribute "watermark_width"' do
626
+ it 'should work' do
627
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
628
+ end
629
+ end
630
+
631
+ describe 'test attribute "width"' do
632
+ it 'should work' do
633
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
634
+ end
635
+ end
636
+
637
+ describe 'test attribute "x264_options"' do
638
+ it 'should work' do
639
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
640
+ end
641
+ end
642
+
643
+ describe 'test attribute "x265_options"' do
644
+ it 'should work' do
645
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
646
+ end
647
+ end
648
+
649
+ describe 'test attribute "xdcam_format"' do
650
+ it 'should work' do
651
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
652
+ end
653
+ end
654
+
655
+ describe 'test attribute "tachyon_allow_remove_pulldown"' do
656
+ it 'should work' do
657
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
658
+ end
659
+ end
660
+
661
+ describe 'test attribute "tachyon_enable_post_pulldown_filter"' do
662
+ it 'should work' do
663
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
664
+ end
665
+ end
666
+
667
+ describe 'test attribute "tachyon_media_hint_is_cartoon"' do
668
+ it 'should work' do
669
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
670
+ end
671
+ end
672
+
673
+ describe 'test attribute "tachyon_media_hint_has_chroma_noise"' do
674
+ it 'should work' do
675
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
676
+ end
677
+ end
678
+
679
+ describe 'test attribute "tachyon_more_sensitive_remove_pulldown"' do
680
+ it 'should work' do
681
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
682
+ end
683
+ end
684
+
685
+ describe 'test attribute "tachyon_allow_add_standard_pd"' do
686
+ it 'should work' do
687
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
688
+ end
689
+ end
690
+
691
+ describe 'test attribute "tachyon_allow_add_2_2pd"' do
692
+ it 'should work' do
693
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
694
+ end
695
+ end
696
+
697
+ describe 'test attribute "tachyon_allow_add_4_4pd"' do
698
+ it 'should work' do
699
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
700
+ end
701
+ end
702
+
703
+ describe 'test attribute "tachyon_allow_add_4_6pd"' do
704
+ it 'should work' do
705
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
706
+ end
707
+ end
708
+
709
+ describe 'test attribute "tachyon_allow_add_euro_pd"' do
710
+ it 'should work' do
711
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
712
+ end
713
+ end
714
+
715
+ describe 'test attribute "tachyon_allow_add_adaptive_pd"' do
716
+ it 'should work' do
717
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
718
+ end
719
+ end
720
+
721
+ describe 'test attribute "tachyon_motion_amount"' do
722
+ it 'should work' do
723
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
724
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["xlow", "low", "medium", "high", "xhigh", "auto"])
725
+ #validator.allowable_values.each do |value|
726
+ # expect { @instance.tachyon_motion_amount = value }.not_to raise_error
727
+ #end
728
+ end
729
+ end
730
+
731
+ describe 'test attribute "tachyon_fallback_size"' do
732
+ it 'should work' do
733
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
734
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["small", "medium", "large", "xlarge", "auto"])
735
+ #validator.allowable_values.each do |value|
736
+ # expect { @instance.tachyon_fallback_size = value }.not_to raise_error
737
+ #end
738
+ end
739
+ end
740
+
741
+ describe 'test attribute "tachyon_mblock_size"' do
742
+ it 'should work' do
743
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
744
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["mb16", "mb32", "mb64", "mb128", "mb256", "auto"])
745
+ #validator.allowable_values.each do |value|
746
+ # expect { @instance.tachyon_mblock_size = value }.not_to raise_error
747
+ #end
748
+ end
749
+ end
750
+
751
+ describe 'test attribute "tachyon_cut_detection_sensitivity"' do
752
+ it 'should work' do
753
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
754
+ end
755
+ end
756
+
757
+ describe 'test attribute "eac3_evolution_enable"' do
758
+ it 'should work' do
759
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
760
+ end
761
+ end
762
+
763
+ describe 'test attribute "eac3_bitstream_mode"' do
764
+ it 'should work' do
765
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
766
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2", "m3", "m4", "m5", "m6", "m7"])
767
+ #validator.allowable_values.each do |value|
768
+ # expect { @instance.eac3_bitstream_mode = value }.not_to raise_error
769
+ #end
770
+ end
771
+ end
772
+
773
+ describe 'test attribute "eac3_ninety_degree_phase_shift"' do
774
+ it 'should work' do
775
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
776
+ end
777
+ end
778
+
779
+ describe 'test attribute "eac3_three_decibel_attenuation"' do
780
+ it 'should work' do
781
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
782
+ end
783
+ end
784
+
785
+ describe 'test attribute "eac3_enable_lfe_low_pass_filter"' do
786
+ it 'should work' do
787
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
788
+ end
789
+ end
790
+
791
+ describe 'test attribute "eac3_analog_to_digital_converter_type"' do
792
+ it 'should work' do
793
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
794
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["standard", "hdcd"])
795
+ #validator.allowable_values.each do |value|
796
+ # expect { @instance.eac3_analog_to_digital_converter_type = value }.not_to raise_error
797
+ #end
798
+ end
799
+ end
800
+
801
+ describe 'test attribute "eac3_stereo_downmix_preference"' do
802
+ it 'should work' do
803
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
804
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2", "m3"])
805
+ #validator.allowable_values.each do |value|
806
+ # expect { @instance.eac3_stereo_downmix_preference = value }.not_to raise_error
807
+ #end
808
+ end
809
+ end
810
+
811
+ describe 'test attribute "eac3_lt_rt_center_mix_level"' do
812
+ it 'should work' do
813
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
814
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c0", "c1", "c2", "c3", "c4", "c5", "c6", "c7"])
815
+ #validator.allowable_values.each do |value|
816
+ # expect { @instance.eac3_lt_rt_center_mix_level = value }.not_to raise_error
817
+ #end
818
+ end
819
+ end
820
+
821
+ describe 'test attribute "eac3_lt_rt_surround_mix_level"' do
822
+ it 'should work' do
823
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
824
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c3", "c4", "c5", "c6", "c7"])
825
+ #validator.allowable_values.each do |value|
826
+ # expect { @instance.eac3_lt_rt_surround_mix_level = value }.not_to raise_error
827
+ #end
828
+ end
829
+ end
830
+
831
+ describe 'test attribute "eac3_lo_ro_center_mix_level"' do
832
+ it 'should work' do
833
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
834
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c0", "c1", "c2", "c3", "c4", "c5", "c6", "c7"])
835
+ #validator.allowable_values.each do |value|
836
+ # expect { @instance.eac3_lo_ro_center_mix_level = value }.not_to raise_error
837
+ #end
838
+ end
839
+ end
840
+
841
+ describe 'test attribute "eac3_lo_ro_surround_mix_level"' do
842
+ it 'should work' do
843
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
844
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["c3", "c4", "c5", "c6", "c7"])
845
+ #validator.allowable_values.each do |value|
846
+ # expect { @instance.eac3_lo_ro_surround_mix_level = value }.not_to raise_error
847
+ #end
848
+ end
849
+ end
850
+
851
+ describe 'test attribute "eac3_surround_ex_mode"' do
852
+ it 'should work' do
853
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
854
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2"])
855
+ #validator.allowable_values.each do |value|
856
+ # expect { @instance.eac3_surround_ex_mode = value }.not_to raise_error
857
+ #end
858
+ end
859
+ end
860
+
861
+ describe 'test attribute "eac3_drc_line_mode_profile"' do
862
+ it 'should work' do
863
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
864
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["p0", "p1", "p2", "p3", "p4", "p5"])
865
+ #validator.allowable_values.each do |value|
866
+ # expect { @instance.eac3_drc_line_mode_profile = value }.not_to raise_error
867
+ #end
868
+ end
869
+ end
870
+
871
+ describe 'test attribute "eac3_drc_rf_mode_profile"' do
872
+ it 'should work' do
873
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
874
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["p0", "p1", "p2", "p3", "p4", "p5"])
875
+ #validator.allowable_values.each do |value|
876
+ # expect { @instance.eac3_drc_rf_mode_profile = value }.not_to raise_error
877
+ #end
878
+ end
879
+ end
880
+
881
+ describe 'test attribute "eac3_dialog_normalization"' do
882
+ it 'should work' do
883
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
884
+ end
885
+ end
886
+
887
+ describe 'test attribute "eac3_room_type"' do
888
+ it 'should work' do
889
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
890
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["m0", "m1", "m2"])
891
+ #validator.allowable_values.each do |value|
892
+ # expect { @instance.eac3_room_type = value }.not_to raise_error
893
+ #end
894
+ end
895
+ end
896
+
897
+ describe 'test attribute "eac3_mixing_level"' do
898
+ it 'should work' do
899
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
900
+ end
901
+ end
902
+
903
+ describe 'test attribute "eac3_copyright_protected"' do
904
+ it 'should work' do
905
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
906
+ end
907
+ end
908
+
909
+ describe 'test attribute "eac3_original_bitstream"' do
910
+ it 'should work' do
911
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
912
+ end
913
+ end
914
+
915
+ end
916
+