Class: Google::Apis::TranscoderV1beta1::Output
- Inherits:
-
Object
- Object
- Google::Apis::TranscoderV1beta1::Output
- 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
Location of output file(s) in a Cloud Storage bucket.
Instance Attribute Summary collapse
-
#uri ⇒ String
URI for the output file(s).
Instance Method Summary collapse
-
#initialize(**args) ⇒ Output
constructor
A new instance of Output.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Output
Returns a new instance of Output.
1161 1162 1163 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1161 def initialize(**args) update!(**args) end |
Instance Attribute Details
#uri ⇒ String
URI for the output file(s). For example, gs://my-bucket/outputs/
. If empty
the value is populated from Job.output_uri
.
Corresponds to the JSON property uri
1159 1160 1161 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1159 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1166 1167 1168 |
# File 'lib/google/apis/transcoder_v1beta1/classes.rb', line 1166 def update!(**args) @uri = args[:uri] if args.key?(:uri) end |