Class: Aws::ImportExport::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::ImportExport::Client
- Includes:
- ClientStubs
- Defined in:
- lib/aws-sdk-importexport/client.rb
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#cancel_job(params = {}) ⇒ Types::CancelJobOutput
This operation cancels a specified job.
-
#create_job(params = {}) ⇒ Types::CreateJobOutput
This operation initiates the process of scheduling an upload or download of your data.
-
#get_shipping_label(params = {}) ⇒ Types::GetShippingLabelOutput
This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing.
-
#get_status(params = {}) ⇒ Types::GetStatusOutput
This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job.
-
#list_jobs(params = {}) ⇒ Types::ListJobsOutput
This operation returns the jobs associated with the requester.
-
#update_job(params = {}) ⇒ Types::UpdateJobOutput
You use this operation to change the parameters specified in the original manifest file by supplying a new manifest file.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(*args) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(*args) ⇒ Client
Returns a new instance of Client.
142 143 144 |
# File 'lib/aws-sdk-importexport/client.rb', line 142 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
510 511 512 |
# File 'lib/aws-sdk-importexport/client.rb', line 510 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
513 514 515 |
# File 'lib/aws-sdk-importexport/client.rb', line 513 def errors_module Errors end |
Instance Method Details
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
488 489 490 491 492 493 494 495 496 497 498 499 |
# File 'lib/aws-sdk-importexport/client.rb', line 488 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-importexport' context[:gem_version] = '1.0.0' Seahorse::Client::Request.new(handlers, context) end |
#cancel_job(params = {}) ⇒ Types::CancelJobOutput
This operation cancels a specified job. Only the job owner can cancel it. The operation fails if the job has already started or is complete.
174 175 176 177 |
# File 'lib/aws-sdk-importexport/client.rb', line 174 def cancel_job(params = {}, = {}) req = build_request(:cancel_job, params) req.send_request() end |
#create_job(params = {}) ⇒ Types::CreateJobOutput
This operation initiates the process of scheduling an upload or download of your data. You include in the request a manifest that describes the data transfer specifics. The response to the request includes a job ID, which you can use in other operations, a signature that you use to identify your storage device, and the address where you should ship your storage device.
234 235 236 237 |
# File 'lib/aws-sdk-importexport/client.rb', line 234 def create_job(params = {}, = {}) req = build_request(:create_job, params) req.send_request() end |
#get_shipping_label(params = {}) ⇒ Types::GetShippingLabelOutput
This operation generates a pre-paid UPS shipping label that you will use to ship your device to AWS for processing.
312 313 314 315 |
# File 'lib/aws-sdk-importexport/client.rb', line 312 def get_shipping_label(params = {}, = {}) req = build_request(:get_shipping_label, params) req.send_request() end |
#get_status(params = {}) ⇒ Types::GetStatusOutput
This operation returns information about a job, including where the job is in the processing pipeline, the status of the results, and the signature value associated with the job. You can only return information about jobs you own.
377 378 379 380 |
# File 'lib/aws-sdk-importexport/client.rb', line 377 def get_status(params = {}, = {}) req = build_request(:get_status, params) req.send_request() end |
#list_jobs(params = {}) ⇒ Types::ListJobsOutput
This operation returns the jobs associated with the requester. AWS Import/Export lists the jobs in reverse chronological order based on the date of creation. For example if Job Test1 was created 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation would return Test2 followed by Test1.
426 427 428 429 |
# File 'lib/aws-sdk-importexport/client.rb', line 426 def list_jobs(params = {}, = {}) req = build_request(:list_jobs, params) req.send_request() end |
#update_job(params = {}) ⇒ Types::UpdateJobOutput
You use this operation to change the parameters specified in the original manifest file by supplying a new manifest file. The manifest file attached to this request replaces the original manifest file. You can only use the operation after a CreateJob request but before the data transfer starts and you can only use it on jobs you own.
479 480 481 482 |
# File 'lib/aws-sdk-importexport/client.rb', line 479 def update_job(params = {}, = {}) req = build_request(:update_job, params) req.send_request() end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
503 504 505 |
# File 'lib/aws-sdk-importexport/client.rb', line 503 def waiter_names [] end |