aws-sdk-ebs 1.15.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea9787b09864e956707ebeaeecee17374f1e0672eb0293921935c23b395bca87
4
- data.tar.gz: fda4cab71c8cf44e6c0bfd20825af4029badce148a002941b46f46f5682694ff
3
+ metadata.gz: 4a3945bdb3e78e12f5fa2d71dccc5f796c5b786f64551176d2f98855fde913f1
4
+ data.tar.gz: f1b01dec26221fd2bb5b4d9fd20614db2e215832bee5ce21b182db6880e2a3ed
5
5
  SHA512:
6
- metadata.gz: 336c8cec0527d75761858366ce3105b4367c2520ce2b21b29f9099f4cd0d5d4e26990fed29661ffb8862b3f7cfb9492af5a2c11e0c350a60113a965b6b5d1376
7
- data.tar.gz: 10d6c8b260ebe32e330fa67c7c28604a36ca4fe8e9d5e6fb38dd13547edb535d623176b85cf6f148586d900b30b034ab9a4400e939375ce7ef43274fc97b387f
6
+ metadata.gz: dda200f6746722faf3e19a13bf4523e007b1eb4c7907f4cf751aefa4771560d5641cb786ae44f163e41ee6b40de188e8ee026af1dc35b275156424b9f6b7b773
7
+ data.tar.gz: b0393c2a10c4b5490889adf4de45b5d9e79f83ba9e0469fd31358038a866d3bf9480b6606e9ac28d07edabfc39f69992bdeaae7d8c4c6f8c971de6e89bbbde28
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2021-08-11)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon EBS direct APIs.
8
+
4
9
  1.15.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.16.0
data/lib/aws-sdk-ebs.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-ebs/customizations'
48
48
  # @!group service
49
49
  module Aws::EBS
50
50
 
51
- GEM_VERSION = '1.15.0'
51
+ GEM_VERSION = '1.16.0'
52
52
 
53
53
  end
@@ -559,7 +559,7 @@ module Aws::EBS
559
559
  # data, the existing data is overwritten. The target snapshot must be in
560
560
  # the `pending` state.
561
561
  #
562
- # Data written to a snapshot must be aligned with 512-byte sectors.
562
+ # Data written to a snapshot must be aligned with 512-KiB sectors.
563
563
  #
564
564
  # @option params [required, String] :snapshot_id
565
565
  # The ID of the snapshot.
@@ -592,7 +592,7 @@ module Aws::EBS
592
592
  #
593
593
  # @option params [required, Integer] :data_length
594
594
  # The size of the data to write to the block, in bytes. Currently, the
595
- # only supported size is `524288`.
595
+ # only supported size is `524288` bytes.
596
596
  #
597
597
  # Valid values: `524288`
598
598
  #
@@ -680,7 +680,7 @@ module Aws::EBS
680
680
  # and they have no additional effect.
681
681
  #
682
682
  # If you do not specify a client token, one is automatically generated
683
- # by the AWS SDK.
683
+ # by the Amazon Web Services SDK.
684
684
  #
685
685
  # For more information, see [ Idempotency for StartSnapshot API][1] in
686
686
  # the *Amazon Elastic Compute Cloud User Guide*.
@@ -699,12 +699,12 @@ module Aws::EBS
699
699
  #
700
700
  # If you specify a value for **ParentSnapshotId**, omit this parameter.
701
701
  #
702
- # If you specify `true`, the snapshot is encrypted using the CMK
702
+ # If you specify `true`, the snapshot is encrypted using the KMS key
703
703
  # specified using the **KmsKeyArn** parameter. If no value is specified
704
- # for **KmsKeyArn**, the default CMK for your account is used. If no
705
- # default CMK has been specified for your account, the AWS managed CMK
706
- # is used. To set a default CMK for your account, use [
707
- # ModifyEbsDefaultKmsKeyId][1].
704
+ # for **KmsKeyArn**, the default KMS key for your account is used. If no
705
+ # default KMS key has been specified for your account, the Amazon Web
706
+ # Services managed KMS key is used. To set a default KMS key for your
707
+ # account, use [ ModifyEbsDefaultKmsKeyId][1].
708
708
  #
709
709
  # If your account is enabled for encryption by default, you cannot set
710
710
  # this parameter to `false`. In this case, you can omit this parameter.
@@ -718,15 +718,15 @@ module Aws::EBS
718
718
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-accessing-snapshot.html#ebsapis-using-encryption
719
719
  #
720
720
  # @option params [String] :kms_key_arn
721
- # The Amazon Resource Name (ARN) of the AWS Key Management Service (AWS
722
- # KMS) customer master key (CMK) to be used to encrypt the snapshot. If
723
- # you do not specify a CMK, the default AWS managed CMK is used.
721
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS) key
722
+ # to be used to encrypt the snapshot. If you do not specify a KMS key,
723
+ # the default Amazon Web Services managed KMS key is used.
724
724
  #
725
725
  # If you specify a **ParentSnapshotId**, omit this parameter; the
726
- # snapshot will be encrypted using the same CMK that was used to encrypt
727
- # the parent snapshot.
726
+ # snapshot will be encrypted using the same KMS key that was used to
727
+ # encrypt the parent snapshot.
728
728
  #
729
- # If **Encrypted** is set to `true`, you must specify a CMK ARN.
729
+ # If **Encrypted** is set to `true`, you must specify a KMS key ARN.
730
730
  #
731
731
  # @option params [Integer] :timeout
732
732
  # The amount of time (in minutes) after which the snapshot is
@@ -806,7 +806,7 @@ module Aws::EBS
806
806
  params: params,
807
807
  config: config)
808
808
  context[:gem_name] = 'aws-sdk-ebs'
809
- context[:gem_version] = '1.15.0'
809
+ context[:gem_version] = '1.16.0'
810
810
  Seahorse::Client::Request.new(handlers, context)
811
811
  end
812
812
 
@@ -316,7 +316,7 @@ module Aws::EBS
316
316
  # @return [Integer]
317
317
  #
318
318
  # @!attribute [rw] block_size
319
- # The size of the block.
319
+ # The size of the blocks in the snapshot, in bytes.
320
320
  # @return [Integer]
321
321
  #
322
322
  # @!attribute [rw] next_token
@@ -389,7 +389,7 @@ module Aws::EBS
389
389
  # @return [Integer]
390
390
  #
391
391
  # @!attribute [rw] block_size
392
- # The size of the block.
392
+ # The size of the blocks in the snapshot, in bytes.
393
393
  # @return [Integer]
394
394
  #
395
395
  # @!attribute [rw] next_token
@@ -456,7 +456,7 @@ module Aws::EBS
456
456
  #
457
457
  # @!attribute [rw] data_length
458
458
  # The size of the data to write to the block, in bytes. Currently, the
459
- # only supported size is `524288`.
459
+ # only supported size is `524288` bytes.
460
460
  #
461
461
  # Valid values: `524288`
462
462
  # @return [Integer]
@@ -616,7 +616,7 @@ module Aws::EBS
616
616
  # and they have no additional effect.
617
617
  #
618
618
  # If you do not specify a client token, one is automatically generated
619
- # by the AWS SDK.
619
+ # by the Amazon Web Services SDK.
620
620
  #
621
621
  # For more information, see [ Idempotency for StartSnapshot API][1] in
622
622
  # the *Amazon Elastic Compute Cloud User Guide*.
@@ -637,12 +637,12 @@ module Aws::EBS
637
637
  # If you specify a value for **ParentSnapshotId**, omit this
638
638
  # parameter.
639
639
  #
640
- # If you specify `true`, the snapshot is encrypted using the CMK
640
+ # If you specify `true`, the snapshot is encrypted using the KMS key
641
641
  # specified using the **KmsKeyArn** parameter. If no value is
642
- # specified for **KmsKeyArn**, the default CMK for your account is
643
- # used. If no default CMK has been specified for your account, the AWS
644
- # managed CMK is used. To set a default CMK for your account, use [
645
- # ModifyEbsDefaultKmsKeyId][1].
642
+ # specified for **KmsKeyArn**, the default KMS key for your account is
643
+ # used. If no default KMS key has been specified for your account, the
644
+ # Amazon Web Services managed KMS key is used. To set a default KMS
645
+ # key for your account, use [ ModifyEbsDefaultKmsKeyId][1].
646
646
  #
647
647
  # If your account is enabled for encryption by default, you cannot set
648
648
  # this parameter to `false`. In this case, you can omit this
@@ -658,16 +658,15 @@ module Aws::EBS
658
658
  # @return [Boolean]
659
659
  #
660
660
  # @!attribute [rw] kms_key_arn
661
- # The Amazon Resource Name (ARN) of the AWS Key Management Service
662
- # (AWS KMS) customer master key (CMK) to be used to encrypt the
663
- # snapshot. If you do not specify a CMK, the default AWS managed CMK
664
- # is used.
661
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
662
+ # key to be used to encrypt the snapshot. If you do not specify a KMS
663
+ # key, the default Amazon Web Services managed KMS key is used.
665
664
  #
666
665
  # If you specify a **ParentSnapshotId**, omit this parameter; the
667
- # snapshot will be encrypted using the same CMK that was used to
666
+ # snapshot will be encrypted using the same KMS key that was used to
668
667
  # encrypt the parent snapshot.
669
668
  #
670
- # If **Encrypted** is set to `true`, you must specify a CMK ARN.
669
+ # If **Encrypted** is set to `true`, you must specify a KMS key ARN.
671
670
  # @return [String]
672
671
  #
673
672
  # @!attribute [rw] timeout
@@ -706,7 +705,7 @@ module Aws::EBS
706
705
  # @return [String]
707
706
  #
708
707
  # @!attribute [rw] owner_id
709
- # The AWS account ID of the snapshot owner.
708
+ # The Amazon Web Services account ID of the snapshot owner.
710
709
  # @return [String]
711
710
  #
712
711
  # @!attribute [rw] status
@@ -740,8 +739,8 @@ module Aws::EBS
740
739
  # @return [String]
741
740
  #
742
741
  # @!attribute [rw] kms_key_arn
743
- # The Amazon Resource Name (ARN) of the AWS Key Management Service
744
- # (AWS KMS) customer master key (CMK) used to encrypt the snapshot.
742
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
743
+ # key used to encrypt the snapshot.
745
744
  # @return [String]
746
745
  #
747
746
  # @see http://docs.aws.amazon.com/goto/WebAPI/ebs-2019-11-02/StartSnapshotResponse AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ebs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core