aws-sdk-rdsdataservice 1.6.0 → 1.7.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9226fd02cd5229acdf91175faf357f9be73efc51
|
4
|
+
data.tar.gz: b2bb0494239df351af51e9a7c6d0797262b66f68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 688d7bda760a0127a0d7760c6d132a1b7ceff5fa6672c67672db66984605c0b1d381cbed92d3bab24401e133af75c7e5715ebd3f16f6a74a480c879ed090507b
|
7
|
+
data.tar.gz: 808216b0de8226839e1de69c6981b6e34fb328c56e7346ebe21f800317272ae93405140f74dc7f19a938712d185191f965d33dad5f3d9aa9b662d3171eedf971
|
@@ -340,7 +340,7 @@ module Aws::RDSDataService
|
|
340
340
|
params: params,
|
341
341
|
config: config)
|
342
342
|
context[:gem_name] = 'aws-sdk-rdsdataservice'
|
343
|
-
context[:gem_version] = '1.
|
343
|
+
context[:gem_version] = '1.7.0'
|
344
344
|
Seahorse::Client::Request.new(handlers, context)
|
345
345
|
end
|
346
346
|
|
@@ -42,6 +42,9 @@ module Aws::RDSDataService
|
|
42
42
|
|
43
43
|
ArrayValues.member = Shapes::ShapeRef.new(shape: Value)
|
44
44
|
|
45
|
+
BadRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
46
|
+
BadRequestException.struct_class = Types::BadRequestException
|
47
|
+
|
45
48
|
ColumnMetadata.add_member(:array_base_column_type, Shapes::ShapeRef.new(shape: Integer, location_name: "arrayBaseColumnType"))
|
46
49
|
ColumnMetadata.add_member(:is_auto_increment, Shapes::ShapeRef.new(shape: Boolean, location_name: "isAutoIncrement"))
|
47
50
|
ColumnMetadata.add_member(:is_case_sensitive, Shapes::ShapeRef.new(shape: Boolean, location_name: "isCaseSensitive"))
|
@@ -70,6 +73,9 @@ module Aws::RDSDataService
|
|
70
73
|
ExecuteSqlResponse.add_member(:sql_statement_results, Shapes::ShapeRef.new(shape: SqlStatementResults, required: true, location_name: "sqlStatementResults"))
|
71
74
|
ExecuteSqlResponse.struct_class = Types::ExecuteSqlResponse
|
72
75
|
|
76
|
+
ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
77
|
+
ForbiddenException.struct_class = Types::ForbiddenException
|
78
|
+
|
73
79
|
Record.add_member(:values, Shapes::ShapeRef.new(shape: Row, location_name: "values"))
|
74
80
|
Record.struct_class = Types::Record
|
75
81
|
|
@@ -10,5 +10,37 @@ module Aws::RDSDataService
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class ForbiddenException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::RDSDataService::Types::ForbiddenException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def message
|
24
|
+
@message || @data[:message]
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
class BadRequestException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::RDSDataService::Types::BadRequestException] data
|
34
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
35
|
+
super(context, message, data)
|
36
|
+
end
|
37
|
+
|
38
|
+
# @return [String]
|
39
|
+
def message
|
40
|
+
@message || @data[:message]
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
13
45
|
end
|
14
46
|
end
|
@@ -8,6 +8,19 @@
|
|
8
8
|
module Aws::RDSDataService
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# Access denied exception
|
12
|
+
#
|
13
|
+
# @!attribute [rw] message
|
14
|
+
# Error message
|
15
|
+
# @return [String]
|
16
|
+
#
|
17
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-data-2018-08-01/ForbiddenException AWS API Documentation
|
18
|
+
#
|
19
|
+
class ForbiddenException < Struct.new(
|
20
|
+
:message)
|
21
|
+
include Aws::Structure
|
22
|
+
end
|
23
|
+
|
11
24
|
# Column value
|
12
25
|
#
|
13
26
|
# @!attribute [rw] array_values
|
@@ -192,6 +205,19 @@ module Aws::RDSDataService
|
|
192
205
|
include Aws::Structure
|
193
206
|
end
|
194
207
|
|
208
|
+
# Invalid Request exception
|
209
|
+
#
|
210
|
+
# @!attribute [rw] message
|
211
|
+
# Error message
|
212
|
+
# @return [String]
|
213
|
+
#
|
214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-data-2018-08-01/BadRequestException AWS API Documentation
|
215
|
+
#
|
216
|
+
class BadRequestException < Struct.new(
|
217
|
+
:message)
|
218
|
+
include Aws::Structure
|
219
|
+
end
|
220
|
+
|
195
221
|
# Column Metadata
|
196
222
|
#
|
197
223
|
# @!attribute [rw] array_base_column_type
|
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.7.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-05-
|
11
|
+
date: 2019-05-21 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.53.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.53.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|