aws-sdk-core 2.10.38 → 2.10.39

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4774843499659cd7be403c181ab57cad2daf768f
4
- data.tar.gz: 7549264fb454a2683d5f138c7fa6e19fe5124705
3
+ metadata.gz: 3a7a797f3adb07afe916f5dca4026ffd31eaf51c
4
+ data.tar.gz: 25d7efdb8beb725b5cb444413e8d488e23bcfc46
5
5
  SHA512:
6
- metadata.gz: dd5f4e4cd13c881e420e0764500504593f7b935ab8b86685c5339509cf0528a2529b2f467ff8a628797ad91f6573ae42f40d80fb78899a7c8ae0106011bd654b
7
- data.tar.gz: 7164a52c7d349964061ada2709f797128f903e6967550e4f23f58a1209b626fc750c38018be31fd0005ccce06c55cf7f035236f9d697fc523a6db243682758f9
6
+ metadata.gz: 770186b68582f5d3e21aa217a97a0c57634f33ae3482f213a0a074e4ab61cc16410b26b37ca57b29981de34a47c06a006c76830fc4ebfe618890509c80f092e9
7
+ data.tar.gz: aa97f4f676a7ff37c3ab22ee83111c455c5a3b19dae46de5903fa8687c4aa2971379f279a69bc78c2d26e05aa28eb7d49e52ae5639e2bb2371b21814b9673397
@@ -158,6 +158,20 @@
158
158
  {"shape":"ValidationException"}
159
159
  ]
160
160
  },
161
+ "ListTagsForProject":{
162
+ "name":"ListTagsForProject",
163
+ "http":{
164
+ "method":"POST",
165
+ "requestUri":"/"
166
+ },
167
+ "input":{"shape":"ListTagsForProjectRequest"},
168
+ "output":{"shape":"ListTagsForProjectResult"},
169
+ "errors":[
170
+ {"shape":"ProjectNotFoundException"},
171
+ {"shape":"ValidationException"},
172
+ {"shape":"InvalidNextTokenException"}
173
+ ]
174
+ },
161
175
  "ListTeamMembers":{
162
176
  "name":"ListTeamMembers",
163
177
  "http":{
@@ -185,6 +199,36 @@
185
199
  {"shape":"ValidationException"}
186
200
  ]
187
201
  },
202
+ "TagProject":{
203
+ "name":"TagProject",
204
+ "http":{
205
+ "method":"POST",
206
+ "requestUri":"/"
207
+ },
208
+ "input":{"shape":"TagProjectRequest"},
209
+ "output":{"shape":"TagProjectResult"},
210
+ "errors":[
211
+ {"shape":"ProjectNotFoundException"},
212
+ {"shape":"ValidationException"},
213
+ {"shape":"LimitExceededException"},
214
+ {"shape":"ConcurrentModificationException"}
215
+ ]
216
+ },
217
+ "UntagProject":{
218
+ "name":"UntagProject",
219
+ "http":{
220
+ "method":"POST",
221
+ "requestUri":"/"
222
+ },
223
+ "input":{"shape":"UntagProjectRequest"},
224
+ "output":{"shape":"UntagProjectResult"},
225
+ "errors":[
226
+ {"shape":"ProjectNotFoundException"},
227
+ {"shape":"ValidationException"},
228
+ {"shape":"LimitExceededException"},
229
+ {"shape":"ConcurrentModificationException"}
230
+ ]
231
+ },
188
232
  "UpdateProject":{
189
233
  "name":"UpdateProject",
190
234
  "http":{
@@ -473,6 +517,25 @@
473
517
  "nextToken":{"shape":"PaginationToken"}
474
518
  }
475
519
  },
520
+ "ListTagsForProjectRequest":{
521
+ "type":"structure",
522
+ "required":["id"],
523
+ "members":{
524
+ "id":{"shape":"ProjectId"},
525
+ "nextToken":{"shape":"PaginationToken"},
526
+ "maxResults":{
527
+ "shape":"MaxResults",
528
+ "box":true
529
+ }
530
+ }
531
+ },
532
+ "ListTagsForProjectResult":{
533
+ "type":"structure",
534
+ "members":{
535
+ "tags":{"shape":"Tags"},
536
+ "nextToken":{"shape":"PaginationToken"}
537
+ }
538
+ },
476
539
  "ListTeamMembersRequest":{
477
540
  "type":"structure",
478
541
  "required":["projectId"],
@@ -615,6 +678,43 @@
615
678
  "type":"string",
616
679
  "pattern":"^arn:aws[^:\\s]*:cloudformation:[^:\\s]+:[0-9]{12}:stack\\/[^:\\s]+\\/[^:\\s]+$"
617
680
  },
681
+ "TagKey":{
682
+ "type":"string",
683
+ "max":128,
684
+ "min":1,
685
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
686
+ },
687
+ "TagKeys":{
688
+ "type":"list",
689
+ "member":{"shape":"TagKey"}
690
+ },
691
+ "TagProjectRequest":{
692
+ "type":"structure",
693
+ "required":[
694
+ "id",
695
+ "tags"
696
+ ],
697
+ "members":{
698
+ "id":{"shape":"ProjectId"},
699
+ "tags":{"shape":"Tags"}
700
+ }
701
+ },
702
+ "TagProjectResult":{
703
+ "type":"structure",
704
+ "members":{
705
+ "tags":{"shape":"Tags"}
706
+ }
707
+ },
708
+ "TagValue":{
709
+ "type":"string",
710
+ "max":256,
711
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
712
+ },
713
+ "Tags":{
714
+ "type":"map",
715
+ "key":{"shape":"TagKey"},
716
+ "value":{"shape":"TagValue"}
717
+ },
618
718
  "TeamMember":{
619
719
  "type":"structure",
620
720
  "required":[
@@ -646,6 +746,22 @@
646
746
  "type":"list",
647
747
  "member":{"shape":"TeamMember"}
648
748
  },
749
+ "UntagProjectRequest":{
750
+ "type":"structure",
751
+ "required":[
752
+ "id",
753
+ "tags"
754
+ ],
755
+ "members":{
756
+ "id":{"shape":"ProjectId"},
757
+ "tags":{"shape":"TagKeys"}
758
+ }
759
+ },
760
+ "UntagProjectResult":{
761
+ "type":"structure",
762
+ "members":{
763
+ }
764
+ },
649
765
  "UpdateProjectRequest":{
650
766
  "type":"structure",
651
767
  "required":["id"],
@@ -647,7 +647,7 @@
647
647
  },
648
648
  "elasticloadbalancing" : {
649
649
  "defaults" : {
650
- "protocols" : [ "http", "https" ]
650
+ "protocols" : [ "https" ]
651
651
  },
652
652
  "endpoints" : {
653
653
  "ap-northeast-1" : { },
@@ -1688,7 +1688,7 @@
1688
1688
  },
1689
1689
  "elasticloadbalancing" : {
1690
1690
  "defaults" : {
1691
- "protocols" : [ "http", "https" ]
1691
+ "protocols" : [ "https" ]
1692
1692
  },
1693
1693
  "endpoints" : {
1694
1694
  "cn-north-1" : { }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.38'
2
+ VERSION = '2.10.39'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.38
4
+ version: 2.10.39
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-09-01 00:00:00.000000000 Z
11
+ date: 2017-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath