aws-sdk-resourcegroupstaggingapi 1.11.0 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-resourcegroupstaggingapi.rb +1 -1
- data/lib/aws-sdk-resourcegroupstaggingapi/client.rb +1 -1
- data/lib/aws-sdk-resourcegroupstaggingapi/client_api.rb +12 -0
- data/lib/aws-sdk-resourcegroupstaggingapi/errors.rb +64 -0
- data/lib/aws-sdk-resourcegroupstaggingapi/types.rb +51 -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: 4ef60a866d58d0c2d8e4f78381c05791a8138e95
|
4
|
+
data.tar.gz: 37f209e0322075f1d0474035ce242fa1178f94eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 609c1277eef58d768e926d041f72223890a38b524aebf3a6bde57a3de0a22ac888c67f98857265ba2cd8b468fdb549c401d082c0dee6b97681d0570c1af0a13c
|
7
|
+
data.tar.gz: 3f621e6e3649e2597035bade10b7b1346588f6054188770ce3465da150fdc013dc6acdbbe38dc2ff53971ce799959f031cce8613f8adbc0b355c68119e8690db
|
@@ -590,7 +590,7 @@ module Aws::ResourceGroupsTaggingAPI
|
|
590
590
|
params: params,
|
591
591
|
config: config)
|
592
592
|
context[:gem_name] = 'aws-sdk-resourcegroupstaggingapi'
|
593
|
-
context[:gem_version] = '1.
|
593
|
+
context[:gem_version] = '1.12.0'
|
594
594
|
Seahorse::Client::Request.new(handlers, context)
|
595
595
|
end
|
596
596
|
|
@@ -86,6 +86,15 @@ module Aws::ResourceGroupsTaggingAPI
|
|
86
86
|
GetTagValuesOutput.add_member(:tag_values, Shapes::ShapeRef.new(shape: TagValuesOutputList, location_name: "TagValues"))
|
87
87
|
GetTagValuesOutput.struct_class = Types::GetTagValuesOutput
|
88
88
|
|
89
|
+
InternalServiceException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
90
|
+
InternalServiceException.struct_class = Types::InternalServiceException
|
91
|
+
|
92
|
+
InvalidParameterException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
93
|
+
InvalidParameterException.struct_class = Types::InvalidParameterException
|
94
|
+
|
95
|
+
PaginationTokenExpiredException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
96
|
+
PaginationTokenExpiredException.struct_class = Types::PaginationTokenExpiredException
|
97
|
+
|
89
98
|
ResourceARNList.member = Shapes::ShapeRef.new(shape: ResourceARN)
|
90
99
|
|
91
100
|
ResourceTagMapping.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN"))
|
@@ -126,6 +135,9 @@ module Aws::ResourceGroupsTaggingAPI
|
|
126
135
|
|
127
136
|
TagValuesOutputList.member = Shapes::ShapeRef.new(shape: TagValue)
|
128
137
|
|
138
|
+
ThrottledException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
139
|
+
ThrottledException.struct_class = Types::ThrottledException
|
140
|
+
|
129
141
|
UntagResourcesInput.add_member(:resource_arn_list, Shapes::ShapeRef.new(shape: ResourceARNList, required: true, location_name: "ResourceARNList"))
|
130
142
|
UntagResourcesInput.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyListForUntag, required: true, location_name: "TagKeys"))
|
131
143
|
UntagResourcesInput.struct_class = Types::UntagResourcesInput
|
@@ -10,5 +10,69 @@ module Aws::ResourceGroupsTaggingAPI
|
|
10
10
|
|
11
11
|
extend Aws::Errors::DynamicErrors
|
12
12
|
|
13
|
+
class InternalServiceException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::ResourceGroupsTaggingAPI::Types::InternalServiceException] 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 InvalidParameterException < ServiceError
|
30
|
+
|
31
|
+
# @param [Seahorse::Client::RequestContext] context
|
32
|
+
# @param [String] message
|
33
|
+
# @param [Aws::ResourceGroupsTaggingAPI::Types::InvalidParameterException] 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
|
+
|
45
|
+
class PaginationTokenExpiredException < ServiceError
|
46
|
+
|
47
|
+
# @param [Seahorse::Client::RequestContext] context
|
48
|
+
# @param [String] message
|
49
|
+
# @param [Aws::ResourceGroupsTaggingAPI::Types::PaginationTokenExpiredException] data
|
50
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
51
|
+
super(context, message, data)
|
52
|
+
end
|
53
|
+
|
54
|
+
# @return [String]
|
55
|
+
def message
|
56
|
+
@message || @data[:message]
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
class ThrottledException < ServiceError
|
62
|
+
|
63
|
+
# @param [Seahorse::Client::RequestContext] context
|
64
|
+
# @param [String] message
|
65
|
+
# @param [Aws::ResourceGroupsTaggingAPI::Types::ThrottledException] data
|
66
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
67
|
+
super(context, message, data)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [String]
|
71
|
+
def message
|
72
|
+
@message || @data[:message]
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
|
13
77
|
end
|
14
78
|
end
|
@@ -244,6 +244,45 @@ module Aws::ResourceGroupsTaggingAPI
|
|
244
244
|
include Aws::Structure
|
245
245
|
end
|
246
246
|
|
247
|
+
# The request processing failed because of an unknown error, exception,
|
248
|
+
# or failure. You can retry the request.
|
249
|
+
#
|
250
|
+
# @!attribute [rw] message
|
251
|
+
# @return [String]
|
252
|
+
#
|
253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/InternalServiceException AWS API Documentation
|
254
|
+
#
|
255
|
+
class InternalServiceException < Struct.new(
|
256
|
+
:message)
|
257
|
+
include Aws::Structure
|
258
|
+
end
|
259
|
+
|
260
|
+
# A parameter is missing or a malformed string or invalid or
|
261
|
+
# out-of-range value was supplied for the request parameter.
|
262
|
+
#
|
263
|
+
# @!attribute [rw] message
|
264
|
+
# @return [String]
|
265
|
+
#
|
266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/InvalidParameterException AWS API Documentation
|
267
|
+
#
|
268
|
+
class InvalidParameterException < Struct.new(
|
269
|
+
:message)
|
270
|
+
include Aws::Structure
|
271
|
+
end
|
272
|
+
|
273
|
+
# A `PaginationToken` is valid for a maximum of 15 minutes. Your request
|
274
|
+
# was denied because the specified `PaginationToken` has expired.
|
275
|
+
#
|
276
|
+
# @!attribute [rw] message
|
277
|
+
# @return [String]
|
278
|
+
#
|
279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/PaginationTokenExpiredException AWS API Documentation
|
280
|
+
#
|
281
|
+
class PaginationTokenExpiredException < Struct.new(
|
282
|
+
:message)
|
283
|
+
include Aws::Structure
|
284
|
+
end
|
285
|
+
|
247
286
|
# A list of resource ARNs and the tags (keys and values) that are
|
248
287
|
# associated with each.
|
249
288
|
#
|
@@ -366,6 +405,18 @@ module Aws::ResourceGroupsTaggingAPI
|
|
366
405
|
include Aws::Structure
|
367
406
|
end
|
368
407
|
|
408
|
+
# The request was denied to limit the frequency of submitted requests.
|
409
|
+
#
|
410
|
+
# @!attribute [rw] message
|
411
|
+
# @return [String]
|
412
|
+
#
|
413
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/resourcegroupstaggingapi-2017-01-26/ThrottledException AWS API Documentation
|
414
|
+
#
|
415
|
+
class ThrottledException < Struct.new(
|
416
|
+
:message)
|
417
|
+
include Aws::Structure
|
418
|
+
end
|
419
|
+
|
369
420
|
# @note When making an API call, you may pass UntagResourcesInput
|
370
421
|
# data as a hash:
|
371
422
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-resourcegroupstaggingapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.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
|