Class: Google::Apis::TranscoderV1::TranscoderService
- Inherits:
-
Core::BaseService
- Object
- Core::BaseService
- Google::Apis::TranscoderV1::TranscoderService
- Defined in:
- lib/google/apis/transcoder_v1/service.rb
Overview
Transcoder API
This API converts video files into formats suitable for consumer distribution.
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
Instance Method Summary collapse
-
#create_project_location_job(parent, job_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Job
Creates a job in the specified region.
-
#create_project_location_job_template(parent, job_template_object = nil, job_template_id: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::JobTemplate
Creates a job template in the specified region.
-
#delete_project_location_job(name, allow_missing: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Empty
Deletes a job.
-
#delete_project_location_job_template(name, allow_missing: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Empty
Deletes a job template.
-
#get_project_location_job(name, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Job
Returns the job data.
-
#get_project_location_job_template(name, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::JobTemplate
Returns the job template data.
-
#initialize ⇒ TranscoderService
constructor
A new instance of TranscoderService.
-
#list_project_location_job_templates(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::ListJobTemplatesResponse
Lists job templates in the specified region.
-
#list_project_location_jobs(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::ListJobsResponse
Lists jobs in the specified region.
Constructor Details
#initialize ⇒ TranscoderService
Returns a new instance of TranscoderService.
45 46 47 48 49 50 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 45 def initialize super('https://transcoder.googleapis.com/', '', client_name: 'google-apis-transcoder_v1', client_version: Google::Apis::TranscoderV1::GEM_VERSION) @batch_path = 'batch' end |
Instance Attribute Details
#key ⇒ String
Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
38 39 40 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 38 def key @key end |
#quota_user ⇒ String
Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
43 44 45 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 43 def quota_user @quota_user end |
Instance Method Details
#create_project_location_job(parent, job_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Job
Creates a job in the specified region.
224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 224 def create_project_location_job(parent, job_object = nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v1/{+parent}/jobs', ) command.request_representation = Google::Apis::TranscoderV1::Job::Representation command.request_object = job_object command.response_representation = Google::Apis::TranscoderV1::Job::Representation command.response_class = Google::Apis::TranscoderV1::Job command.params['parent'] = parent unless parent.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#create_project_location_job_template(parent, job_template_object = nil, job_template_id: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::JobTemplate
Creates a job template in the specified region.
78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 78 def create_project_location_job_template(parent, job_template_object = nil, job_template_id: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v1/{+parent}/jobTemplates', ) command.request_representation = Google::Apis::TranscoderV1::JobTemplate::Representation command.request_object = job_template_object command.response_representation = Google::Apis::TranscoderV1::JobTemplate::Representation command.response_class = Google::Apis::TranscoderV1::JobTemplate command.params['parent'] = parent unless parent.nil? command.query['jobTemplateId'] = job_template_id unless job_template_id.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#delete_project_location_job(name, allow_missing: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Empty
Deletes a job.
260 261 262 263 264 265 266 267 268 269 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 260 def delete_project_location_job(name, allow_missing: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:delete, 'v1/{+name}', ) command.response_representation = Google::Apis::TranscoderV1::Empty::Representation command.response_class = Google::Apis::TranscoderV1::Empty command.params['name'] = name unless name.nil? command.query['allowMissing'] = allow_missing unless allow_missing.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#delete_project_location_job_template(name, allow_missing: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Empty
Deletes a job template.
115 116 117 118 119 120 121 122 123 124 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 115 def delete_project_location_job_template(name, allow_missing: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:delete, 'v1/{+name}', ) command.response_representation = Google::Apis::TranscoderV1::Empty::Representation command.response_class = Google::Apis::TranscoderV1::Empty command.params['name'] = name unless name.nil? command.query['allowMissing'] = allow_missing unless allow_missing.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#get_project_location_job(name, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::Job
Returns the job data.
292 293 294 295 296 297 298 299 300 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 292 def get_project_location_job(name, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+name}', ) command.response_representation = Google::Apis::TranscoderV1::Job::Representation command.response_class = Google::Apis::TranscoderV1::Job command.params['name'] = name unless name.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#get_project_location_job_template(name, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::JobTemplate
Returns the job template data.
147 148 149 150 151 152 153 154 155 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 147 def get_project_location_job_template(name, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+name}', ) command.response_representation = Google::Apis::TranscoderV1::JobTemplate::Representation command.response_class = Google::Apis::TranscoderV1::JobTemplate command.params['name'] = name unless name.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#list_project_location_job_templates(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::ListJobTemplatesResponse
Lists job templates in the specified region.
188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 188 def list_project_location_job_templates(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+parent}/jobTemplates', ) command.response_representation = Google::Apis::TranscoderV1::ListJobTemplatesResponse::Representation command.response_class = Google::Apis::TranscoderV1::ListJobTemplatesResponse command.params['parent'] = parent unless parent.nil? command.query['filter'] = filter unless filter.nil? command.query['orderBy'] = order_by unless order_by.nil? command.query['pageSize'] = page_size unless page_size.nil? command.query['pageToken'] = page_token unless page_token.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#list_project_location_jobs(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::TranscoderV1::ListJobsResponse
Lists jobs in the specified region.
332 333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/google/apis/transcoder_v1/service.rb', line 332 def list_project_location_jobs(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+parent}/jobs', ) command.response_representation = Google::Apis::TranscoderV1::ListJobsResponse::Representation command.response_class = Google::Apis::TranscoderV1::ListJobsResponse command.params['parent'] = parent unless parent.nil? command.query['filter'] = filter unless filter.nil? command.query['orderBy'] = order_by unless order_by.nil? command.query['pageSize'] = page_size unless page_size.nil? command.query['pageToken'] = page_token unless page_token.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |