Class: Aws::Snowball::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::Snowball::Client
- Includes:
- ClientStubs
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb
Overview
An API client for Snowball. To construct a client, you need to configure a :region
and :credentials
.
client = Aws::Snowball::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the developer guide.
See #initialize for a full list of supported configuration options.
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Base
API Operations collapse
-
#cancel_cluster(params = {}) ⇒ Struct
Cancels a cluster job.
-
#cancel_job(params = {}) ⇒ Struct
Cancels the specified job.
-
#create_address(params = {}) ⇒ Types::CreateAddressResult
Creates an address for a Snow device to be shipped to.
-
#create_cluster(params = {}) ⇒ Types::CreateClusterResult
Creates an empty cluster.
-
#create_job(params = {}) ⇒ Types::CreateJobResult
Creates a job to import or export data between Amazon S3 and your on-premises data center.
-
#create_long_term_pricing(params = {}) ⇒ Types::CreateLongTermPricingResult
Creates a job with the long-term usage option for a device.
-
#create_return_shipping_label(params = {}) ⇒ Types::CreateReturnShippingLabelResult
Creates a shipping label that will be used to return the Snow device to Amazon Web Services.
-
#describe_address(params = {}) ⇒ Types::DescribeAddressResult
Takes an
AddressId
and returns specific details about that address in the form of anAddress
object. -
#describe_addresses(params = {}) ⇒ Types::DescribeAddressesResult
Returns a specified number of
ADDRESS
objects. -
#describe_cluster(params = {}) ⇒ Types::DescribeClusterResult
Returns information about a specific cluster including shipping information, cluster status, and other important metadata.
-
#describe_job(params = {}) ⇒ Types::DescribeJobResult
Returns information about a specific job including shipping information, job status, and other important metadata.
-
#describe_return_shipping_label(params = {}) ⇒ Types::DescribeReturnShippingLabelResult
Information on the shipping label of a Snow device that is being returned to Amazon Web Services.
-
#get_job_manifest(params = {}) ⇒ Types::GetJobManifestResult
Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified
JobId
value. -
#get_job_unlock_code(params = {}) ⇒ Types::GetJobUnlockCodeResult
Returns the
UnlockCode
code value for the specified job. -
#get_snowball_usage(params = {}) ⇒ Types::GetSnowballUsageResult
Returns information about the Snow Family service limit for your account, and also the number of Snow devices your account has in use.
-
#get_software_updates(params = {}) ⇒ Types::GetSoftwareUpdatesResult
Returns an Amazon S3 presigned URL for an update file associated with a specified
JobId
. -
#list_cluster_jobs(params = {}) ⇒ Types::ListClusterJobsResult
Returns an array of
JobListEntry
objects of the specified length. -
#list_clusters(params = {}) ⇒ Types::ListClustersResult
Returns an array of
ClusterListEntry
objects of the specified length. -
#list_compatible_images(params = {}) ⇒ Types::ListCompatibleImagesResult
This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device.
-
#list_jobs(params = {}) ⇒ Types::ListJobsResult
Returns an array of
JobListEntry
objects of the specified length. -
#list_long_term_pricing(params = {}) ⇒ Types::ListLongTermPricingResult
Lists all long-term pricing types.
-
#list_service_versions(params = {}) ⇒ Types::ListServiceVersionsResult
Lists all supported versions for Snow on-device services.
-
#update_cluster(params = {}) ⇒ Struct
While a cluster's
ClusterState
value is in theAwaitingQuorum
state, you can update some of the information associated with a cluster. -
#update_job(params = {}) ⇒ Struct
While a job's
JobState
value isNew
, you can update some of the information associated with a job. -
#update_job_shipment_state(params = {}) ⇒ Struct
Updates the state when a shipment state changes to a different state.
-
#update_long_term_pricing(params = {}) ⇒ Struct
Updates the long-term pricing type.
Instance Method Summary collapse
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
Methods included from ClientStubs
#api_requests, #stub_data, #stub_responses
Methods inherited from Seahorse::Client::Base
add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins
Methods included from Seahorse::Client::HandlerBuilder
#handle, #handle_request, #handle_response
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
375 376 377 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 375 def initialize(*args) super end |
Instance Method Details
#cancel_cluster(params = {}) ⇒ Struct
Cancels a cluster job. You can only cancel a cluster job while it's
in the AwaitingQuorum
status. You'll have at least an hour after
creating a cluster job to cancel it.
410 411 412 413 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 410 def cancel_cluster(params = {}, = {}) req = build_request(:cancel_cluster, params) req.send_request() end |
#cancel_job(params = {}) ⇒ Struct
Cancels the specified job. You can only cancel a job before its
JobState
value changes to PreparingAppliance
. Requesting the
ListJobs
or DescribeJob
action returns a job's JobState
as part
of the response element data returned.
445 446 447 448 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 445 def cancel_job(params = {}, = {}) req = build_request(:cancel_job, params) req.send_request() end |
#create_address(params = {}) ⇒ Types::CreateAddressResult
Creates an address for a Snow device to be shipped to. In most regions, addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception is thrown.
517 518 519 520 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 517 def create_address(params = {}, = {}) req = build_request(:create_address, params) req.send_request() end |
#create_cluster(params = {}) ⇒ Types::CreateClusterResult
Creates an empty cluster. Each cluster supports five nodes. You use the CreateJob action separately to create the jobs for each of these nodes. The cluster does not ship until these five node jobs have been created.
755 756 757 758 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 755 def create_cluster(params = {}, = {}) req = build_request(:create_cluster, params) req.send_request() end |
#create_job(params = {}) ⇒ Types::CreateJobResult
Creates a job to import or export data between Amazon S3 and your
on-premises data center. Your Amazon Web Services account must have
the right trust policies and permissions in place to create a job for
a Snow device. If you're creating a job for a node in a cluster, you
only need to provide the clusterId
value; the other job attributes
are inherited from the cluster.
The device capacity is optional.
Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services.
Snow Family devices and their capacities.
Snow Family device type: SNC1_SSD
Capacity: T14
Description: Snowcone
Snow Family device type: SNC1_HDD
Capacity: T8
Description: Snowcone
Device type: EDGE_S
Capacity: T98
Description: Snowball Edge Storage Optimized for data transfer only
Device type: EDGE_CG
Capacity: T42
Description: Snowball Edge Compute Optimized with GPU
Device type: EDGE_C
Capacity: T42
Description: Snowball Edge Compute Optimized without GPU
Device type: EDGE
Capacity: T100
Description: Snowball Edge Storage Optimized with EC2 Compute
Device type: STANDARD
Capacity: T50
Description: Original Snowball device
This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region
Device type: STANDARD
Capacity: T80
Description: Original Snowball device
This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
1124 1125 1126 1127 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1124 def create_job(params = {}, = {}) req = build_request(:create_job, params) req.send_request() end |
#create_long_term_pricing(params = {}) ⇒ Types::CreateLongTermPricingResult
Creates a job with the long-term usage option for a device. The long-term usage is a 1-year or 3-year long-term pricing type for the device. You are billed upfront, and Amazon Web Services provides discounts for long-term pricing.
1165 1166 1167 1168 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1165 def create_long_term_pricing(params = {}, = {}) req = build_request(:create_long_term_pricing, params) req.send_request() end |
#create_return_shipping_label(params = {}) ⇒ Types::CreateReturnShippingLabelResult
Creates a shipping label that will be used to return the Snow device to Amazon Web Services.
1202 1203 1204 1205 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1202 def create_return_shipping_label(params = {}, = {}) req = build_request(:create_return_shipping_label, params) req.send_request() end |
#describe_address(params = {}) ⇒ Types::DescribeAddressResult
Takes an AddressId
and returns specific details about that address
in the form of an Address
object.
1268 1269 1270 1271 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1268 def describe_address(params = {}, = {}) req = build_request(:describe_address, params) req.send_request() end |
#describe_addresses(params = {}) ⇒ Types::DescribeAddressesResult
Returns a specified number of ADDRESS
objects. Calling this API in
one of the US regions will return addresses from the list of all
addresses associated with this account in all US regions.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1349 1350 1351 1352 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1349 def describe_addresses(params = {}, = {}) req = build_request(:describe_addresses, params) req.send_request() end |
#describe_cluster(params = {}) ⇒ Types::DescribeClusterResult
Returns information about a specific cluster including shipping information, cluster status, and other important metadata.
1452 1453 1454 1455 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1452 def describe_cluster(params = {}, = {}) req = build_request(:describe_cluster, params) req.send_request() end |
#describe_job(params = {}) ⇒ Types::DescribeJobResult
Returns information about a specific job including shipping information, job status, and other important metadata.
1629 1630 1631 1632 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1629 def describe_job(params = {}, = {}) req = build_request(:describe_job, params) req.send_request() end |
#describe_return_shipping_label(params = {}) ⇒ Types::DescribeReturnShippingLabelResult
Information on the shipping label of a Snow device that is being returned to Amazon Web Services.
1663 1664 1665 1666 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1663 def describe_return_shipping_label(params = {}, = {}) req = build_request(:describe_return_shipping_label, params) req.send_request() end |
#get_job_manifest(params = {}) ⇒ Types::GetJobManifestResult
Returns a link to an Amazon S3 presigned URL for the manifest file
associated with the specified JobId
value. You can access the
manifest file for up to 60 minutes after this request has been made.
To access the manifest file after 60 minutes have passed, you'll have
to make another call to the GetJobManifest
action.
The manifest is an encrypted file that you can download after your job
enters the WithCustomer
status. This is the only valid status for
calling this API as the manifest and UnlockCode
code value are used
for securing your device and should only be used when you have the
device. The manifest is decrypted by using the UnlockCode
code
value, when you pass both values to the Snow device through the
Snowball client when the client is started for the first time.
As a best practice, we recommend that you don't save a copy of an
UnlockCode
value in the same location as the manifest file for that
job. Saving these separately helps prevent unauthorized parties from
gaining access to the Snow device associated with that job.
The credentials of a given job, including its manifest file and unlock code, expire 360 days after the job is created.
1735 1736 1737 1738 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1735 def get_job_manifest(params = {}, = {}) req = build_request(:get_job_manifest, params) req.send_request() end |
#get_job_unlock_code(params = {}) ⇒ Types::GetJobUnlockCodeResult
Returns the UnlockCode
code value for the specified job. A
particular UnlockCode
value can be accessed for up to 360 days after
the associated job has been created.
The UnlockCode
value is a 29-character code with 25 alphanumeric
characters and 4 hyphens. This code is used to decrypt the manifest
file when it is passed along with the manifest to the Snow device
through the Snowball client when the client is started for the first
time. The only valid status for calling this API is WithCustomer
as
the manifest and Unlock
code values are used for securing your
device and should only be used when you have the device.
As a best practice, we recommend that you don't save a copy of the
UnlockCode
in the same location as the manifest file for that job.
Saving these separately helps prevent unauthorized parties from
gaining access to the Snow device associated with that job.
1800 1801 1802 1803 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1800 def get_job_unlock_code(params = {}, = {}) req = build_request(:get_job_unlock_code, params) req.send_request() end |
#get_snowball_usage(params = {}) ⇒ Types::GetSnowballUsageResult
Returns information about the Snow Family service limit for your account, and also the number of Snow devices your account has in use.
The default service limit for the number of Snow devices that you can have at one time is 1. If you want to increase your service limit, contact Amazon Web Services Support.
1843 1844 1845 1846 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1843 def get_snowball_usage(params = {}, = {}) req = build_request(:get_snowball_usage, params) req.send_request() end |
#get_software_updates(params = {}) ⇒ Types::GetSoftwareUpdatesResult
Returns an Amazon S3 presigned URL for an update file associated with
a specified JobId
.
1873 1874 1875 1876 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1873 def get_software_updates(params = {}, = {}) req = build_request(:get_software_updates, params) req.send_request() end |
#list_cluster_jobs(params = {}) ⇒ Types::ListClusterJobsResult
Returns an array of JobListEntry
objects of the specified length.
Each JobListEntry
object is for a job in the specified cluster and
contains a job's state, a job's ID, and other information.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1986 1987 1988 1989 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 1986 def list_cluster_jobs(params = {}, = {}) req = build_request(:list_cluster_jobs, params) req.send_request() end |
#list_clusters(params = {}) ⇒ Types::ListClustersResult
Returns an array of ClusterListEntry
objects of the specified
length. Each ClusterListEntry
object contains a cluster's state, a
cluster's ID, and other important status information.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2051 2052 2053 2054 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2051 def list_clusters(params = {}, = {}) req = build_request(:list_clusters, params) req.send_request() end |
#list_compatible_images(params = {}) ⇒ Types::ListCompatibleImagesResult
This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device. Currently, supported AMIs are based on the CentOS 7 (x86_64) - with Updates HVM, Ubuntu Server 14.04 LTS (HVM), and Ubuntu 16.04 LTS - Xenial (HVM) images, available on the Amazon Web Services Marketplace.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2097 2098 2099 2100 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2097 def list_compatible_images(params = {}, = {}) req = build_request(:list_compatible_images, params) req.send_request() end |
#list_jobs(params = {}) ⇒ Types::ListJobsResult
Returns an array of JobListEntry
objects of the specified length.
Each JobListEntry
object contains a job's state, a job's ID, and a
value that indicates whether the job is a job part, in the case of
export jobs. Calling this API action in one of the US regions will
return jobs from the list of all jobs associated with this account in
all US regions.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2172 2173 2174 2175 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2172 def list_jobs(params = {}, = {}) req = build_request(:list_jobs, params) req.send_request() end |
#list_long_term_pricing(params = {}) ⇒ Types::ListLongTermPricingResult
Lists all long-term pricing types.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
2220 2221 2222 2223 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2220 def list_long_term_pricing(params = {}, = {}) req = build_request(:list_long_term_pricing, params) req.send_request() end |
#list_service_versions(params = {}) ⇒ Types::ListServiceVersionsResult
Lists all supported versions for Snow on-device services. Returns an
array of ServiceVersion
object containing the supported versions for
a particular service.
2281 2282 2283 2284 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2281 def list_service_versions(params = {}, = {}) req = build_request(:list_service_versions, params) req.send_request() end |
#update_cluster(params = {}) ⇒ Struct
While a cluster's ClusterState
value is in the AwaitingQuorum
state, you can update some of the information associated with a
cluster. Once the cluster changes to a different job state, usually 60
minutes after the cluster being created, this action is no longer
available.
2413 2414 2415 2416 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2413 def update_cluster(params = {}, = {}) req = build_request(:update_cluster, params) req.send_request() end |
#update_job(params = {}) ⇒ Struct
While a job's JobState
value is New
, you can update some of the
information associated with a job. Once the job changes to a different
job state, usually within 60 minutes of the job being created, this
action is no longer available.
2556 2557 2558 2559 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2556 def update_job(params = {}, = {}) req = build_request(:update_job, params) req.send_request() end |
#update_job_shipment_state(params = {}) ⇒ Struct
Updates the state when a shipment state changes to a different state.
2588 2589 2590 2591 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2588 def update_job_shipment_state(params = {}, = {}) req = build_request(:update_job_shipment_state, params) req.send_request() end |
#update_long_term_pricing(params = {}) ⇒ Struct
Updates the long-term pricing type.
2621 2622 2623 2624 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/client.rb', line 2621 def update_long_term_pricing(params = {}, = {}) req = build_request(:update_long_term_pricing, params) req.send_request() end |