aws-sdk-snowball 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-snowball.rb +1 -1
- data/lib/aws-sdk-snowball/client.rb +46 -26
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2130e58f4492167185118cd4ab21fcf0a9f215a5
|
4
|
+
data.tar.gz: 97273b4e21f7ae2ca36f19fcdb0344a5ebcaf543
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d793c653c4dcebe45345fa23106a3880b3554ee2ba844276fbb2d5a59f5b5e62d90002b330fda74505f5b3b17757deb869542b3ec4c1c9da8a2805d064639bdd
|
7
|
+
data.tar.gz: 0572bb1ae0f26b8476cfcc1e979a01d2910654b90bd23bda17e0b52b9d62d02a860f7d6be837f543b79d83f1e171c349e63b131a336d262a769ab02e9bfad4ae
|
data/lib/aws-sdk-snowball.rb
CHANGED
@@ -239,7 +239,9 @@ module Aws::Snowball
|
|
239
239
|
#
|
240
240
|
# @example Example: To create an address for a job
|
241
241
|
#
|
242
|
-
# # This operation creates an address for a job. Addresses are validated at the time of creation. The address you provide
|
242
|
+
# # This operation creates an address for a job. Addresses are validated at the time of creation. The address you provide
|
243
|
+
# # must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception
|
244
|
+
# # is thrown.
|
243
245
|
#
|
244
246
|
# resp = client.create_address({
|
245
247
|
# address: {
|
@@ -369,7 +371,8 @@ module Aws::Snowball
|
|
369
371
|
#
|
370
372
|
# @example Example: To create a cluster
|
371
373
|
#
|
372
|
-
# # Creates an empty cluster. Each cluster supports five nodes. You use the CreateJob action separately to create the jobs
|
374
|
+
# # Creates an empty cluster. Each cluster supports five nodes. You use the CreateJob action separately to create the jobs
|
375
|
+
# # for each of these nodes. The cluster does not ship until these five node jobs have been created.
|
373
376
|
#
|
374
377
|
# resp = client.create_cluster({
|
375
378
|
# address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
|
@@ -547,7 +550,9 @@ module Aws::Snowball
|
|
547
550
|
#
|
548
551
|
# @example Example: To create a job
|
549
552
|
#
|
550
|
-
# # Creates a job to import or export data between Amazon S3 and your on-premises data center. Your AWS account must have
|
553
|
+
# # Creates a job to import or export data between Amazon S3 and your on-premises data center. Your AWS account must have
|
554
|
+
# # the right trust policies and permissions in place to create a job for Snowball. If you're creating a job for a node in a
|
555
|
+
# # cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster.
|
551
556
|
#
|
552
557
|
# resp = client.create_job({
|
553
558
|
# address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
|
@@ -720,7 +725,8 @@ module Aws::Snowball
|
|
720
725
|
#
|
721
726
|
# @example Example: To describe all the addresses you've created for AWS Snowball
|
722
727
|
#
|
723
|
-
# # This operation describes all the addresses that you've created for AWS Snowball. Calling this API in one of the US
|
728
|
+
# # This operation describes all the addresses that you've created for AWS Snowball. Calling this API in one of the US
|
729
|
+
# # regions will return addresses from the list of all addresses associated with this account in all US regions.
|
724
730
|
#
|
725
731
|
# resp = client.describe_addresses({
|
726
732
|
# })
|
@@ -790,7 +796,8 @@ module Aws::Snowball
|
|
790
796
|
#
|
791
797
|
# @example Example: To describe a cluster
|
792
798
|
#
|
793
|
-
# # Returns information about a specific cluster including shipping information, cluster status, and other important
|
799
|
+
# # Returns information about a specific cluster including shipping information, cluster status, and other important
|
800
|
+
# # metadata.
|
794
801
|
#
|
795
802
|
# resp = client.describe_cluster({
|
796
803
|
# cluster_id: "CID123e4567-e89b-12d3-a456-426655440000",
|
@@ -1042,13 +1049,16 @@ module Aws::Snowball
|
|
1042
1049
|
#
|
1043
1050
|
# @example Example: To get the manifest for a job you've created for AWS Snowball
|
1044
1051
|
#
|
1045
|
-
# # Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
+
# # Returns a link to an Amazon S3 presigned URL for the manifest file associated with the specified JobId value. You can
|
1053
|
+
# # access the manifest file for up to 60 minutes after this request has been made. To access the manifest file after 60
|
1054
|
+
# # minutes have passed, you'll have to make another call to the GetJobManifest action.
|
1055
|
+
# # The manifest is an encrypted file that you can download after your job enters the WithCustomer status. The manifest is
|
1056
|
+
# # decrypted by using the UnlockCode code value, when you pass both values to the Snowball through the Snowball client when
|
1057
|
+
# # the client is started for the first time.
|
1058
|
+
# # As a best practice, we recommend that you don't save a copy of an UnlockCode value in the same location as the manifest
|
1059
|
+
# # file for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball
|
1060
|
+
# # associated with that job.
|
1061
|
+
# # The credentials of a given job, including its manifest file and unlock code, expire 90 days after the job is created.
|
1052
1062
|
#
|
1053
1063
|
# resp = client.get_job_manifest({
|
1054
1064
|
# job_id: "JID123e4567-e89b-12d3-a456-426655440000",
|
@@ -1103,11 +1113,14 @@ module Aws::Snowball
|
|
1103
1113
|
#
|
1104
1114
|
# @example Example: To get the unlock code for a job you've created for AWS Snowball
|
1105
1115
|
#
|
1106
|
-
# # Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 90 days
|
1107
|
-
|
1108
|
-
The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt
|
1109
|
-
|
1110
|
-
|
1116
|
+
# # Returns the UnlockCode code value for the specified job. A particular UnlockCode value can be accessed for up to 90 days
|
1117
|
+
# # after the associated job has been created.
|
1118
|
+
# # The UnlockCode value is a 29-character code with 25 alphanumeric characters and 4 hyphens. This code is used to decrypt
|
1119
|
+
# # the manifest file when it is passed along with the manifest to the Snowball through the Snowball client when the client
|
1120
|
+
# # is started for the first time.
|
1121
|
+
# # As a best practice, we recommend that you don't save a copy of the UnlockCode in the same location as the manifest file
|
1122
|
+
# # for that job. Saving these separately helps prevent unauthorized parties from gaining access to the Snowball associated
|
1123
|
+
# # with that job.
|
1111
1124
|
#
|
1112
1125
|
# resp = client.get_job_unlock_code({
|
1113
1126
|
# job_id: "JID123e4567-e89b-12d3-a456-426655440000",
|
@@ -1152,9 +1165,10 @@ module Aws::Snowball
|
|
1152
1165
|
#
|
1153
1166
|
# @example Example: To see your Snowball service limit and the number of Snowballs you have in use
|
1154
1167
|
#
|
1155
|
-
# # Returns information about the Snowball service limit for your account, and also the number of Snowballs your account has
|
1156
|
-
|
1157
|
-
The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your
|
1168
|
+
# # Returns information about the Snowball service limit for your account, and also the number of Snowballs your account has
|
1169
|
+
# # in use.
|
1170
|
+
# # The default service limit for the number of Snowballs that you can have at one time is 1. If you want to increase your
|
1171
|
+
# # service limit, contact AWS Support.
|
1158
1172
|
#
|
1159
1173
|
# resp = client.get_snowball_usage({
|
1160
1174
|
# })
|
@@ -1203,7 +1217,8 @@ module Aws::Snowball
|
|
1203
1217
|
#
|
1204
1218
|
# @example Example: To get a list of jobs in a cluster that you've created for AWS Snowball
|
1205
1219
|
#
|
1206
|
-
# # Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified
|
1220
|
+
# # Returns an array of JobListEntry objects of the specified length. Each JobListEntry object is for a job in the specified
|
1221
|
+
# # cluster and contains a job's state, a job's ID, and other information.
|
1207
1222
|
#
|
1208
1223
|
# resp = client.list_cluster_jobs({
|
1209
1224
|
# cluster_id: "CID123e4567-e89b-12d3-a456-426655440000",
|
@@ -1309,7 +1324,8 @@ module Aws::Snowball
|
|
1309
1324
|
#
|
1310
1325
|
# @example Example: To get a list of clusters that you've created for AWS Snowball
|
1311
1326
|
#
|
1312
|
-
# # Returns an array of ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's
|
1327
|
+
# # Returns an array of ClusterListEntry objects of the specified length. Each ClusterListEntry object contains a cluster's
|
1328
|
+
# # state, a cluster's ID, and other important status information.
|
1313
1329
|
#
|
1314
1330
|
# resp = client.list_clusters({
|
1315
1331
|
# })
|
@@ -1374,7 +1390,9 @@ module Aws::Snowball
|
|
1374
1390
|
#
|
1375
1391
|
# @example Example: To get a list of jobs that you've created for AWS Snowball
|
1376
1392
|
#
|
1377
|
-
# # Returns an array of JobListEntry objects of the specified length. Each JobListEntry object contains a job's state, a
|
1393
|
+
# # Returns an array of JobListEntry objects of the specified length. Each JobListEntry object contains a job's state, a
|
1394
|
+
# # 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
|
1395
|
+
# # in one of the US regions will return jobs from the list of all jobs associated with this account in all US regions.
|
1378
1396
|
#
|
1379
1397
|
# resp = client.list_jobs({
|
1380
1398
|
# })
|
@@ -1467,7 +1485,8 @@ module Aws::Snowball
|
|
1467
1485
|
#
|
1468
1486
|
# @example Example: To update a cluster
|
1469
1487
|
#
|
1470
|
-
# # This action allows you to update certain parameters for a cluster. Once the cluster changes to a different state,
|
1488
|
+
# # This action allows you to update certain parameters for a cluster. Once the cluster changes to a different state,
|
1489
|
+
# # usually within 60 minutes of it being created, this action is no longer available.
|
1471
1490
|
#
|
1472
1491
|
# resp = client.update_cluster({
|
1473
1492
|
# address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
|
@@ -1570,7 +1589,8 @@ module Aws::Snowball
|
|
1570
1589
|
#
|
1571
1590
|
# @example Example: To update a job
|
1572
1591
|
#
|
1573
|
-
# # This action allows you to update certain parameters for a job. Once the job changes to a different job state, usually
|
1592
|
+
# # This action allows you to update certain parameters for a job. Once the job changes to a different job state, usually
|
1593
|
+
# # within 60 minutes of the job being created, this action is no longer available.
|
1574
1594
|
#
|
1575
1595
|
# resp = client.update_job({
|
1576
1596
|
# address_id: "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b",
|
@@ -1640,7 +1660,7 @@ module Aws::Snowball
|
|
1640
1660
|
params: params,
|
1641
1661
|
config: config)
|
1642
1662
|
context[:gem_name] = 'aws-sdk-snowball'
|
1643
|
-
context[:gem_version] = '1.
|
1663
|
+
context[:gem_version] = '1.1.0'
|
1644
1664
|
Seahorse::Client::Request.new(handlers, context)
|
1645
1665
|
end
|
1646
1666
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-snowball
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -56,7 +56,9 @@ files:
|
|
56
56
|
homepage: http://github.com/aws/aws-sdk-ruby
|
57
57
|
licenses:
|
58
58
|
- Apache-2.0
|
59
|
-
metadata:
|
59
|
+
metadata:
|
60
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-snowball
|
61
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-snowball/CHANGELOG.md
|
60
62
|
post_install_message:
|
61
63
|
rdoc_options: []
|
62
64
|
require_paths:
|