aws-sdk-rdsdataservice 1.39.0 → 1.41.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: ff498f0b77546615d5e3de5aed4fa24a3ccb0f0b1a03ae55159a0088dd61323a
4
- data.tar.gz: 8fe209c7d14f0a4daf4a566c70ce77440369d191ebc8ba6f7f874d0cf217de15
3
+ metadata.gz: af27b15fc026209cf7abc15e9f9b1e1720a42b311beacb79ac2588a15cfc8b9e
4
+ data.tar.gz: 01bf076b62bf40e8a250f4ae83375ea4c376f42b06595c73fbf6a1de82872d53
5
5
  SHA512:
6
- metadata.gz: 2e7a02fd904fc040c0ced8f31009064334d0049afa146ec47d39a8f5d7ff3768d1fb2011aba03cf559ce5899ef7ade093a4859a5d6a55023a70bf57ee2938d60
7
- data.tar.gz: a6a4602d74fe6831fa5a38173ff121d4bb55c0be6f59676825af4f7857696d3089d803230211b27dc81b071b05e260192e8c1e61c3a17499c271139284a4e048
6
+ metadata.gz: 7514aa2616772f2be91e8506752b1f721aa81fe8de46d023cc8a0108b7d3c840599252118603a5b0a662fd06ac0b986e56a4e92ddb4d6db89d6da6f039a90520
7
+ data.tar.gz: 4ae43219b9faa8093e09a1e90a73393e73adafe5f859566df48894f7b8107334572a89fc9e42d3aed32968e8b54ca49b593390a91d5614dc67e7ba306279147b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.40.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.39.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -205,4 +217,4 @@ Unreleased Changes
205
217
  1.0.0 (2018-11-20)
206
218
  ------------------
207
219
 
208
- * Feature - Initial release of `aws-sdk-rdsdataservice`.
220
+ * Feature - Initial release of `aws-sdk-rdsdataservice`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -275,6 +275,11 @@ module Aws::RDSDataService
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -950,7 +955,7 @@ module Aws::RDSDataService
950
955
  params: params,
951
956
  config: config)
952
957
  context[:gem_name] = 'aws-sdk-rdsdataservice'
953
- context[:gem_version] = '1.39.0'
958
+ context[:gem_version] = '1.41.0'
954
959
  Seahorse::Client::Request.new(handlers, context)
955
960
  end
956
961
 
@@ -9,102 +9,43 @@
9
9
 
10
10
  module Aws::RDSDataService
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://rds-data-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://rds-data-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://rds-data.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://rds-data.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3Jkcy1kYXRhLWZpcHMue1JlZ2lvbn0ue1Bh
77
- cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
78
- cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
79
- bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
80
- ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
81
- b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
82
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
83
- UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
84
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
85
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
86
- InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
87
- Y29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcmRz
88
- LWRhdGEtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZp
89
- eH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5k
90
- cG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBl
91
- bmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJ
92
- UFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
93
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0s
94
- dHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
95
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6Imdl
96
- dEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3Vw
97
- cG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
98
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Jk
99
- cy1kYXRhLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5z
100
- U3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUi
101
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFs
102
- U3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qg
103
- c3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
104
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcmRzLWRhdGEu
105
- e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
106
- dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
107
-
108
- JSON
109
50
  end
110
51
  end
@@ -87,45 +87,6 @@ module Aws::RDSDataService
87
87
  # The request parameters represent the input of a SQL statement over an
88
88
  # array of data.
89
89
  #
90
- # @note When making an API call, you may pass BatchExecuteStatementRequest
91
- # data as a hash:
92
- #
93
- # {
94
- # resource_arn: "Arn", # required
95
- # secret_arn: "Arn", # required
96
- # sql: "SqlStatement", # required
97
- # database: "DbName",
98
- # schema: "DbName",
99
- # parameter_sets: [
100
- # [
101
- # {
102
- # name: "ParameterName",
103
- # value: {
104
- # is_null: false,
105
- # boolean_value: false,
106
- # long_value: 1,
107
- # double_value: 1.0,
108
- # string_value: "String",
109
- # blob_value: "data",
110
- # array_value: {
111
- # boolean_values: [false],
112
- # long_values: [1],
113
- # double_values: [1.0],
114
- # string_values: ["String"],
115
- # array_values: [
116
- # {
117
- # # recursive ArrayValue
118
- # },
119
- # ],
120
- # },
121
- # },
122
- # type_hint: "JSON", # accepts JSON, UUID, TIMESTAMP, DATE, TIME, DECIMAL
123
- # },
124
- # ],
125
- # ],
126
- # transaction_id: "Id",
127
- # }
128
- #
129
90
  # @!attribute [rw] resource_arn
130
91
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
131
92
  # @return [String]
@@ -218,16 +179,6 @@ module Aws::RDSDataService
218
179
  # The request parameters represent the input of a request to start a SQL
219
180
  # transaction.
220
181
  #
221
- # @note When making an API call, you may pass BeginTransactionRequest
222
- # data as a hash:
223
- #
224
- # {
225
- # resource_arn: "Arn", # required
226
- # secret_arn: "Arn", # required
227
- # database: "DbName",
228
- # schema: "DbName",
229
- # }
230
- #
231
182
  # @!attribute [rw] resource_arn
232
183
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
233
184
  # @return [String]
@@ -352,15 +303,6 @@ module Aws::RDSDataService
352
303
  # The request parameters represent the input of a commit transaction
353
304
  # request.
354
305
  #
355
- # @note When making an API call, you may pass CommitTransactionRequest
356
- # data as a hash:
357
- #
358
- # {
359
- # resource_arn: "Arn", # required
360
- # secret_arn: "Arn", # required
361
- # transaction_id: "Id", # required
362
- # }
363
- #
364
306
  # @!attribute [rw] resource_arn
365
307
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
366
308
  # @return [String]
@@ -401,17 +343,6 @@ module Aws::RDSDataService
401
343
  # The request parameters represent the input of a request to run one or
402
344
  # more SQL statements.
403
345
  #
404
- # @note When making an API call, you may pass ExecuteSqlRequest
405
- # data as a hash:
406
- #
407
- # {
408
- # db_cluster_or_instance_arn: "Arn", # required
409
- # aws_secret_store_arn: "Arn", # required
410
- # sql_statements: "SqlStatement", # required
411
- # database: "DbName",
412
- # schema: "DbName",
413
- # }
414
- #
415
346
  # @!attribute [rw] db_cluster_or_instance_arn
416
347
  # The ARN of the Aurora Serverless DB cluster.
417
348
  # @return [String]
@@ -475,50 +406,6 @@ module Aws::RDSDataService
475
406
  # The request parameters represent the input of a request to run a SQL
476
407
  # statement against a database.
477
408
  #
478
- # @note When making an API call, you may pass ExecuteStatementRequest
479
- # data as a hash:
480
- #
481
- # {
482
- # resource_arn: "Arn", # required
483
- # secret_arn: "Arn", # required
484
- # sql: "SqlStatement", # required
485
- # database: "DbName",
486
- # schema: "DbName",
487
- # parameters: [
488
- # {
489
- # name: "ParameterName",
490
- # value: {
491
- # is_null: false,
492
- # boolean_value: false,
493
- # long_value: 1,
494
- # double_value: 1.0,
495
- # string_value: "String",
496
- # blob_value: "data",
497
- # array_value: {
498
- # boolean_values: [false],
499
- # long_values: [1],
500
- # double_values: [1.0],
501
- # string_values: ["String"],
502
- # array_values: [
503
- # {
504
- # # recursive ArrayValue
505
- # },
506
- # ],
507
- # },
508
- # },
509
- # type_hint: "JSON", # accepts JSON, UUID, TIMESTAMP, DATE, TIME, DECIMAL
510
- # },
511
- # ],
512
- # transaction_id: "Id",
513
- # include_result_metadata: false,
514
- # continue_after_timeout: false,
515
- # result_set_options: {
516
- # decimal_return_type: "STRING", # accepts STRING, DOUBLE_OR_LONG
517
- # long_return_type: "STRING", # accepts STRING, LONG
518
- # },
519
- # format_records_as: "NONE", # accepts NONE, JSON
520
- # }
521
- #
522
409
  # @!attribute [rw] resource_arn
523
410
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
524
411
  # @return [String]
@@ -828,14 +715,6 @@ module Aws::RDSDataService
828
715
 
829
716
  # Options that control how the result set is returned.
830
717
  #
831
- # @note When making an API call, you may pass ResultSetOptions
832
- # data as a hash:
833
- #
834
- # {
835
- # decimal_return_type: "STRING", # accepts STRING, DOUBLE_OR_LONG
836
- # long_return_type: "STRING", # accepts STRING, LONG
837
- # }
838
- #
839
718
  # @!attribute [rw] decimal_return_type
840
719
  # A value that indicates how a field of `DECIMAL` type is represented
841
720
  # in the response. The value of `STRING`, the default, specifies that
@@ -869,15 +748,6 @@ module Aws::RDSDataService
869
748
  # The request parameters represent the input of a request to perform a
870
749
  # rollback of a transaction.
871
750
  #
872
- # @note When making an API call, you may pass RollbackTransactionRequest
873
- # data as a hash:
874
- #
875
- # {
876
- # resource_arn: "Arn", # required
877
- # secret_arn: "Arn", # required
878
- # transaction_id: "Id", # required
879
- # }
880
- #
881
751
  # @!attribute [rw] resource_arn
882
752
  # The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
883
753
  # @return [String]
@@ -923,33 +793,6 @@ module Aws::RDSDataService
923
793
 
924
794
  # A parameter used in a SQL statement.
925
795
  #
926
- # @note When making an API call, you may pass SqlParameter
927
- # data as a hash:
928
- #
929
- # {
930
- # name: "ParameterName",
931
- # value: {
932
- # is_null: false,
933
- # boolean_value: false,
934
- # long_value: 1,
935
- # double_value: 1.0,
936
- # string_value: "String",
937
- # blob_value: "data",
938
- # array_value: {
939
- # boolean_values: [false],
940
- # long_values: [1],
941
- # double_values: [1.0],
942
- # string_values: ["String"],
943
- # array_values: [
944
- # {
945
- # # recursive ArrayValue
946
- # },
947
- # ],
948
- # },
949
- # },
950
- # type_hint: "JSON", # accepts JSON, UUID, TIMESTAMP, DATE, TIME, DECIMAL
951
- # }
952
- #
953
796
  # @!attribute [rw] name
954
797
  # The name of the parameter.
955
798
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-rdsdataservice/customizations'
52
52
  # @!group service
53
53
  module Aws::RDSDataService
54
54
 
55
- GEM_VERSION = '1.39.0'
55
+ GEM_VERSION = '1.41.0'
56
56
 
57
57
  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.39.0
4
+ version: 1.41.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement