aws-sdk-core 2.11.253 → 2.11.254

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: ea0e25f953adaabcbe0b455de0edfa088c316467
4
- data.tar.gz: 4c485e3c59d8c024b8b61c74d85a0c0ec00af9b4
3
+ metadata.gz: 7590affe62204ddb85f661102315ab5d6276436c
4
+ data.tar.gz: 3da6aceecae9a5f6388b3e66f6776585ddab9cc0
5
5
  SHA512:
6
- metadata.gz: daaa3ad79253493af3f72d1a18a4de259db9a5888a8e582c02a00ac7852437378d44076c215728ec68d2e12dab66b838f6e8db660ed8d01a251553b5f792bd45
7
- data.tar.gz: b39f298f3edcb0001b7a64be1844d1cfda057df5809aa242edf89575a2b12f4bf1957f6eb96f74540b5ec78d4ee70338e56bbcb6ef7658d55b7d3e7736f8e7a5
6
+ metadata.gz: 1f889a2c8497be9c256074d2cce40b3fb8f338992fcc558485268c374705eefed189a9f04189ca94a488e97dbe1700addf5dcfeeaf6b14dea8907f4957195114
7
+ data.tar.gz: 79bb922df7d1668c0d082dd14125074034415c00a4d219000e96f5990048e536e610373cdcb31f8e4532edbb4e9b793bb7b2466529ad34d15faf8b76d738ad8a
@@ -431,7 +431,8 @@
431
431
  "taskArn":{"shape":"String"},
432
432
  "logStreamName":{"shape":"String"},
433
433
  "instanceType":{"shape":"String"},
434
- "networkInterfaces":{"shape":"NetworkInterfaceList"}
434
+ "networkInterfaces":{"shape":"NetworkInterfaceList"},
435
+ "resourceRequirements":{"shape":"ResourceRequirements"}
435
436
  }
436
437
  },
437
438
  "ContainerOverrides":{
@@ -441,7 +442,8 @@
441
442
  "memory":{"shape":"Integer"},
442
443
  "command":{"shape":"StringList"},
443
444
  "instanceType":{"shape":"String"},
444
- "environment":{"shape":"EnvironmentVariables"}
445
+ "environment":{"shape":"EnvironmentVariables"},
446
+ "resourceRequirements":{"shape":"ResourceRequirements"}
445
447
  }
446
448
  },
447
449
  "ContainerProperties":{
@@ -459,7 +461,8 @@
459
461
  "privileged":{"shape":"Boolean"},
460
462
  "ulimits":{"shape":"Ulimits"},
461
463
  "user":{"shape":"String"},
462
- "instanceType":{"shape":"String"}
464
+ "instanceType":{"shape":"String"},
465
+ "resourceRequirements":{"shape":"ResourceRequirements"}
463
466
  }
464
467
  },
465
468
  "ContainerSummary":{
@@ -852,6 +855,7 @@
852
855
  "NodeOverrides":{
853
856
  "type":"structure",
854
857
  "members":{
858
+ "numNodes":{"shape":"Integer"},
855
859
  "nodePropertyOverrides":{"shape":"NodePropertyOverrides"}
856
860
  }
857
861
  },
@@ -934,6 +938,25 @@
934
938
  "revision":{"shape":"Integer"}
935
939
  }
936
940
  },
941
+ "ResourceRequirement":{
942
+ "type":"structure",
943
+ "required":[
944
+ "value",
945
+ "type"
946
+ ],
947
+ "members":{
948
+ "value":{"shape":"String"},
949
+ "type":{"shape":"ResourceType"}
950
+ }
951
+ },
952
+ "ResourceRequirements":{
953
+ "type":"list",
954
+ "member":{"shape":"ResourceRequirement"}
955
+ },
956
+ "ResourceType":{
957
+ "type":"string",
958
+ "enum":["GPU"]
959
+ },
937
960
  "RetryStrategy":{
938
961
  "type":"structure",
939
962
  "members":{
@@ -103,6 +103,7 @@
103
103
  "errors":[
104
104
  {"shape":"InvalidRequestException"},
105
105
  {"shape":"ResourceInUseException"},
106
+ {"shape":"TooManyTagsException"},
106
107
  {"shape":"TooManyRequestsException"},
107
108
  {"shape":"ResourceLimitExceededException"},
108
109
  {"shape":"UnsupportedLanguageException"},
@@ -121,6 +122,7 @@
121
122
  "errors":[
122
123
  {"shape":"InvalidRequestException"},
123
124
  {"shape":"ResourceInUseException"},
125
+ {"shape":"TooManyTagsException"},
124
126
  {"shape":"TooManyRequestsException"},
125
127
  {"shape":"ResourceLimitExceededException"},
126
128
  {"shape":"UnsupportedLanguageException"},
@@ -461,6 +463,20 @@
461
463
  {"shape":"InternalServerException"}
462
464
  ]
463
465
  },
466
+ "ListTagsForResource":{
467
+ "name":"ListTagsForResource",
468
+ "http":{
469
+ "method":"POST",
470
+ "requestUri":"/"
471
+ },
472
+ "input":{"shape":"ListTagsForResourceRequest"},
473
+ "output":{"shape":"ListTagsForResourceResponse"},
474
+ "errors":[
475
+ {"shape":"InvalidRequestException"},
476
+ {"shape":"ResourceNotFoundException"},
477
+ {"shape":"InternalServerException"}
478
+ ]
479
+ },
464
480
  "ListTopicsDetectionJobs":{
465
481
  "name":"ListTopicsDetectionJobs",
466
482
  "http":{
@@ -655,6 +671,38 @@
655
671
  {"shape":"ResourceNotFoundException"},
656
672
  {"shape":"InternalServerException"}
657
673
  ]
674
+ },
675
+ "TagResource":{
676
+ "name":"TagResource",
677
+ "http":{
678
+ "method":"POST",
679
+ "requestUri":"/"
680
+ },
681
+ "input":{"shape":"TagResourceRequest"},
682
+ "output":{"shape":"TagResourceResponse"},
683
+ "errors":[
684
+ {"shape":"InvalidRequestException"},
685
+ {"shape":"ConcurrentModificationException"},
686
+ {"shape":"ResourceNotFoundException"},
687
+ {"shape":"TooManyTagsException"},
688
+ {"shape":"InternalServerException"}
689
+ ]
690
+ },
691
+ "UntagResource":{
692
+ "name":"UntagResource",
693
+ "http":{
694
+ "method":"POST",
695
+ "requestUri":"/"
696
+ },
697
+ "input":{"shape":"UntagResourceRequest"},
698
+ "output":{"shape":"UntagResourceResponse"},
699
+ "errors":[
700
+ {"shape":"TooManyTagKeysException"},
701
+ {"shape":"InvalidRequestException"},
702
+ {"shape":"ConcurrentModificationException"},
703
+ {"shape":"ResourceNotFoundException"},
704
+ {"shape":"InternalServerException"}
705
+ ]
658
706
  }
659
707
  },
660
708
  "shapes":{
@@ -844,11 +892,23 @@
844
892
  "min":1,
845
893
  "pattern":"^[a-zA-Z0-9-]+$"
846
894
  },
895
+ "ComprehendArn":{
896
+ "type":"string",
897
+ "max":256,
898
+ "pattern":"arn:aws(-[^:]+)?:comprehend:[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-]{1,64}/[a-zA-Z0-9](-*[a-zA-Z0-9])*"
899
+ },
847
900
  "ComprehendArnName":{
848
901
  "type":"string",
849
902
  "max":63,
850
903
  "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
851
904
  },
905
+ "ConcurrentModificationException":{
906
+ "type":"structure",
907
+ "members":{
908
+ "Message":{"shape":"String"}
909
+ },
910
+ "exception":true
911
+ },
852
912
  "CreateDocumentClassifierRequest":{
853
913
  "type":"structure",
854
914
  "required":[
@@ -860,6 +920,7 @@
860
920
  "members":{
861
921
  "DocumentClassifierName":{"shape":"ComprehendArnName"},
862
922
  "DataAccessRoleArn":{"shape":"IamRoleArn"},
923
+ "Tags":{"shape":"TagList"},
863
924
  "InputDataConfig":{"shape":"DocumentClassifierInputDataConfig"},
864
925
  "ClientRequestToken":{
865
926
  "shape":"ClientRequestTokenString",
@@ -886,6 +947,7 @@
886
947
  "members":{
887
948
  "RecognizerName":{"shape":"ComprehendArnName"},
888
949
  "DataAccessRoleArn":{"shape":"IamRoleArn"},
950
+ "Tags":{"shape":"TagList"},
889
951
  "InputDataConfig":{"shape":"EntityRecognizerInputDataConfig"},
890
952
  "ClientRequestToken":{
891
953
  "shape":"ClientRequestTokenString",
@@ -1658,6 +1720,20 @@
1658
1720
  "NextToken":{"shape":"String"}
1659
1721
  }
1660
1722
  },
1723
+ "ListTagsForResourceRequest":{
1724
+ "type":"structure",
1725
+ "required":["ResourceArn"],
1726
+ "members":{
1727
+ "ResourceArn":{"shape":"ComprehendArn"}
1728
+ }
1729
+ },
1730
+ "ListTagsForResourceResponse":{
1731
+ "type":"structure",
1732
+ "members":{
1733
+ "ResourceArn":{"shape":"ComprehendArn"},
1734
+ "Tags":{"shape":"TagList"}
1735
+ }
1736
+ },
1661
1737
  "ListTopicsDetectionJobsRequest":{
1662
1738
  "type":"structure",
1663
1739
  "members":{
@@ -2088,6 +2164,48 @@
2088
2164
  "PartOfSpeech":{"shape":"PartOfSpeechTag"}
2089
2165
  }
2090
2166
  },
2167
+ "Tag":{
2168
+ "type":"structure",
2169
+ "required":["Key"],
2170
+ "members":{
2171
+ "Key":{"shape":"TagKey"},
2172
+ "Value":{"shape":"TagValue"}
2173
+ }
2174
+ },
2175
+ "TagKey":{
2176
+ "type":"string",
2177
+ "max":128,
2178
+ "min":1
2179
+ },
2180
+ "TagKeyList":{
2181
+ "type":"list",
2182
+ "member":{"shape":"TagKey"}
2183
+ },
2184
+ "TagList":{
2185
+ "type":"list",
2186
+ "member":{"shape":"Tag"}
2187
+ },
2188
+ "TagResourceRequest":{
2189
+ "type":"structure",
2190
+ "required":[
2191
+ "ResourceArn",
2192
+ "Tags"
2193
+ ],
2194
+ "members":{
2195
+ "ResourceArn":{"shape":"ComprehendArn"},
2196
+ "Tags":{"shape":"TagList"}
2197
+ }
2198
+ },
2199
+ "TagResourceResponse":{
2200
+ "type":"structure",
2201
+ "members":{
2202
+ }
2203
+ },
2204
+ "TagValue":{
2205
+ "type":"string",
2206
+ "max":256,
2207
+ "min":0
2208
+ },
2091
2209
  "TextSizeLimitExceededException":{
2092
2210
  "type":"structure",
2093
2211
  "members":{
@@ -2103,6 +2221,20 @@
2103
2221
  },
2104
2222
  "exception":true
2105
2223
  },
2224
+ "TooManyTagKeysException":{
2225
+ "type":"structure",
2226
+ "members":{
2227
+ "Message":{"shape":"String"}
2228
+ },
2229
+ "exception":true
2230
+ },
2231
+ "TooManyTagsException":{
2232
+ "type":"structure",
2233
+ "members":{
2234
+ "Message":{"shape":"String"}
2235
+ },
2236
+ "exception":true
2237
+ },
2106
2238
  "TopicsDetectionJobFilter":{
2107
2239
  "type":"structure",
2108
2240
  "members":{
@@ -2138,6 +2270,22 @@
2138
2270
  "Message":{"shape":"String"}
2139
2271
  },
2140
2272
  "exception":true
2273
+ },
2274
+ "UntagResourceRequest":{
2275
+ "type":"structure",
2276
+ "required":[
2277
+ "ResourceArn",
2278
+ "TagKeys"
2279
+ ],
2280
+ "members":{
2281
+ "ResourceArn":{"shape":"ComprehendArn"},
2282
+ "TagKeys":{"shape":"TagKeyList"}
2283
+ }
2284
+ },
2285
+ "UntagResourceResponse":{
2286
+ "type":"structure",
2287
+ "members":{
2288
+ }
2141
2289
  }
2142
2290
  }
2143
2291
  }
@@ -1620,6 +1620,24 @@
1620
1620
  "us-east-1" : { }
1621
1621
  }
1622
1622
  },
1623
+ "mediaconnect" : {
1624
+ "endpoints" : {
1625
+ "ap-northeast-1" : { },
1626
+ "ap-northeast-2" : { },
1627
+ "ap-south-1" : { },
1628
+ "ap-southeast-1" : { },
1629
+ "ap-southeast-2" : { },
1630
+ "eu-central-1" : { },
1631
+ "eu-west-1" : { },
1632
+ "eu-west-2" : { },
1633
+ "eu-west-3" : { },
1634
+ "sa-east-1" : { },
1635
+ "us-east-1" : { },
1636
+ "us-east-2" : { },
1637
+ "us-west-1" : { },
1638
+ "us-west-2" : { }
1639
+ }
1640
+ },
1623
1641
  "mediaconvert" : {
1624
1642
  "endpoints" : {
1625
1643
  "ap-northeast-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.253'
2
+ VERSION = '2.11.254'
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.253
4
+ version: 2.11.254
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-04-02 00:00:00.000000000 Z
11
+ date: 2019-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath