class Google::Apis::TranscoderV1beta1::Input

Input asset.

Attributes

key[RW]

A unique key for this input. Must be specified when using advanced mapping and edit lists. Corresponds to the JSON property `key` @return [String]

preprocessing_config[RW]

Preprocessing configurations. Corresponds to the JSON property `preprocessingConfig` @return [Google::Apis::TranscoderV1beta1::PreprocessingConfig]

uri[RW]

URI of the media. Input files must be at least 5 seconds in duration and stored in Cloud Storage (for example, `gs://bucket/inputs/file.mp4`). If empty, the value will be populated from `Job.input_uri`. Corresponds to the JSON property `uri` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/transcoder_v1beta1/classes.rb, line 703
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 708
def update!(**args)
  @key = args[:key] if args.key?(:key)
  @preprocessing_config = args[:preprocessing_config] if args.key?(:preprocessing_config)
  @uri = args[:uri] if args.key?(:uri)
end