class Google::Apis::TranscoderV1::JobTemplate

Transcoding job template resource.

Attributes

config[RW]

Job configuration Corresponds to the JSON property ‘config` @return [Google::Apis::TranscoderV1::JobConfig]

name[RW]

The resource name of the job template. Format: ‘projects/`project_number`/ locations/`location`/jobTemplates/`job_template“ Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/transcoder_v1/classes.rb, line 1140
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_v1/classes.rb, line 1145
def update!(**args)
  @config = args[:config] if args.key?(:config)
  @name = args[:name] if args.key?(:name)
end