class Google::Apis::TranscoderV1::ListJobTemplatesResponse
Response message for ‘TranscoderService.ListJobTemplates`.
Attributes
job_templates[RW]
List of job templates in the specified region. Corresponds to the JSON property ‘jobTemplates` @return [Array<Google::Apis::TranscoderV1::JobTemplate>]
next_page_token[RW]
The pagination token. Corresponds to the JSON property ‘nextPageToken` @return [String]
unreachable[RW]
List of regions that could not be reached. Corresponds to the JSON property ‘unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/transcoder_v1/classes.rb, line 1170 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 1175 def update!(**args) @job_templates = args[:job_templates] if args.key?(:job_templates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end