aws-sdk-health 1.14.0 → 1.15.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 +4 -4
- data/lib/aws-sdk-health.rb +1 -1
- data/lib/aws-sdk-health/client.rb +1 -1
- data/lib/aws-sdk-health/client_api.rb +6 -0
- data/lib/aws-sdk-health/errors.rb +32 -0
- data/lib/aws-sdk-health/types.rb +24 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 117013026fd07e984f069fd1e019b6e0da247900
|
4
|
+
data.tar.gz: 382f91f8930bfe131a449f3f40890acdc4cdc37c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f1631a090d49afaf75c1a29dd3fd1c78cb66e745eb680707d5fc1c2a55be15b67f644159c879ef492be89c369e120ab695627f82d1f155d4f836d66333e3d3f
|
7
|
+
data.tar.gz: f1e63897ee99f0be1815c8f313019293dac5a56fe3c05a615da2e37d52d7029acc29d506bbeb2a7a25917c331cafcb0c97c6f7c0a02ea9870b0cb37745575b81
|
data/lib/aws-sdk-health.rb
CHANGED
@@ -242,6 +242,12 @@ module Aws::Health
|
|
242
242
|
|
243
243
|
EventTypeList.member = Shapes::ShapeRef.new(shape: EventType)
|
244
244
|
|
245
|
+
InvalidPaginationToken.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
246
|
+
InvalidPaginationToken.struct_class = Types::InvalidPaginationToken
|
247
|
+
|
248
|
+
UnsupportedLocale.add_member(:message, Shapes::ShapeRef.new(shape: string, location_name: "message"))
|
249
|
+
UnsupportedLocale.struct_class = Types::UnsupportedLocale
|
250
|
+
|
245
251
|
availabilityZones.member = Shapes::ShapeRef.new(shape: availabilityZone)
|
246
252
|
|
247
253
|
dateTimeRangeList.member = Shapes::ShapeRef.new(shape: DateTimeRange)
|
@@ -10,5 +10,37 @@ module Aws::Health
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class InvalidPaginationToken < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::Health::Types::InvalidPaginationToken] 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 UnsupportedLocale < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::Health::Types::UnsupportedLocale] 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
|
data/lib/aws-sdk-health/types.rb
CHANGED
@@ -933,5 +933,29 @@ module Aws::Health
|
|
933
933
|
include Aws::Structure
|
934
934
|
end
|
935
935
|
|
936
|
+
# The specified pagination token (`nextToken`) is not valid.
|
937
|
+
#
|
938
|
+
# @!attribute [rw] message
|
939
|
+
# @return [String]
|
940
|
+
#
|
941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/InvalidPaginationToken AWS API Documentation
|
942
|
+
#
|
943
|
+
class InvalidPaginationToken < Struct.new(
|
944
|
+
:message)
|
945
|
+
include Aws::Structure
|
946
|
+
end
|
947
|
+
|
948
|
+
# The specified locale is not supported.
|
949
|
+
#
|
950
|
+
# @!attribute [rw] message
|
951
|
+
# @return [String]
|
952
|
+
#
|
953
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/health-2016-08-04/UnsupportedLocale AWS API Documentation
|
954
|
+
#
|
955
|
+
class UnsupportedLocale < Struct.new(
|
956
|
+
:message)
|
957
|
+
include Aws::Structure
|
958
|
+
end
|
959
|
+
|
936
960
|
end
|
937
961
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-health
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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
|