aws-sdk-neptune 1.62.0 → 1.64.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c3713af2d75433f7e5db61881763288d6e7c72ec981df35be5ae6aca22f6938
4
- data.tar.gz: 60380fc6e446c6fea77eb8c8ce377655d3f0496a7fe15f65baa77f5b5e97aa8f
3
+ metadata.gz: c00e65cd9a769f51510222c63735fd1a98b9ee7def96b1d470291e8f652e8943
4
+ data.tar.gz: 438260d684fad4045ec7265f4ceab5fc88b3e3a8e21e3880fcc98fe7879ef957
5
5
  SHA512:
6
- metadata.gz: 47b115d0839542531a86b88429b14d3e059a25c5b5eb39c9ffa8e69faaf266df869201ab4d507c27492e424cbcc0b9a5958c6697cdf5d6b26ecdfeffdace6126
7
- data.tar.gz: 7d2d10aa12e6a06b06b0ecd35e8a318ec1814178feb8da2c6451bc26a7bbd5d39036241842a05aa615eab61e023dfe4b3d4cab4724c08eb2da8e0f70c908268c
6
+ metadata.gz: e309cb55666d457d5562fcf91eae00c78d5a472588bd2490ef7e40e8be9bc103c9bf4ffcf897ddcfc1dd0c91272875a4e9896ff2ed88d52c3a85aa8ddc206d01
7
+ data.tar.gz: 3307161374e7e57cddef4560bcfc92d70ff72c06aa919ba5cf1c611acc09c489ad811bee076aa514fb5675acb54bec227f41acbdbeb1b30ce59ec0ee3e8b30be
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.63.0 (2024-04-16)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.62.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.64.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -73,6 +74,7 @@ module Aws::Neptune
73
74
  add_plugin(Aws::Plugins::ResponsePaging)
74
75
  add_plugin(Aws::Plugins::StubResponses)
75
76
  add_plugin(Aws::Plugins::IdempotencyToken)
77
+ add_plugin(Aws::Plugins::InvocationId)
76
78
  add_plugin(Aws::Plugins::JsonvalueConverter)
77
79
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
78
80
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -198,10 +200,17 @@ module Aws::Neptune
198
200
  # When set to 'true' the request body will not be compressed
199
201
  # for supported operations.
200
202
  #
201
- # @option options [String] :endpoint
202
- # The client endpoint is normally constructed from the `:region`
203
- # option. You should only configure an `:endpoint` when connecting
204
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
203
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
204
+ # Normally you should not configure the `:endpoint` option
205
+ # directly. This is normally constructed from the `:region`
206
+ # option. Configuring `:endpoint` is normally reserved for
207
+ # connecting to test or custom endpoints. The endpoint should
208
+ # be a URI formatted like:
209
+ #
210
+ # 'http://example.com'
211
+ # 'https://example.com'
212
+ # 'http://example.com:123'
213
+ #
205
214
  #
206
215
  # @option options [Integer] :endpoint_cache_max_entries (1000)
207
216
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -339,50 +348,65 @@ module Aws::Neptune
339
348
  # @option options [Aws::Neptune::EndpointProvider] :endpoint_provider
340
349
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Neptune::EndpointParameters`
341
350
  #
342
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
343
- # requests through. Formatted like 'http://proxy.com:123'.
344
- #
345
- # @option options [Float] :http_open_timeout (15) The number of
346
- # seconds to wait when opening a HTTP session before raising a
347
- # `Timeout::Error`.
348
- #
349
- # @option options [Float] :http_read_timeout (60) The default
350
- # number of seconds to wait for response data. This value can
351
- # safely be set per-request on the session.
352
- #
353
- # @option options [Float] :http_idle_timeout (5) The number of
354
- # seconds a connection is allowed to sit idle before it is
355
- # considered stale. Stale connections are closed and removed
356
- # from the pool before making a request.
357
- #
358
- # @option options [Float] :http_continue_timeout (1) The number of
359
- # seconds to wait for a 100-continue response before sending the
360
- # request body. This option has no effect unless the request has
361
- # "Expect" header set to "100-continue". Defaults to `nil` which
362
- # disables this behaviour. This value can safely be set per
363
- # request on the session.
364
- #
365
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
366
- # in seconds.
351
+ # @option options [Float] :http_continue_timeout (1)
352
+ # The number of seconds to wait for a 100-continue response before sending the
353
+ # request body. This option has no effect unless the request has "Expect"
354
+ # header set to "100-continue". Defaults to `nil` which disables this
355
+ # behaviour. This value can safely be set per request on the session.
356
+ #
357
+ # @option options [Float] :http_idle_timeout (5)
358
+ # The number of seconds a connection is allowed to sit idle before it
359
+ # is considered stale. Stale connections are closed and removed from the
360
+ # pool before making a request.
361
+ #
362
+ # @option options [Float] :http_open_timeout (15)
363
+ # The default number of seconds to wait for response data.
364
+ # This value can safely be set per-request on the session.
365
+ #
366
+ # @option options [URI::HTTP,String] :http_proxy
367
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
368
+ #
369
+ # @option options [Float] :http_read_timeout (60)
370
+ # The default number of seconds to wait for response data.
371
+ # This value can safely be set per-request on the session.
372
+ #
373
+ # @option options [Boolean] :http_wire_trace (false)
374
+ # When `true`, HTTP debug output will be sent to the `:logger`.
375
+ #
376
+ # @option options [Proc] :on_chunk_received
377
+ # When a Proc object is provided, it will be used as callback when each chunk
378
+ # of the response body is received. It provides three arguments: the chunk,
379
+ # the number of bytes received, and the total number of
380
+ # bytes in the response (or nil if the server did not send a `content-length`).
381
+ #
382
+ # @option options [Proc] :on_chunk_sent
383
+ # When a Proc object is provided, it will be used as callback when each chunk
384
+ # of the request body is sent. It provides three arguments: the chunk,
385
+ # the number of bytes read from the body, and the total number of
386
+ # bytes in the body.
387
+ #
388
+ # @option options [Boolean] :raise_response_errors (true)
389
+ # When `true`, response errors are raised.
390
+ #
391
+ # @option options [String] :ssl_ca_bundle
392
+ # Full path to the SSL certificate authority bundle file that should be used when
393
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
394
+ # `:ssl_ca_directory` the the system default will be used if available.
395
+ #
396
+ # @option options [String] :ssl_ca_directory
397
+ # Full path of the directory that contains the unbundled SSL certificate
398
+ # authority files for verifying peer certificates. If you do
399
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
400
+ # default will be used if available.
367
401
  #
368
- # @option options [Boolean] :http_wire_trace (false) When `true`,
369
- # HTTP debug output will be sent to the `:logger`.
402
+ # @option options [String] :ssl_ca_store
403
+ # Sets the X509::Store to verify peer certificate.
370
404
  #
371
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
372
- # SSL peer certificates are verified when establishing a
373
- # connection.
405
+ # @option options [Float] :ssl_timeout
406
+ # Sets the SSL timeout in seconds
374
407
  #
375
- # @option options [String] :ssl_ca_bundle Full path to the SSL
376
- # certificate authority bundle file that should be used when
377
- # verifying peer certificates. If you do not pass
378
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
379
- # will be used if available.
380
- #
381
- # @option options [String] :ssl_ca_directory Full path of the
382
- # directory that contains the unbundled SSL certificate
383
- # authority files for verifying peer certificates. If you do
384
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
385
- # system default will be used if available.
408
+ # @option options [Boolean] :ssl_verify_peer (true)
409
+ # When `true`, SSL peer certificates are verified when establishing a connection.
386
410
  #
387
411
  def initialize(*args)
388
412
  super
@@ -7545,7 +7569,7 @@ module Aws::Neptune
7545
7569
  params: params,
7546
7570
  config: config)
7547
7571
  context[:gem_name] = 'aws-sdk-neptune'
7548
- context[:gem_version] = '1.62.0'
7572
+ context[:gem_version] = '1.64.0'
7549
7573
  Seahorse::Client::Request.new(handlers, context)
7550
7574
  end
7551
7575
 
@@ -21,13 +21,13 @@ module Aws::Neptune
21
21
  ApplyPendingMaintenanceActionMessage = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionMessage')
22
22
  ApplyPendingMaintenanceActionResult = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionResult')
23
23
  AttributeValueList = Shapes::ListShape.new(name: 'AttributeValueList')
24
- AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault')
24
+ AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault', error: {"code"=>"AuthorizationNotFound", "httpStatusCode"=>404, "senderFault"=>true})
25
25
  AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
26
26
  AvailabilityZoneList = Shapes::ListShape.new(name: 'AvailabilityZoneList')
27
27
  AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
28
28
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
29
29
  BooleanOptional = Shapes::BooleanShape.new(name: 'BooleanOptional')
30
- CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
30
+ CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault', error: {"code"=>"CertificateNotFound", "httpStatusCode"=>404, "senderFault"=>true})
31
31
  CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
32
32
  CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
33
33
  ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
@@ -56,75 +56,75 @@ module Aws::Neptune
56
56
  CreateGlobalClusterMessage = Shapes::StructureShape.new(name: 'CreateGlobalClusterMessage')
57
57
  CreateGlobalClusterResult = Shapes::StructureShape.new(name: 'CreateGlobalClusterResult')
58
58
  DBCluster = Shapes::StructureShape.new(name: 'DBCluster')
59
- DBClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterAlreadyExistsFault')
59
+ DBClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterAlreadyExistsFault', error: {"code"=>"DBClusterAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
60
60
  DBClusterEndpoint = Shapes::StructureShape.new(name: 'DBClusterEndpoint')
61
- DBClusterEndpointAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterEndpointAlreadyExistsFault')
61
+ DBClusterEndpointAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterEndpointAlreadyExistsFault', error: {"code"=>"DBClusterEndpointAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
62
62
  DBClusterEndpointList = Shapes::ListShape.new(name: 'DBClusterEndpointList')
63
63
  DBClusterEndpointMessage = Shapes::StructureShape.new(name: 'DBClusterEndpointMessage')
64
- DBClusterEndpointNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterEndpointNotFoundFault')
65
- DBClusterEndpointQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterEndpointQuotaExceededFault')
64
+ DBClusterEndpointNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterEndpointNotFoundFault', error: {"code"=>"DBClusterEndpointNotFoundFault", "httpStatusCode"=>400, "senderFault"=>true})
65
+ DBClusterEndpointQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterEndpointQuotaExceededFault', error: {"code"=>"DBClusterEndpointQuotaExceededFault", "httpStatusCode"=>403, "senderFault"=>true})
66
66
  DBClusterList = Shapes::ListShape.new(name: 'DBClusterList')
67
67
  DBClusterMember = Shapes::StructureShape.new(name: 'DBClusterMember')
68
68
  DBClusterMemberList = Shapes::ListShape.new(name: 'DBClusterMemberList')
69
69
  DBClusterMessage = Shapes::StructureShape.new(name: 'DBClusterMessage')
70
- DBClusterNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterNotFoundFault')
70
+ DBClusterNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterNotFoundFault', error: {"code"=>"DBClusterNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
71
71
  DBClusterOptionGroupMemberships = Shapes::ListShape.new(name: 'DBClusterOptionGroupMemberships')
72
72
  DBClusterOptionGroupStatus = Shapes::StructureShape.new(name: 'DBClusterOptionGroupStatus')
73
73
  DBClusterParameterGroup = Shapes::StructureShape.new(name: 'DBClusterParameterGroup')
74
74
  DBClusterParameterGroupDetails = Shapes::StructureShape.new(name: 'DBClusterParameterGroupDetails')
75
75
  DBClusterParameterGroupList = Shapes::ListShape.new(name: 'DBClusterParameterGroupList')
76
76
  DBClusterParameterGroupNameMessage = Shapes::StructureShape.new(name: 'DBClusterParameterGroupNameMessage')
77
- DBClusterParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterParameterGroupNotFoundFault')
77
+ DBClusterParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterParameterGroupNotFoundFault', error: {"code"=>"DBClusterParameterGroupNotFound", "httpStatusCode"=>404, "senderFault"=>true})
78
78
  DBClusterParameterGroupsMessage = Shapes::StructureShape.new(name: 'DBClusterParameterGroupsMessage')
79
- DBClusterQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterQuotaExceededFault')
79
+ DBClusterQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterQuotaExceededFault', error: {"code"=>"DBClusterQuotaExceededFault", "httpStatusCode"=>403, "senderFault"=>true})
80
80
  DBClusterRole = Shapes::StructureShape.new(name: 'DBClusterRole')
81
- DBClusterRoleAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterRoleAlreadyExistsFault')
82
- DBClusterRoleNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterRoleNotFoundFault')
83
- DBClusterRoleQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterRoleQuotaExceededFault')
81
+ DBClusterRoleAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterRoleAlreadyExistsFault', error: {"code"=>"DBClusterRoleAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
82
+ DBClusterRoleNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterRoleNotFoundFault', error: {"code"=>"DBClusterRoleNotFound", "httpStatusCode"=>404, "senderFault"=>true})
83
+ DBClusterRoleQuotaExceededFault = Shapes::StructureShape.new(name: 'DBClusterRoleQuotaExceededFault', error: {"code"=>"DBClusterRoleQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
84
84
  DBClusterRoles = Shapes::ListShape.new(name: 'DBClusterRoles')
85
85
  DBClusterSnapshot = Shapes::StructureShape.new(name: 'DBClusterSnapshot')
86
- DBClusterSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterSnapshotAlreadyExistsFault')
86
+ DBClusterSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBClusterSnapshotAlreadyExistsFault', error: {"code"=>"DBClusterSnapshotAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
87
87
  DBClusterSnapshotAttribute = Shapes::StructureShape.new(name: 'DBClusterSnapshotAttribute')
88
88
  DBClusterSnapshotAttributeList = Shapes::ListShape.new(name: 'DBClusterSnapshotAttributeList')
89
89
  DBClusterSnapshotAttributesResult = Shapes::StructureShape.new(name: 'DBClusterSnapshotAttributesResult')
90
90
  DBClusterSnapshotList = Shapes::ListShape.new(name: 'DBClusterSnapshotList')
91
91
  DBClusterSnapshotMessage = Shapes::StructureShape.new(name: 'DBClusterSnapshotMessage')
92
- DBClusterSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterSnapshotNotFoundFault')
92
+ DBClusterSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'DBClusterSnapshotNotFoundFault', error: {"code"=>"DBClusterSnapshotNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
93
93
  DBEngineVersion = Shapes::StructureShape.new(name: 'DBEngineVersion')
94
94
  DBEngineVersionList = Shapes::ListShape.new(name: 'DBEngineVersionList')
95
95
  DBEngineVersionMessage = Shapes::StructureShape.new(name: 'DBEngineVersionMessage')
96
96
  DBInstance = Shapes::StructureShape.new(name: 'DBInstance')
97
- DBInstanceAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBInstanceAlreadyExistsFault')
97
+ DBInstanceAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBInstanceAlreadyExistsFault', error: {"code"=>"DBInstanceAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
98
98
  DBInstanceList = Shapes::ListShape.new(name: 'DBInstanceList')
99
99
  DBInstanceMessage = Shapes::StructureShape.new(name: 'DBInstanceMessage')
100
- DBInstanceNotFoundFault = Shapes::StructureShape.new(name: 'DBInstanceNotFoundFault')
100
+ DBInstanceNotFoundFault = Shapes::StructureShape.new(name: 'DBInstanceNotFoundFault', error: {"code"=>"DBInstanceNotFound", "httpStatusCode"=>404, "senderFault"=>true})
101
101
  DBInstanceStatusInfo = Shapes::StructureShape.new(name: 'DBInstanceStatusInfo')
102
102
  DBInstanceStatusInfoList = Shapes::ListShape.new(name: 'DBInstanceStatusInfoList')
103
103
  DBParameterGroup = Shapes::StructureShape.new(name: 'DBParameterGroup')
104
- DBParameterGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBParameterGroupAlreadyExistsFault')
104
+ DBParameterGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBParameterGroupAlreadyExistsFault', error: {"code"=>"DBParameterGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
105
105
  DBParameterGroupDetails = Shapes::StructureShape.new(name: 'DBParameterGroupDetails')
106
106
  DBParameterGroupList = Shapes::ListShape.new(name: 'DBParameterGroupList')
107
107
  DBParameterGroupNameMessage = Shapes::StructureShape.new(name: 'DBParameterGroupNameMessage')
108
- DBParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBParameterGroupNotFoundFault')
109
- DBParameterGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'DBParameterGroupQuotaExceededFault')
108
+ DBParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBParameterGroupNotFoundFault', error: {"code"=>"DBParameterGroupNotFound", "httpStatusCode"=>404, "senderFault"=>true})
109
+ DBParameterGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'DBParameterGroupQuotaExceededFault', error: {"code"=>"DBParameterGroupQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
110
110
  DBParameterGroupStatus = Shapes::StructureShape.new(name: 'DBParameterGroupStatus')
111
111
  DBParameterGroupStatusList = Shapes::ListShape.new(name: 'DBParameterGroupStatusList')
112
112
  DBParameterGroupsMessage = Shapes::StructureShape.new(name: 'DBParameterGroupsMessage')
113
113
  DBSecurityGroupMembership = Shapes::StructureShape.new(name: 'DBSecurityGroupMembership')
114
114
  DBSecurityGroupMembershipList = Shapes::ListShape.new(name: 'DBSecurityGroupMembershipList')
115
115
  DBSecurityGroupNameList = Shapes::ListShape.new(name: 'DBSecurityGroupNameList')
116
- DBSecurityGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBSecurityGroupNotFoundFault')
117
- DBSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBSnapshotAlreadyExistsFault')
118
- DBSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'DBSnapshotNotFoundFault')
116
+ DBSecurityGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBSecurityGroupNotFoundFault', error: {"code"=>"DBSecurityGroupNotFound", "httpStatusCode"=>404, "senderFault"=>true})
117
+ DBSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBSnapshotAlreadyExistsFault', error: {"code"=>"DBSnapshotAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
118
+ DBSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'DBSnapshotNotFoundFault', error: {"code"=>"DBSnapshotNotFound", "httpStatusCode"=>404, "senderFault"=>true})
119
119
  DBSubnetGroup = Shapes::StructureShape.new(name: 'DBSubnetGroup')
120
- DBSubnetGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBSubnetGroupAlreadyExistsFault')
121
- DBSubnetGroupDoesNotCoverEnoughAZs = Shapes::StructureShape.new(name: 'DBSubnetGroupDoesNotCoverEnoughAZs')
120
+ DBSubnetGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBSubnetGroupAlreadyExistsFault', error: {"code"=>"DBSubnetGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
121
+ DBSubnetGroupDoesNotCoverEnoughAZs = Shapes::StructureShape.new(name: 'DBSubnetGroupDoesNotCoverEnoughAZs', error: {"code"=>"DBSubnetGroupDoesNotCoverEnoughAZs", "httpStatusCode"=>400, "senderFault"=>true})
122
122
  DBSubnetGroupMessage = Shapes::StructureShape.new(name: 'DBSubnetGroupMessage')
123
- DBSubnetGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBSubnetGroupNotFoundFault')
124
- DBSubnetGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSubnetGroupQuotaExceededFault')
123
+ DBSubnetGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBSubnetGroupNotFoundFault', error: {"code"=>"DBSubnetGroupNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
124
+ DBSubnetGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSubnetGroupQuotaExceededFault', error: {"code"=>"DBSubnetGroupQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
125
125
  DBSubnetGroups = Shapes::ListShape.new(name: 'DBSubnetGroups')
126
- DBSubnetQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSubnetQuotaExceededFault')
127
- DBUpgradeDependencyFailureFault = Shapes::StructureShape.new(name: 'DBUpgradeDependencyFailureFault')
126
+ DBSubnetQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSubnetQuotaExceededFault', error: {"code"=>"DBSubnetQuotaExceededFault", "httpStatusCode"=>400, "senderFault"=>true})
127
+ DBUpgradeDependencyFailureFault = Shapes::StructureShape.new(name: 'DBUpgradeDependencyFailureFault', error: {"code"=>"DBUpgradeDependencyFailure", "httpStatusCode"=>400, "senderFault"=>true})
128
128
  DeleteDBClusterEndpointMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterEndpointMessage')
129
129
  DeleteDBClusterEndpointOutput = Shapes::StructureShape.new(name: 'DeleteDBClusterEndpointOutput')
130
130
  DeleteDBClusterMessage = Shapes::StructureShape.new(name: 'DeleteDBClusterMessage')
@@ -166,7 +166,7 @@ module Aws::Neptune
166
166
  DescribeValidDBInstanceModificationsResult = Shapes::StructureShape.new(name: 'DescribeValidDBInstanceModificationsResult')
167
167
  DomainMembership = Shapes::StructureShape.new(name: 'DomainMembership')
168
168
  DomainMembershipList = Shapes::ListShape.new(name: 'DomainMembershipList')
169
- DomainNotFoundFault = Shapes::StructureShape.new(name: 'DomainNotFoundFault')
169
+ DomainNotFoundFault = Shapes::StructureShape.new(name: 'DomainNotFoundFault', error: {"code"=>"DomainNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
170
170
  Double = Shapes::FloatShape.new(name: 'Double')
171
171
  DoubleOptional = Shapes::FloatShape.new(name: 'DoubleOptional')
172
172
  DoubleRange = Shapes::StructureShape.new(name: 'DoubleRange')
@@ -180,7 +180,7 @@ module Aws::Neptune
180
180
  EventCategoriesMessage = Shapes::StructureShape.new(name: 'EventCategoriesMessage')
181
181
  EventList = Shapes::ListShape.new(name: 'EventList')
182
182
  EventSubscription = Shapes::StructureShape.new(name: 'EventSubscription')
183
- EventSubscriptionQuotaExceededFault = Shapes::StructureShape.new(name: 'EventSubscriptionQuotaExceededFault')
183
+ EventSubscriptionQuotaExceededFault = Shapes::StructureShape.new(name: 'EventSubscriptionQuotaExceededFault', error: {"code"=>"EventSubscriptionQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
184
184
  EventSubscriptionsList = Shapes::ListShape.new(name: 'EventSubscriptionsList')
185
185
  EventSubscriptionsMessage = Shapes::StructureShape.new(name: 'EventSubscriptionsMessage')
186
186
  EventsMessage = Shapes::StructureShape.new(name: 'EventsMessage')
@@ -192,35 +192,35 @@ module Aws::Neptune
192
192
  FilterList = Shapes::ListShape.new(name: 'FilterList')
193
193
  FilterValueList = Shapes::ListShape.new(name: 'FilterValueList')
194
194
  GlobalCluster = Shapes::StructureShape.new(name: 'GlobalCluster')
195
- GlobalClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'GlobalClusterAlreadyExistsFault')
195
+ GlobalClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'GlobalClusterAlreadyExistsFault', error: {"code"=>"GlobalClusterAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
196
196
  GlobalClusterIdentifier = Shapes::StringShape.new(name: 'GlobalClusterIdentifier')
197
197
  GlobalClusterList = Shapes::ListShape.new(name: 'GlobalClusterList')
198
198
  GlobalClusterMember = Shapes::StructureShape.new(name: 'GlobalClusterMember')
199
199
  GlobalClusterMemberList = Shapes::ListShape.new(name: 'GlobalClusterMemberList')
200
- GlobalClusterNotFoundFault = Shapes::StructureShape.new(name: 'GlobalClusterNotFoundFault')
201
- GlobalClusterQuotaExceededFault = Shapes::StructureShape.new(name: 'GlobalClusterQuotaExceededFault')
200
+ GlobalClusterNotFoundFault = Shapes::StructureShape.new(name: 'GlobalClusterNotFoundFault', error: {"code"=>"GlobalClusterNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
201
+ GlobalClusterQuotaExceededFault = Shapes::StructureShape.new(name: 'GlobalClusterQuotaExceededFault', error: {"code"=>"GlobalClusterQuotaExceededFault", "httpStatusCode"=>400, "senderFault"=>true})
202
202
  GlobalClustersMessage = Shapes::StructureShape.new(name: 'GlobalClustersMessage')
203
- InstanceQuotaExceededFault = Shapes::StructureShape.new(name: 'InstanceQuotaExceededFault')
204
- InsufficientDBClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBClusterCapacityFault')
205
- InsufficientDBInstanceCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBInstanceCapacityFault')
206
- InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault')
203
+ InstanceQuotaExceededFault = Shapes::StructureShape.new(name: 'InstanceQuotaExceededFault', error: {"code"=>"InstanceQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
204
+ InsufficientDBClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBClusterCapacityFault', error: {"code"=>"InsufficientDBClusterCapacityFault", "httpStatusCode"=>403, "senderFault"=>true})
205
+ InsufficientDBInstanceCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBInstanceCapacityFault', error: {"code"=>"InsufficientDBInstanceCapacity", "httpStatusCode"=>400, "senderFault"=>true})
206
+ InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault', error: {"code"=>"InsufficientStorageClusterCapacity", "httpStatusCode"=>400, "senderFault"=>true})
207
207
  Integer = Shapes::IntegerShape.new(name: 'Integer')
208
208
  IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
209
- InvalidDBClusterEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterEndpointStateFault')
210
- InvalidDBClusterSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterSnapshotStateFault')
211
- InvalidDBClusterStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterStateFault')
212
- InvalidDBInstanceStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceStateFault')
213
- InvalidDBParameterGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBParameterGroupStateFault')
214
- InvalidDBSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSecurityGroupStateFault')
215
- InvalidDBSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBSnapshotStateFault')
216
- InvalidDBSubnetGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetGroupStateFault')
217
- InvalidDBSubnetStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetStateFault')
218
- InvalidEventSubscriptionStateFault = Shapes::StructureShape.new(name: 'InvalidEventSubscriptionStateFault')
219
- InvalidGlobalClusterStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalClusterStateFault')
220
- InvalidRestoreFault = Shapes::StructureShape.new(name: 'InvalidRestoreFault')
221
- InvalidSubnet = Shapes::StructureShape.new(name: 'InvalidSubnet')
222
- InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
223
- KMSKeyNotAccessibleFault = Shapes::StructureShape.new(name: 'KMSKeyNotAccessibleFault')
209
+ InvalidDBClusterEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterEndpointStateFault', error: {"code"=>"InvalidDBClusterEndpointStateFault", "httpStatusCode"=>400, "senderFault"=>true})
210
+ InvalidDBClusterSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterSnapshotStateFault', error: {"code"=>"InvalidDBClusterSnapshotStateFault", "httpStatusCode"=>400, "senderFault"=>true})
211
+ InvalidDBClusterStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterStateFault', error: {"code"=>"InvalidDBClusterStateFault", "httpStatusCode"=>400, "senderFault"=>true})
212
+ InvalidDBInstanceStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceStateFault', error: {"code"=>"InvalidDBInstanceState", "httpStatusCode"=>400, "senderFault"=>true})
213
+ InvalidDBParameterGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBParameterGroupStateFault', error: {"code"=>"InvalidDBParameterGroupState", "httpStatusCode"=>400, "senderFault"=>true})
214
+ InvalidDBSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSecurityGroupStateFault', error: {"code"=>"InvalidDBSecurityGroupState", "httpStatusCode"=>400, "senderFault"=>true})
215
+ InvalidDBSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBSnapshotStateFault', error: {"code"=>"InvalidDBSnapshotState", "httpStatusCode"=>400, "senderFault"=>true})
216
+ InvalidDBSubnetGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetGroupStateFault', error: {"code"=>"InvalidDBSubnetGroupStateFault", "httpStatusCode"=>400, "senderFault"=>true})
217
+ InvalidDBSubnetStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetStateFault', error: {"code"=>"InvalidDBSubnetStateFault", "httpStatusCode"=>400, "senderFault"=>true})
218
+ InvalidEventSubscriptionStateFault = Shapes::StructureShape.new(name: 'InvalidEventSubscriptionStateFault', error: {"code"=>"InvalidEventSubscriptionState", "httpStatusCode"=>400, "senderFault"=>true})
219
+ InvalidGlobalClusterStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalClusterStateFault', error: {"code"=>"InvalidGlobalClusterStateFault", "httpStatusCode"=>400, "senderFault"=>true})
220
+ InvalidRestoreFault = Shapes::StructureShape.new(name: 'InvalidRestoreFault', error: {"code"=>"InvalidRestoreFault", "httpStatusCode"=>400, "senderFault"=>true})
221
+ InvalidSubnet = Shapes::StructureShape.new(name: 'InvalidSubnet', error: {"code"=>"InvalidSubnet", "httpStatusCode"=>400, "senderFault"=>true})
222
+ InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault', error: {"code"=>"InvalidVPCNetworkStateFault", "httpStatusCode"=>400, "senderFault"=>true})
223
+ KMSKeyNotAccessibleFault = Shapes::StructureShape.new(name: 'KMSKeyNotAccessibleFault', error: {"code"=>"KMSKeyNotAccessibleFault", "httpStatusCode"=>400, "senderFault"=>true})
224
224
  KeyList = Shapes::ListShape.new(name: 'KeyList')
225
225
  ListTagsForResourceMessage = Shapes::StructureShape.new(name: 'ListTagsForResourceMessage')
226
226
  LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
@@ -242,7 +242,7 @@ module Aws::Neptune
242
242
  ModifyGlobalClusterResult = Shapes::StructureShape.new(name: 'ModifyGlobalClusterResult')
243
243
  OptionGroupMembership = Shapes::StructureShape.new(name: 'OptionGroupMembership')
244
244
  OptionGroupMembershipList = Shapes::ListShape.new(name: 'OptionGroupMembershipList')
245
- OptionGroupNotFoundFault = Shapes::StructureShape.new(name: 'OptionGroupNotFoundFault')
245
+ OptionGroupNotFoundFault = Shapes::StructureShape.new(name: 'OptionGroupNotFoundFault', error: {"code"=>"OptionGroupNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
246
246
  OrderableDBInstanceOption = Shapes::StructureShape.new(name: 'OrderableDBInstanceOption')
247
247
  OrderableDBInstanceOptionsList = Shapes::ListShape.new(name: 'OrderableDBInstanceOptionsList')
248
248
  OrderableDBInstanceOptionsMessage = Shapes::StructureShape.new(name: 'OrderableDBInstanceOptionsMessage')
@@ -256,7 +256,7 @@ module Aws::Neptune
256
256
  PendingModifiedValues = Shapes::StructureShape.new(name: 'PendingModifiedValues')
257
257
  PromoteReadReplicaDBClusterMessage = Shapes::StructureShape.new(name: 'PromoteReadReplicaDBClusterMessage')
258
258
  PromoteReadReplicaDBClusterResult = Shapes::StructureShape.new(name: 'PromoteReadReplicaDBClusterResult')
259
- ProvisionedIopsNotAvailableInAZFault = Shapes::StructureShape.new(name: 'ProvisionedIopsNotAvailableInAZFault')
259
+ ProvisionedIopsNotAvailableInAZFault = Shapes::StructureShape.new(name: 'ProvisionedIopsNotAvailableInAZFault', error: {"code"=>"ProvisionedIopsNotAvailableInAZFault", "httpStatusCode"=>400, "senderFault"=>true})
260
260
  Range = Shapes::StructureShape.new(name: 'Range')
261
261
  RangeList = Shapes::ListShape.new(name: 'RangeList')
262
262
  ReadReplicaDBClusterIdentifierList = Shapes::ListShape.new(name: 'ReadReplicaDBClusterIdentifierList')
@@ -273,38 +273,38 @@ module Aws::Neptune
273
273
  RemoveTagsFromResourceMessage = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceMessage')
274
274
  ResetDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'ResetDBClusterParameterGroupMessage')
275
275
  ResetDBParameterGroupMessage = Shapes::StructureShape.new(name: 'ResetDBParameterGroupMessage')
276
- ResourceNotFoundFault = Shapes::StructureShape.new(name: 'ResourceNotFoundFault')
276
+ ResourceNotFoundFault = Shapes::StructureShape.new(name: 'ResourceNotFoundFault', error: {"code"=>"ResourceNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
277
277
  ResourcePendingMaintenanceActions = Shapes::StructureShape.new(name: 'ResourcePendingMaintenanceActions')
278
278
  RestoreDBClusterFromSnapshotMessage = Shapes::StructureShape.new(name: 'RestoreDBClusterFromSnapshotMessage')
279
279
  RestoreDBClusterFromSnapshotResult = Shapes::StructureShape.new(name: 'RestoreDBClusterFromSnapshotResult')
280
280
  RestoreDBClusterToPointInTimeMessage = Shapes::StructureShape.new(name: 'RestoreDBClusterToPointInTimeMessage')
281
281
  RestoreDBClusterToPointInTimeResult = Shapes::StructureShape.new(name: 'RestoreDBClusterToPointInTimeResult')
282
- SNSInvalidTopicFault = Shapes::StructureShape.new(name: 'SNSInvalidTopicFault')
283
- SNSNoAuthorizationFault = Shapes::StructureShape.new(name: 'SNSNoAuthorizationFault')
284
- SNSTopicArnNotFoundFault = Shapes::StructureShape.new(name: 'SNSTopicArnNotFoundFault')
282
+ SNSInvalidTopicFault = Shapes::StructureShape.new(name: 'SNSInvalidTopicFault', error: {"code"=>"SNSInvalidTopic", "httpStatusCode"=>400, "senderFault"=>true})
283
+ SNSNoAuthorizationFault = Shapes::StructureShape.new(name: 'SNSNoAuthorizationFault', error: {"code"=>"SNSNoAuthorization", "httpStatusCode"=>400, "senderFault"=>true})
284
+ SNSTopicArnNotFoundFault = Shapes::StructureShape.new(name: 'SNSTopicArnNotFoundFault', error: {"code"=>"SNSTopicArnNotFound", "httpStatusCode"=>404, "senderFault"=>true})
285
285
  SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
286
286
  ServerlessV2ScalingConfiguration = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfiguration')
287
287
  ServerlessV2ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfigurationInfo')
288
- SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault')
289
- SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault')
288
+ SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault', error: {"code"=>"SharedSnapshotQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
289
+ SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault', error: {"code"=>"SnapshotQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
290
290
  SourceIdsList = Shapes::ListShape.new(name: 'SourceIdsList')
291
- SourceNotFoundFault = Shapes::StructureShape.new(name: 'SourceNotFoundFault')
291
+ SourceNotFoundFault = Shapes::StructureShape.new(name: 'SourceNotFoundFault', error: {"code"=>"SourceNotFound", "httpStatusCode"=>404, "senderFault"=>true})
292
292
  SourceType = Shapes::StringShape.new(name: 'SourceType')
293
293
  StartDBClusterMessage = Shapes::StructureShape.new(name: 'StartDBClusterMessage')
294
294
  StartDBClusterResult = Shapes::StructureShape.new(name: 'StartDBClusterResult')
295
295
  StopDBClusterMessage = Shapes::StructureShape.new(name: 'StopDBClusterMessage')
296
296
  StopDBClusterResult = Shapes::StructureShape.new(name: 'StopDBClusterResult')
297
- StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault')
298
- StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault')
297
+ StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault', error: {"code"=>"StorageQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
298
+ StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault', error: {"code"=>"StorageTypeNotSupported", "httpStatusCode"=>400, "senderFault"=>true})
299
299
  String = Shapes::StringShape.new(name: 'String')
300
300
  StringList = Shapes::ListShape.new(name: 'StringList')
301
301
  Subnet = Shapes::StructureShape.new(name: 'Subnet')
302
- SubnetAlreadyInUse = Shapes::StructureShape.new(name: 'SubnetAlreadyInUse')
302
+ SubnetAlreadyInUse = Shapes::StructureShape.new(name: 'SubnetAlreadyInUse', error: {"code"=>"SubnetAlreadyInUse", "httpStatusCode"=>400, "senderFault"=>true})
303
303
  SubnetIdentifierList = Shapes::ListShape.new(name: 'SubnetIdentifierList')
304
304
  SubnetList = Shapes::ListShape.new(name: 'SubnetList')
305
- SubscriptionAlreadyExistFault = Shapes::StructureShape.new(name: 'SubscriptionAlreadyExistFault')
306
- SubscriptionCategoryNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionCategoryNotFoundFault')
307
- SubscriptionNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionNotFoundFault')
305
+ SubscriptionAlreadyExistFault = Shapes::StructureShape.new(name: 'SubscriptionAlreadyExistFault', error: {"code"=>"SubscriptionAlreadyExist", "httpStatusCode"=>400, "senderFault"=>true})
306
+ SubscriptionCategoryNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionCategoryNotFoundFault', error: {"code"=>"SubscriptionCategoryNotFound", "httpStatusCode"=>404, "senderFault"=>true})
307
+ SubscriptionNotFoundFault = Shapes::StructureShape.new(name: 'SubscriptionNotFoundFault', error: {"code"=>"SubscriptionNotFound", "httpStatusCode"=>404, "senderFault"=>true})
308
308
  SupportedCharacterSetsList = Shapes::ListShape.new(name: 'SupportedCharacterSetsList')
309
309
  SupportedTimezonesList = Shapes::ListShape.new(name: 'SupportedTimezonesList')
310
310
  TStamp = Shapes::TimestampShape.new(name: 'TStamp')
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-neptune/customizations'
53
53
  # @!group service
54
54
  module Aws::Neptune
55
55
 
56
- GEM_VERSION = '1.62.0'
56
+ GEM_VERSION = '1.64.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptune
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.64.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement