aws-sdk-docdb 1.17.0 → 1.23.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/lib/aws-sdk-docdb.rb +5 -2
- data/lib/aws-sdk-docdb/client.rb +103 -66
- data/lib/aws-sdk-docdb/client_api.rb +33 -0
- data/lib/aws-sdk-docdb/errors.rb +2 -0
- data/lib/aws-sdk-docdb/resource.rb +2 -0
- data/lib/aws-sdk-docdb/types.rb +157 -38
- data/lib/aws-sdk-docdb/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5d719dc4f523dd9c3850caab8ed97b6e3de356ef465ce35612f726047acaa05
|
4
|
+
data.tar.gz: 6418facbb94cac8c92abe036eca0cde87c98ba4df87f21dc957a39f889f611f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 933da4fbd2af467fcbdef33f236019b1ec9f894f01cdc8155aa1342cb8560712fbbab51d7da9380f6890ed00a4ee1f39319f70e333db72c888d7d6ea7e064340
|
7
|
+
data.tar.gz: bdd324b733838060d9e48d8e6be006c7d48cc43f24296869eabe6d5920f26bd77c817662e0dadaf1dda3a0483b79a7e3069cc1612400abf79cf8049f25e09c8c
|
data/lib/aws-sdk-docdb.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-docdb/customizations'
|
|
43
46
|
#
|
44
47
|
# See {Errors} for more information.
|
45
48
|
#
|
46
|
-
#
|
49
|
+
# @!group service
|
47
50
|
module Aws::DocDB
|
48
51
|
|
49
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.23.0'
|
50
53
|
|
51
54
|
end
|
data/lib/aws-sdk-docdb/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::DocDB
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::DocDB
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::DocDB
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::DocDB
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -315,7 +334,7 @@ module Aws::DocDB
|
|
315
334
|
#
|
316
335
|
# @option params [required, String] :resource_name
|
317
336
|
# The Amazon DocumentDB resource that the tags are added to. This value
|
318
|
-
# is an Amazon Resource Name
|
337
|
+
# is an Amazon Resource Name .
|
319
338
|
#
|
320
339
|
# @option params [required, Array<Types::Tag>] :tags
|
321
340
|
# The tags to be assigned to the Amazon DocumentDB resource.
|
@@ -343,8 +362,8 @@ module Aws::DocDB
|
|
343
362
|
req.send_request(options)
|
344
363
|
end
|
345
364
|
|
346
|
-
# Applies a pending maintenance action to a resource (for example, to
|
347
|
-
#
|
365
|
+
# Applies a pending maintenance action to a resource (for example, to an
|
366
|
+
# Amazon DocumentDB instance).
|
348
367
|
#
|
349
368
|
# @option params [required, String] :resource_identifier
|
350
369
|
# The Amazon Resource Name (ARN) of the resource that the pending
|
@@ -417,7 +436,7 @@ module Aws::DocDB
|
|
417
436
|
#
|
418
437
|
# * If the source parameter group is in a different AWS Region than the
|
419
438
|
# copy, specify a valid cluster parameter group ARN; for example,
|
420
|
-
# `arn:aws:rds:us-east-1:123456789012:cluster
|
439
|
+
# `arn:aws:rds:us-east-1:123456789012:sample-cluster:sample-parameter-group`.
|
421
440
|
#
|
422
441
|
# @option params [required, String] :target_db_cluster_parameter_group_identifier
|
423
442
|
# The identifier for the copied cluster parameter group.
|
@@ -478,23 +497,21 @@ module Aws::DocDB
|
|
478
497
|
#
|
479
498
|
# To copy a cluster snapshot from a shared manual cluster snapshot,
|
480
499
|
# `SourceDBClusterSnapshotIdentifier` must be the Amazon Resource Name
|
481
|
-
# (ARN) of the shared cluster snapshot.
|
500
|
+
# (ARN) of the shared cluster snapshot. You can only copy a shared DB
|
501
|
+
# cluster snapshot, whether encrypted or not, in the same AWS Region.
|
482
502
|
#
|
483
503
|
# To cancel the copy operation after it is in progress, delete the
|
484
504
|
# target cluster snapshot identified by
|
485
|
-
# `TargetDBClusterSnapshotIdentifier` while that
|
486
|
-
#
|
505
|
+
# `TargetDBClusterSnapshotIdentifier` while that cluster snapshot is in
|
506
|
+
# the *copying* status.
|
487
507
|
#
|
488
508
|
# @option params [required, String] :source_db_cluster_snapshot_identifier
|
489
509
|
# The identifier of the cluster snapshot to copy. This parameter is not
|
490
510
|
# case sensitive.
|
491
511
|
#
|
492
|
-
# You can't copy an encrypted, shared cluster snapshot from one AWS
|
493
|
-
# Region to another.
|
494
|
-
#
|
495
512
|
# Constraints:
|
496
513
|
#
|
497
|
-
# * Must specify a valid system snapshot in the
|
514
|
+
# * Must specify a valid system snapshot in the *available* state.
|
498
515
|
#
|
499
516
|
# * If the source snapshot is in the same AWS Region as the copy,
|
500
517
|
# specify a valid snapshot identifier.
|
@@ -536,8 +553,8 @@ module Aws::DocDB
|
|
536
553
|
# `KmsKeyId` to the AWS KMS key ID that you want to use to encrypt the
|
537
554
|
# copy of the cluster snapshot in the destination Region. AWS KMS
|
538
555
|
# encryption keys are specific to the AWS Region that they are created
|
539
|
-
# in, and you can't use encryption keys from one Region in another
|
540
|
-
# Region.
|
556
|
+
# in, and you can't use encryption keys from one AWS Region in another
|
557
|
+
# AWS Region.
|
541
558
|
#
|
542
559
|
# If you copy an unencrypted cluster snapshot and specify a value for
|
543
560
|
# the `KmsKeyId` parameter, an error is returned.
|
@@ -546,32 +563,33 @@ module Aws::DocDB
|
|
546
563
|
# The URL that contains a Signature Version 4 signed request for the
|
547
564
|
# `CopyDBClusterSnapshot` API action in the AWS Region that contains the
|
548
565
|
# source cluster snapshot to copy. You must use the `PreSignedUrl`
|
549
|
-
# parameter when copying
|
550
|
-
#
|
566
|
+
# parameter when copying a cluster snapshot from another AWS Region.
|
567
|
+
#
|
568
|
+
# If you are using an AWS SDK tool or the AWS CLI, you can specify
|
569
|
+
# `SourceRegion` (or `--source-region` for the AWS CLI) instead of
|
570
|
+
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
571
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
572
|
+
# operation that can be executed in the source AWS Region.
|
551
573
|
#
|
552
574
|
# The presigned URL must be a valid request for the
|
553
|
-
# `
|
554
|
-
# AWS Region that contains the
|
555
|
-
#
|
556
|
-
#
|
557
|
-
#
|
558
|
-
#
|
559
|
-
#
|
560
|
-
#
|
561
|
-
#
|
562
|
-
#
|
563
|
-
#
|
564
|
-
#
|
565
|
-
#
|
566
|
-
#
|
567
|
-
#
|
568
|
-
#
|
569
|
-
#
|
570
|
-
#
|
571
|
-
# cluster snapshot from the us-west-2 AWS Region, then your
|
572
|
-
# `SourceDBClusterSnapshotIdentifier` looks like the following
|
573
|
-
# example:
|
574
|
-
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:my-cluster-snapshot-20161115`.
|
575
|
+
# `CopyDBClusterSnapshot` API action that can be executed in the source
|
576
|
+
# AWS Region that contains the cluster snapshot to be copied. The
|
577
|
+
# presigned URL request must contain the following parameter values:
|
578
|
+
#
|
579
|
+
# * `SourceRegion` - The ID of the region that contains the snapshot to
|
580
|
+
# be copied.
|
581
|
+
#
|
582
|
+
# * `SourceDBClusterSnapshotIdentifier` - The identifier for the the
|
583
|
+
# encrypted cluster snapshot to be copied. This identifier must be in
|
584
|
+
# the Amazon Resource Name (ARN) format for the source AWS Region. For
|
585
|
+
# example, if you are copying an encrypted cluster snapshot from the
|
586
|
+
# us-east-1 AWS Region, then your `SourceDBClusterSnapshotIdentifier`
|
587
|
+
# looks something like the following:
|
588
|
+
# `arn:aws:rds:us-east-1:12345678012:sample-cluster:sample-cluster-snapshot`.
|
589
|
+
#
|
590
|
+
# * `TargetDBClusterSnapshotIdentifier` - The identifier for the new
|
591
|
+
# cluster snapshot to be created. This parameter isn't case
|
592
|
+
# sensitive.
|
575
593
|
#
|
576
594
|
# @option params [Boolean] :copy_tags
|
577
595
|
# Set to `true` to copy all tags from the source cluster snapshot to the
|
@@ -775,9 +793,19 @@ module Aws::DocDB
|
|
775
793
|
# destination AWS Region. This key is used to encrypt the replica in
|
776
794
|
# that AWS Region.
|
777
795
|
#
|
796
|
+
# @option params [String] :pre_signed_url
|
797
|
+
# Not currently supported.
|
798
|
+
#
|
778
799
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
779
800
|
# A list of log types that need to be enabled for exporting to Amazon
|
780
|
-
# CloudWatch Logs.
|
801
|
+
# CloudWatch Logs. You can enable audit logs or profiler logs. For more
|
802
|
+
# information, see [ Auditing Amazon DocumentDB Events][1] and [
|
803
|
+
# Profiling Amazon DocumentDB Operations][2].
|
804
|
+
#
|
805
|
+
#
|
806
|
+
#
|
807
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html
|
808
|
+
# [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html
|
781
809
|
#
|
782
810
|
# @option params [Boolean] :deletion_protection
|
783
811
|
# Specifies whether this cluster can be deleted. If `DeletionProtection`
|
@@ -813,6 +841,7 @@ module Aws::DocDB
|
|
813
841
|
# ],
|
814
842
|
# storage_encrypted: false,
|
815
843
|
# kms_key_id: "String",
|
844
|
+
# pre_signed_url: "String",
|
816
845
|
# enable_cloudwatch_logs_exports: ["String"],
|
817
846
|
# deletion_protection: false,
|
818
847
|
# })
|
@@ -871,24 +900,26 @@ module Aws::DocDB
|
|
871
900
|
# Creates a new cluster parameter group.
|
872
901
|
#
|
873
902
|
# Parameters in a cluster parameter group apply to all of the instances
|
874
|
-
# in a
|
903
|
+
# in a cluster.
|
875
904
|
#
|
876
905
|
# A cluster parameter group is initially created with the default
|
877
906
|
# parameters for the database engine used by instances in the cluster.
|
878
|
-
#
|
879
|
-
#
|
880
|
-
#
|
881
|
-
#
|
882
|
-
#
|
907
|
+
# In Amazon DocumentDB, you cannot make modifications directly to the
|
908
|
+
# `default.docdb3.6` cluster parameter group. If your Amazon DocumentDB
|
909
|
+
# cluster is using the default cluster parameter group and you want to
|
910
|
+
# modify a value in it, you must first [ create a new parameter
|
911
|
+
# group][1] or [ copy an existing parameter group][2], modify it, and
|
912
|
+
# then apply the modified parameter group to your cluster. For the new
|
913
|
+
# cluster parameter group and associated settings to take effect, you
|
914
|
+
# must then reboot the instances in the cluster without failover. For
|
915
|
+
# more information, see [ Modifying Amazon DocumentDB Cluster Parameter
|
916
|
+
# Groups][3].
|
883
917
|
#
|
884
|
-
#
|
885
|
-
#
|
886
|
-
#
|
887
|
-
#
|
888
|
-
#
|
889
|
-
# especially important for parameters that are critical when creating
|
890
|
-
# the default database for a cluster, such as the character set for the
|
891
|
-
# default database defined by the `character_set_database` parameter.
|
918
|
+
#
|
919
|
+
#
|
920
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/cluster_parameter_group-create.html
|
921
|
+
# [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/cluster_parameter_group-copy.html
|
922
|
+
# [3]: https://docs.aws.amazon.com/documentdb/latest/developerguide/cluster_parameter_group-modify.html
|
892
923
|
#
|
893
924
|
# @option params [required, String] :db_cluster_parameter_group_name
|
894
925
|
# The name of the cluster parameter group.
|
@@ -1057,10 +1088,6 @@ module Aws::DocDB
|
|
1057
1088
|
#
|
1058
1089
|
# Example: `us-east-1d`
|
1059
1090
|
#
|
1060
|
-
# Constraint: The `AvailabilityZone` parameter can't be specified if
|
1061
|
-
# the `MultiAZ` parameter is set to `true`. The specified Availability
|
1062
|
-
# Zone must be in the same AWS Region as the current endpoint.
|
1063
|
-
#
|
1064
1091
|
# @option params [String] :preferred_maintenance_window
|
1065
1092
|
# The time range each week during which system maintenance can occur, in
|
1066
1093
|
# Universal Coordinated Time (UTC).
|
@@ -1617,6 +1644,8 @@ module Aws::DocDB
|
|
1617
1644
|
# * {Types::CertificateMessage#certificates #certificates} => Array<Types::Certificate>
|
1618
1645
|
# * {Types::CertificateMessage#marker #marker} => String
|
1619
1646
|
#
|
1647
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1648
|
+
#
|
1620
1649
|
# @example Request syntax with placeholder values
|
1621
1650
|
#
|
1622
1651
|
# resp = client.describe_certificates({
|
@@ -1689,6 +1718,8 @@ module Aws::DocDB
|
|
1689
1718
|
# * {Types::DBClusterParameterGroupsMessage#marker #marker} => String
|
1690
1719
|
# * {Types::DBClusterParameterGroupsMessage#db_cluster_parameter_groups #db_cluster_parameter_groups} => Array<Types::DBClusterParameterGroup>
|
1691
1720
|
#
|
1721
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1722
|
+
#
|
1692
1723
|
# @example Request syntax with placeholder values
|
1693
1724
|
#
|
1694
1725
|
# resp = client.describe_db_cluster_parameter_groups({
|
@@ -1762,6 +1793,8 @@ module Aws::DocDB
|
|
1762
1793
|
# * {Types::DBClusterParameterGroupDetails#parameters #parameters} => Array<Types::Parameter>
|
1763
1794
|
# * {Types::DBClusterParameterGroupDetails#marker #marker} => String
|
1764
1795
|
#
|
1796
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1797
|
+
#
|
1765
1798
|
# @example Request syntax with placeholder values
|
1766
1799
|
#
|
1767
1800
|
# resp = client.describe_db_cluster_parameters({
|
@@ -1930,6 +1963,8 @@ module Aws::DocDB
|
|
1930
1963
|
# * {Types::DBClusterSnapshotMessage#marker #marker} => String
|
1931
1964
|
# * {Types::DBClusterSnapshotMessage#db_cluster_snapshots #db_cluster_snapshots} => Array<Types::DBClusterSnapshot>
|
1932
1965
|
#
|
1966
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1967
|
+
#
|
1933
1968
|
# @example Request syntax with placeholder values
|
1934
1969
|
#
|
1935
1970
|
# resp = client.describe_db_cluster_snapshots({
|
@@ -2106,7 +2141,7 @@ module Aws::DocDB
|
|
2106
2141
|
# @option params [String] :engine_version
|
2107
2142
|
# The database engine version to return.
|
2108
2143
|
#
|
2109
|
-
# Example: `
|
2144
|
+
# Example: `3.6.0`
|
2110
2145
|
#
|
2111
2146
|
# @option params [String] :db_parameter_group_family
|
2112
2147
|
# The name of a specific parameter group family to return details for.
|
@@ -2771,6 +2806,8 @@ module Aws::DocDB
|
|
2771
2806
|
# * {Types::PendingMaintenanceActionsMessage#pending_maintenance_actions #pending_maintenance_actions} => Array<Types::ResourcePendingMaintenanceActions>
|
2772
2807
|
# * {Types::PendingMaintenanceActionsMessage#marker #marker} => String
|
2773
2808
|
#
|
2809
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2810
|
+
#
|
2774
2811
|
# @example Request syntax with placeholder values
|
2775
2812
|
#
|
2776
2813
|
# resp = client.describe_pending_maintenance_actions({
|
@@ -4239,7 +4276,7 @@ module Aws::DocDB
|
|
4239
4276
|
params: params,
|
4240
4277
|
config: config)
|
4241
4278
|
context[:gem_name] = 'aws-sdk-docdb'
|
4242
|
-
context[:gem_version] = '1.
|
4279
|
+
context[:gem_version] = '1.23.0'
|
4243
4280
|
Seahorse::Client::Request.new(handlers, context)
|
4244
4281
|
end
|
4245
4282
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -282,6 +284,7 @@ module Aws::DocDB
|
|
282
284
|
CreateDBClusterMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
283
285
|
CreateDBClusterMessage.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "StorageEncrypted"))
|
284
286
|
CreateDBClusterMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
287
|
+
CreateDBClusterMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
285
288
|
CreateDBClusterMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
|
286
289
|
CreateDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
287
290
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
@@ -1206,6 +1209,12 @@ module Aws::DocDB
|
|
1206
1209
|
o.input = Shapes::ShapeRef.new(shape: DescribeCertificatesMessage)
|
1207
1210
|
o.output = Shapes::ShapeRef.new(shape: CertificateMessage)
|
1208
1211
|
o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
|
1212
|
+
o[:pager] = Aws::Pager.new(
|
1213
|
+
limit_key: "max_records",
|
1214
|
+
tokens: {
|
1215
|
+
"marker" => "marker"
|
1216
|
+
}
|
1217
|
+
)
|
1209
1218
|
end)
|
1210
1219
|
|
1211
1220
|
api.add_operation(:describe_db_cluster_parameter_groups, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1215,6 +1224,12 @@ module Aws::DocDB
|
|
1215
1224
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterParameterGroupsMessage)
|
1216
1225
|
o.output = Shapes::ShapeRef.new(shape: DBClusterParameterGroupsMessage)
|
1217
1226
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
1227
|
+
o[:pager] = Aws::Pager.new(
|
1228
|
+
limit_key: "max_records",
|
1229
|
+
tokens: {
|
1230
|
+
"marker" => "marker"
|
1231
|
+
}
|
1232
|
+
)
|
1218
1233
|
end)
|
1219
1234
|
|
1220
1235
|
api.add_operation(:describe_db_cluster_parameters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1224,6 +1239,12 @@ module Aws::DocDB
|
|
1224
1239
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterParametersMessage)
|
1225
1240
|
o.output = Shapes::ShapeRef.new(shape: DBClusterParameterGroupDetails)
|
1226
1241
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
1242
|
+
o[:pager] = Aws::Pager.new(
|
1243
|
+
limit_key: "max_records",
|
1244
|
+
tokens: {
|
1245
|
+
"marker" => "marker"
|
1246
|
+
}
|
1247
|
+
)
|
1227
1248
|
end)
|
1228
1249
|
|
1229
1250
|
api.add_operation(:describe_db_cluster_snapshot_attributes, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1242,6 +1263,12 @@ module Aws::DocDB
|
|
1242
1263
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterSnapshotsMessage)
|
1243
1264
|
o.output = Shapes::ShapeRef.new(shape: DBClusterSnapshotMessage)
|
1244
1265
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterSnapshotNotFoundFault)
|
1266
|
+
o[:pager] = Aws::Pager.new(
|
1267
|
+
limit_key: "max_records",
|
1268
|
+
tokens: {
|
1269
|
+
"marker" => "marker"
|
1270
|
+
}
|
1271
|
+
)
|
1245
1272
|
end)
|
1246
1273
|
|
1247
1274
|
api.add_operation(:describe_db_clusters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1354,6 +1381,12 @@ module Aws::DocDB
|
|
1354
1381
|
o.input = Shapes::ShapeRef.new(shape: DescribePendingMaintenanceActionsMessage)
|
1355
1382
|
o.output = Shapes::ShapeRef.new(shape: PendingMaintenanceActionsMessage)
|
1356
1383
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
1384
|
+
o[:pager] = Aws::Pager.new(
|
1385
|
+
limit_key: "max_records",
|
1386
|
+
tokens: {
|
1387
|
+
"marker" => "marker"
|
1388
|
+
}
|
1389
|
+
)
|
1357
1390
|
end)
|
1358
1391
|
|
1359
1392
|
api.add_operation(:failover_db_cluster, Seahorse::Model::Operation.new.tap do |o|
|