aws-sdk-core 2.11.245 → 2.11.246

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: c1591978cefb439a78c361f2c7138435d7bc81b0
4
- data.tar.gz: c42586b7efd680d9e3ece0fac4da7fcebfb3da4a
3
+ metadata.gz: b9d164bc3688b14428a9c527e614190ac8d6556e
4
+ data.tar.gz: b72000e2f3cf23ce95dce14b011f5da66580446f
5
5
  SHA512:
6
- metadata.gz: 42e7584cc61086e4047189a0f9356ecfe2cb1d9510e507e51ed9a4afb0e6c6b4767e4b7415d22b38bdce19db20922890f9feac2569677df64f592147868c3898
7
- data.tar.gz: 63918932b051e811bb7b408a0896ccfacca83157e217bebe7cbd0ee5b12752b4c7a15f1b0682e2d013a809668781f90ebb2af61879347de29678f90bba1259fb
6
+ metadata.gz: 9c1fbd0811ee2a6986646de1b04ab07f00ba83ffbda14d717e2857c2e362a440cedf009b059bda179a852e4e0bdb345b93d1ede0bdf853360e2d6b7cb25727c5
7
+ data.tar.gz: fa7b5ace052cdf1926eccfdc73ad8127d1a8d6bcff26e9934a4053bd1e3744c0bbf90851c893037e93f92b26a2979ae3638293725013c6ce6ad2d10f7776014b
@@ -171,6 +171,48 @@
171
171
  {"shape":"InvalidRequestException"}
172
172
  ]
173
173
  },
174
+ "ListTagsForResource":{
175
+ "name":"ListTagsForResource",
176
+ "http":{
177
+ "method":"GET",
178
+ "requestUri":"/tags/{resourceArn}"
179
+ },
180
+ "input":{"shape":"ListTagsForResourceRequest"},
181
+ "output":{"shape":"ListTagsForResourceResponse"},
182
+ "errors":[
183
+ {"shape":"InternalFailureException"},
184
+ {"shape":"InvalidRequestException"},
185
+ {"shape":"ResourceNotFoundException"}
186
+ ]
187
+ },
188
+ "TagResource":{
189
+ "name":"TagResource",
190
+ "http":{
191
+ "method":"POST",
192
+ "requestUri":"/tags/{resourceArn}"
193
+ },
194
+ "input":{"shape":"TagResourceRequest"},
195
+ "output":{"shape":"TagResourceResponse"},
196
+ "errors":[
197
+ {"shape":"InternalFailureException"},
198
+ {"shape":"InvalidRequestException"},
199
+ {"shape":"ResourceNotFoundException"}
200
+ ]
201
+ },
202
+ "UntagResource":{
203
+ "name":"UntagResource",
204
+ "http":{
205
+ "method":"DELETE",
206
+ "requestUri":"/tags/{resourceArn}"
207
+ },
208
+ "input":{"shape":"UntagResourceRequest"},
209
+ "output":{"shape":"UntagResourceResponse"},
210
+ "errors":[
211
+ {"shape":"InternalFailureException"},
212
+ {"shape":"InvalidRequestException"},
213
+ {"shape":"ResourceNotFoundException"}
214
+ ]
215
+ },
174
216
  "UpdatePlacement":{
175
217
  "name":"UpdatePlacement",
176
218
  "http":{
@@ -276,7 +318,8 @@
276
318
  "members":{
277
319
  "projectName":{"shape":"ProjectName"},
278
320
  "description":{"shape":"Description"},
279
- "placementTemplate":{"shape":"PlacementTemplate"}
321
+ "placementTemplate":{"shape":"PlacementTemplate"},
322
+ "tags":{"shape":"TagMap"}
280
323
  }
281
324
  },
282
325
  "CreateProjectResponse":{
@@ -558,6 +601,23 @@
558
601
  "nextToken":{"shape":"NextToken"}
559
602
  }
560
603
  },
604
+ "ListTagsForResourceRequest":{
605
+ "type":"structure",
606
+ "required":["resourceArn"],
607
+ "members":{
608
+ "resourceArn":{
609
+ "shape":"ProjectArn",
610
+ "location":"uri",
611
+ "locationName":"resourceArn"
612
+ }
613
+ }
614
+ },
615
+ "ListTagsForResourceResponse":{
616
+ "type":"structure",
617
+ "members":{
618
+ "tags":{"shape":"TagMap"}
619
+ }
620
+ },
561
621
  "MaxResults":{
562
622
  "type":"integer",
563
623
  "max":250,
@@ -623,6 +683,10 @@
623
683
  "deviceTemplates":{"shape":"DeviceTemplateMap"}
624
684
  }
625
685
  },
686
+ "ProjectArn":{
687
+ "type":"string",
688
+ "pattern":"^arn:aws:iot1click:[A-Za-z0-9_/.-]{0,63}:\\d+:projects/[0-9A-Za-z_-]{1,128}$"
689
+ },
626
690
  "ProjectDescription":{
627
691
  "type":"structure",
628
692
  "required":[
@@ -631,11 +695,13 @@
631
695
  "updatedDate"
632
696
  ],
633
697
  "members":{
698
+ "arn":{"shape":"ProjectArn"},
634
699
  "projectName":{"shape":"ProjectName"},
635
700
  "description":{"shape":"Description"},
636
701
  "createdDate":{"shape":"Time"},
637
702
  "updatedDate":{"shape":"Time"},
638
- "placementTemplate":{"shape":"PlacementTemplate"}
703
+ "placementTemplate":{"shape":"PlacementTemplate"},
704
+ "tags":{"shape":"TagMap"}
639
705
  }
640
706
  },
641
707
  "ProjectName":{
@@ -652,9 +718,11 @@
652
718
  "updatedDate"
653
719
  ],
654
720
  "members":{
721
+ "arn":{"shape":"ProjectArn"},
655
722
  "projectName":{"shape":"ProjectName"},
656
723
  "createdDate":{"shape":"Time"},
657
- "updatedDate":{"shape":"Time"}
724
+ "updatedDate":{"shape":"Time"},
725
+ "tags":{"shape":"TagMap"}
658
726
  }
659
727
  },
660
728
  "ProjectSummaryList":{
@@ -687,6 +755,49 @@
687
755
  "error":{"httpStatusCode":404},
688
756
  "exception":true
689
757
  },
758
+ "TagKey":{
759
+ "type":"string",
760
+ "max":128,
761
+ "min":1,
762
+ "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
763
+ },
764
+ "TagKeyList":{
765
+ "type":"list",
766
+ "member":{"shape":"TagKey"},
767
+ "max":50,
768
+ "min":1
769
+ },
770
+ "TagMap":{
771
+ "type":"map",
772
+ "key":{"shape":"TagKey"},
773
+ "value":{"shape":"TagValue"},
774
+ "max":50,
775
+ "min":1
776
+ },
777
+ "TagResourceRequest":{
778
+ "type":"structure",
779
+ "required":[
780
+ "resourceArn",
781
+ "tags"
782
+ ],
783
+ "members":{
784
+ "resourceArn":{
785
+ "shape":"ProjectArn",
786
+ "location":"uri",
787
+ "locationName":"resourceArn"
788
+ },
789
+ "tags":{"shape":"TagMap"}
790
+ }
791
+ },
792
+ "TagResourceResponse":{
793
+ "type":"structure",
794
+ "members":{
795
+ }
796
+ },
797
+ "TagValue":{
798
+ "type":"string",
799
+ "max":256
800
+ },
690
801
  "Time":{"type":"timestamp"},
691
802
  "TooManyRequestsException":{
692
803
  "type":"structure",
@@ -701,6 +812,30 @@
701
812
  "error":{"httpStatusCode":429},
702
813
  "exception":true
703
814
  },
815
+ "UntagResourceRequest":{
816
+ "type":"structure",
817
+ "required":[
818
+ "resourceArn",
819
+ "tagKeys"
820
+ ],
821
+ "members":{
822
+ "resourceArn":{
823
+ "shape":"ProjectArn",
824
+ "location":"uri",
825
+ "locationName":"resourceArn"
826
+ },
827
+ "tagKeys":{
828
+ "shape":"TagKeyList",
829
+ "location":"querystring",
830
+ "locationName":"tagKeys"
831
+ }
832
+ }
833
+ },
834
+ "UntagResourceResponse":{
835
+ "type":"structure",
836
+ "members":{
837
+ }
838
+ },
704
839
  "UpdatePlacementRequest":{
705
840
  "type":"structure",
706
841
  "required":[
@@ -250,7 +250,8 @@
250
250
  "de-DE",
251
251
  "pt-BR",
252
252
  "fr-FR",
253
- "it-IT"
253
+ "it-IT",
254
+ "ko-KR"
254
255
  ]
255
256
  },
256
257
  "LimitExceededException":{
@@ -798,6 +798,7 @@
798
798
  "ca-central-1" : { },
799
799
  "eu-central-1" : { },
800
800
  "eu-west-1" : { },
801
+ "eu-west-2" : { },
801
802
  "us-east-1" : { },
802
803
  "us-east-2" : { },
803
804
  "us-west-2" : { }
@@ -947,6 +948,12 @@
947
948
  },
948
949
  "docdb" : {
949
950
  "endpoints" : {
951
+ "eu-central-1" : {
952
+ "credentialScope" : {
953
+ "region" : "eu-central-1"
954
+ },
955
+ "hostname" : "rds.eu-central-1.amazonaws.com"
956
+ },
950
957
  "eu-west-1" : {
951
958
  "credentialScope" : {
952
959
  "region" : "eu-west-1"
@@ -1286,6 +1293,7 @@
1286
1293
  },
1287
1294
  "fsx" : {
1288
1295
  "endpoints" : {
1296
+ "ap-northeast-1" : { },
1289
1297
  "eu-west-1" : { },
1290
1298
  "us-east-1" : { },
1291
1299
  "us-east-2" : { },
@@ -1773,6 +1781,12 @@
1773
1781
  },
1774
1782
  "hostname" : "rds.ap-northeast-1.amazonaws.com"
1775
1783
  },
1784
+ "ap-south-1" : {
1785
+ "credentialScope" : {
1786
+ "region" : "ap-south-1"
1787
+ },
1788
+ "hostname" : "rds.ap-south-1.amazonaws.com"
1789
+ },
1776
1790
  "ap-southeast-1" : {
1777
1791
  "credentialScope" : {
1778
1792
  "region" : "ap-southeast-1"
@@ -2822,9 +2836,13 @@
2822
2836
  "waf-regional" : {
2823
2837
  "endpoints" : {
2824
2838
  "ap-northeast-1" : { },
2839
+ "ap-northeast-2" : { },
2840
+ "ap-southeast-1" : { },
2825
2841
  "ap-southeast-2" : { },
2826
2842
  "eu-central-1" : { },
2843
+ "eu-north-1" : { },
2827
2844
  "eu-west-1" : { },
2845
+ "eu-west-2" : { },
2828
2846
  "us-east-1" : { },
2829
2847
  "us-east-2" : { },
2830
2848
  "us-west-1" : { },
@@ -3398,6 +3416,14 @@
3398
3416
  }
3399
3417
  }
3400
3418
  },
3419
+ "comprehend" : {
3420
+ "defaults" : {
3421
+ "protocols" : [ "https" ]
3422
+ },
3423
+ "endpoints" : {
3424
+ "us-gov-west-1" : { }
3425
+ }
3426
+ },
3401
3427
  "config" : {
3402
3428
  "endpoints" : {
3403
3429
  "us-gov-east-1" : { },
@@ -3798,6 +3824,11 @@
3798
3824
  }
3799
3825
  }
3800
3826
  },
3827
+ "waf-regional" : {
3828
+ "endpoints" : {
3829
+ "us-gov-west-1" : { }
3830
+ }
3831
+ },
3801
3832
  "workspaces" : {
3802
3833
  "endpoints" : {
3803
3834
  "us-gov-west-1" : { }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.245'
2
+ VERSION = '2.11.246'
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.11.245
4
+ version: 2.11.246
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-03-21 00:00:00.000000000 Z
11
+ date: 2019-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath