aws-sdk-ebs 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ebs.rb +1 -1
- data/lib/aws-sdk-ebs/client.rb +15 -15
- data/lib/aws-sdk-ebs/types.rb +17 -18
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a3945bdb3e78e12f5fa2d71dccc5f796c5b786f64551176d2f98855fde913f1
|
4
|
+
data.tar.gz: f1b01dec26221fd2bb5b4d9fd20614db2e215832bee5ce21b182db6880e2a3ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dda200f6746722faf3e19a13bf4523e007b1eb4c7907f4cf751aefa4771560d5641cb786ae44f163e41ee6b40de188e8ee026af1dc35b275156424b9f6b7b773
|
7
|
+
data.tar.gz: b0393c2a10c4b5490889adf4de45b5d9e79f83ba9e0469fd31358038a866d3bf9480b6606e9ac28d07edabfc39f69992bdeaae7d8c4c6f8c971de6e89bbbde28
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
data/lib/aws-sdk-ebs.rb
CHANGED
data/lib/aws-sdk-ebs/client.rb
CHANGED
@@ -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-
|
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
|
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
|
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
|
705
|
-
# default
|
706
|
-
# is used. To set a default
|
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
|
722
|
-
#
|
723
|
-
#
|
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
|
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
|
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.
|
809
|
+
context[:gem_version] = '1.16.0'
|
810
810
|
Seahorse::Client::Request.new(handlers, context)
|
811
811
|
end
|
812
812
|
|
data/lib/aws-sdk-ebs/types.rb
CHANGED
@@ -316,7 +316,7 @@ module Aws::EBS
|
|
316
316
|
# @return [Integer]
|
317
317
|
#
|
318
318
|
# @!attribute [rw] block_size
|
319
|
-
# The size of the
|
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
|
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
|
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
|
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
|
643
|
-
# used. If no default
|
644
|
-
# managed
|
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
|
662
|
-
#
|
663
|
-
#
|
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
|
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
|
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
|
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
|
744
|
-
#
|
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.
|
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-
|
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
|