aws-sdk-rdsdataservice 1.15.0 → 1.16.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
- SHA256:
3
- metadata.gz: 9feb7dd8341a00d50d23ea2c815857b6221ba7084d1174f8c31256fdadd1ce5a
4
- data.tar.gz: 6118c64766d09647a8a9fd9e110dcfe710fbcc127bc5a85e722b4c2614f2a6bd
2
+ SHA1:
3
+ metadata.gz: 380e452cae01909ecdcce27e0c9d4f636e30192e
4
+ data.tar.gz: 1f10ecb075144eb79cf3046a4314b6b2e52c38f4
5
5
  SHA512:
6
- metadata.gz: ded76242dcbb78ea82614e92dca4a6c1b906d740847ed30ebdb96ae483743f94c624d78576ac3fcdd0546b21ea45df0e1c312e5bb56d655d785bd1accd9091e7
7
- data.tar.gz: 658c6662025955c9257c0aa209c2d694b20eeba1f735250644dca454dcefd92d970d19a20eca878a04a153a6f0f50781a3ee118fe882a8aa9fc5f0e8dea2782d
6
+ metadata.gz: 23af17e7409de4788e50aa75ff2cdf3629009cfc308292910a2e6a15ba7193935011959eb144535fcd49efb30af608822a67fde14cb9b8f1f56a163868de08ea
7
+ data.tar.gz: bc079e3461bc9d20b5b2b1b0e09875059024493faca418ce4a956ae82db6b7c8a381799cccdb4c90f2fd4f6db1360be32c14844162513096189429c3976692ed
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-rdsdataservice/customizations'
45
45
  # @service
46
46
  module Aws::RDSDataService
47
47
 
48
- GEM_VERSION = '1.15.0'
48
+ GEM_VERSION = '1.16.0'
49
49
 
50
50
  end
@@ -326,7 +326,18 @@ module Aws::RDSDataService
326
326
  # @option params [Array<Array>] :parameter_sets
327
327
  # The parameter set for the batch operation.
328
328
  #
329
- # The maximum number of parameters in a parameter set is 1,000.
329
+ # The SQL statement is executed as many times as the number of parameter
330
+ # sets provided. To execute a SQL statement with no parameters, use one
331
+ # of the following options:
332
+ #
333
+ # * Specify one or more empty parameter sets.
334
+ #
335
+ # * Use the `ExecuteStatement` operation instead of the
336
+ # `BatchExecuteStatement` operation.
337
+ #
338
+ # <note markdown="1"> Array parameters are not supported.
339
+ #
340
+ # </note>
330
341
  #
331
342
  # @option params [required, String] :resource_arn
332
343
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
@@ -588,9 +599,8 @@ module Aws::RDSDataService
588
599
  # `transactionID` parameter, changes that result from the call are
589
600
  # committed automatically.
590
601
  #
591
- # The response size limit is 1 MB or 1,000 records. If the call returns
592
- # more than 1 MB of response data or over 1,000 records, the call is
593
- # terminated.
602
+ # The response size limit is 1 MB. If the call returns more than 1 MB of
603
+ # response data, the call is terminated.
594
604
  #
595
605
  # @option params [Boolean] :continue_after_timeout
596
606
  # A value that indicates whether to continue running the statement after
@@ -611,6 +621,10 @@ module Aws::RDSDataService
611
621
  # @option params [Array<Types::SqlParameter>] :parameters
612
622
  # The parameters for the SQL statement.
613
623
  #
624
+ # <note markdown="1"> Array parameters are not supported.
625
+ #
626
+ # </note>
627
+ #
614
628
  # @option params [required, String] :resource_arn
615
629
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
616
630
  #
@@ -795,7 +809,7 @@ module Aws::RDSDataService
795
809
  params: params,
796
810
  config: config)
797
811
  context[:gem_name] = 'aws-sdk-rdsdataservice'
798
- context[:gem_version] = '1.15.0'
812
+ context[:gem_version] = '1.16.0'
799
813
  Seahorse::Client::Request.new(handlers, context)
800
814
  end
801
815
 
@@ -6,13 +6,7 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::RDSDataService
9
- # This class provides a resource oriented interface for RDSDataService.
10
- # To create a resource object:
11
- # resource = Aws::RDSDataService::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::RDSDataService::Client.new(region: 'us-west-2')
15
- # resource = Aws::RDSDataService::Resource.new(client: client)
9
+
16
10
  class Resource
17
11
 
18
12
  # @param options ({})
@@ -124,7 +124,18 @@ module Aws::RDSDataService
124
124
  # @!attribute [rw] parameter_sets
125
125
  # The parameter set for the batch operation.
126
126
  #
127
- # The maximum number of parameters in a parameter set is 1,000.
127
+ # The SQL statement is executed as many times as the number of
128
+ # parameter sets provided. To execute a SQL statement with no
129
+ # parameters, use one of the following options:
130
+ #
131
+ # * Specify one or more empty parameter sets.
132
+ #
133
+ # * Use the `ExecuteStatement` operation instead of the
134
+ # `BatchExecuteStatement` operation.
135
+ #
136
+ # <note markdown="1"> Array parameters are not supported.
137
+ #
138
+ # </note>
128
139
  # @return [Array<Array<Types::SqlParameter>>]
129
140
  #
130
141
  # @!attribute [rw] resource_arn
@@ -487,6 +498,10 @@ module Aws::RDSDataService
487
498
  #
488
499
  # @!attribute [rw] parameters
489
500
  # The parameters for the SQL statement.
501
+ #
502
+ # <note markdown="1"> Array parameters are not supported.
503
+ #
504
+ # </note>
490
505
  # @return [Array<Types::SqlParameter>]
491
506
  #
492
507
  # @!attribute [rw] resource_arn
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.15.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-16 00:00:00.000000000 Z
11
+ date: 2020-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubygems_version: 3.0.3
83
+ rubyforge_project:
84
+ rubygems_version: 2.5.2.3
84
85
  signing_key:
85
86
  specification_version: 4
86
87
  summary: AWS SDK for Ruby - AWS RDS DataService