aws-sdk-resourcegroupstaggingapi 1.0.0.rc3 → 1.0.0.rc4

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: 7c3aeb1769211840c22a12d8c34587ec229e45e0
4
- data.tar.gz: 70e31f380fb60bfb83579d9c2b57e7bbc6794ed7
3
+ metadata.gz: d962c825d77d5e3196c5bc0ccbe4330111bb6c19
4
+ data.tar.gz: f4782b3fed20ce308f8efcfd416ffb77b31d543f
5
5
  SHA512:
6
- metadata.gz: 7c782ccb030102848cd6b12868b82738392cd860823cadbe8e2086502a1204b1bfde4a355ea3d343d90e68bb71e4d85a19304a0c9711a397617c2963d1296dc5
7
- data.tar.gz: 1a165134e1002a862aab4c58e976fa113beac8b4f5d95f3818ca89597241fb1fbed0e8356b06e0f31bf68ceeda4e2ed23b3cda0b5a648b31732c5203070f2563
6
+ metadata.gz: fc6d070f700172fe73ba09894f86e917822b0521fd685b0ae5f2e5ff8aefe63de830b2a6876cde42dbcdee0540074c5450e1416b9440c7a72c80695e93052516
7
+ data.tar.gz: f7ab24f39e99bfddfc42d1852f329123150b5410c2edf930a4bd8730d0590b01dbdc3641d5cc02f82f4dfd20e45209fadc9f5601d4b2b78ab86cc64165b7f0e9
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-resourcegroupstaggingapi/customizations'
42
42
  # @service
43
43
  module Aws::ResourceGroupsTaggingAPI
44
44
 
45
- GEM_VERSION = '1.0.0.rc3'
45
+ GEM_VERSION = '1.0.0.rc4'
46
46
 
47
47
  end
@@ -181,7 +181,12 @@ module Aws::ResourceGroupsTaggingAPI
181
181
  # single request, the response returns all resources that are associated
182
182
  # with at least one or possibly more of the specified filters.
183
183
  #
184
- # @option params [required, Integer] :tags_per_page
184
+ # @option params [Integer] :resources_per_page
185
+ # A limit that restricts the number of resources returned by
186
+ # GetResources in paginated output. You can set ResourcesPerPage to a
187
+ # minimum of 1 item and the maximum of 50 items.
188
+ #
189
+ # @option params [Integer] :tags_per_page
185
190
  # A limit that restricts the number of tags (key and value pairs)
186
191
  # returned by GetResources in paginated output. A resource with no tags
187
192
  # is counted as having one tag (one key and value pair).
@@ -242,7 +247,8 @@ module Aws::ResourceGroupsTaggingAPI
242
247
  # values: ["TagValue"],
243
248
  # },
244
249
  # ],
245
- # tags_per_page: 1, # required
250
+ # resources_per_page: 1,
251
+ # tags_per_page: 1,
246
252
  # resource_type_filters: ["AmazonResourceType"],
247
253
  # })
248
254
  #
@@ -479,7 +485,7 @@ module Aws::ResourceGroupsTaggingAPI
479
485
  params: params,
480
486
  config: config)
481
487
  context[:gem_name] = 'aws-sdk-resourcegroupstaggingapi'
482
- context[:gem_version] = '1.0.0.rc3'
488
+ context[:gem_version] = '1.0.0.rc4'
483
489
  Seahorse::Client::Request.new(handlers, context)
484
490
  end
485
491
 
@@ -32,6 +32,7 @@ module Aws::ResourceGroupsTaggingAPI
32
32
  ResourceTagMapping = Shapes::StructureShape.new(name: 'ResourceTagMapping')
33
33
  ResourceTagMappingList = Shapes::ListShape.new(name: 'ResourceTagMappingList')
34
34
  ResourceTypeFilterList = Shapes::ListShape.new(name: 'ResourceTypeFilterList')
35
+ ResourcesPerPage = Shapes::IntegerShape.new(name: 'ResourcesPerPage')
35
36
  StatusCode = Shapes::IntegerShape.new(name: 'StatusCode')
36
37
  Tag = Shapes::StructureShape.new(name: 'Tag')
37
38
  TagFilter = Shapes::StructureShape.new(name: 'TagFilter')
@@ -61,7 +62,8 @@ module Aws::ResourceGroupsTaggingAPI
61
62
 
62
63
  GetResourcesInput.add_member(:pagination_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "PaginationToken"))
63
64
  GetResourcesInput.add_member(:tag_filters, Shapes::ShapeRef.new(shape: TagFilterList, location_name: "TagFilters"))
64
- GetResourcesInput.add_member(:tags_per_page, Shapes::ShapeRef.new(shape: TagsPerPage, required: true, location_name: "TagsPerPage"))
65
+ GetResourcesInput.add_member(:resources_per_page, Shapes::ShapeRef.new(shape: ResourcesPerPage, location_name: "ResourcesPerPage"))
66
+ GetResourcesInput.add_member(:tags_per_page, Shapes::ShapeRef.new(shape: TagsPerPage, location_name: "TagsPerPage"))
65
67
  GetResourcesInput.add_member(:resource_type_filters, Shapes::ShapeRef.new(shape: ResourceTypeFilterList, location_name: "ResourceTypeFilters"))
66
68
  GetResourcesInput.struct_class = Types::GetResourcesInput
67
69
 
@@ -156,6 +158,12 @@ module Aws::ResourceGroupsTaggingAPI
156
158
  o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
157
159
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
158
160
  o.errors << Shapes::ShapeRef.new(shape: PaginationTokenExpiredException)
161
+ o[:pager] = Aws::Pager.new(
162
+ limit_key: "resources_per_page",
163
+ tokens: {
164
+ "pagination_token" => "pagination_token"
165
+ }
166
+ )
159
167
  end)
160
168
 
161
169
  api.add_operation(:get_tag_keys, Seahorse::Model::Operation.new.tap do |o|
@@ -168,6 +176,11 @@ module Aws::ResourceGroupsTaggingAPI
168
176
  o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
169
177
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
170
178
  o.errors << Shapes::ShapeRef.new(shape: PaginationTokenExpiredException)
179
+ o[:pager] = Aws::Pager.new(
180
+ tokens: {
181
+ "pagination_token" => "pagination_token"
182
+ }
183
+ )
171
184
  end)
172
185
 
173
186
  api.add_operation(:get_tag_values, Seahorse::Model::Operation.new.tap do |o|
@@ -180,6 +193,11 @@ module Aws::ResourceGroupsTaggingAPI
180
193
  o.errors << Shapes::ShapeRef.new(shape: ThrottledException)
181
194
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
182
195
  o.errors << Shapes::ShapeRef.new(shape: PaginationTokenExpiredException)
196
+ o[:pager] = Aws::Pager.new(
197
+ tokens: {
198
+ "pagination_token" => "pagination_token"
199
+ }
200
+ )
183
201
  end)
184
202
 
185
203
  api.add_operation(:tag_resources, Seahorse::Model::Operation.new.tap do |o|
@@ -45,7 +45,8 @@ module Aws::ResourceGroupsTaggingAPI
45
45
  # values: ["TagValue"],
46
46
  # },
47
47
  # ],
48
- # tags_per_page: 1, # required
48
+ # resources_per_page: 1,
49
+ # tags_per_page: 1,
49
50
  # resource_type_filters: ["AmazonResourceType"],
50
51
  # }
51
52
  #
@@ -70,6 +71,12 @@ module Aws::ResourceGroupsTaggingAPI
70
71
  # filters.
71
72
  # @return [Array<Types::TagFilter>]
72
73
  #
74
+ # @!attribute [rw] resources_per_page
75
+ # A limit that restricts the number of resources returned by
76
+ # GetResources in paginated output. You can set ResourcesPerPage to a
77
+ # minimum of 1 item and the maximum of 50 items.
78
+ # @return [Integer]
79
+ #
73
80
  # @!attribute [rw] tags_per_page
74
81
  # A limit that restricts the number of tags (key and value pairs)
75
82
  # returned by GetResources in paginated output. A resource with no
@@ -124,6 +131,7 @@ module Aws::ResourceGroupsTaggingAPI
124
131
  class GetResourcesInput < Struct.new(
125
132
  :pagination_token,
126
133
  :tag_filters,
134
+ :resources_per_page,
127
135
  :tags_per_page,
128
136
  :resource_type_filters)
129
137
  include Aws::Structure
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resourcegroupstaggingapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc3
4
+ version: 1.0.0.rc4
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: 2017-05-09 00:00:00.000000000 Z
11
+ date: 2017-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0.rc9
19
+ version: 3.0.0.rc12
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '='
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0.rc9
26
+ version: 3.0.0.rc12
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sigv4
29
29
  requirement: !ruby/object:Gem::Requirement