Class: Google::Apis::TranscoderV1::ListJobTemplatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::TranscoderV1::ListJobTemplatesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/transcoder_v1/classes.rb,
lib/google/apis/transcoder_v1/representations.rb,
lib/google/apis/transcoder_v1/representations.rb
Overview
Response message for TranscoderService.ListJobTemplates.
Instance Attribute Summary collapse
-
#job_templates ⇒ Array<Google::Apis::TranscoderV1::JobTemplate>
List of job templates in the specified region.
-
#next_page_token ⇒ String
The pagination token.
-
#unreachable ⇒ Array<String>
List of regions that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListJobTemplatesResponse
constructor
A new instance of ListJobTemplatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListJobTemplatesResponse
Returns a new instance of ListJobTemplatesResponse.
1185 1186 1187 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 1185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_templates ⇒ Array<Google::Apis::TranscoderV1::JobTemplate>
List of job templates in the specified region.
Corresponds to the JSON property jobTemplates
1173 1174 1175 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 1173 def job_templates @job_templates end |
#next_page_token ⇒ String
The pagination token.
Corresponds to the JSON property nextPageToken
1178 1179 1180 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 1178 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
List of regions that could not be reached.
Corresponds to the JSON property unreachable
1183 1184 1185 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 1183 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1190 1191 1192 1193 1194 |
# File 'lib/google/apis/transcoder_v1/classes.rb', line 1190 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 |