aws-sdk-rdsdataservice 1.16.0 → 1.21.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 +5 -5
- data/lib/aws-sdk-rdsdataservice.rb +4 -2
- data/lib/aws-sdk-rdsdataservice/client.rb +32 -14
- data/lib/aws-sdk-rdsdataservice/client_api.rb +2 -0
- data/lib/aws-sdk-rdsdataservice/errors.rb +2 -0
- data/lib/aws-sdk-rdsdataservice/resource.rb +2 -0
- data/lib/aws-sdk-rdsdataservice/types.rb +30 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: fc179de69bcec9e2ec1ac40903127aaeb7f4ba3ff0422cbf18fe55157897bb09
|
4
|
+
data.tar.gz: 8242f040b846b455c1fd4375e6a779f551de8913728fe7213399c5658b154de7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86edfca9693d7f948a444362efa59600ba871b56ffdcf8f2c2763288389313d42d814b7b6db31f656da5120c0d6e50c933e5cdbffff4a31e55cd0c51d76e5240
|
7
|
+
data.tar.gz: d4ff3f184c66add2add07fcd71fba5c01c9692cb59e8c0049734eeabab199f8d8f05c3adcdbf7ea7e29d7e2b4ac6dc194f3418d3f0eee2314d33d20c5d0ceac7
|
@@ -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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-rdsdataservice/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::RDSDataService
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.21.0'
|
49
51
|
|
50
52
|
end
|
@@ -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/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::RDSDataService
|
|
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::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::RDSDataService
|
|
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,15 +116,15 @@ module Aws::RDSDataService
|
|
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
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::RDSDataService
|
|
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
|
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
|
@@ -176,7 +195,7 @@ module Aws::RDSDataService
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -269,8 +288,7 @@ module Aws::RDSDataService
|
|
269
288
|
#
|
270
289
|
# @option options [Integer] :http_read_timeout (60) The default
|
271
290
|
# number of seconds to wait for response data. This value can
|
272
|
-
# safely be set
|
273
|
-
# per-request on the session yielded by {#session_for}.
|
291
|
+
# safely be set per-request on the session.
|
274
292
|
#
|
275
293
|
# @option options [Float] :http_idle_timeout (5) The number of
|
276
294
|
# seconds a connection is allowed to sit idle before it is
|
@@ -282,7 +300,7 @@ module Aws::RDSDataService
|
|
282
300
|
# request body. This option has no effect unless the request has
|
283
301
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
284
302
|
# disables this behaviour. This value can safely be set per
|
285
|
-
# request on the session
|
303
|
+
# request on the session.
|
286
304
|
#
|
287
305
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
288
306
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -809,7 +827,7 @@ module Aws::RDSDataService
|
|
809
827
|
params: params,
|
810
828
|
config: config)
|
811
829
|
context[:gem_name] = 'aws-sdk-rdsdataservice'
|
812
|
-
context[:gem_version] = '1.
|
830
|
+
context[:gem_version] = '1.21.0'
|
813
831
|
Seahorse::Client::Request.new(handlers, context)
|
814
832
|
end
|
815
833
|
|
@@ -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:
|
@@ -59,6 +61,7 @@ module Aws::RDSDataService
|
|
59
61
|
:double_values,
|
60
62
|
:long_values,
|
61
63
|
:string_values)
|
64
|
+
SENSITIVE = []
|
62
65
|
include Aws::Structure
|
63
66
|
end
|
64
67
|
|
@@ -72,6 +75,7 @@ module Aws::RDSDataService
|
|
72
75
|
#
|
73
76
|
class BadRequestException < Struct.new(
|
74
77
|
:message)
|
78
|
+
SENSITIVE = []
|
75
79
|
include Aws::Structure
|
76
80
|
end
|
77
81
|
|
@@ -173,6 +177,7 @@ module Aws::RDSDataService
|
|
173
177
|
:secret_arn,
|
174
178
|
:sql,
|
175
179
|
:transaction_id)
|
180
|
+
SENSITIVE = []
|
176
181
|
include Aws::Structure
|
177
182
|
end
|
178
183
|
|
@@ -187,6 +192,7 @@ module Aws::RDSDataService
|
|
187
192
|
#
|
188
193
|
class BatchExecuteStatementResponse < Struct.new(
|
189
194
|
:update_results)
|
195
|
+
SENSITIVE = []
|
190
196
|
include Aws::Structure
|
191
197
|
end
|
192
198
|
|
@@ -226,6 +232,7 @@ module Aws::RDSDataService
|
|
226
232
|
:resource_arn,
|
227
233
|
:schema,
|
228
234
|
:secret_arn)
|
235
|
+
SENSITIVE = []
|
229
236
|
include Aws::Structure
|
230
237
|
end
|
231
238
|
|
@@ -240,6 +247,7 @@ module Aws::RDSDataService
|
|
240
247
|
#
|
241
248
|
class BeginTransactionResponse < Struct.new(
|
242
249
|
:transaction_id)
|
250
|
+
SENSITIVE = []
|
243
251
|
include Aws::Structure
|
244
252
|
end
|
245
253
|
|
@@ -318,6 +326,7 @@ module Aws::RDSDataService
|
|
318
326
|
:table_name,
|
319
327
|
:type,
|
320
328
|
:type_name)
|
329
|
+
SENSITIVE = []
|
321
330
|
include Aws::Structure
|
322
331
|
end
|
323
332
|
|
@@ -351,6 +360,7 @@ module Aws::RDSDataService
|
|
351
360
|
:resource_arn,
|
352
361
|
:secret_arn,
|
353
362
|
:transaction_id)
|
363
|
+
SENSITIVE = []
|
354
364
|
include Aws::Structure
|
355
365
|
end
|
356
366
|
|
@@ -365,6 +375,7 @@ module Aws::RDSDataService
|
|
365
375
|
#
|
366
376
|
class CommitTransactionResponse < Struct.new(
|
367
377
|
:transaction_status)
|
378
|
+
SENSITIVE = []
|
368
379
|
include Aws::Structure
|
369
380
|
end
|
370
381
|
|
@@ -415,6 +426,7 @@ module Aws::RDSDataService
|
|
415
426
|
:db_cluster_or_instance_arn,
|
416
427
|
:schema,
|
417
428
|
:sql_statements)
|
429
|
+
SENSITIVE = []
|
418
430
|
include Aws::Structure
|
419
431
|
end
|
420
432
|
|
@@ -429,6 +441,7 @@ module Aws::RDSDataService
|
|
429
441
|
#
|
430
442
|
class ExecuteSqlResponse < Struct.new(
|
431
443
|
:sql_statement_results)
|
444
|
+
SENSITIVE = []
|
432
445
|
include Aws::Structure
|
433
446
|
end
|
434
447
|
|
@@ -546,6 +559,7 @@ module Aws::RDSDataService
|
|
546
559
|
:secret_arn,
|
547
560
|
:sql,
|
548
561
|
:transaction_id)
|
562
|
+
SENSITIVE = []
|
549
563
|
include Aws::Structure
|
550
564
|
end
|
551
565
|
|
@@ -577,6 +591,7 @@ module Aws::RDSDataService
|
|
577
591
|
:generated_fields,
|
578
592
|
:number_of_records_updated,
|
579
593
|
:records)
|
594
|
+
SENSITIVE = []
|
580
595
|
include Aws::Structure
|
581
596
|
end
|
582
597
|
|
@@ -643,6 +658,7 @@ module Aws::RDSDataService
|
|
643
658
|
:is_null,
|
644
659
|
:long_value,
|
645
660
|
:string_value)
|
661
|
+
SENSITIVE = []
|
646
662
|
include Aws::Structure
|
647
663
|
end
|
648
664
|
|
@@ -656,6 +672,7 @@ module Aws::RDSDataService
|
|
656
672
|
#
|
657
673
|
class ForbiddenException < Struct.new(
|
658
674
|
:message)
|
675
|
+
SENSITIVE = []
|
659
676
|
include Aws::Structure
|
660
677
|
end
|
661
678
|
|
@@ -676,6 +693,7 @@ module Aws::RDSDataService
|
|
676
693
|
#
|
677
694
|
class NotFoundException < Struct.new(
|
678
695
|
:message)
|
696
|
+
SENSITIVE = []
|
679
697
|
include Aws::Structure
|
680
698
|
end
|
681
699
|
|
@@ -689,6 +707,7 @@ module Aws::RDSDataService
|
|
689
707
|
#
|
690
708
|
class Record < Struct.new(
|
691
709
|
:values)
|
710
|
+
SENSITIVE = []
|
692
711
|
include Aws::Structure
|
693
712
|
end
|
694
713
|
|
@@ -707,6 +726,7 @@ module Aws::RDSDataService
|
|
707
726
|
class ResultFrame < Struct.new(
|
708
727
|
:records,
|
709
728
|
:result_set_metadata)
|
729
|
+
SENSITIVE = []
|
710
730
|
include Aws::Structure
|
711
731
|
end
|
712
732
|
|
@@ -725,6 +745,7 @@ module Aws::RDSDataService
|
|
725
745
|
class ResultSetMetadata < Struct.new(
|
726
746
|
:column_count,
|
727
747
|
:column_metadata)
|
748
|
+
SENSITIVE = []
|
728
749
|
include Aws::Structure
|
729
750
|
end
|
730
751
|
|
@@ -753,6 +774,7 @@ module Aws::RDSDataService
|
|
753
774
|
#
|
754
775
|
class ResultSetOptions < Struct.new(
|
755
776
|
:decimal_return_type)
|
777
|
+
SENSITIVE = []
|
756
778
|
include Aws::Structure
|
757
779
|
end
|
758
780
|
|
@@ -786,6 +808,7 @@ module Aws::RDSDataService
|
|
786
808
|
:resource_arn,
|
787
809
|
:secret_arn,
|
788
810
|
:transaction_id)
|
811
|
+
SENSITIVE = []
|
789
812
|
include Aws::Structure
|
790
813
|
end
|
791
814
|
|
@@ -800,6 +823,7 @@ module Aws::RDSDataService
|
|
800
823
|
#
|
801
824
|
class RollbackTransactionResponse < Struct.new(
|
802
825
|
:transaction_status)
|
826
|
+
SENSITIVE = []
|
803
827
|
include Aws::Structure
|
804
828
|
end
|
805
829
|
|
@@ -873,6 +897,7 @@ module Aws::RDSDataService
|
|
873
897
|
:name,
|
874
898
|
:type_hint,
|
875
899
|
:value)
|
900
|
+
SENSITIVE = []
|
876
901
|
include Aws::Structure
|
877
902
|
end
|
878
903
|
|
@@ -893,6 +918,7 @@ module Aws::RDSDataService
|
|
893
918
|
class SqlStatementResult < Struct.new(
|
894
919
|
:number_of_records_updated,
|
895
920
|
:result_frame)
|
921
|
+
SENSITIVE = []
|
896
922
|
include Aws::Structure
|
897
923
|
end
|
898
924
|
|
@@ -912,6 +938,7 @@ module Aws::RDSDataService
|
|
912
938
|
class StatementTimeoutException < Struct.new(
|
913
939
|
:db_connection_id,
|
914
940
|
:message)
|
941
|
+
SENSITIVE = []
|
915
942
|
include Aws::Structure
|
916
943
|
end
|
917
944
|
|
@@ -925,6 +952,7 @@ module Aws::RDSDataService
|
|
925
952
|
#
|
926
953
|
class StructValue < Struct.new(
|
927
954
|
:attributes)
|
955
|
+
SENSITIVE = []
|
928
956
|
include Aws::Structure
|
929
957
|
end
|
930
958
|
|
@@ -938,6 +966,7 @@ module Aws::RDSDataService
|
|
938
966
|
#
|
939
967
|
class UpdateResult < Struct.new(
|
940
968
|
:generated_fields)
|
969
|
+
SENSITIVE = []
|
941
970
|
include Aws::Structure
|
942
971
|
end
|
943
972
|
|
@@ -998,6 +1027,7 @@ module Aws::RDSDataService
|
|
998
1027
|
:real_value,
|
999
1028
|
:string_value,
|
1000
1029
|
:struct_value)
|
1030
|
+
SENSITIVE = []
|
1001
1031
|
include Aws::Structure
|
1002
1032
|
end
|
1003
1033
|
|
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.
|
4
|
+
version: 1.21.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-
|
11
|
+
date: 2020-08-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.
|
22
|
+
version: 3.99.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.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS RDS DataService
|