aws-sdk-neptune 1.21.0 → 1.22.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
  SHA1:
3
- metadata.gz: 6dff0fd24543a5e24b8f9b2b374fff40a1eb11b9
4
- data.tar.gz: c80ae0ca2584c4c466b5d72e036f36728efaa9f6
3
+ metadata.gz: 75cc1da6c82cdb7a2ddc8910f8dc83cf17c08d16
4
+ data.tar.gz: 6e2f88c398d77de47bf54e174129adda7075f576
5
5
  SHA512:
6
- metadata.gz: 1a84dda5905873438781989b383b8c83915b3a79ff7529011434018901bd398edd0f406d2a2e4c1731775362075c8c389ce39581529fa92c252645c32ab5d5e4
7
- data.tar.gz: 6dbaefd25813d65b3e65b1c9a6b5019344ded6752082d99107f4693c54903a4aac258890b00a8f8932ebf666f56fbc826f05345eeef299786778cf0122f0ad9b
6
+ metadata.gz: 1c0c36e6a48c259833432e91a8a9cc9a20c5fc721fdd570c8a475689132a1cd50be862c8cb539b0e27186bd2a128f2c3dd9d53653295ef0f258dc4ca683c576f
7
+ data.tar.gz: 7a771d791d945a61e0eaf673a5f0ded4ce9d827f4e6441d9f008e35320400fb2d5fe849f9405fc65a84210445672fb949636d83292ed507e17d61546256dd6c6
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-neptune/customizations'
25
25
  # methods each accept a hash of request parameters and return a response
26
26
  # structure.
27
27
  #
28
+ # neptune = Aws::Neptune::Client.new
29
+ # resp = neptune.add_role_to_db_cluster(params)
30
+ #
28
31
  # See {Client} for more information.
29
32
  #
30
33
  # # Errors
31
34
  #
32
- # Errors returned from Amazon Neptune all
33
- # extend {Errors::ServiceError}.
35
+ # Errors returned from Amazon Neptune are defined in the
36
+ # {Errors} module and all extend {Errors::ServiceError}.
34
37
  #
35
38
  # begin
36
39
  # # do stuff
37
40
  # rescue Aws::Neptune::Errors::ServiceError
38
- # # rescues all service API errors
41
+ # # rescues all Amazon Neptune API errors
39
42
  # end
40
43
  #
41
44
  # See {Errors} for more information.
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-neptune/customizations'
43
46
  # @service
44
47
  module Aws::Neptune
45
48
 
46
- GEM_VERSION = '1.21.0'
49
+ GEM_VERSION = '1.22.0'
47
50
 
48
51
  end
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/query.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:neptune)
31
31
 
32
32
  module Aws::Neptune
33
+ # An API client for Neptune. To construct a client, you need to configure a `:region` and `:credentials`.
34
+ #
35
+ # client = Aws::Neptune::Client.new(
36
+ # region: region_name,
37
+ # credentials: credentials,
38
+ # # ...
39
+ # )
40
+ #
41
+ # For details on configuring region and credentials see
42
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
43
+ #
44
+ # See {#initialize} for a full list of supported configuration options.
33
45
  class Client < Seahorse::Client::Base
34
46
 
35
47
  include Aws::ClientStubs
@@ -108,6 +120,12 @@ module Aws::Neptune
108
120
  # When set to `true`, a thread polling for endpoints will be running in
109
121
  # the background every 60 secs (default). Defaults to `false`.
110
122
  #
123
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
124
+ # Used only in `adaptive` retry mode. When true, the request will sleep
125
+ # until there is sufficent client side capacity to retry the request.
126
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
127
+ # not retry instead of sleeping.
128
+ #
111
129
  # @option options [Boolean] :client_side_monitoring (false)
112
130
  # When `true`, client-side metrics will be collected for all API requests from
113
131
  # this client.
@@ -132,6 +150,10 @@ module Aws::Neptune
132
150
  # When `true`, an attempt is made to coerce request parameters into
133
151
  # the required types.
134
152
  #
153
+ # @option options [Boolean] :correct_clock_skew (true)
154
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
155
+ # a clock skew correction and retry requests with skewed client clocks.
156
+ #
135
157
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
158
  # Set to true to disable SDK automatically adding host prefix
137
159
  # to default service endpoint when available.
@@ -166,15 +188,29 @@ module Aws::Neptune
166
188
  # The Logger instance to send log messages to. If this option
167
189
  # is not set, logging will be disabled.
168
190
  #
191
+ # @option options [Integer] :max_attempts (3)
192
+ # An integer representing the maximum number attempts that will be made for
193
+ # a single request, including the initial attempt. For example,
194
+ # setting this value to 5 will result in a request being retried up to
195
+ # 4 times. Used in `standard` and `adaptive` retry modes.
196
+ #
169
197
  # @option options [String] :profile ("default")
170
198
  # Used when loading credentials from the shared credentials file
171
199
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
200
  #
201
+ # @option options [Proc] :retry_backoff
202
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
203
+ # This option is only used in the `legacy` retry mode.
204
+ #
173
205
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
206
+ # The base delay in seconds used by the default backoff function. This option
207
+ # is only used in the `legacy` retry mode.
175
208
  #
176
209
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
210
+ # A delay randomiser function used by the default backoff function.
211
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
212
+ # otherwise a Proc that takes and returns a number. This option is only used
213
+ # in the `legacy` retry mode.
178
214
  #
179
215
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
216
  #
@@ -182,11 +218,26 @@ module Aws::Neptune
182
218
  # The maximum number of times to retry failed requests. Only
183
219
  # ~ 500 level server errors and certain ~ 400 level client errors
184
220
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
221
+ # checksum errors, networking errors, timeout errors, auth errors,
222
+ # endpoint discovery, and errors from expired credentials.
223
+ # This option is only used in the `legacy` retry mode.
187
224
  #
188
225
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
226
+ # The maximum number of seconds to delay between retries (0 for no limit)
227
+ # used by the default backoff function. This option is only used in the
228
+ # `legacy` retry mode.
229
+ #
230
+ # @option options [String] :retry_mode ("legacy")
231
+ # Specifies which retry algorithm to use. Values are:
232
+ # * `legacy` - The pre-existing retry behavior. This is default value if
233
+ # no retry mode is provided.
234
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
+ # This includes support for retry quotas, which limit the number of
236
+ # unsuccessful retries a client can make.
237
+ # * `adaptive` - An experimental retry mode that includes all the
238
+ # functionality of `standard` mode along with automatic client side
239
+ # throttling. This is a provisional mode that may change behavior
240
+ # in the future.
190
241
  #
191
242
  # @option options [String] :secret_access_key
192
243
  #
@@ -209,16 +260,16 @@ module Aws::Neptune
209
260
  # requests through. Formatted like 'http://proxy.com:123'.
210
261
  #
211
262
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
263
+ # seconds to wait when opening a HTTP session before raising a
213
264
  # `Timeout::Error`.
214
265
  #
215
266
  # @option options [Integer] :http_read_timeout (60) The default
216
267
  # number of seconds to wait for response data. This value can
217
268
  # safely be set
218
- # per-request on the session yeidled by {#session_for}.
269
+ # per-request on the session yielded by {#session_for}.
219
270
  #
220
271
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
272
+ # seconds a connection is allowed to sit idle before it is
222
273
  # considered stale. Stale connections are closed and removed
223
274
  # from the pool before making a request.
224
275
  #
@@ -227,7 +278,7 @@ module Aws::Neptune
227
278
  # request body. This option has no effect unless the request has
228
279
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
280
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
281
+ # request on the session yielded by {#session_for}.
231
282
  #
232
283
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
284
  # HTTP debug output will be sent to the `:logger`.
@@ -6322,7 +6373,7 @@ module Aws::Neptune
6322
6373
  params: params,
6323
6374
  config: config)
6324
6375
  context[:gem_name] = 'aws-sdk-neptune'
6325
- context[:gem_version] = '1.21.0'
6376
+ context[:gem_version] = '1.22.0'
6326
6377
  Seahorse::Client::Request.new(handlers, context)
6327
6378
  end
6328
6379
 
@@ -303,6 +303,8 @@ module Aws::Neptune
303
303
 
304
304
  AttributeValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "AttributeValue")
305
305
 
306
+ AuthorizationNotFoundFault.struct_class = Types::AuthorizationNotFoundFault
307
+
306
308
  AvailabilityZone.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
307
309
  AvailabilityZone.struct_class = Types::AvailabilityZone
308
310
 
@@ -310,6 +312,8 @@ module Aws::Neptune
310
312
 
311
313
  AvailabilityZones.member = Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone")
312
314
 
315
+ CertificateNotFoundFault.struct_class = Types::CertificateNotFoundFault
316
+
313
317
  CharacterSet.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
314
318
  CharacterSet.add_member(:character_set_description, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetDescription"))
315
319
  CharacterSet.struct_class = Types::CharacterSet
@@ -510,6 +514,8 @@ module Aws::Neptune
510
514
  DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
511
515
  DBCluster.struct_class = Types::DBCluster
512
516
 
517
+ DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
518
+
513
519
  DBClusterList.member = Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster")
514
520
 
515
521
  DBClusterMember.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
@@ -524,6 +530,8 @@ module Aws::Neptune
524
530
  DBClusterMessage.add_member(:db_clusters, Shapes::ShapeRef.new(shape: DBClusterList, location_name: "DBClusters"))
525
531
  DBClusterMessage.struct_class = Types::DBClusterMessage
526
532
 
533
+ DBClusterNotFoundFault.struct_class = Types::DBClusterNotFoundFault
534
+
527
535
  DBClusterOptionGroupMemberships.member = Shapes::ShapeRef.new(shape: DBClusterOptionGroupStatus, location_name: "DBClusterOptionGroup")
528
536
 
529
537
  DBClusterOptionGroupStatus.add_member(:db_cluster_option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterOptionGroupName"))
@@ -545,14 +553,24 @@ module Aws::Neptune
545
553
  DBClusterParameterGroupNameMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
546
554
  DBClusterParameterGroupNameMessage.struct_class = Types::DBClusterParameterGroupNameMessage
547
555
 
556
+ DBClusterParameterGroupNotFoundFault.struct_class = Types::DBClusterParameterGroupNotFoundFault
557
+
548
558
  DBClusterParameterGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
549
559
  DBClusterParameterGroupsMessage.add_member(:db_cluster_parameter_groups, Shapes::ShapeRef.new(shape: DBClusterParameterGroupList, location_name: "DBClusterParameterGroups"))
550
560
  DBClusterParameterGroupsMessage.struct_class = Types::DBClusterParameterGroupsMessage
551
561
 
562
+ DBClusterQuotaExceededFault.struct_class = Types::DBClusterQuotaExceededFault
563
+
552
564
  DBClusterRole.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
553
565
  DBClusterRole.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
554
566
  DBClusterRole.struct_class = Types::DBClusterRole
555
567
 
568
+ DBClusterRoleAlreadyExistsFault.struct_class = Types::DBClusterRoleAlreadyExistsFault
569
+
570
+ DBClusterRoleNotFoundFault.struct_class = Types::DBClusterRoleNotFoundFault
571
+
572
+ DBClusterRoleQuotaExceededFault.struct_class = Types::DBClusterRoleQuotaExceededFault
573
+
556
574
  DBClusterRoles.member = Shapes::ShapeRef.new(shape: DBClusterRole, location_name: "DBClusterRole")
557
575
 
558
576
  DBClusterSnapshot.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
@@ -577,6 +595,8 @@ module Aws::Neptune
577
595
  DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
578
596
  DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
579
597
 
598
+ DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
599
+
580
600
  DBClusterSnapshotAttribute.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, location_name: "AttributeName"))
581
601
  DBClusterSnapshotAttribute.add_member(:attribute_values, Shapes::ShapeRef.new(shape: AttributeValueList, location_name: "AttributeValues"))
582
602
  DBClusterSnapshotAttribute.struct_class = Types::DBClusterSnapshotAttribute
@@ -593,6 +613,8 @@ module Aws::Neptune
593
613
  DBClusterSnapshotMessage.add_member(:db_cluster_snapshots, Shapes::ShapeRef.new(shape: DBClusterSnapshotList, location_name: "DBClusterSnapshots"))
594
614
  DBClusterSnapshotMessage.struct_class = Types::DBClusterSnapshotMessage
595
615
 
616
+ DBClusterSnapshotNotFoundFault.struct_class = Types::DBClusterSnapshotNotFoundFault
617
+
596
618
  DBEngineVersion.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
597
619
  DBEngineVersion.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
598
620
  DBEngineVersion.add_member(:db_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupFamily"))
@@ -668,12 +690,16 @@ module Aws::Neptune
668
690
  DBInstance.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
669
691
  DBInstance.struct_class = Types::DBInstance
670
692
 
693
+ DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
694
+
671
695
  DBInstanceList.member = Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance")
672
696
 
673
697
  DBInstanceMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
674
698
  DBInstanceMessage.add_member(:db_instances, Shapes::ShapeRef.new(shape: DBInstanceList, location_name: "DBInstances"))
675
699
  DBInstanceMessage.struct_class = Types::DBInstanceMessage
676
700
 
701
+ DBInstanceNotFoundFault.struct_class = Types::DBInstanceNotFoundFault
702
+
677
703
  DBInstanceStatusInfo.add_member(:status_type, Shapes::ShapeRef.new(shape: String, location_name: "StatusType"))
678
704
  DBInstanceStatusInfo.add_member(:normal, Shapes::ShapeRef.new(shape: Boolean, location_name: "Normal"))
679
705
  DBInstanceStatusInfo.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
@@ -688,6 +714,8 @@ module Aws::Neptune
688
714
  DBParameterGroup.add_member(:db_parameter_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupArn"))
689
715
  DBParameterGroup.struct_class = Types::DBParameterGroup
690
716
 
717
+ DBParameterGroupAlreadyExistsFault.struct_class = Types::DBParameterGroupAlreadyExistsFault
718
+
691
719
  DBParameterGroupDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
692
720
  DBParameterGroupDetails.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
693
721
  DBParameterGroupDetails.struct_class = Types::DBParameterGroupDetails
@@ -697,6 +725,10 @@ module Aws::Neptune
697
725
  DBParameterGroupNameMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
698
726
  DBParameterGroupNameMessage.struct_class = Types::DBParameterGroupNameMessage
699
727
 
728
+ DBParameterGroupNotFoundFault.struct_class = Types::DBParameterGroupNotFoundFault
729
+
730
+ DBParameterGroupQuotaExceededFault.struct_class = Types::DBParameterGroupQuotaExceededFault
731
+
700
732
  DBParameterGroupStatus.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
701
733
  DBParameterGroupStatus.add_member(:parameter_apply_status, Shapes::ShapeRef.new(shape: String, location_name: "ParameterApplyStatus"))
702
734
  DBParameterGroupStatus.struct_class = Types::DBParameterGroupStatus
@@ -715,6 +747,12 @@ module Aws::Neptune
715
747
 
716
748
  DBSecurityGroupNameList.member = Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupName")
717
749
 
750
+ DBSecurityGroupNotFoundFault.struct_class = Types::DBSecurityGroupNotFoundFault
751
+
752
+ DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
753
+
754
+ DBSnapshotNotFoundFault.struct_class = Types::DBSnapshotNotFoundFault
755
+
718
756
  DBSubnetGroup.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
719
757
  DBSubnetGroup.add_member(:db_subnet_group_description, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupDescription"))
720
758
  DBSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
@@ -723,12 +761,24 @@ module Aws::Neptune
723
761
  DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
724
762
  DBSubnetGroup.struct_class = Types::DBSubnetGroup
725
763
 
764
+ DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
765
+
766
+ DBSubnetGroupDoesNotCoverEnoughAZs.struct_class = Types::DBSubnetGroupDoesNotCoverEnoughAZs
767
+
726
768
  DBSubnetGroupMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
727
769
  DBSubnetGroupMessage.add_member(:db_subnet_groups, Shapes::ShapeRef.new(shape: DBSubnetGroups, location_name: "DBSubnetGroups"))
728
770
  DBSubnetGroupMessage.struct_class = Types::DBSubnetGroupMessage
729
771
 
772
+ DBSubnetGroupNotFoundFault.struct_class = Types::DBSubnetGroupNotFoundFault
773
+
774
+ DBSubnetGroupQuotaExceededFault.struct_class = Types::DBSubnetGroupQuotaExceededFault
775
+
730
776
  DBSubnetGroups.member = Shapes::ShapeRef.new(shape: DBSubnetGroup, location_name: "DBSubnetGroup")
731
777
 
778
+ DBSubnetQuotaExceededFault.struct_class = Types::DBSubnetQuotaExceededFault
779
+
780
+ DBUpgradeDependencyFailureFault.struct_class = Types::DBUpgradeDependencyFailureFault
781
+
732
782
  DeleteDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
733
783
  DeleteDBClusterMessage.add_member(:skip_final_snapshot, Shapes::ShapeRef.new(shape: Boolean, location_name: "SkipFinalSnapshot"))
734
784
  DeleteDBClusterMessage.add_member(:final_db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "FinalDBSnapshotIdentifier"))
@@ -906,6 +956,8 @@ module Aws::Neptune
906
956
 
907
957
  DomainMembershipList.member = Shapes::ShapeRef.new(shape: DomainMembership, location_name: "DomainMembership")
908
958
 
959
+ DomainNotFoundFault.struct_class = Types::DomainNotFoundFault
960
+
909
961
  DoubleRange.add_member(:from, Shapes::ShapeRef.new(shape: Double, location_name: "From"))
910
962
  DoubleRange.add_member(:to, Shapes::ShapeRef.new(shape: Double, location_name: "To"))
911
963
  DoubleRange.struct_class = Types::DoubleRange
@@ -955,6 +1007,8 @@ module Aws::Neptune
955
1007
  EventSubscription.add_member(:event_subscription_arn, Shapes::ShapeRef.new(shape: String, location_name: "EventSubscriptionArn"))
956
1008
  EventSubscription.struct_class = Types::EventSubscription
957
1009
 
1010
+ EventSubscriptionQuotaExceededFault.struct_class = Types::EventSubscriptionQuotaExceededFault
1011
+
958
1012
  EventSubscriptionsList.member = Shapes::ShapeRef.new(shape: EventSubscription, location_name: "EventSubscription")
959
1013
 
960
1014
  EventSubscriptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
@@ -980,6 +1034,40 @@ module Aws::Neptune
980
1034
 
981
1035
  FilterValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "Value")
982
1036
 
1037
+ InstanceQuotaExceededFault.struct_class = Types::InstanceQuotaExceededFault
1038
+
1039
+ InsufficientDBClusterCapacityFault.struct_class = Types::InsufficientDBClusterCapacityFault
1040
+
1041
+ InsufficientDBInstanceCapacityFault.struct_class = Types::InsufficientDBInstanceCapacityFault
1042
+
1043
+ InsufficientStorageClusterCapacityFault.struct_class = Types::InsufficientStorageClusterCapacityFault
1044
+
1045
+ InvalidDBClusterSnapshotStateFault.struct_class = Types::InvalidDBClusterSnapshotStateFault
1046
+
1047
+ InvalidDBClusterStateFault.struct_class = Types::InvalidDBClusterStateFault
1048
+
1049
+ InvalidDBInstanceStateFault.struct_class = Types::InvalidDBInstanceStateFault
1050
+
1051
+ InvalidDBParameterGroupStateFault.struct_class = Types::InvalidDBParameterGroupStateFault
1052
+
1053
+ InvalidDBSecurityGroupStateFault.struct_class = Types::InvalidDBSecurityGroupStateFault
1054
+
1055
+ InvalidDBSnapshotStateFault.struct_class = Types::InvalidDBSnapshotStateFault
1056
+
1057
+ InvalidDBSubnetGroupStateFault.struct_class = Types::InvalidDBSubnetGroupStateFault
1058
+
1059
+ InvalidDBSubnetStateFault.struct_class = Types::InvalidDBSubnetStateFault
1060
+
1061
+ InvalidEventSubscriptionStateFault.struct_class = Types::InvalidEventSubscriptionStateFault
1062
+
1063
+ InvalidRestoreFault.struct_class = Types::InvalidRestoreFault
1064
+
1065
+ InvalidSubnet.struct_class = Types::InvalidSubnet
1066
+
1067
+ InvalidVPCNetworkStateFault.struct_class = Types::InvalidVPCNetworkStateFault
1068
+
1069
+ KMSKeyNotAccessibleFault.struct_class = Types::KMSKeyNotAccessibleFault
1070
+
983
1071
  KeyList.member = Shapes::ShapeRef.new(shape: String)
984
1072
 
985
1073
  ListTagsForResourceMessage.add_member(:resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceName"))
@@ -1091,6 +1179,8 @@ module Aws::Neptune
1091
1179
 
1092
1180
  OptionGroupMembershipList.member = Shapes::ShapeRef.new(shape: OptionGroupMembership, location_name: "OptionGroupMembership")
1093
1181
 
1182
+ OptionGroupNotFoundFault.struct_class = Types::OptionGroupNotFoundFault
1183
+
1094
1184
  OrderableDBInstanceOption.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
1095
1185
  OrderableDBInstanceOption.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
1096
1186
  OrderableDBInstanceOption.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
@@ -1175,6 +1265,8 @@ module Aws::Neptune
1175
1265
  PromoteReadReplicaDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
1176
1266
  PromoteReadReplicaDBClusterResult.struct_class = Types::PromoteReadReplicaDBClusterResult
1177
1267
 
1268
+ ProvisionedIopsNotAvailableInAZFault.struct_class = Types::ProvisionedIopsNotAvailableInAZFault
1269
+
1178
1270
  Range.add_member(:from, Shapes::ShapeRef.new(shape: Integer, location_name: "From"))
1179
1271
  Range.add_member(:to, Shapes::ShapeRef.new(shape: Integer, location_name: "To"))
1180
1272
  Range.add_member(:step, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Step"))
@@ -1220,6 +1312,8 @@ module Aws::Neptune
1220
1312
  ResetDBParameterGroupMessage.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
1221
1313
  ResetDBParameterGroupMessage.struct_class = Types::ResetDBParameterGroupMessage
1222
1314
 
1315
+ ResourceNotFoundFault.struct_class = Types::ResourceNotFoundFault
1316
+
1223
1317
  ResourcePendingMaintenanceActions.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
1224
1318
  ResourcePendingMaintenanceActions.add_member(:pending_maintenance_action_details, Shapes::ShapeRef.new(shape: PendingMaintenanceActionDetails, location_name: "PendingMaintenanceActionDetails"))
1225
1319
  ResourcePendingMaintenanceActions.struct_class = Types::ResourcePendingMaintenanceActions
@@ -1265,8 +1359,20 @@ module Aws::Neptune
1265
1359
  RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
1266
1360
  RestoreDBClusterToPointInTimeResult.struct_class = Types::RestoreDBClusterToPointInTimeResult
1267
1361
 
1362
+ SNSInvalidTopicFault.struct_class = Types::SNSInvalidTopicFault
1363
+
1364
+ SNSNoAuthorizationFault.struct_class = Types::SNSNoAuthorizationFault
1365
+
1366
+ SNSTopicArnNotFoundFault.struct_class = Types::SNSTopicArnNotFoundFault
1367
+
1368
+ SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
1369
+
1370
+ SnapshotQuotaExceededFault.struct_class = Types::SnapshotQuotaExceededFault
1371
+
1268
1372
  SourceIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SourceId")
1269
1373
 
1374
+ SourceNotFoundFault.struct_class = Types::SourceNotFoundFault
1375
+
1270
1376
  StartDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
1271
1377
  StartDBClusterMessage.struct_class = Types::StartDBClusterMessage
1272
1378
 
@@ -1279,15 +1385,27 @@ module Aws::Neptune
1279
1385
  StopDBClusterResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
1280
1386
  StopDBClusterResult.struct_class = Types::StopDBClusterResult
1281
1387
 
1388
+ StorageQuotaExceededFault.struct_class = Types::StorageQuotaExceededFault
1389
+
1390
+ StorageTypeNotSupportedFault.struct_class = Types::StorageTypeNotSupportedFault
1391
+
1282
1392
  Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
1283
1393
  Subnet.add_member(:subnet_availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "SubnetAvailabilityZone"))
1284
1394
  Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
1285
1395
  Subnet.struct_class = Types::Subnet
1286
1396
 
1397
+ SubnetAlreadyInUse.struct_class = Types::SubnetAlreadyInUse
1398
+
1287
1399
  SubnetIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier")
1288
1400
 
1289
1401
  SubnetList.member = Shapes::ShapeRef.new(shape: Subnet, location_name: "Subnet")
1290
1402
 
1403
+ SubscriptionAlreadyExistFault.struct_class = Types::SubscriptionAlreadyExistFault
1404
+
1405
+ SubscriptionCategoryNotFoundFault.struct_class = Types::SubscriptionCategoryNotFoundFault
1406
+
1407
+ SubscriptionNotFoundFault.struct_class = Types::SubscriptionNotFoundFault
1408
+
1291
1409
  SupportedCharacterSetsList.member = Shapes::ShapeRef.new(shape: CharacterSet, location_name: "CharacterSet")
1292
1410
 
1293
1411
  SupportedTimezonesList.member = Shapes::ShapeRef.new(shape: Timezone, location_name: "Timezone")