Class: Google::Apis::TranscoderV1beta1::Output

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

Overview

Location of output file(s) in a Cloud Storage bucket.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Output

Returns a new instance of Output.



1159
1160
1161
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1159

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

Instance Attribute Details

#uriString

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

Returns:

  • (String)


1157
1158
1159
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1157

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1164
1165
1166
# File 'generated/google/apis/transcoder_v1beta1/classes.rb', line 1164

def update!(**args)
  @uri = args[:uri] if args.key?(:uri)
end