aws-sdk-rdsdataservice 1.13.0 → 1.14.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: 6373bf3b399baefa448ed26f0fce309147fb38c5
4
- data.tar.gz: affa33aec84cf4485356f2c8e65c27420e565e5c
3
+ metadata.gz: 0aa42f7dfc8866f8afe88056dcc68738c84390cc
4
+ data.tar.gz: 537219ace6d7f66a9d215b368cb1e86c72f72d70
5
5
  SHA512:
6
- metadata.gz: a4c33f4068e73556b8f1c301dc459098b7902c0743ae60c5aa55596ade2a491271b822642b47659d3d4977c77d838a16772b09f75cbd19bb6700e97dd1d983cb
7
- data.tar.gz: a0b8d4d7e5e6280e7238f9a7fee43d1cc4546896f46538360e743c3d685369277179c266ee8c5e13145452202b2fa0260dd32ad1fbf09cadeb91a6828726bbb6
6
+ metadata.gz: bcb1861b02f5a3bdcc3980da9d8dc23e26471a22a9e8a5b17c449f8b226f102be77e0dc1f444c05101310f3b9e659998c0319e00ea6775028f2de60cdd8e5edf
7
+ data.tar.gz: 3f8ef8bc55d7d0debcdc03598160ed42a470fea31ef7b2a49ff497923dd452861cd090a156441346255bf29abf0057f0f1b604d5c2ceed55864b8a39920de1e9
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-rdsdataservice/customizations'
42
42
  # @service
43
43
  module Aws::RDSDataService
44
44
 
45
- GEM_VERSION = '1.13.0'
45
+ GEM_VERSION = '1.14.0'
46
46
 
47
47
  end
@@ -271,6 +271,8 @@ module Aws::RDSDataService
271
271
  # @option params [Array<Array>] :parameter_sets
272
272
  # The parameter set for the batch operation.
273
273
  #
274
+ # The maximum number of parameters in a parameter set is 1,000.
275
+ #
274
276
  # @option params [required, String] :resource_arn
275
277
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
276
278
  #
@@ -303,6 +305,7 @@ module Aws::RDSDataService
303
305
  # [
304
306
  # {
305
307
  # name: "ParameterName",
308
+ # type_hint: "DATE", # accepts DATE, DECIMAL, TIME, TIMESTAMP
306
309
  # value: {
307
310
  # array_value: {
308
311
  # array_values: [
@@ -592,6 +595,7 @@ module Aws::RDSDataService
592
595
  # parameters: [
593
596
  # {
594
597
  # name: "ParameterName",
598
+ # type_hint: "DATE", # accepts DATE, DECIMAL, TIME, TIMESTAMP
595
599
  # value: {
596
600
  # array_value: {
597
601
  # array_values: [
@@ -736,7 +740,7 @@ module Aws::RDSDataService
736
740
  params: params,
737
741
  config: config)
738
742
  context[:gem_name] = 'aws-sdk-rdsdataservice'
739
- context[:gem_version] = '1.13.0'
743
+ context[:gem_version] = '1.14.0'
740
744
  Seahorse::Client::Request.new(handlers, context)
741
745
  end
742
746
 
@@ -72,6 +72,7 @@ module Aws::RDSDataService
72
72
  StringArray = Shapes::ListShape.new(name: 'StringArray')
73
73
  StructValue = Shapes::StructureShape.new(name: 'StructValue')
74
74
  TransactionStatus = Shapes::StringShape.new(name: 'TransactionStatus')
75
+ TypeHint = Shapes::StringShape.new(name: 'TypeHint')
75
76
  UpdateResult = Shapes::StructureShape.new(name: 'UpdateResult')
76
77
  UpdateResults = Shapes::ListShape.new(name: 'UpdateResults')
77
78
  Value = Shapes::StructureShape.new(name: 'Value')
@@ -215,6 +216,7 @@ module Aws::RDSDataService
215
216
  Row.member = Shapes::ShapeRef.new(shape: Value)
216
217
 
217
218
  SqlParameter.add_member(:name, Shapes::ShapeRef.new(shape: ParameterName, location_name: "name"))
219
+ SqlParameter.add_member(:type_hint, Shapes::ShapeRef.new(shape: TypeHint, location_name: "typeHint"))
218
220
  SqlParameter.add_member(:value, Shapes::ShapeRef.new(shape: Field, location_name: "value"))
219
221
  SqlParameter.struct_class = Types::SqlParameter
220
222
 
@@ -307,6 +309,7 @@ module Aws::RDSDataService
307
309
  o.input = Shapes::ShapeRef.new(shape: CommitTransactionRequest)
308
310
  o.output = Shapes::ShapeRef.new(shape: CommitTransactionResponse)
309
311
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
312
+ o.errors << Shapes::ShapeRef.new(shape: StatementTimeoutException)
310
313
  o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
311
314
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
312
315
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
@@ -346,6 +349,7 @@ module Aws::RDSDataService
346
349
  o.input = Shapes::ShapeRef.new(shape: RollbackTransactionRequest)
347
350
  o.output = Shapes::ShapeRef.new(shape: RollbackTransactionResponse)
348
351
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
352
+ o.errors << Shapes::ShapeRef.new(shape: StatementTimeoutException)
349
353
  o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
350
354
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
351
355
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableError)
@@ -87,6 +87,7 @@ module Aws::RDSDataService
87
87
  # [
88
88
  # {
89
89
  # name: "ParameterName",
90
+ # type_hint: "DATE", # accepts DATE, DECIMAL, TIME, TIMESTAMP
90
91
  # value: {
91
92
  # array_value: {
92
93
  # array_values: [
@@ -122,6 +123,8 @@ module Aws::RDSDataService
122
123
  #
123
124
  # @!attribute [rw] parameter_sets
124
125
  # The parameter set for the batch operation.
126
+ #
127
+ # The maximum number of parameters in a parameter set is 1,000.
125
128
  # @return [Array<Array<Types::SqlParameter>>]
126
129
  #
127
130
  # @!attribute [rw] resource_arn
@@ -431,6 +434,7 @@ module Aws::RDSDataService
431
434
  # parameters: [
432
435
  # {
433
436
  # name: "ParameterName",
437
+ # type_hint: "DATE", # accepts DATE, DECIMAL, TIME, TIMESTAMP
434
438
  # value: {
435
439
  # array_value: {
436
440
  # array_values: [
@@ -785,6 +789,7 @@ module Aws::RDSDataService
785
789
  #
786
790
  # {
787
791
  # name: "ParameterName",
792
+ # type_hint: "DATE", # accepts DATE, DECIMAL, TIME, TIMESTAMP
788
793
  # value: {
789
794
  # array_value: {
790
795
  # array_values: [
@@ -810,6 +815,27 @@ module Aws::RDSDataService
810
815
  # The name of the parameter.
811
816
  # @return [String]
812
817
  #
818
+ # @!attribute [rw] type_hint
819
+ # A hint that specifies the correct object type for data type mapping.
820
+ #
821
+ # **Values:**
822
+ #
823
+ # * `DECIMAL` - The corresponding `String` parameter value is sent as
824
+ # an object of `DECIMAL` type to the database.
825
+ #
826
+ # * `TIMESTAMP` - The corresponding `String` parameter value is sent
827
+ # as an object of `TIMESTAMP` type to the database. The accepted
828
+ # format is `YYYY-MM-DD HH:MM:SS[.FFF]`.
829
+ #
830
+ # * `TIME` - The corresponding `String` parameter value is sent as an
831
+ # object of `TIME` type to the database. The accepted format is
832
+ # `HH:MM:SS[.FFF]`.
833
+ #
834
+ # * `DATE` - The corresponding `String` parameter value is sent as an
835
+ # object of `DATE` type to the database. The accepted format is
836
+ # `YYYY-MM-DD`.
837
+ # @return [String]
838
+ #
813
839
  # @!attribute [rw] value
814
840
  # The value of the parameter.
815
841
  # @return [Types::Field]
@@ -818,6 +844,7 @@ module Aws::RDSDataService
818
844
  #
819
845
  class SqlParameter < Struct.new(
820
846
  :name,
847
+ :type_hint,
821
848
  :value)
822
849
  include Aws::Structure
823
850
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rdsdataservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.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: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2019-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core