aws-sdk-core 2.0.44 → 2.0.45

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,18 +1,19 @@
1
1
  {
2
+ "version": "2.0",
2
3
  "operations": {
3
- "CreateAlias": "<p> Creates a display name for a customer master key. An alias can be used to identify a key and should be unique. The console enforces a one-to-one mapping between the alias and a key. An alias name can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-). An alias must start with the word \"alias\" followed by a forward slash (alias/). An alias that begins with \"aws\" after the forward slash (alias/aws...) is reserved by Amazon Web Services (AWS). </p>",
4
- "CreateGrant": "<p>Adds a grant to a key to specify who can access the key and under what conditions. Grants are alternate permission mechanisms to key policies. If absent, access to the key is evaluated based on IAM policies attached to the user. By default, grants do not expire. Grants can be listed, retired, or revoked as indicated by the following APIs. Typically, when you are finished using a grant, you retire it. When you want to end a grant immediately, revoke it. For more information about grants, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/grants.html\">Grants</a>. <ol> <li><a>ListGrants</a></li> <li><a>RetireGrant</a></li> <li><a>RevokeGrant</a></li> </ol> </p>",
4
+ "CreateAlias": "<p> Creates a display name for a customer master key. An alias can be used to identify a key and should be unique. The console enforces a one-to-one mapping between the alias and a key. An alias name can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-). An alias must start with the word \"alias\" followed by a forward slash (alias/). An alias that begins with \"aws\" after the forward slash (alias/aws...) is reserved by Amazon Web Services (AWS). </p> <p>To associate an alias with a different key, call <a>UpdateAlias</a>.</p> <p>Note that you cannot create or update an alias that represents a key in another account.</p>",
5
+ "CreateGrant": "<p>Adds a grant to a key to specify who can access the key and under what conditions. Grants are alternate permission mechanisms to key policies. For more information about grants, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/grants.html\">Grants</a> in the developer guide. If a grant is absent, access to the key is evaluated based on IAM policies attached to the user. <ol> <li><a>ListGrants</a></li> <li><a>RetireGrant</a></li> <li><a>RevokeGrant</a></li> </ol> </p>",
5
6
  "CreateKey": "<p>Creates a customer master key. Customer master keys can be used to encrypt small amounts of data (less than 4K) directly, but they are most commonly used to encrypt or envelope data keys that are then used to encrypt customer data. For more information about data keys, see <a>GenerateDataKey</a> and <a>GenerateDataKeyWithoutPlaintext</a>.</p>",
6
- "Decrypt": "<p>Decrypts ciphertext. Ciphertext is plaintext that has been previously encrypted by using the <a>Encrypt</a> function.</p>",
7
- "DeleteAlias": "<p>Deletes the specified alias.</p>",
7
+ "Decrypt": "<p>Decrypts ciphertext. Ciphertext is plaintext that has been previously encrypted by using any of the following functions: <ul> <li><a>GenerateDataKey</a></li> <li><a>GenerateDataKeyWithoutPlaintext</a></li> <li><a>Encrypt</a></li> </ul> </p> <p>Note that if a caller has been granted access permissions to all keys (through, for example, IAM user policies that grant <code>Decrypt</code> permission on all resources), then ciphertext encrypted by using keys in other accounts where the key grants access to the caller can be decrypted. To remedy this, we recommend that you do not grant <code>Decrypt</code> access in an IAM user policy. Instead grant <code>Decrypt</code> access only in key policies. If you must grant <code>Decrypt</code> access in an IAM user policy, you should scope the resource to specific keys or to specific trusted accounts. </p>",
8
+ "DeleteAlias": "<p>Deletes the specified alias. To associate an alias with a different key, call <a>UpdateAlias</a>.</p>",
8
9
  "DescribeKey": "<p>Provides detailed information about the specified customer master key.</p>",
9
10
  "DisableKey": "<p>Marks a key as disabled, thereby preventing its use.</p>",
10
11
  "DisableKeyRotation": "Disables rotation of the specified key.",
11
12
  "EnableKey": "Marks a key as enabled, thereby permitting its use. You can have up to 25 enabled keys at one time.",
12
13
  "EnableKeyRotation": "Enables rotation of the specified customer master key.",
13
- "Encrypt": "<p>Encrypts plaintext into ciphertext by using a customer master key.</p>",
14
- "GenerateDataKey": "<p>Generates a secure data key. Data keys are used to encrypt and decrypt data. They are wrapped by customer master keys. </p>",
15
- "GenerateDataKeyWithoutPlaintext": "<p>Returns a key wrapped by a customer master key without the plaintext copy of that key. To retrieve the plaintext, see <a>GenerateDataKey</a>. </p>",
14
+ "Encrypt": "<p>Encrypts plaintext into ciphertext by using a customer master key. The <code>Encrypt</code> function has two primary use cases: <ul> <li>You can encrypt up to 4 KB of arbitrary data such as an RSA key, a database password, or other sensitive customer information.</li> <li>If you are moving encrypted data from one region to another, you can use this API to encrypt in the new region the plaintext data key that was used to encrypt the data in the original region. This provides you with an encrypted copy of the data key that can be decrypted in the new region and used there to decrypt the encrypted data. </li> </ul> </p> <p>Unless you are moving encrypted data from one region to another, you don't use this function to encrypt a generated data key within a region. You retrieve data keys already encrypted by calling the <a>GenerateDataKey</a> or <a>GenerateDataKeyWithoutPlaintext</a> function. Data keys don't need to be encrypted again by calling <code>Encrypt</code>. </p> <p>If you want to encrypt data locally in your application, you can use the <code>GenerateDataKey</code> function to return a plaintext data encryption key and a copy of the key encrypted under the customer master key (CMK) of your choosing. </p>",
15
+ "GenerateDataKey": "<p>Generates a data key that you can use in your application to locally encrypt data. This call returns a plaintext version of the key in the <code>Plaintext</code> field of the response object and an encrypted copy of the key in the <code>CiphertextBlob</code> field. The key is encrypted by using the master key specified by the <code>KeyId</code> field. To decrypt the encrypted key, pass it to the <code>Decrypt</code> API. </p> <p>We recommend that you use the following pattern to locally encrypt data: call the <code>GenerateDataKey</code> API, use the key returned in the <code>Plaintext</code> response field to locally encrypt data, and then erase the plaintext data key from memory. Store the encrypted data key (contained in the <code>CiphertextBlob</code> field) alongside of the locally encrypted data. </p> <note>You should not call the <code>Encrypt</code> function to re-encrypt your data keys within a region. <code>GenerateDataKey</code> always returns the data key encrypted and tied to the customer master key that will be used to decrypt it. There is no need to decrypt it twice. </note> <p>If you decide to use the optional <code>EncryptionContext</code> parameter, you must also store the context in full or at least store enough information along with the encrypted data to be able to reconstruct the context when submitting the ciphertext to the <code>Decrypt</code> API. It is a good practice to choose a context that you can reconstruct on the fly to better secure the ciphertext. For more information about how this parameter is used, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/encrypt-context.html\">Encryption Context</a>. </p> <p>To decrypt data, pass the encrypted data key to the <code>Decrypt</code> API. <code>Decrypt</code> uses the associated master key to decrypt the encrypted data key and returns it as plaintext. Use the plaintext data key to locally decrypt your data and then erase the key from memory. You must specify the encryption context, if any, that you specified when you generated the key. The encryption context is logged by CloudTrail, and you can use this log to help track the use of particular data. </p>",
16
+ "GenerateDataKeyWithoutPlaintext": "<p>Returns a data key encrypted by a customer master key without the plaintext copy of that key. Otherwise, this API functions exactly like <a>GenerateDataKey</a>. You can use this API to, for example, satisfy an audit requirement that an encrypted key be made available without exposing the plaintext copy of that key. </p>",
16
17
  "GenerateRandom": "<p>Generates an unpredictable byte string. </p>",
17
18
  "GetKeyPolicy": "<p>Retrieves a policy attached to the specified key.</p>",
18
19
  "GetKeyRotationStatus": "Retrieves a Boolean value that indicates whether key rotation is enabled for the specified key.",
@@ -21,12 +22,13 @@
21
22
  "ListKeyPolicies": "<p>Retrieves a list of policies attached to a key.</p>",
22
23
  "ListKeys": "<p>Lists the customer master keys.</p>",
23
24
  "PutKeyPolicy": "<p>Attaches a policy to the specified key.</p>",
24
- "ReEncrypt": "<p>Encrypts data on the server side with a new customer master key without exposing the plaintext of the data on the client side. The data is first decrypted and then encrypted. This operation can also be used to change the encryption context of a ciphertext. </p>",
25
- "RetireGrant": "Retires a grant. You can retire a grant when you're done using it to clean up. You should revoke a grant when you intend to actively deny operations that depend on it.",
25
+ "ReEncrypt": "<p>Encrypts data on the server side with a new customer master key without exposing the plaintext of the data on the client side. The data is first decrypted and then encrypted. This operation can also be used to change the encryption context of a ciphertext. </p> <p>Unlike other actions, <code>ReEncrypt</code> is authorized twice - once as <code>ReEncryptFrom</code> on the source key and once as <code>ReEncryptTo</code> on the destination key. We therefore recommend that you include the <code>\"action\":\"kms:ReEncrypt*\"</code> statement in your key policies to permit re-encryption from or to the key. The statement is included automatically when you authorize use of the key through the console but must be included manually when you set a policy by using the <a>PutKeyPolicy</a> function. </p>",
26
+ "RetireGrant": "<p>Retires a grant. You can retire a grant when you're done using it to clean up. You should revoke a grant when you intend to actively deny operations that depend on it. The following are permitted to call this API: <ul> <li>The account that created the grant</li> <li>The <code>RetiringPrincipal</code>, if present</li> <li>The <code>GranteePrincipal</code>, if <code>RetireGrant</code> is a grantee operation</li> </ul> The grant to retire must be identified by its grant token or by a combination of the key ARN and the grant ID. A grant token is a unique variable-length base64-encoded string. A grant ID is a 64 character unique identifier of a grant. Both are returned by the <code>CreateGrant</code> function. </p>",
26
27
  "RevokeGrant": "Revokes a grant. You can revoke a grant to actively deny operations that depend on it.",
28
+ "UpdateAlias": "<p>Updates an alias to associate it with a different key.</p> <p>An alias name can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-). An alias must start with the word \"alias\" followed by a forward slash (alias/). An alias that begins with \"aws\" after the forward slash (alias/aws...) is reserved by Amazon Web Services (AWS). </p> <p>An alias is not a property of a key. Therefore, an alias can be associated with and disassociated from an existing key without changing the properties of the key. </p> <p>Note that you cannot create or update an alias that represents a key in another account.</p>",
27
29
  "UpdateKeyDescription": "<p>Updates the description of a key.</p>"
28
30
  },
29
- "service": "<fullname>AWS Key Management Service</fullname> <p> AWS Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS actions that you can call programmatically. For general information about KMS, see (need an address here). For the KMS developer guide, see (need address here). </p> <note> AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and AWS. For example, the SDKs take care of tasks such as signing requests (see below), managing errors, and retrying requests automatically. For more information about the AWS SDKs, including how to download and install them, see <a href=\"http://aws.amazon.com/tools/\">Tools for Amazon Web Services</a>. </note> <p> We recommend that you use the AWS SDKs to make programmatic API calls to KMS. However, you can also use the KMS Query API to make to make direct calls to the KMS web service. </p> <p><b>Signing Requests</b></p> <p> Requests must be signed by using an access key ID and a secret access key. We strongly recommend that you do not use your AWS account access key ID and secret key for everyday work with KMS. Instead, use the access key ID and secret access key for an IAM user, or you can use the AWS Security Token Service to generate temporary security credentials that you can use to sign requests. </p> <p> All KMS operations require <a href=\"http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html\">Signature Version 4</a>. </p> <p><b>Recording API Requests</b></p> <p> KMS supports AWS CloudTrail, a service that records AWS API calls and related events for your AWS account and delivers them to an Amazon S3 bucket that you specify. By using the information collected by CloudTrail, you can determine what requests were made to KMS, who made the request, when it was made, and so on. To learn more about CloudTrail, including how to turn it on and find your log files, see the <a href=\"http://docs.aws.amazon.com/awscloudtrail/latest/userguide/whatiscloudtrail.html\">AWS CloudTrail User Guide</a> </p> <p><b>Additional Resources</b></p> <p>For more information about credentials and request signing, see the following:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html\">AWS Security Credentials</a>. This topic provides general information about the types of credentials used for accessing AWS. </li> <li> <a href=\"http://docs.aws.amazon.com/STS/latest/UsingSTS/\">AWS Security Token Service</a>. This guide describes how to create and use temporary security credentials. </li> <li> <a href=\"http://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html\">Signing AWS API Requests</a>. This set of topics walks you through the process of signing a request using an access key ID and a secret access key. </li> </ul>",
31
+ "service": "<fullname>AWS Key Management Service</fullname> <p> AWS Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS actions that you can call programmatically. For general information about KMS, see the <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/overview.html\"> AWS Key Management Service Developer Guide </a> </p> <note> AWS provides SDKs that consist of libraries and sample code for various programming languages and platforms (Java, Ruby, .Net, iOS, Android, etc.). The SDKs provide a convenient way to create programmatic access to KMS and AWS. For example, the SDKs take care of tasks such as signing requests (see below), managing errors, and retrying requests automatically. For more information about the AWS SDKs, including how to download and install them, see <a href=\"http://aws.amazon.com/tools/\">Tools for Amazon Web Services</a>. </note> <p> We recommend that you use the AWS SDKs to make programmatic API calls to KMS. </p> <p>Clients must support TLS (Transport Layer Security) 1.0. We recommend TLS 1.2. Clients must also support cipher suites with Perfect Forward Secrecy (PFS) such as Ephemeral Diffie-Hellman (DHE) or Elliptic Curve Ephemeral Diffie-Hellman (ECDHE). Most modern systems such as Java 7 and later support these modes. </p> <p><b>Signing Requests</b></p> <p> Requests must be signed by using an access key ID and a secret access key. We strongly recommend that you do not use your AWS account access key ID and secret key for everyday work with KMS. Instead, use the access key ID and secret access key for an IAM user, or you can use the AWS Security Token Service to generate temporary security credentials that you can use to sign requests. </p> <p> All KMS operations require <a href=\"http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html\">Signature Version 4</a>. </p> <p><b>Recording API Requests</b></p> <p> KMS supports AWS CloudTrail, a service that records AWS API calls and related events for your AWS account and delivers them to an Amazon S3 bucket that you specify. By using the information collected by CloudTrail, you can determine what requests were made to KMS, who made the request, when it was made, and so on. To learn more about CloudTrail, including how to turn it on and find your log files, see the <a href=\"http://docs.aws.amazon.com/awscloudtrail/latest/userguide/whatiscloudtrail.html\">AWS CloudTrail User Guide</a> </p> <p><b>Additional Resources</b></p> <p>For more information about credentials and request signing, see the following:</p> <ul> <li> <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html\">AWS Security Credentials</a>. This topic provides general information about the types of credentials used for accessing AWS. </li> <li> <a href=\"http://docs.aws.amazon.com/STS/latest/UsingSTS/\">AWS Security Token Service</a>. This guide describes how to create and use temporary security credentials. </li> <li> <a href=\"http://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html\">Signing AWS API Requests</a>. This set of topics walks you through the process of signing a request using an access key ID and a secret access key. </li> </ul> <p><b>Commonly Used APIs</b></p> <p> Of the APIs discussed in this guide, the following will prove the most useful for most applications. You will likely perform actions other than these, such as creating keys and assigning policies, by using the console. <ul> <li><a>Encrypt</a></li> <li><a>Decrypt</a></li> <li><a>GenerateDataKey</a></li> <li><a>GenerateDataKeyWithoutPlaintext</a></li> </ul> </p>",
30
32
  "shapes": {
31
33
  "AWSAccountIdType": {
32
34
  "base": null,
@@ -50,8 +52,9 @@
50
52
  "base": null,
51
53
  "refs": {
52
54
  "AliasListEntry$AliasName": "<p>String that contains the alias.</p>",
53
- "CreateAliasRequest$AliasName": "<p>String that contains the display name. Aliases that begin with AWS are reserved.</p>",
54
- "DeleteAliasRequest$AliasName": "<p>The alias to be deleted.</p>"
55
+ "CreateAliasRequest$AliasName": "<p>String that contains the display name. The name must start with the word \"alias\" followed by a forward slash (alias/). Aliases that begin with \"alias/AWS\" are reserved. </p>",
56
+ "DeleteAliasRequest$AliasName": "<p>The alias to be deleted. The name must start with the word \"alias\" followed by a forward slash (alias/). Aliases that begin with \"alias/AWS\" are reserved.</p>",
57
+ "UpdateAliasRequest$AliasName": "String that contains the name of the alias to be modifed. The name must start with the word \"alias\" followed by a forward slash (alias/). Aliases that begin with \"alias/AWS\" are reserved."
55
58
  }
56
59
  },
57
60
  "AlreadyExistsException": {
@@ -81,12 +84,12 @@
81
84
  "CiphertextType": {
82
85
  "base": null,
83
86
  "refs": {
84
- "DecryptRequest$CiphertextBlob": "<p>Ciphertext including metadata.</p>",
85
- "EncryptResponse$CiphertextBlob": "<p>The encrypted plaintext.</p>",
86
- "GenerateDataKeyResponse$CiphertextBlob": "<p>Ciphertext that contains the wrapped key. You must store the blob and encryption context so that the ciphertext can be decrypted. You must provide both the ciphertext blob and the encryption context. </p>",
87
- "GenerateDataKeyWithoutPlaintextResponse$CiphertextBlob": "<p>Ciphertext that contains the wrapped key. You must store the blob and encryption context so that the key can be used in a future operation. </p>",
87
+ "DecryptRequest$CiphertextBlob": "<p>Ciphertext to be decrypted. The blob includes metadata.</p>",
88
+ "EncryptResponse$CiphertextBlob": "<p>The encrypted plaintext. If you are using the CLI, the value is Base64 encoded. Otherwise, it is not encoded.</p>",
89
+ "GenerateDataKeyResponse$CiphertextBlob": "<p>Ciphertext that contains the encrypted data key. You must store the blob and enough information to reconstruct the encryption context so that the data encrypted by using the key can later be decrypted. You must provide both the ciphertext blob and the encryption context to the <a>Decrypt</a> API to recover the plaintext data key and decrypt the object. </p> <p>If you are using the CLI, the value is Base64 encoded. Otherwise, it is not encoded.</p>",
90
+ "GenerateDataKeyWithoutPlaintextResponse$CiphertextBlob": "<p>Ciphertext that contains the wrapped data key. You must store the blob and encryption context so that the key can be used in a future decrypt operation. </p> <p>If you are using the CLI, the value is Base64 encoded. Otherwise, it is not encoded. </p>",
88
91
  "ReEncryptRequest$CiphertextBlob": "<p>Ciphertext of the data to re-encrypt.</p>",
89
- "ReEncryptResponse$CiphertextBlob": "<p>The re-encrypted data.</p>"
92
+ "ReEncryptResponse$CiphertextBlob": "<p>The re-encrypted data. If you are using the CLI, the value is Base64 encoded. Otherwise, it is not encoded.</p>"
90
93
  }
91
94
  },
92
95
  "CreateAliasRequest": {
@@ -210,7 +213,7 @@
210
213
  "base": null,
211
214
  "refs": {
212
215
  "DecryptRequest$EncryptionContext": "<p>The encryption context. If this was specified in the <a>Encrypt</a> function, it must be specified here or the decryption operation will fail. For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/encrypt-context.html\">Encryption Context</a>. </p>",
213
- "EncryptRequest$EncryptionContext": "<p>Name:value pair that specifies the encryption context to be used for authenticated encryption. For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/crypto_authen.html\">Authenticated Encryption</a>. </p>",
216
+ "EncryptRequest$EncryptionContext": "<p>Name/value pair that specifies the encryption context to be used for authenticated encryption. If used here, the same value must be supplied to the <code>Decrypt</code> API or decryption will fail. For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/encrypt-context.html\">Encryption Context</a>. </p>",
214
217
  "GenerateDataKeyRequest$EncryptionContext": "<p>Name/value pair that contains additional data to be authenticated during the encryption and decryption processes that use the key. This value is logged by AWS CloudTrail to provide context around the data encrypted by the key. </p>",
215
218
  "GenerateDataKeyWithoutPlaintextRequest$EncryptionContext": "<p>Name:value pair that contains additional data to be authenticated during the encryption and decryption processes. </p>",
216
219
  "GrantConstraints$EncryptionContextSubset": "The constraint equals the full encryption context.",
@@ -307,6 +310,7 @@
307
310
  "refs": {
308
311
  "CreateGrantResponse$GrantId": "<p>Unique grant identifier. You can use the <i>GrantId</i> value to revoke a grant.</p>",
309
312
  "GrantListEntry$GrantId": "<p>Unique grant identifier.</p>",
313
+ "RetireGrantRequest$GrantId": "<p> Unique identifier of the grant to be retired. The grant ID is returned by the <code>CreateGrant</code> function. <ul> <li>Grant ID Example - 0123456789012345678901234567890123456789012345678901234567890123</li> </ul> </p>",
310
314
  "RevokeGrantRequest$GrantId": "<p>Identifier of the grant to be revoked.</p>"
311
315
  }
312
316
  },
@@ -331,25 +335,25 @@
331
335
  "GrantOperationList": {
332
336
  "base": null,
333
337
  "refs": {
334
- "CreateGrantRequest$Operations": "<p>List of operations permitted by the grant. This can be any combination of one or more of the following values: <ol> <li>Decrypt</li> <li>Encrypt</li> <li>GenerateDataKey</li> <li>GenerateDataKeyWithoutPlaintext</li> <li>ReEncryptFrom</li> <li>ReEncryptTo</li> <li>CreateGrant</li> </ol> </p>",
338
+ "CreateGrantRequest$Operations": "<p>List of operations permitted by the grant. This can be any combination of one or more of the following values: <ol> <li>Decrypt</li> <li>Encrypt</li> <li>GenerateDataKey</li> <li>GenerateDataKeyWithoutPlaintext</li> <li>ReEncryptFrom</li> <li>ReEncryptTo</li> <li>CreateGrant</li> <li>RetireGrant</li> </ol> </p>",
335
339
  "GrantListEntry$Operations": "<p>List of operations permitted by the grant. This can be any combination of one or more of the following values: <ol> <li>Decrypt</li> <li>Encrypt</li> <li>GenerateDataKey</li> <li>GenerateDataKeyWithoutPlaintext</li> <li>ReEncryptFrom</li> <li>ReEncryptTo</li> <li>CreateGrant</li> </ol></p>"
336
340
  }
337
341
  },
338
342
  "GrantTokenList": {
339
343
  "base": null,
340
344
  "refs": {
341
- "CreateGrantRequest$GrantTokens": "<p>List of grant tokens.</p>",
342
- "DecryptRequest$GrantTokens": "<p>A list of grant tokens that represent grants which can be used to provide long term permissions to perform decryption.</p>",
343
- "EncryptRequest$GrantTokens": "<p>A list of grant tokens that represent grants which can be used to provide long term permissions to perform encryption.</p>",
344
- "GenerateDataKeyRequest$GrantTokens": "<p>A list of grant tokens that represent grants which can be used to provide long term permissions to generate a key.</p>",
345
- "GenerateDataKeyWithoutPlaintextRequest$GrantTokens": "<p>A list of grant tokens that represent grants which can be used to provide long term permissions to generate a key.</p>",
346
- "ReEncryptRequest$GrantTokens": "<p> Grant tokens that identify the grants that have permissions for the encryption and decryption process.</p>"
345
+ "CreateGrantRequest$GrantTokens": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>",
346
+ "DecryptRequest$GrantTokens": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>",
347
+ "EncryptRequest$GrantTokens": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>",
348
+ "GenerateDataKeyRequest$GrantTokens": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>",
349
+ "GenerateDataKeyWithoutPlaintextRequest$GrantTokens": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>",
350
+ "ReEncryptRequest$GrantTokens": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>"
347
351
  }
348
352
  },
349
353
  "GrantTokenType": {
350
354
  "base": null,
351
355
  "refs": {
352
- "CreateGrantResponse$GrantToken": "<p>The grant token. A grant token is a string that identifies a grant and which can be used to make a grant take effect immediately. A token contains all of the information necessary to create a grant.</p>",
356
+ "CreateGrantResponse$GrantToken": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token\">Grant Tokens</a>. </p>",
353
357
  "GrantTokenList$member": null,
354
358
  "RetireGrantRequest$GrantToken": "<p>Token that identifies the grant to be retired.</p>"
355
359
  }
@@ -385,7 +389,7 @@
385
389
  }
386
390
  },
387
391
  "KMSInternalException": {
388
- "base": "<b>The request was rejected because an internal exception occurred. This error can be retried.</b>",
392
+ "base": "<p>The request was rejected because an internal exception occurred. This error can be retried.</p>",
389
393
  "refs": {
390
394
  }
391
395
  },
@@ -393,32 +397,34 @@
393
397
  "base": null,
394
398
  "refs": {
395
399
  "AliasListEntry$TargetKeyId": "<p>String that contains the key identifier pointed to by the alias.</p>",
396
- "CreateAliasRequest$TargetKeyId": "<p>An identifier of the key for which you are creating the alias. This value cannot be another alias.</p>",
397
- "CreateGrantRequest$KeyId": "<p>A unique key identifier for a customer master key. This value can be a globally unique identifier, an ARN, or an alias. </p>",
398
- "DecryptResponse$KeyId": "<p>Unique identifier created by the system for the key. This value is always returned as long as no errors are encountered during the operation.</p>",
399
- "DescribeKeyRequest$KeyId": "<p>Unique identifier of the customer master key to be described. This can be an ARN, an alias, or a globally unique identifier. </p>",
400
- "DisableKeyRequest$KeyId": "<p>Unique identifier of the customer master key to be disabled. This can be an ARN, an alias, or a globally unique identifier. </p>",
401
- "DisableKeyRotationRequest$KeyId": "<p>Unique identifier of the customer master key for which rotation is to be disabled. This can be an ARN, an alias, or a globally unique identifier. </p>",
402
- "EnableKeyRequest$KeyId": "<p>Unique identifier of the customer master key to be enabled. This can be an ARN, an alias, or a globally unique identifier. </p>",
403
- "EnableKeyRotationRequest$KeyId": "<p>Unique identifier of the customer master key for which rotation is to be enabled. This can be an ARN, an alias, or a globally unique identifier. </p>",
404
- "EncryptRequest$KeyId": "<p>Unique identifier of the customer master. This can be an ARN, an alias, or the Key ID. </p>",
400
+ "CreateAliasRequest$TargetKeyId": "<p>An identifier of the key for which you are creating the alias. This value cannot be another alias but can be a globally unique identifier or a fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
401
+ "CreateGrantRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
402
+ "DecryptResponse$KeyId": "<p>ARN of the key used to perform the decryption. This value is returned if no errors are encountered during the operation. </p>",
403
+ "DescribeKeyRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\". <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> <li>Alias Name Example - alias/MyAliasName</li> </ul> </p>",
404
+ "DisableKeyRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
405
+ "DisableKeyRotationRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
406
+ "EnableKeyRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
407
+ "EnableKeyRotationRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
408
+ "EncryptRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\". <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> <li>Alias Name Example - alias/MyAliasName</li> </ul> </p>",
405
409
  "EncryptResponse$KeyId": "<p>The ID of the key used during encryption.</p>",
406
- "GenerateDataKeyRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
407
- "GenerateDataKeyResponse$KeyId": "<p>System generated unique identifier for the key.</p>",
408
- "GenerateDataKeyWithoutPlaintextRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
409
- "GenerateDataKeyWithoutPlaintextResponse$KeyId": "<p>System generated unique identifier for the key.</p>",
410
- "GetKeyPolicyRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
411
- "GetKeyRotationStatusRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
410
+ "GenerateDataKeyRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\". <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> <li>Alias Name Example - alias/MyAliasName</li> </ul> </p>",
411
+ "GenerateDataKeyResponse$KeyId": "<p>System generated unique identifier of the key to be used to decrypt the encrypted copy of the data key.</p>",
412
+ "GenerateDataKeyWithoutPlaintextRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\". <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> <li>Alias Name Example - alias/MyAliasName</li> </ul> </p>",
413
+ "GenerateDataKeyWithoutPlaintextResponse$KeyId": "<p>System generated unique identifier of the key to be used to decrypt the encrypted copy of the data key.</p>",
414
+ "GetKeyPolicyRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
415
+ "GetKeyRotationStatusRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
412
416
  "KeyListEntry$KeyId": "<p>Unique identifier of the key.</p>",
413
417
  "KeyMetadata$KeyId": "<p>Unique identifier for the key.</p>",
414
- "ListGrantsRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
415
- "ListKeyPoliciesRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
416
- "PutKeyPolicyRequest$KeyId": "<p>Unique identifier of the key. This can be an ARN, an alias, or a globally unique identifier.</p>",
417
- "ReEncryptRequest$DestinationKeyId": "<p>Key identifier of the key used to re-encrypt the data.</p>",
418
+ "ListGrantsRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
419
+ "ListKeyPoliciesRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\". <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> <li>Alias Name Example - alias/MyAliasName</li> </ul> </p>",
420
+ "PutKeyPolicyRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
421
+ "ReEncryptRequest$DestinationKeyId": "<p>A unique identifier for the customer master key used to re-encrypt the data. This value can be a globally unique identifier, a fully specified ARN to either an alias or a key, or an alias name prefixed by \"alias/\". <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> <li>Alias Name Example - alias/MyAliasName</li> </ul> </p>",
418
422
  "ReEncryptResponse$SourceKeyId": "<p>Unique identifier of the key used to originally encrypt the data.</p>",
419
423
  "ReEncryptResponse$KeyId": "<p>Unique identifier of the key used to re-encrypt the data.</p>",
420
- "RevokeGrantRequest$KeyId": "<p>Unique identifier of the key associated with the grant.</p>",
421
- "UpdateKeyDescriptionRequest$KeyId": "<p>Unique value that identifies the key for which the description is to be changed.</p>"
424
+ "RetireGrantRequest$KeyId": "<p>A unique identifier for the customer master key associated with the grant. This value can be a globally unique identifier or a fully specified ARN of the key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
425
+ "RevokeGrantRequest$KeyId": "<p>A unique identifier for the customer master key associated with the grant. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
426
+ "UpdateAliasRequest$TargetKeyId": "<p>Unique identifier of the customer master key to be associated with the alias. This value can be a globally unique identifier or the fully specified ARN of a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>",
427
+ "UpdateKeyDescriptionRequest$KeyId": "<p>A unique identifier for the customer master key. This value can be a globally unique identifier or the fully specified ARN to a key. <ul> <li>Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012</li> <li>Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012</li> </ul> </p>"
422
428
  }
423
429
  },
424
430
  "KeyList": {
@@ -532,8 +538,8 @@
532
538
  "NumberOfBytesType": {
533
539
  "base": null,
534
540
  "refs": {
535
- "GenerateDataKeyRequest$NumberOfBytes": "<p>Integer that contains the number of bytes to generate. Common values are 128, 256, 512, 1024 and so on. 1024 is the current limit. </p>",
536
- "GenerateDataKeyWithoutPlaintextRequest$NumberOfBytes": "<p>Integer that contains the number of bytes to generate. Common values are 128, 256, 512, 1024 and so on. </p>",
541
+ "GenerateDataKeyRequest$NumberOfBytes": "<p>Integer that contains the number of bytes to generate. Common values are 128, 256, 512, and 1024. 1024 is the current limit. We recommend that you use the <code>KeySpec</code> parameter instead. </p>",
542
+ "GenerateDataKeyWithoutPlaintextRequest$NumberOfBytes": "<p>Integer that contains the number of bytes to generate. Common values are 128, 256, 512, 1024 and so on. We recommend that you use the <code>KeySpec</code> parameter instead. </p>",
537
543
  "GenerateRandomRequest$NumberOfBytes": "<p>Integer that contains the number of bytes to generate. Common values are 128, 256, 512, 1024 and so on. The current limit is 1024 bytes. </p>"
538
544
  }
539
545
  },
@@ -542,7 +548,7 @@
542
548
  "refs": {
543
549
  "DecryptResponse$Plaintext": "<p>Decrypted plaintext data. This value may not be returned if the customer master key is not available or if you didn't have permission to use it.</p>",
544
550
  "EncryptRequest$Plaintext": "<p>Data to be encrypted.</p>",
545
- "GenerateDataKeyResponse$Plaintext": "<p>Plaintext that contains the unwrapped key. Use this for encryption and decryption and then remove it from memory as soon as possible. </p>",
551
+ "GenerateDataKeyResponse$Plaintext": "<p>Plaintext that contains the data key. Use this for encryption and decryption and then remove it from memory as soon as possible. </p>",
546
552
  "GenerateRandomResponse$Plaintext": "<p>Plaintext that contains the unpredictable byte string.</p>"
547
553
  }
548
554
  },
@@ -608,6 +614,11 @@
608
614
  "refs": {
609
615
  }
610
616
  },
617
+ "UpdateAliasRequest": {
618
+ "base": null,
619
+ "refs": {
620
+ }
621
+ },
611
622
  "UpdateKeyDescriptionRequest": {
612
623
  "base": null,
613
624
  "refs": {
data/bin/aws.rb CHANGED
@@ -9,7 +9,7 @@ require 'logger'
9
9
 
10
10
  def env_bool key, default
11
11
  if ENV.key?(key)
12
- !['0', 'false', 'no', 'off'].include?(ENV[key].downcase)
12
+ ['0', 'false', 'no', 'off'].exclude?(ENV[key].downcase)
13
13
  else
14
14
  default
15
15
  end
@@ -47,7 +47,7 @@ module Aws
47
47
  if member_regex.is_a?(String)
48
48
  member_regex = /^#{member_regex}$/
49
49
  end
50
- @client_class.api.definition['shapes'].each do |shape_name, shape|
50
+ @client_class.api.definition['shapes'].each_value do |shape|
51
51
  if shape['members']
52
52
  shape['members'].each do |member_name, member_ref|
53
53
  if member_name.match(member_regex)
@@ -11,7 +11,7 @@ module Aws
11
11
  # * `:upload_multipart_part`
12
12
  #
13
13
  # The `:upload_archive` and `:upload_multipart_part` operations
14
- # accept a `:checksum` request paramter. If this param
14
+ # accept a `:checksum` request parameter. If this param
15
15
  # is present, then the checksum is assumed to be the proper
16
16
  # tree hash of the file to be uploaded. If this param is
17
17
  # not present, then the required tree hash checksum will
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.0.44'
2
+ VERSION = '2.0.45'
3
3
  end
@@ -11,7 +11,7 @@ module Seahorse
11
11
  # headers[:Authorization] = 'Abc'
12
12
  #
13
13
  # headers.keys
14
- # #=> ['content-length', 'authorization']]
14
+ # #=> ['content-length', 'authorization']
15
15
  #
16
16
  # headers.values
17
17
  # #=> ['100', 'Abc']
@@ -5,7 +5,7 @@ module Seahorse
5
5
  module Logging
6
6
 
7
7
  # A log formatter receives a {Response} object and return
8
- # a log message as a string.. When you construct a {Formatter}, you provide
8
+ # a log message as a string. When you construct a {Formatter}, you provide
9
9
  # a pattern string with substitutions.
10
10
  #
11
11
  # pattern = ':operation :http_response_status_code :time'
@@ -24,7 +24,7 @@ module Seahorse
24
24
  # @api private
25
25
  DNS_ERROR_MESSAGE = 'getaddrinfo: nodename nor servname provided, or not known'
26
26
 
27
- # Raised when a {Handler} can not construct a `Net::HTTP::Request`
27
+ # Raised when a {Handler} cannot construct a `Net::HTTP::Request`
28
28
  # from the given http verb.
29
29
  class InvalidHttpVerbError < StandardError; end
30
30
 
@@ -34,7 +34,7 @@ module Seahorse
34
34
  if @types.key?(type)
35
35
  @types[type]
36
36
  else
37
- raise ArgumentError, "unregisterd type `#{type}'"
37
+ raise ArgumentError, "unregistered type `#{type}'"
38
38
  end
39
39
  end
40
40
 
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.44
4
+ version: 2.0.45
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: 2015-05-18 00:00:00.000000000 Z
11
+ date: 2015-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: builder
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '3.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '3.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jmespath
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.0'
55
55
  description: Provides API clients for AWS. This gem is part of the official AWS SDK
@@ -61,7 +61,176 @@ executables:
61
61
  extensions: []
62
62
  extra_rdoc_files: []
63
63
  files:
64
+ - apis/autoscaling/2011-01-01/api-2.json
65
+ - apis/autoscaling/2011-01-01/docs-2.json
66
+ - apis/autoscaling/2011-01-01/paginators-1.json
67
+ - apis/cloudformation/2010-05-15/api-2.json
68
+ - apis/cloudformation/2010-05-15/docs-2.json
69
+ - apis/cloudformation/2010-05-15/paginators-1.json
70
+ - apis/cloudformation/2010-05-15/resources-1.json
71
+ - apis/cloudformation/2010-05-15/waiters-2.json
72
+ - apis/cloudfront/2014-11-06/api-2.json
73
+ - apis/cloudfront/2014-11-06/docs-2.json
74
+ - apis/cloudfront/2014-11-06/paginators-1.json
75
+ - apis/cloudfront/2014-11-06/waiters-2.json
76
+ - apis/cloudhsm/2014-05-30/api-2.json
77
+ - apis/cloudhsm/2014-05-30/docs-2.json
78
+ - apis/cloudsearch/2013-01-01/api-2.json
79
+ - apis/cloudsearch/2013-01-01/docs-2.json
80
+ - apis/cloudsearch/2013-01-01/paginators-1.json
81
+ - apis/cloudsearchdomain/2013-01-01/api-2.json
82
+ - apis/cloudsearchdomain/2013-01-01/docs-2.json
83
+ - apis/cloudtrail/2013-11-01/api-2.json
84
+ - apis/cloudtrail/2013-11-01/docs-2.json
85
+ - apis/cloudtrail/2013-11-01/paginators-1.json
86
+ - apis/codedeploy/2014-10-06/api-2.json
87
+ - apis/codedeploy/2014-10-06/docs-2.json
88
+ - apis/codedeploy/2014-10-06/paginators-1.json
89
+ - apis/cognito-identity/2014-06-30/api-2.json
90
+ - apis/cognito-identity/2014-06-30/docs-2.json
91
+ - apis/cognito-sync/2014-06-30/api-2.json
92
+ - apis/cognito-sync/2014-06-30/docs-2.json
93
+ - apis/config/2014-10-17/api-2.json
94
+ - apis/config/2014-10-17/docs-2.json
95
+ - apis/config/2014-10-17/paginators-1.json
96
+ - apis/config/2014-11-12/api-2.json
97
+ - apis/config/2014-11-12/docs-2.json
98
+ - apis/config/2014-11-12/paginators-1.json
99
+ - apis/datapipeline/2012-10-29/api-2.json
100
+ - apis/datapipeline/2012-10-29/docs-2.json
101
+ - apis/datapipeline/2012-10-29/paginators-1.json
102
+ - apis/directconnect/2012-10-25/api-2.json
103
+ - apis/directconnect/2012-10-25/docs-2.json
104
+ - apis/directconnect/2012-10-25/paginators-1.json
105
+ - apis/ds/2015-04-16/api-2.json
106
+ - apis/ds/2015-04-16/docs-2.json
107
+ - apis/dynamodb/2011-12-05/api-2.json
108
+ - apis/dynamodb/2011-12-05/docs-2.json
109
+ - apis/dynamodb/2011-12-05/paginators-1.json
110
+ - apis/dynamodb/2011-12-05/waiters-2.json
111
+ - apis/dynamodb/2012-08-10/api-2.json
112
+ - apis/dynamodb/2012-08-10/docs-2.json
113
+ - apis/dynamodb/2012-08-10/paginators-1.json
114
+ - apis/dynamodb/2012-08-10/resources-1.json
115
+ - apis/dynamodb/2012-08-10/waiters-2.json
116
+ - apis/ec2/2015-04-15/api-2.json
117
+ - apis/ec2/2015-04-15/docs-2.json
118
+ - apis/ec2/2015-04-15/paginators-1.json
119
+ - apis/ec2/2015-04-15/resources-1.json
120
+ - apis/ec2/2015-04-15/waiters-2.json
121
+ - apis/ecs/2014-11-13/api-2.json
122
+ - apis/ecs/2014-11-13/docs-2.json
123
+ - apis/elasticache/2015-02-02/api-2.json
124
+ - apis/elasticache/2015-02-02/docs-2.json
125
+ - apis/elasticache/2015-02-02/paginators-1.json
126
+ - apis/elasticache/2015-02-02/waiters-2.json
127
+ - apis/elasticbeanstalk/2010-12-01/api-2.json
128
+ - apis/elasticbeanstalk/2010-12-01/docs-2.json
129
+ - apis/elasticbeanstalk/2010-12-01/paginators-1.json
130
+ - apis/elasticloadbalancing/2012-06-01/api-2.json
131
+ - apis/elasticloadbalancing/2012-06-01/docs-2.json
132
+ - apis/elasticloadbalancing/2012-06-01/paginators-1.json
133
+ - apis/elasticloadbalancing/2012-06-01/waiters-2.json
134
+ - apis/elasticmapreduce/2009-03-31/api-2.json
135
+ - apis/elasticmapreduce/2009-03-31/docs-2.json
136
+ - apis/elasticmapreduce/2009-03-31/paginators-1.json
137
+ - apis/elasticmapreduce/2009-03-31/waiters-2.json
138
+ - apis/elastictranscoder/2012-09-25/api-2.json
139
+ - apis/elastictranscoder/2012-09-25/docs-2.json
140
+ - apis/elastictranscoder/2012-09-25/paginators-1.json
141
+ - apis/elastictranscoder/2012-09-25/waiters-2.json
142
+ - apis/email/2010-12-01/api-2.json
143
+ - apis/email/2010-12-01/docs-2.json
144
+ - apis/email/2010-12-01/paginators-1.json
145
+ - apis/email/2010-12-01/waiters-2.json
146
+ - apis/glacier/2012-06-01/api-2.json
147
+ - apis/glacier/2012-06-01/docs-2.json
148
+ - apis/glacier/2012-06-01/paginators-1.json
149
+ - apis/glacier/2012-06-01/resources-1.json
150
+ - apis/glacier/2012-06-01/waiters-2.json
151
+ - apis/iam/2010-05-08/api-2.json
152
+ - apis/iam/2010-05-08/docs-2.json
153
+ - apis/iam/2010-05-08/paginators-1.json
154
+ - apis/iam/2010-05-08/resources-1.json
155
+ - apis/importexport/2010-06-01/api-2.json
156
+ - apis/importexport/2010-06-01/docs-2.json
157
+ - apis/importexport/2010-06-01/paginators-1.json
158
+ - apis/kinesis/2013-12-02/api-2.json
159
+ - apis/kinesis/2013-12-02/docs-2.json
160
+ - apis/kinesis/2013-12-02/paginators-1.json
161
+ - apis/kinesis/2013-12-02/waiters-2.json
162
+ - apis/kms/2014-11-01/api-2.json
163
+ - apis/kms/2014-11-01/docs-2.json
164
+ - apis/kms/2014-11-01/paginators-1.json
165
+ - apis/lambda/2014-11-11/api-2.json
166
+ - apis/lambda/2014-11-11/docs-2.json
167
+ - apis/lambda/2014-11-11/paginators-1.json
168
+ - apis/lambda/2015-03-31/api-2.json
169
+ - apis/lambda/2015-03-31/docs-2.json
170
+ - apis/lambda/2015-03-31/paginators-1.json
171
+ - apis/logs/2014-03-28/api-2.json
172
+ - apis/logs/2014-03-28/docs-2.json
173
+ - apis/logs/2014-03-28/paginators-1.json
174
+ - apis/machinelearning/2014-12-12/api-2.json
175
+ - apis/machinelearning/2014-12-12/docs-2.json
176
+ - apis/machinelearning/2014-12-12/paginators-1.json
177
+ - apis/monitoring/2010-08-01/api-2.json
178
+ - apis/monitoring/2010-08-01/docs-2.json
179
+ - apis/monitoring/2010-08-01/paginators-1.json
180
+ - apis/opsworks/2013-02-18/api-2.json
181
+ - apis/opsworks/2013-02-18/docs-2.json
182
+ - apis/opsworks/2013-02-18/paginators-1.json
183
+ - apis/opsworks/2013-02-18/resources-1.json
184
+ - apis/opsworks/2013-02-18/waiters-2.json
185
+ - apis/rds/2014-10-31/api-2.json
186
+ - apis/rds/2014-10-31/docs-2.json
187
+ - apis/rds/2014-10-31/paginators-1.json
188
+ - apis/rds/2014-10-31/resources-1.json
189
+ - apis/rds/2014-10-31/waiters-2.json
190
+ - apis/redshift/2012-12-01/api-2.json
191
+ - apis/redshift/2012-12-01/docs-2.json
192
+ - apis/redshift/2012-12-01/paginators-1.json
193
+ - apis/redshift/2012-12-01/waiters-2.json
194
+ - apis/route53/2013-04-01/api-2.json
195
+ - apis/route53/2013-04-01/docs-2.json
196
+ - apis/route53/2013-04-01/paginators-1.json
197
+ - apis/route53domains/2014-05-15/api-2.json
198
+ - apis/route53domains/2014-05-15/docs-2.json
199
+ - apis/route53domains/2014-05-15/paginators-1.json
200
+ - apis/s3/2006-03-01/api-2.json
201
+ - apis/s3/2006-03-01/docs-2.json
202
+ - apis/s3/2006-03-01/paginators-1.json
203
+ - apis/s3/2006-03-01/resources-1.json
204
+ - apis/s3/2006-03-01/waiters-2.json
205
+ - apis/sdb/2009-04-15/api-2.json
206
+ - apis/sdb/2009-04-15/docs-2.json
207
+ - apis/sdb/2009-04-15/paginators-1.json
208
+ - apis/sns/2010-03-31/api-2.json
209
+ - apis/sns/2010-03-31/docs-2.json
210
+ - apis/sns/2010-03-31/paginators-1.json
211
+ - apis/sns/2010-03-31/resources-1.json
212
+ - apis/sqs/2012-11-05/api-2.json
213
+ - apis/sqs/2012-11-05/docs-2.json
214
+ - apis/sqs/2012-11-05/paginators-1.json
215
+ - apis/ssm/2014-11-06/api-2.json
216
+ - apis/ssm/2014-11-06/docs-2.json
217
+ - apis/storagegateway/2013-06-30/api-2.json
218
+ - apis/storagegateway/2013-06-30/docs-2.json
219
+ - apis/storagegateway/2013-06-30/paginators-1.json
220
+ - apis/sts/2011-06-15/api-2.json
221
+ - apis/sts/2011-06-15/docs-2.json
222
+ - apis/support/2013-04-15/api-2.json
223
+ - apis/support/2013-04-15/docs-2.json
224
+ - apis/support/2013-04-15/paginators-1.json
225
+ - apis/swf/2012-01-25/api-2.json
226
+ - apis/swf/2012-01-25/docs-2.json
227
+ - apis/swf/2012-01-25/paginators-1.json
228
+ - apis/workspaces/2015-04-08/api-2.json
229
+ - apis/workspaces/2015-04-08/docs-2.json
230
+ - apis/workspaces/2015-04-08/paginators-1.json
231
+ - bin/aws.rb
64
232
  - endpoints.json
233
+ - lib/aws-sdk-core.rb
65
234
  - lib/aws-sdk-core/api/customizer.rb
66
235
  - lib/aws-sdk-core/api/docstrings.rb
67
236
  - lib/aws-sdk-core/api/documenter.rb
@@ -91,8 +260,8 @@ files:
91
260
  - lib/aws-sdk-core/datapipeline.rb
92
261
  - lib/aws-sdk-core/directconnect.rb
93
262
  - lib/aws-sdk-core/directoryservice.rb
94
- - lib/aws-sdk-core/dynamodb/attribute_value.rb
95
263
  - lib/aws-sdk-core/dynamodb.rb
264
+ - lib/aws-sdk-core/dynamodb/attribute_value.rb
96
265
  - lib/aws-sdk-core/ec2.rb
97
266
  - lib/aws-sdk-core/ecs.rb
98
267
  - lib/aws-sdk-core/elasticache.rb
@@ -170,9 +339,9 @@ files:
170
339
  - lib/aws-sdk-core/rest_body_handler.rb
171
340
  - lib/aws-sdk-core/route53.rb
172
341
  - lib/aws-sdk-core/route53domains.rb
342
+ - lib/aws-sdk-core/s3.rb
173
343
  - lib/aws-sdk-core/s3/bucket_region_cache.rb
174
344
  - lib/aws-sdk-core/s3/presigner.rb
175
- - lib/aws-sdk-core/s3.rb
176
345
  - lib/aws-sdk-core/service.rb
177
346
  - lib/aws-sdk-core/ses.rb
178
347
  - lib/aws-sdk-core/shared_credentials.rb
@@ -202,6 +371,7 @@ files:
202
371
  - lib/aws-sdk-core/xml/builder.rb
203
372
  - lib/aws-sdk-core/xml/default_list.rb
204
373
  - lib/aws-sdk-core/xml/error_handler.rb
374
+ - lib/aws-sdk-core/xml/parser.rb
205
375
  - lib/aws-sdk-core/xml/parser/engines/libxml.rb
206
376
  - lib/aws-sdk-core/xml/parser/engines/nokogiri.rb
207
377
  - lib/aws-sdk-core/xml/parser/engines/ox.rb
@@ -209,9 +379,8 @@ files:
209
379
  - lib/aws-sdk-core/xml/parser/frame.rb
210
380
  - lib/aws-sdk-core/xml/parser/parsing_error.rb
211
381
  - lib/aws-sdk-core/xml/parser/stack.rb
212
- - lib/aws-sdk-core/xml/parser.rb
213
382
  - lib/aws-sdk-core/xml/rest_handler.rb
214
- - lib/aws-sdk-core.rb
383
+ - lib/seahorse.rb
215
384
  - lib/seahorse/client/base.rb
216
385
  - lib/seahorse/client/block_io.rb
217
386
  - lib/seahorse/client/configuration.rb
@@ -255,175 +424,6 @@ files:
255
424
  - lib/seahorse/model/shapes.rb
256
425
  - lib/seahorse/util.rb
257
426
  - lib/seahorse/version.rb
258
- - lib/seahorse.rb
259
- - apis/autoscaling/2011-01-01/api-2.json
260
- - apis/autoscaling/2011-01-01/docs-2.json
261
- - apis/autoscaling/2011-01-01/paginators-1.json
262
- - apis/cloudformation/2010-05-15/api-2.json
263
- - apis/cloudformation/2010-05-15/docs-2.json
264
- - apis/cloudformation/2010-05-15/paginators-1.json
265
- - apis/cloudformation/2010-05-15/resources-1.json
266
- - apis/cloudformation/2010-05-15/waiters-2.json
267
- - apis/cloudfront/2014-11-06/api-2.json
268
- - apis/cloudfront/2014-11-06/docs-2.json
269
- - apis/cloudfront/2014-11-06/paginators-1.json
270
- - apis/cloudfront/2014-11-06/waiters-2.json
271
- - apis/cloudhsm/2014-05-30/api-2.json
272
- - apis/cloudhsm/2014-05-30/docs-2.json
273
- - apis/cloudsearch/2013-01-01/api-2.json
274
- - apis/cloudsearch/2013-01-01/docs-2.json
275
- - apis/cloudsearch/2013-01-01/paginators-1.json
276
- - apis/cloudsearchdomain/2013-01-01/api-2.json
277
- - apis/cloudsearchdomain/2013-01-01/docs-2.json
278
- - apis/cloudtrail/2013-11-01/api-2.json
279
- - apis/cloudtrail/2013-11-01/docs-2.json
280
- - apis/cloudtrail/2013-11-01/paginators-1.json
281
- - apis/codedeploy/2014-10-06/api-2.json
282
- - apis/codedeploy/2014-10-06/docs-2.json
283
- - apis/codedeploy/2014-10-06/paginators-1.json
284
- - apis/cognito-identity/2014-06-30/api-2.json
285
- - apis/cognito-identity/2014-06-30/docs-2.json
286
- - apis/cognito-sync/2014-06-30/api-2.json
287
- - apis/cognito-sync/2014-06-30/docs-2.json
288
- - apis/config/2014-10-17/api-2.json
289
- - apis/config/2014-10-17/docs-2.json
290
- - apis/config/2014-10-17/paginators-1.json
291
- - apis/config/2014-11-12/api-2.json
292
- - apis/config/2014-11-12/docs-2.json
293
- - apis/config/2014-11-12/paginators-1.json
294
- - apis/datapipeline/2012-10-29/api-2.json
295
- - apis/datapipeline/2012-10-29/docs-2.json
296
- - apis/datapipeline/2012-10-29/paginators-1.json
297
- - apis/directconnect/2012-10-25/api-2.json
298
- - apis/directconnect/2012-10-25/docs-2.json
299
- - apis/directconnect/2012-10-25/paginators-1.json
300
- - apis/ds/2015-04-16/api-2.json
301
- - apis/ds/2015-04-16/docs-2.json
302
- - apis/dynamodb/2011-12-05/api-2.json
303
- - apis/dynamodb/2011-12-05/docs-2.json
304
- - apis/dynamodb/2011-12-05/paginators-1.json
305
- - apis/dynamodb/2011-12-05/waiters-2.json
306
- - apis/dynamodb/2012-08-10/api-2.json
307
- - apis/dynamodb/2012-08-10/docs-2.json
308
- - apis/dynamodb/2012-08-10/paginators-1.json
309
- - apis/dynamodb/2012-08-10/resources-1.json
310
- - apis/dynamodb/2012-08-10/waiters-2.json
311
- - apis/ec2/2015-04-15/api-2.json
312
- - apis/ec2/2015-04-15/docs-2.json
313
- - apis/ec2/2015-04-15/paginators-1.json
314
- - apis/ec2/2015-04-15/resources-1.json
315
- - apis/ec2/2015-04-15/waiters-2.json
316
- - apis/ecs/2014-11-13/api-2.json
317
- - apis/ecs/2014-11-13/docs-2.json
318
- - apis/elasticache/2015-02-02/api-2.json
319
- - apis/elasticache/2015-02-02/docs-2.json
320
- - apis/elasticache/2015-02-02/paginators-1.json
321
- - apis/elasticache/2015-02-02/waiters-2.json
322
- - apis/elasticbeanstalk/2010-12-01/api-2.json
323
- - apis/elasticbeanstalk/2010-12-01/docs-2.json
324
- - apis/elasticbeanstalk/2010-12-01/paginators-1.json
325
- - apis/elasticloadbalancing/2012-06-01/api-2.json
326
- - apis/elasticloadbalancing/2012-06-01/docs-2.json
327
- - apis/elasticloadbalancing/2012-06-01/paginators-1.json
328
- - apis/elasticloadbalancing/2012-06-01/waiters-2.json
329
- - apis/elasticmapreduce/2009-03-31/api-2.json
330
- - apis/elasticmapreduce/2009-03-31/docs-2.json
331
- - apis/elasticmapreduce/2009-03-31/paginators-1.json
332
- - apis/elasticmapreduce/2009-03-31/waiters-2.json
333
- - apis/elastictranscoder/2012-09-25/api-2.json
334
- - apis/elastictranscoder/2012-09-25/docs-2.json
335
- - apis/elastictranscoder/2012-09-25/paginators-1.json
336
- - apis/elastictranscoder/2012-09-25/waiters-2.json
337
- - apis/email/2010-12-01/api-2.json
338
- - apis/email/2010-12-01/docs-2.json
339
- - apis/email/2010-12-01/paginators-1.json
340
- - apis/email/2010-12-01/waiters-2.json
341
- - apis/glacier/2012-06-01/api-2.json
342
- - apis/glacier/2012-06-01/docs-2.json
343
- - apis/glacier/2012-06-01/paginators-1.json
344
- - apis/glacier/2012-06-01/resources-1.json
345
- - apis/glacier/2012-06-01/waiters-2.json
346
- - apis/iam/2010-05-08/api-2.json
347
- - apis/iam/2010-05-08/docs-2.json
348
- - apis/iam/2010-05-08/paginators-1.json
349
- - apis/iam/2010-05-08/resources-1.json
350
- - apis/importexport/2010-06-01/api-2.json
351
- - apis/importexport/2010-06-01/docs-2.json
352
- - apis/importexport/2010-06-01/paginators-1.json
353
- - apis/kinesis/2013-12-02/api-2.json
354
- - apis/kinesis/2013-12-02/docs-2.json
355
- - apis/kinesis/2013-12-02/paginators-1.json
356
- - apis/kinesis/2013-12-02/waiters-2.json
357
- - apis/kms/2014-11-01/api-2.json
358
- - apis/kms/2014-11-01/docs-2.json
359
- - apis/kms/2014-11-01/paginators-1.json
360
- - apis/lambda/2014-11-11/api-2.json
361
- - apis/lambda/2014-11-11/docs-2.json
362
- - apis/lambda/2014-11-11/paginators-1.json
363
- - apis/lambda/2015-03-31/api-2.json
364
- - apis/lambda/2015-03-31/docs-2.json
365
- - apis/lambda/2015-03-31/paginators-1.json
366
- - apis/logs/2014-03-28/api-2.json
367
- - apis/logs/2014-03-28/docs-2.json
368
- - apis/logs/2014-03-28/paginators-1.json
369
- - apis/machinelearning/2014-12-12/api-2.json
370
- - apis/machinelearning/2014-12-12/docs-2.json
371
- - apis/machinelearning/2014-12-12/paginators-1.json
372
- - apis/monitoring/2010-08-01/api-2.json
373
- - apis/monitoring/2010-08-01/docs-2.json
374
- - apis/monitoring/2010-08-01/paginators-1.json
375
- - apis/opsworks/2013-02-18/api-2.json
376
- - apis/opsworks/2013-02-18/docs-2.json
377
- - apis/opsworks/2013-02-18/paginators-1.json
378
- - apis/opsworks/2013-02-18/resources-1.json
379
- - apis/opsworks/2013-02-18/waiters-2.json
380
- - apis/rds/2014-10-31/api-2.json
381
- - apis/rds/2014-10-31/docs-2.json
382
- - apis/rds/2014-10-31/paginators-1.json
383
- - apis/rds/2014-10-31/resources-1.json
384
- - apis/rds/2014-10-31/waiters-2.json
385
- - apis/redshift/2012-12-01/api-2.json
386
- - apis/redshift/2012-12-01/docs-2.json
387
- - apis/redshift/2012-12-01/paginators-1.json
388
- - apis/redshift/2012-12-01/waiters-2.json
389
- - apis/route53/2013-04-01/api-2.json
390
- - apis/route53/2013-04-01/docs-2.json
391
- - apis/route53/2013-04-01/paginators-1.json
392
- - apis/route53domains/2014-05-15/api-2.json
393
- - apis/route53domains/2014-05-15/docs-2.json
394
- - apis/route53domains/2014-05-15/paginators-1.json
395
- - apis/s3/2006-03-01/api-2.json
396
- - apis/s3/2006-03-01/docs-2.json
397
- - apis/s3/2006-03-01/paginators-1.json
398
- - apis/s3/2006-03-01/resources-1.json
399
- - apis/s3/2006-03-01/waiters-2.json
400
- - apis/sdb/2009-04-15/api-2.json
401
- - apis/sdb/2009-04-15/docs-2.json
402
- - apis/sdb/2009-04-15/paginators-1.json
403
- - apis/sns/2010-03-31/api-2.json
404
- - apis/sns/2010-03-31/docs-2.json
405
- - apis/sns/2010-03-31/paginators-1.json
406
- - apis/sns/2010-03-31/resources-1.json
407
- - apis/sqs/2012-11-05/api-2.json
408
- - apis/sqs/2012-11-05/docs-2.json
409
- - apis/sqs/2012-11-05/paginators-1.json
410
- - apis/ssm/2014-11-06/api-2.json
411
- - apis/ssm/2014-11-06/docs-2.json
412
- - apis/storagegateway/2013-06-30/api-2.json
413
- - apis/storagegateway/2013-06-30/docs-2.json
414
- - apis/storagegateway/2013-06-30/paginators-1.json
415
- - apis/sts/2011-06-15/api-2.json
416
- - apis/sts/2011-06-15/docs-2.json
417
- - apis/support/2013-04-15/api-2.json
418
- - apis/support/2013-04-15/docs-2.json
419
- - apis/support/2013-04-15/paginators-1.json
420
- - apis/swf/2012-01-25/api-2.json
421
- - apis/swf/2012-01-25/docs-2.json
422
- - apis/swf/2012-01-25/paginators-1.json
423
- - apis/workspaces/2015-04-08/api-2.json
424
- - apis/workspaces/2015-04-08/docs-2.json
425
- - apis/workspaces/2015-04-08/paginators-1.json
426
- - bin/aws.rb
427
427
  homepage: http://github.com/aws/aws-sdk-ruby
428
428
  licenses:
429
429
  - Apache 2.0
@@ -434,17 +434,17 @@ require_paths:
434
434
  - lib
435
435
  required_ruby_version: !ruby/object:Gem::Requirement
436
436
  requirements:
437
- - - '>='
437
+ - - ">="
438
438
  - !ruby/object:Gem::Version
439
439
  version: '0'
440
440
  required_rubygems_version: !ruby/object:Gem::Requirement
441
441
  requirements:
442
- - - '>='
442
+ - - ">="
443
443
  - !ruby/object:Gem::Version
444
444
  version: '0'
445
445
  requirements: []
446
446
  rubyforge_project:
447
- rubygems_version: 2.0.14
447
+ rubygems_version: 2.4.6
448
448
  signing_key:
449
449
  specification_version: 4
450
450
  summary: AWS SDK for Ruby - Core