google-cloud-video-live_stream-v1 0.2.0 → 0.4.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 (26) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +1 -1
  3. data/README.md +2 -2
  4. data/lib/google/cloud/video/live_stream/v1/bindings_override.rb +104 -0
  5. data/lib/google/cloud/video/live_stream/v1/livestream_service/client.rb +81 -61
  6. data/lib/google/cloud/video/live_stream/v1/livestream_service/operations.rb +14 -16
  7. data/lib/google/cloud/video/live_stream/v1/livestream_service/paths.rb +19 -0
  8. data/lib/google/cloud/video/live_stream/v1/livestream_service/rest/client.rb +1731 -0
  9. data/lib/google/cloud/video/live_stream/v1/livestream_service/rest/operations.rb +795 -0
  10. data/lib/google/cloud/video/live_stream/v1/livestream_service/rest/service_stub.rb +1001 -0
  11. data/lib/google/cloud/video/live_stream/v1/livestream_service/rest.rb +60 -0
  12. data/lib/google/cloud/video/live_stream/v1/livestream_service.rb +7 -1
  13. data/lib/google/cloud/video/live_stream/v1/rest.rb +40 -0
  14. data/lib/google/cloud/video/live_stream/v1/version.rb +1 -1
  15. data/lib/google/cloud/video/live_stream/v1.rb +7 -2
  16. data/lib/google/cloud/video/livestream/v1/outputs_pb.rb +23 -0
  17. data/lib/google/cloud/video/livestream/v1/resources_pb.rb +77 -0
  18. data/proto_docs/google/api/client.rb +324 -0
  19. data/proto_docs/google/api/launch_stage.rb +71 -0
  20. data/proto_docs/google/cloud/video/livestream/v1/outputs.rb +108 -26
  21. data/proto_docs/google/cloud/video/livestream/v1/resources.rb +218 -16
  22. data/proto_docs/google/cloud/video/livestream/v1/service.rb +21 -9
  23. data/proto_docs/google/protobuf/empty.rb +0 -2
  24. data/proto_docs/google/rpc/status.rb +4 -2
  25. data/proto_docs/google/type/datetime.rb +99 -0
  26. metadata +36 -7
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/rest"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/video/live_stream/v1/version"
24
+ require "google/cloud/video/live_stream/v1/bindings_override"
25
+
26
+ require "google/cloud/video/live_stream/v1/livestream_service/credentials"
27
+ require "google/cloud/video/live_stream/v1/livestream_service/paths"
28
+ require "google/cloud/video/live_stream/v1/livestream_service/rest/operations"
29
+ require "google/cloud/video/live_stream/v1/livestream_service/rest/client"
30
+
31
+ module Google
32
+ module Cloud
33
+ module Video
34
+ module LiveStream
35
+ module V1
36
+ ##
37
+ # Using Live Stream API, you can generate live streams in the various
38
+ # renditions and streaming formats. The streaming format include HTTP Live
39
+ # Streaming (HLS) and Dynamic Adaptive Streaming over HTTP (DASH). You can send
40
+ # a source stream in the various ways, including Real-Time Messaging
41
+ # Protocol (RTMP) and Secure Reliable Transport (SRT).
42
+ #
43
+ # To load this service and instantiate a REST client:
44
+ #
45
+ # require "google/cloud/video/live_stream/v1/livestream_service/rest"
46
+ # client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Rest::Client.new
47
+ #
48
+ module LivestreamService
49
+ # Client for the REST transport
50
+ module Rest
51
+ end
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
57
+ end
58
+
59
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
60
+ require "google/cloud/video/live_stream/v1/livestream_service/rest/helpers" if ::File.file? helper_path
@@ -26,6 +26,7 @@ require "google/cloud/video/live_stream/v1/livestream_service/credentials"
26
26
  require "google/cloud/video/live_stream/v1/livestream_service/paths"
27
27
  require "google/cloud/video/live_stream/v1/livestream_service/operations"
28
28
  require "google/cloud/video/live_stream/v1/livestream_service/client"
29
+ require "google/cloud/video/live_stream/v1/livestream_service/rest"
29
30
 
30
31
  module Google
31
32
  module Cloud
@@ -39,11 +40,16 @@ module Google
39
40
  # a source stream in the various ways, including Real-Time Messaging
40
41
  # Protocol (RTMP) and Secure Reliable Transport (SRT).
41
42
  #
42
- # To load this service and instantiate a client:
43
+ # @example Load this service and instantiate a gRPC client
43
44
  #
44
45
  # require "google/cloud/video/live_stream/v1/livestream_service"
45
46
  # client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new
46
47
  #
48
+ # @example Load this service and instantiate a REST client
49
+ #
50
+ # require "google/cloud/video/live_stream/v1/livestream_service/rest"
51
+ # client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Rest::Client.new
52
+ #
47
53
  module LivestreamService
48
54
  end
49
55
  end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/video/live_stream/v1/livestream_service/rest"
20
+ require "google/cloud/video/live_stream/v1/bindings_override"
21
+ require "google/cloud/video/live_stream/v1/version"
22
+
23
+ module Google
24
+ module Cloud
25
+ module Video
26
+ module LiveStream
27
+ ##
28
+ # To load just the REST part of this package, including all its services, and instantiate a REST client:
29
+ #
30
+ # @example
31
+ #
32
+ # require "google/cloud/video/live_stream/v1/rest"
33
+ # client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Rest::Client.new
34
+ #
35
+ module V1
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -22,7 +22,7 @@ module Google
22
22
  module Video
23
23
  module LiveStream
24
24
  module V1
25
- VERSION = "0.2.0"
25
+ VERSION = "0.4.0"
26
26
  end
27
27
  end
28
28
  end
@@ -24,13 +24,18 @@ module Google
24
24
  module Video
25
25
  module LiveStream
26
26
  ##
27
- # To load this package, including all its services, and instantiate a client:
27
+ # API client module.
28
28
  #
29
- # @example
29
+ # @example Load this package, including all its services, and instantiate a gRPC client
30
30
  #
31
31
  # require "google/cloud/video/live_stream/v1"
32
32
  # client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Client.new
33
33
  #
34
+ # @example Load this package, including all its services, and instantiate a REST client
35
+ #
36
+ # require "google/cloud/video/live_stream/v1"
37
+ # client = ::Google::Cloud::Video::LiveStream::V1::LivestreamService::Rest::Client.new
38
+ #
34
39
  module V1
35
40
  end
36
41
  end
@@ -5,6 +5,7 @@ require 'google/protobuf'
5
5
 
6
6
  require 'google/api/field_behavior_pb'
7
7
  require 'google/protobuf/duration_pb'
8
+ require 'google/type/datetime_pb'
8
9
 
9
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
10
11
  add_file("google/cloud/video/livestream/v1/outputs.proto", :syntax => :proto3) do
@@ -21,6 +22,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
21
22
  optional :container, :string, 3
22
23
  repeated :elementary_streams, :string, 4
23
24
  optional :segment_settings, :message, 5, "google.cloud.video.livestream.v1.SegmentSettings"
25
+ optional :encryption_id, :string, 6
24
26
  end
25
27
  add_message "google.cloud.video.livestream.v1.Manifest" do
26
28
  optional :file_name, :string, 1
@@ -28,6 +30,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
28
30
  repeated :mux_streams, :string, 3
29
31
  optional :max_segment_count, :int32, 4
30
32
  optional :segment_keep_duration, :message, 5, "google.protobuf.Duration"
33
+ optional :use_timecode_as_timeline, :bool, 6
31
34
  end
32
35
  add_enum "google.cloud.video.livestream.v1.Manifest.ManifestType" do
33
36
  value :MANIFEST_TYPE_UNSPECIFIED, 0
@@ -45,9 +48,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
45
48
  optional :quality, :int32, 8
46
49
  end
47
50
  add_message "google.cloud.video.livestream.v1.PreprocessingConfig" do
51
+ optional :audio, :message, 1, "google.cloud.video.livestream.v1.PreprocessingConfig.Audio"
48
52
  optional :crop, :message, 2, "google.cloud.video.livestream.v1.PreprocessingConfig.Crop"
49
53
  optional :pad, :message, 3, "google.cloud.video.livestream.v1.PreprocessingConfig.Pad"
50
54
  end
55
+ add_message "google.cloud.video.livestream.v1.PreprocessingConfig.Audio" do
56
+ optional :lufs, :double, 1
57
+ end
51
58
  add_message "google.cloud.video.livestream.v1.PreprocessingConfig.Crop" do
52
59
  optional :top_pixels, :int32, 1
53
60
  optional :bottom_pixels, :int32, 2
@@ -98,6 +105,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
98
105
  optional :input_track, :int32, 2
99
106
  optional :input_channel, :int32, 3
100
107
  optional :output_channel, :int32, 4
108
+ optional :gain_db, :double, 5
101
109
  end
102
110
  add_message "google.cloud.video.livestream.v1.TextStream" do
103
111
  optional :codec, :string, 1
@@ -105,6 +113,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
105
113
  add_message "google.cloud.video.livestream.v1.SegmentSettings" do
106
114
  optional :segment_duration, :message, 1, "google.protobuf.Duration"
107
115
  end
116
+ add_message "google.cloud.video.livestream.v1.TimecodeConfig" do
117
+ optional :source, :enum, 1, "google.cloud.video.livestream.v1.TimecodeConfig.TimecodeSource"
118
+ oneof :time_offset do
119
+ optional :utc_offset, :message, 2, "google.protobuf.Duration"
120
+ optional :time_zone, :message, 3, "google.type.TimeZone"
121
+ end
122
+ end
123
+ add_enum "google.cloud.video.livestream.v1.TimecodeConfig.TimecodeSource" do
124
+ value :TIMECODE_SOURCE_UNSPECIFIED, 0
125
+ value :MEDIA_TIMESTAMP, 1
126
+ value :EMBEDDED_TIMECODE, 2
127
+ end
108
128
  end
109
129
  end
110
130
 
@@ -119,6 +139,7 @@ module Google
119
139
  Manifest::ManifestType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Manifest.ManifestType").enummodule
120
140
  SpriteSheet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.SpriteSheet").msgclass
121
141
  PreprocessingConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.PreprocessingConfig").msgclass
142
+ PreprocessingConfig::Audio = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.PreprocessingConfig.Audio").msgclass
122
143
  PreprocessingConfig::Crop = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.PreprocessingConfig.Crop").msgclass
123
144
  PreprocessingConfig::Pad = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.PreprocessingConfig.Pad").msgclass
124
145
  VideoStream = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.VideoStream").msgclass
@@ -127,6 +148,8 @@ module Google
127
148
  AudioStream::AudioMapping = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.AudioStream.AudioMapping").msgclass
128
149
  TextStream = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.TextStream").msgclass
129
150
  SegmentSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.SegmentSettings").msgclass
151
+ TimecodeConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.TimecodeConfig").msgclass
152
+ TimecodeConfig::TimecodeSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.TimecodeConfig.TimecodeSource").enummodule
130
153
  end
131
154
  end
132
155
  end
@@ -53,6 +53,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
53
53
  optional :streaming_state, :enum, 14, "google.cloud.video.livestream.v1.Channel.StreamingState"
54
54
  optional :streaming_error, :message, 18, "google.rpc.Status"
55
55
  optional :log_config, :message, 19, "google.cloud.video.livestream.v1.LogConfig"
56
+ optional :timecode_config, :message, 21, "google.cloud.video.livestream.v1.TimecodeConfig"
57
+ repeated :encryptions, :message, 24, "google.cloud.video.livestream.v1.Encryption"
58
+ optional :input_config, :message, 25, "google.cloud.video.livestream.v1.InputConfig"
56
59
  end
57
60
  add_message "google.cloud.video.livestream.v1.Channel.Output" do
58
61
  optional :uri, :string, 1
@@ -67,6 +70,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
67
70
  value :STARTING, 7
68
71
  value :STOPPING, 8
69
72
  end
73
+ add_message "google.cloud.video.livestream.v1.InputConfig" do
74
+ optional :input_switch_mode, :enum, 1, "google.cloud.video.livestream.v1.InputConfig.InputSwitchMode"
75
+ end
76
+ add_enum "google.cloud.video.livestream.v1.InputConfig.InputSwitchMode" do
77
+ value :INPUT_SWITCH_MODE_UNSPECIFIED, 0
78
+ value :FAILOVER_PREFER_PRIMARY, 1
79
+ value :MANUAL, 3
80
+ end
70
81
  add_message "google.cloud.video.livestream.v1.LogConfig" do
71
82
  optional :log_severity, :enum, 1, "google.cloud.video.livestream.v1.LogConfig.LogSeverity"
72
83
  end
@@ -120,12 +131,26 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
120
131
  optional :state, :enum, 11, "google.cloud.video.livestream.v1.Event.State"
121
132
  optional :error, :message, 12, "google.rpc.Status"
122
133
  oneof :task do
134
+ optional :input_switch, :message, 5, "google.cloud.video.livestream.v1.Event.InputSwitchTask"
123
135
  optional :ad_break, :message, 6, "google.cloud.video.livestream.v1.Event.AdBreakTask"
136
+ optional :return_to_program, :message, 13, "google.cloud.video.livestream.v1.Event.ReturnToProgramTask"
137
+ optional :mute, :message, 15, "google.cloud.video.livestream.v1.Event.MuteTask"
138
+ optional :unmute, :message, 16, "google.cloud.video.livestream.v1.Event.UnmuteTask"
124
139
  end
125
140
  end
141
+ add_message "google.cloud.video.livestream.v1.Event.InputSwitchTask" do
142
+ optional :input_key, :string, 1
143
+ end
126
144
  add_message "google.cloud.video.livestream.v1.Event.AdBreakTask" do
127
145
  optional :duration, :message, 1, "google.protobuf.Duration"
128
146
  end
147
+ add_message "google.cloud.video.livestream.v1.Event.ReturnToProgramTask" do
148
+ end
149
+ add_message "google.cloud.video.livestream.v1.Event.MuteTask" do
150
+ optional :duration, :message, 1, "google.protobuf.Duration"
151
+ end
152
+ add_message "google.cloud.video.livestream.v1.Event.UnmuteTask" do
153
+ end
129
154
  add_enum "google.cloud.video.livestream.v1.Event.State" do
130
155
  value :STATE_UNSPECIFIED, 0
131
156
  value :SCHEDULED, 1
@@ -135,6 +160,42 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
135
160
  value :PENDING, 5
136
161
  value :STOPPED, 6
137
162
  end
163
+ add_message "google.cloud.video.livestream.v1.Encryption" do
164
+ optional :id, :string, 1
165
+ optional :drm_systems, :message, 3, "google.cloud.video.livestream.v1.Encryption.DrmSystems"
166
+ oneof :secret_source do
167
+ optional :secret_manager_key_source, :message, 7, "google.cloud.video.livestream.v1.Encryption.SecretManagerSource"
168
+ end
169
+ oneof :encryption_mode do
170
+ optional :aes128, :message, 4, "google.cloud.video.livestream.v1.Encryption.Aes128Encryption"
171
+ optional :sample_aes, :message, 5, "google.cloud.video.livestream.v1.Encryption.SampleAesEncryption"
172
+ optional :mpeg_cenc, :message, 6, "google.cloud.video.livestream.v1.Encryption.MpegCommonEncryption"
173
+ end
174
+ end
175
+ add_message "google.cloud.video.livestream.v1.Encryption.SecretManagerSource" do
176
+ optional :secret_version, :string, 1
177
+ end
178
+ add_message "google.cloud.video.livestream.v1.Encryption.Widevine" do
179
+ end
180
+ add_message "google.cloud.video.livestream.v1.Encryption.Fairplay" do
181
+ end
182
+ add_message "google.cloud.video.livestream.v1.Encryption.Playready" do
183
+ end
184
+ add_message "google.cloud.video.livestream.v1.Encryption.Clearkey" do
185
+ end
186
+ add_message "google.cloud.video.livestream.v1.Encryption.DrmSystems" do
187
+ optional :widevine, :message, 1, "google.cloud.video.livestream.v1.Encryption.Widevine"
188
+ optional :fairplay, :message, 2, "google.cloud.video.livestream.v1.Encryption.Fairplay"
189
+ optional :playready, :message, 3, "google.cloud.video.livestream.v1.Encryption.Playready"
190
+ optional :clearkey, :message, 4, "google.cloud.video.livestream.v1.Encryption.Clearkey"
191
+ end
192
+ add_message "google.cloud.video.livestream.v1.Encryption.Aes128Encryption" do
193
+ end
194
+ add_message "google.cloud.video.livestream.v1.Encryption.SampleAesEncryption" do
195
+ end
196
+ add_message "google.cloud.video.livestream.v1.Encryption.MpegCommonEncryption" do
197
+ optional :scheme, :string, 1
198
+ end
138
199
  end
139
200
  end
140
201
 
@@ -150,6 +211,8 @@ module Google
150
211
  Channel = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Channel").msgclass
151
212
  Channel::Output = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Channel.Output").msgclass
152
213
  Channel::StreamingState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Channel.StreamingState").enummodule
214
+ InputConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.InputConfig").msgclass
215
+ InputConfig::InputSwitchMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.InputConfig.InputSwitchMode").enummodule
153
216
  LogConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.LogConfig").msgclass
154
217
  LogConfig::LogSeverity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.LogConfig.LogSeverity").enummodule
155
218
  InputStreamProperty = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.InputStreamProperty").msgclass
@@ -160,8 +223,22 @@ module Google
160
223
  InputAttachment = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.InputAttachment").msgclass
161
224
  InputAttachment::AutomaticFailover = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.InputAttachment.AutomaticFailover").msgclass
162
225
  Event = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event").msgclass
226
+ Event::InputSwitchTask = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event.InputSwitchTask").msgclass
163
227
  Event::AdBreakTask = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event.AdBreakTask").msgclass
228
+ Event::ReturnToProgramTask = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event.ReturnToProgramTask").msgclass
229
+ Event::MuteTask = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event.MuteTask").msgclass
230
+ Event::UnmuteTask = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event.UnmuteTask").msgclass
164
231
  Event::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Event.State").enummodule
232
+ Encryption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption").msgclass
233
+ Encryption::SecretManagerSource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.SecretManagerSource").msgclass
234
+ Encryption::Widevine = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.Widevine").msgclass
235
+ Encryption::Fairplay = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.Fairplay").msgclass
236
+ Encryption::Playready = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.Playready").msgclass
237
+ Encryption::Clearkey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.Clearkey").msgclass
238
+ Encryption::DrmSystems = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.DrmSystems").msgclass
239
+ Encryption::Aes128Encryption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.Aes128Encryption").msgclass
240
+ Encryption::SampleAesEncryption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.SampleAesEncryption").msgclass
241
+ Encryption::MpegCommonEncryption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.video.livestream.v1.Encryption.MpegCommonEncryption").msgclass
165
242
  end
166
243
  end
167
244
  end