class Google::Apis::TranscoderV1beta1::Manifest
Manifest
configuration.
Attributes
file_name[RW]
The name of the generated file. The default is `“manifest”` with the extension suffix corresponding to the `Manifest.type`. Corresponds to the JSON property `fileName` @return [String]
mux_streams[RW]
Required. List of user given `MuxStream.key`s that should appear in this manifest. When `Manifest.type` is `HLS`, a media manifest with name `MuxStream. key` and `.m3u8` extension is generated for each element of the `Manifest. mux_streams
`. Corresponds to the JSON property `muxStreams` @return [Array<String>]
type[RW]
Required. Type of the manifest, can be “HLS” or “DASH”. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 1006 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 1011 def update!(**args) @file_name = args[:file_name] if args.key?(:file_name) @mux_streams = args[:mux_streams] if args.key?(:mux_streams) @type = args[:type] if args.key?(:type) end