Class: Google::Apis::TranscoderV1beta1::Input

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/transcoder_v1beta1/classes.rb,
lib/google/apis/transcoder_v1beta1/representations.rb,
lib/google/apis/transcoder_v1beta1/representations.rb

Overview

Input asset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Input

Returns a new instance of Input.



703
704
705
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 703

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

A unique key for this input. Must be specified when using advanced mapping and edit lists. Corresponds to the JSON property key

Returns:

  • (String)


689
690
691
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 689

def key
  @key
end

#preprocessing_configGoogle::Apis::TranscoderV1beta1::PreprocessingConfig

Preprocessing configurations. Corresponds to the JSON property preprocessingConfig



694
695
696
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 694

def preprocessing_config
  @preprocessing_config
end

#uriString

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

Returns:

  • (String)


701
702
703
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 701

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



708
709
710
711
712
# 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