class Google::Apis::TranscoderV1beta1::OriginUri
The origin URI.
Attributes
dash[RW]
Dash manifest URI. If multiple Dash manifests are created, only the first one is listed. Corresponds to the JSON property `dash` @return [String]
hls[RW]
HLS manifest URI per tools.ietf.org/html/rfc8216#section-4.3.4. If multiple HLS manifests are created, only the first one is listed. Corresponds to the JSON property `hls` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 1140 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 1145 def update!(**args) @dash = args[:dash] if args.key?(:dash) @hls = args[:hls] if args.key?(:hls) end