aws-sdk-core 2.11.244 → 2.11.245

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: c7b5b666e0112f0fd7324375b9965f848421732c
4
- data.tar.gz: 306bfbfe738c4146b880960d9e482fffa0406899
3
+ metadata.gz: c1591978cefb439a78c361f2c7138435d7bc81b0
4
+ data.tar.gz: c42586b7efd680d9e3ece0fac4da7fcebfb3da4a
5
5
  SHA512:
6
- metadata.gz: 7539e775135189a12cf4eac129a4d2665c6fd536f14e58d6eb4ddf19fb70cb5f311ef678619306c86974a3e5f3da3d6d8fe66f7567688db61239544cfa48839f
7
- data.tar.gz: 5f9fad34c4f1fc6cb15e04dc16fc2c805ff435fe8bec9cbc0dab6470cbd1534032ccdcb6df58efbdba764b063a00a8d03f24d5354e6d823143a7e683c06ab4fc
6
+ metadata.gz: 42e7584cc61086e4047189a0f9356ecfe2cb1d9510e507e51ed9a4afb0e6c6b4767e4b7415d22b38bdce19db20922890f9feac2569677df64f592147868c3898
7
+ data.tar.gz: 63918932b051e811bb7b408a0896ccfacca83157e217bebe7cbd0ee5b12752b4c7a15f1b0682e2d013a809668781f90ebb2af61879347de29678f90bba1259fb
@@ -1305,6 +1305,22 @@
1305
1305
  {"shape":"InternalErrorException"}
1306
1306
  ]
1307
1307
  },
1308
+ "ListTagsForResource":{
1309
+ "name":"ListTagsForResource",
1310
+ "http":{
1311
+ "method":"POST",
1312
+ "requestUri":"/"
1313
+ },
1314
+ "input":{"shape":"ListTagsForResourceRequest"},
1315
+ "output":{"shape":"ListTagsForResourceResponse"},
1316
+ "errors":[
1317
+ {"shape":"ResourceNotFoundException"},
1318
+ {"shape":"NotAuthorizedException"},
1319
+ {"shape":"TooManyRequestsException"},
1320
+ {"shape":"InvalidParameterException"},
1321
+ {"shape":"InternalErrorException"}
1322
+ ]
1323
+ },
1308
1324
  "ListUserImportJobs":{
1309
1325
  "name":"ListUserImportJobs",
1310
1326
  "http":{
@@ -1591,6 +1607,38 @@
1591
1607
  {"shape":"NotAuthorizedException"}
1592
1608
  ]
1593
1609
  },
1610
+ "TagResource":{
1611
+ "name":"TagResource",
1612
+ "http":{
1613
+ "method":"POST",
1614
+ "requestUri":"/"
1615
+ },
1616
+ "input":{"shape":"TagResourceRequest"},
1617
+ "output":{"shape":"TagResourceResponse"},
1618
+ "errors":[
1619
+ {"shape":"ResourceNotFoundException"},
1620
+ {"shape":"NotAuthorizedException"},
1621
+ {"shape":"TooManyRequestsException"},
1622
+ {"shape":"InvalidParameterException"},
1623
+ {"shape":"InternalErrorException"}
1624
+ ]
1625
+ },
1626
+ "UntagResource":{
1627
+ "name":"UntagResource",
1628
+ "http":{
1629
+ "method":"POST",
1630
+ "requestUri":"/"
1631
+ },
1632
+ "input":{"shape":"UntagResourceRequest"},
1633
+ "output":{"shape":"UntagResourceResponse"},
1634
+ "errors":[
1635
+ {"shape":"ResourceNotFoundException"},
1636
+ {"shape":"NotAuthorizedException"},
1637
+ {"shape":"TooManyRequestsException"},
1638
+ {"shape":"InvalidParameterException"},
1639
+ {"shape":"InternalErrorException"}
1640
+ ]
1641
+ },
1594
1642
  "UpdateAuthEventFeedback":{
1595
1643
  "name":"UpdateAuthEventFeedback",
1596
1644
  "http":{
@@ -3851,6 +3899,19 @@
3851
3899
  "NextToken":{"shape":"PaginationKeyType"}
3852
3900
  }
3853
3901
  },
3902
+ "ListTagsForResourceRequest":{
3903
+ "type":"structure",
3904
+ "required":["ResourceArn"],
3905
+ "members":{
3906
+ "ResourceArn":{"shape":"ArnType"}
3907
+ }
3908
+ },
3909
+ "ListTagsForResourceResponse":{
3910
+ "type":"structure",
3911
+ "members":{
3912
+ "Tags":{"shape":"UserPoolTagsType"}
3913
+ }
3914
+ },
3854
3915
  "ListUserImportJobsRequest":{
3855
3916
  "type":"structure",
3856
3917
  "required":[
@@ -4597,6 +4658,29 @@
4597
4658
  "type":"list",
4598
4659
  "member":{"shape":"ProviderNameType"}
4599
4660
  },
4661
+ "TagKeysType":{
4662
+ "type":"string",
4663
+ "max":128,
4664
+ "min":1
4665
+ },
4666
+ "TagResourceRequest":{
4667
+ "type":"structure",
4668
+ "required":["ResourceArn"],
4669
+ "members":{
4670
+ "ResourceArn":{"shape":"ArnType"},
4671
+ "Tags":{"shape":"UserPoolTagsType"}
4672
+ }
4673
+ },
4674
+ "TagResourceResponse":{
4675
+ "type":"structure",
4676
+ "members":{
4677
+ }
4678
+ },
4679
+ "TagValueType":{
4680
+ "type":"string",
4681
+ "max":256,
4682
+ "min":0
4683
+ },
4600
4684
  "TokenModelType":{
4601
4685
  "type":"string",
4602
4686
  "pattern":"[A-Za-z0-9-_=.]+",
@@ -4649,6 +4733,19 @@
4649
4733
  },
4650
4734
  "exception":true
4651
4735
  },
4736
+ "UntagResourceRequest":{
4737
+ "type":"structure",
4738
+ "required":["ResourceArn"],
4739
+ "members":{
4740
+ "ResourceArn":{"shape":"ArnType"},
4741
+ "TagKeys":{"shape":"UserPoolTagsListType"}
4742
+ }
4743
+ },
4744
+ "UntagResourceResponse":{
4745
+ "type":"structure",
4746
+ "members":{
4747
+ }
4748
+ },
4652
4749
  "UpdateAuthEventFeedbackRequest":{
4653
4750
  "type":"structure",
4654
4751
  "required":[
@@ -5034,10 +5131,14 @@
5034
5131
  },
5035
5132
  "exception":true
5036
5133
  },
5134
+ "UserPoolTagsListType":{
5135
+ "type":"list",
5136
+ "member":{"shape":"TagKeysType"}
5137
+ },
5037
5138
  "UserPoolTagsType":{
5038
5139
  "type":"map",
5039
- "key":{"shape":"StringType"},
5040
- "value":{"shape":"StringType"}
5140
+ "key":{"shape":"TagKeysType"},
5141
+ "value":{"shape":"TagValueType"}
5041
5142
  },
5042
5143
  "UserPoolType":{
5043
5144
  "type":"structure",
@@ -103,6 +103,19 @@
103
103
  {"shape":"InternalException"}
104
104
  ]
105
105
  },
106
+ "ListTagsForResource":{
107
+ "name":"ListTagsForResource",
108
+ "http":{
109
+ "method":"POST",
110
+ "requestUri":"/"
111
+ },
112
+ "input":{"shape":"ListTagsForResourceRequest"},
113
+ "output":{"shape":"ListTagsForResourceResponse"},
114
+ "errors":[
115
+ {"shape":"ResourceNotFoundException"},
116
+ {"shape":"InternalException"}
117
+ ]
118
+ },
106
119
  "ListTargetsByRule":{
107
120
  "name":"ListTargetsByRule",
108
121
  "http":{
@@ -202,6 +215,21 @@
202
215
  {"shape":"InternalException"}
203
216
  ]
204
217
  },
218
+ "TagResource":{
219
+ "name":"TagResource",
220
+ "http":{
221
+ "method":"POST",
222
+ "requestUri":"/"
223
+ },
224
+ "input":{"shape":"TagResourceRequest"},
225
+ "output":{"shape":"TagResourceResponse"},
226
+ "errors":[
227
+ {"shape":"ResourceNotFoundException"},
228
+ {"shape":"ConcurrentModificationException"},
229
+ {"shape":"InternalException"},
230
+ {"shape":"ManagedRuleException"}
231
+ ]
232
+ },
205
233
  "TestEventPattern":{
206
234
  "name":"TestEventPattern",
207
235
  "http":{
@@ -214,6 +242,21 @@
214
242
  {"shape":"InvalidEventPatternException"},
215
243
  {"shape":"InternalException"}
216
244
  ]
245
+ },
246
+ "UntagResource":{
247
+ "name":"UntagResource",
248
+ "http":{
249
+ "method":"POST",
250
+ "requestUri":"/"
251
+ },
252
+ "input":{"shape":"UntagResourceRequest"},
253
+ "output":{"shape":"UntagResourceResponse"},
254
+ "errors":[
255
+ {"shape":"ResourceNotFoundException"},
256
+ {"shape":"InternalException"},
257
+ {"shape":"ConcurrentModificationException"},
258
+ {"shape":"ManagedRuleException"}
259
+ ]
217
260
  }
218
261
  },
219
262
  "shapes":{
@@ -454,6 +497,19 @@
454
497
  "NextToken":{"shape":"NextToken"}
455
498
  }
456
499
  },
500
+ "ListTagsForResourceRequest":{
501
+ "type":"structure",
502
+ "required":["ResourceARN"],
503
+ "members":{
504
+ "ResourceARN":{"shape":"Arn"}
505
+ }
506
+ },
507
+ "ListTagsForResourceResponse":{
508
+ "type":"structure",
509
+ "members":{
510
+ "Tags":{"shape":"TagList"}
511
+ }
512
+ },
457
513
  "ListTargetsByRuleRequest":{
458
514
  "type":"structure",
459
515
  "required":["Rule"],
@@ -570,7 +626,8 @@
570
626
  "EventPattern":{"shape":"EventPattern"},
571
627
  "State":{"shape":"RuleState"},
572
628
  "Description":{"shape":"RuleDescription"},
573
- "RoleArn":{"shape":"RoleArn"}
629
+ "RoleArn":{"shape":"RoleArn"},
630
+ "Tags":{"shape":"TagList"}
574
631
  }
575
632
  },
576
633
  "PutRuleResponse":{
@@ -763,6 +820,51 @@
763
820
  "type":"list",
764
821
  "member":{"shape":"String"}
765
822
  },
823
+ "Tag":{
824
+ "type":"structure",
825
+ "required":[
826
+ "Key",
827
+ "Value"
828
+ ],
829
+ "members":{
830
+ "Key":{"shape":"TagKey"},
831
+ "Value":{"shape":"TagValue"}
832
+ }
833
+ },
834
+ "TagKey":{
835
+ "type":"string",
836
+ "max":128,
837
+ "min":1
838
+ },
839
+ "TagKeyList":{
840
+ "type":"list",
841
+ "member":{"shape":"TagKey"}
842
+ },
843
+ "TagList":{
844
+ "type":"list",
845
+ "member":{"shape":"Tag"}
846
+ },
847
+ "TagResourceRequest":{
848
+ "type":"structure",
849
+ "required":[
850
+ "ResourceARN",
851
+ "Tags"
852
+ ],
853
+ "members":{
854
+ "ResourceARN":{"shape":"Arn"},
855
+ "Tags":{"shape":"TagList"}
856
+ }
857
+ },
858
+ "TagResourceResponse":{
859
+ "type":"structure",
860
+ "members":{
861
+ }
862
+ },
863
+ "TagValue":{
864
+ "type":"string",
865
+ "max":256,
866
+ "min":0
867
+ },
766
868
  "Target":{
767
869
  "type":"structure",
768
870
  "required":[
@@ -845,6 +947,22 @@
845
947
  "key":{"shape":"InputTransformerPathKey"},
846
948
  "value":{"shape":"TargetInputPath"},
847
949
  "max":10
950
+ },
951
+ "UntagResourceRequest":{
952
+ "type":"structure",
953
+ "required":[
954
+ "ResourceARN",
955
+ "TagKeys"
956
+ ],
957
+ "members":{
958
+ "ResourceARN":{"shape":"Arn"},
959
+ "TagKeys":{"shape":"TagKeyList"}
960
+ }
961
+ },
962
+ "UntagResourceResponse":{
963
+ "type":"structure",
964
+ "members":{
965
+ }
848
966
  }
849
967
  }
850
968
  }
@@ -1411,6 +1411,26 @@
1411
1411
  {"shape":"InvalidRequestException"}
1412
1412
  ]
1413
1413
  },
1414
+ "GetStatistics":{
1415
+ "name":"GetStatistics",
1416
+ "http":{
1417
+ "method":"POST",
1418
+ "requestUri":"/indices/statistics"
1419
+ },
1420
+ "input":{"shape":"GetStatisticsRequest"},
1421
+ "output":{"shape":"GetStatisticsResponse"},
1422
+ "errors":[
1423
+ {"shape":"InvalidRequestException"},
1424
+ {"shape":"ThrottlingException"},
1425
+ {"shape":"UnauthorizedException"},
1426
+ {"shape":"ServiceUnavailableException"},
1427
+ {"shape":"InternalFailureException"},
1428
+ {"shape":"ResourceNotFoundException"},
1429
+ {"shape":"InvalidQueryException"},
1430
+ {"shape":"InvalidAggregationException"},
1431
+ {"shape":"IndexNotReadyException"}
1432
+ ]
1433
+ },
1414
1434
  "GetTopicRule":{
1415
1435
  "name":"GetTopicRule",
1416
1436
  "http":{
@@ -2820,6 +2840,10 @@
2820
2840
  "key":{"shape":"AttributeKey"},
2821
2841
  "value":{"shape":"Value"}
2822
2842
  },
2843
+ "AggregationField":{
2844
+ "type":"string",
2845
+ "min":1
2846
+ },
2823
2847
  "AlarmName":{"type":"string"},
2824
2848
  "AlertTarget":{
2825
2849
  "type":"structure",
@@ -5355,6 +5379,22 @@
5355
5379
  "registrationCode":{"shape":"RegistrationCode"}
5356
5380
  }
5357
5381
  },
5382
+ "GetStatisticsRequest":{
5383
+ "type":"structure",
5384
+ "required":["queryString"],
5385
+ "members":{
5386
+ "indexName":{"shape":"IndexName"},
5387
+ "queryString":{"shape":"QueryString"},
5388
+ "aggregationField":{"shape":"AggregationField"},
5389
+ "queryVersion":{"shape":"QueryVersion"}
5390
+ }
5391
+ },
5392
+ "GetStatisticsResponse":{
5393
+ "type":"structure",
5394
+ "members":{
5395
+ "statistics":{"shape":"Statistics"}
5396
+ }
5397
+ },
5358
5398
  "GetTopicRuleRequest":{
5359
5399
  "type":"structure",
5360
5400
  "required":["ruleName"],
@@ -5461,6 +5501,14 @@
5461
5501
  "exception":true,
5462
5502
  "fault":true
5463
5503
  },
5504
+ "InvalidAggregationException":{
5505
+ "type":"structure",
5506
+ "members":{
5507
+ "message":{"shape":"errorMessage"}
5508
+ },
5509
+ "error":{"httpStatusCode":400},
5510
+ "exception":true
5511
+ },
5464
5512
  "InvalidQueryException":{
5465
5513
  "type":"structure",
5466
5514
  "members":{
@@ -7923,6 +7971,12 @@
7923
7971
  "statistic":{"shape":"EvaluationStatistic"}
7924
7972
  }
7925
7973
  },
7974
+ "Statistics":{
7975
+ "type":"structure",
7976
+ "members":{
7977
+ "count":{"shape":"Count"}
7978
+ }
7979
+ },
7926
7980
  "Status":{
7927
7981
  "type":"string",
7928
7982
  "enum":[
@@ -534,6 +534,24 @@
534
534
  {"shape":"UnauthenticatedException"}
535
535
  ]
536
536
  },
537
+ "DeleteKnownHostKeys":{
538
+ "name":"DeleteKnownHostKeys",
539
+ "http":{
540
+ "method":"POST",
541
+ "requestUri":"/"
542
+ },
543
+ "input":{"shape":"DeleteKnownHostKeysRequest"},
544
+ "output":{"shape":"DeleteKnownHostKeysResult"},
545
+ "errors":[
546
+ {"shape":"ServiceException"},
547
+ {"shape":"InvalidInputException"},
548
+ {"shape":"NotFoundException"},
549
+ {"shape":"OperationFailureException"},
550
+ {"shape":"AccessDeniedException"},
551
+ {"shape":"AccountSetupInProgressException"},
552
+ {"shape":"UnauthenticatedException"}
553
+ ]
554
+ },
537
555
  "DeleteLoadBalancer":{
538
556
  "name":"DeleteLoadBalancer",
539
557
  "http":{
@@ -2454,6 +2472,19 @@
2454
2472
  "operation":{"shape":"Operation"}
2455
2473
  }
2456
2474
  },
2475
+ "DeleteKnownHostKeysRequest":{
2476
+ "type":"structure",
2477
+ "required":["instanceName"],
2478
+ "members":{
2479
+ "instanceName":{"shape":"ResourceName"}
2480
+ }
2481
+ },
2482
+ "DeleteKnownHostKeysResult":{
2483
+ "type":"structure",
2484
+ "members":{
2485
+ "operations":{"shape":"OperationList"}
2486
+ }
2487
+ },
2457
2488
  "DeleteLoadBalancerRequest":{
2458
2489
  "type":"structure",
2459
2490
  "required":["loadBalancerName"],
@@ -3405,6 +3436,22 @@
3405
3436
  "nextPageToken":{"shape":"string"}
3406
3437
  }
3407
3438
  },
3439
+ "HostKeyAttributes":{
3440
+ "type":"structure",
3441
+ "members":{
3442
+ "algorithm":{"shape":"string"},
3443
+ "publicKey":{"shape":"string"},
3444
+ "witnessedAt":{"shape":"IsoDate"},
3445
+ "fingerprintSHA1":{"shape":"string"},
3446
+ "fingerprintSHA256":{"shape":"string"},
3447
+ "notValidBefore":{"shape":"IsoDate"},
3448
+ "notValidAfter":{"shape":"IsoDate"}
3449
+ }
3450
+ },
3451
+ "HostKeysList":{
3452
+ "type":"list",
3453
+ "member":{"shape":"HostKeyAttributes"}
3454
+ },
3408
3455
  "ImportKeyPairRequest":{
3409
3456
  "type":"structure",
3410
3457
  "required":[
@@ -3457,7 +3504,8 @@
3457
3504
  "privateKey":{"shape":"string"},
3458
3505
  "protocol":{"shape":"InstanceAccessProtocol"},
3459
3506
  "instanceName":{"shape":"ResourceName"},
3460
- "username":{"shape":"string"}
3507
+ "username":{"shape":"string"},
3508
+ "hostKeys":{"shape":"HostKeysList"}
3461
3509
  }
3462
3510
  },
3463
3511
  "InstanceAccessProtocol":{
@@ -4061,6 +4109,7 @@
4061
4109
  "OperationType":{
4062
4110
  "type":"string",
4063
4111
  "enum":[
4112
+ "DeleteKnownHostKeys",
4064
4113
  "DeleteInstance",
4065
4114
  "CreateInstance",
4066
4115
  "StopInstance",
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.244'
2
+ VERSION = '2.11.245'
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.244
4
+ version: 2.11.245
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-20 00:00:00.000000000 Z
11
+ date: 2019-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath