aws-sdk-core 2.11.68 → 2.11.69

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: 796dc6d9dd0980376f6207c5282bc230044a67ad
4
- data.tar.gz: 111f72e7a3d811f51a16a889bb1066743b1ca27e
3
+ metadata.gz: 82231fc91c9033975ecb1b5ef43c4d7700e02dbc
4
+ data.tar.gz: 70aea09298077a9c79a6a49c856cb54a4e112450
5
5
  SHA512:
6
- metadata.gz: c68a9bfe015a28be8f5d7599d948d1e9a9d560295fbafdf0f1f19c334491ac5769e31e584d3dd64fcafbc2b4ec65dc8b733891d7f5a01abf955a9f1b3cfe56d1
7
- data.tar.gz: 74c452219dacea2887b5554d3e2c7be0bf56f61e4ce078832f76f0b9105c131f879c52e697b5e5f7030afefbb4e8c3b1d826f195e756d30ea383cfd8cd7fe1af
6
+ metadata.gz: dd97e2cf10850ef29fc0db83010f3a87b11bae1e397f4dd7e03e0c7b4db2f7549e15cb07dfa94104eecd68ab970bb07adf4559aa1bf2aa54748bd90a7a382aec
7
+ data.tar.gz: 238c33f5395940824474d4f4669517183862930a44616021def83afa934eb70b43476e83af54e5a0a65dbde450318fd61df52936f9f88876eba6a05798ac4bad
@@ -2858,7 +2858,8 @@
2858
2858
  "type":"string",
2859
2859
  "enum":[
2860
2860
  "REGIONAL",
2861
- "EDGE"
2861
+ "EDGE",
2862
+ "PRIVATE"
2862
2863
  ]
2863
2864
  },
2864
2865
  "ExportResponse":{
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "GetDomainNames",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "CreateUsagePlanKey",
12
+ "input": {
13
+ "usagePlanId": "foo",
14
+ "keyId": "bar",
15
+ "keyType": "fixx"
16
+ },
17
+ "errorExpectedFromService": true
18
+ }
19
+ ]
20
+ }
@@ -1290,6 +1290,7 @@
1290
1290
  "type":"list",
1291
1291
  "member":{"shape":"AttributeMap"}
1292
1292
  },
1293
+ "KMSMasterKeyArn":{"type":"string"},
1293
1294
  "Key":{
1294
1295
  "type":"map",
1295
1296
  "key":{"shape":"AttributeName"},
@@ -1855,7 +1856,9 @@
1855
1856
  "SSEDescription":{
1856
1857
  "type":"structure",
1857
1858
  "members":{
1858
- "Status":{"shape":"SSEStatus"}
1859
+ "Status":{"shape":"SSEStatus"},
1860
+ "SSEType":{"shape":"SSEType"},
1861
+ "KMSMasterKeyArn":{"shape":"KMSMasterKeyArn"}
1859
1862
  }
1860
1863
  },
1861
1864
  "SSEEnabled":{"type":"boolean"},
@@ -1875,6 +1878,13 @@
1875
1878
  "DISABLED"
1876
1879
  ]
1877
1880
  },
1881
+ "SSEType":{
1882
+ "type":"string",
1883
+ "enum":[
1884
+ "AES256",
1885
+ "KMS"
1886
+ ]
1887
+ },
1878
1888
  "ScalarAttributeType":{
1879
1889
  "type":"string",
1880
1890
  "enum":[
@@ -367,6 +367,23 @@
367
367
  {"shape":"ThrottlingException"}
368
368
  ]
369
369
  },
370
+ "ListTagsForResource":{
371
+ "name":"ListTagsForResource",
372
+ "http":{
373
+ "method":"GET",
374
+ "requestUri":"/tags"
375
+ },
376
+ "input":{"shape":"ListTagsForResourceRequest"},
377
+ "output":{"shape":"ListTagsForResourceResponse"},
378
+ "errors":[
379
+ {"shape":"InvalidRequestException"},
380
+ {"shape":"InternalFailureException"},
381
+ {"shape":"ServiceUnavailableException"},
382
+ {"shape":"ThrottlingException"},
383
+ {"shape":"LimitExceededException"},
384
+ {"shape":"ResourceNotFoundException"}
385
+ ]
386
+ },
370
387
  "PutLoggingOptions":{
371
388
  "name":"PutLoggingOptions",
372
389
  "http":{
@@ -429,6 +446,42 @@
429
446
  {"shape":"ThrottlingException"}
430
447
  ]
431
448
  },
449
+ "TagResource":{
450
+ "name":"TagResource",
451
+ "http":{
452
+ "method":"POST",
453
+ "requestUri":"/tags",
454
+ "responseCode":204
455
+ },
456
+ "input":{"shape":"TagResourceRequest"},
457
+ "output":{"shape":"TagResourceResponse"},
458
+ "errors":[
459
+ {"shape":"InvalidRequestException"},
460
+ {"shape":"InternalFailureException"},
461
+ {"shape":"ServiceUnavailableException"},
462
+ {"shape":"ThrottlingException"},
463
+ {"shape":"LimitExceededException"},
464
+ {"shape":"ResourceNotFoundException"}
465
+ ]
466
+ },
467
+ "UntagResource":{
468
+ "name":"UntagResource",
469
+ "http":{
470
+ "method":"DELETE",
471
+ "requestUri":"/tags",
472
+ "responseCode":204
473
+ },
474
+ "input":{"shape":"UntagResourceRequest"},
475
+ "output":{"shape":"UntagResourceResponse"},
476
+ "errors":[
477
+ {"shape":"InvalidRequestException"},
478
+ {"shape":"InternalFailureException"},
479
+ {"shape":"ServiceUnavailableException"},
480
+ {"shape":"ThrottlingException"},
481
+ {"shape":"LimitExceededException"},
482
+ {"shape":"ResourceNotFoundException"}
483
+ ]
484
+ },
432
485
  "UpdateChannel":{
433
486
  "name":"UpdateChannel",
434
487
  "http":{
@@ -641,7 +694,8 @@
641
694
  "required":["channelName"],
642
695
  "members":{
643
696
  "channelName":{"shape":"ChannelName"},
644
- "retentionPeriod":{"shape":"RetentionPeriod"}
697
+ "retentionPeriod":{"shape":"RetentionPeriod"},
698
+ "tags":{"shape":"TagList"}
645
699
  }
646
700
  },
647
701
  "CreateChannelResponse":{
@@ -672,7 +726,8 @@
672
726
  "members":{
673
727
  "datasetName":{"shape":"DatasetName"},
674
728
  "actions":{"shape":"DatasetActions"},
675
- "triggers":{"shape":"DatasetTriggers"}
729
+ "triggers":{"shape":"DatasetTriggers"},
730
+ "tags":{"shape":"TagList"}
676
731
  }
677
732
  },
678
733
  "CreateDatasetResponse":{
@@ -687,7 +742,8 @@
687
742
  "required":["datastoreName"],
688
743
  "members":{
689
744
  "datastoreName":{"shape":"DatastoreName"},
690
- "retentionPeriod":{"shape":"RetentionPeriod"}
745
+ "retentionPeriod":{"shape":"RetentionPeriod"},
746
+ "tags":{"shape":"TagList"}
691
747
  }
692
748
  },
693
749
  "CreateDatastoreResponse":{
@@ -706,7 +762,8 @@
706
762
  ],
707
763
  "members":{
708
764
  "pipelineName":{"shape":"PipelineName"},
709
- "pipelineActivities":{"shape":"PipelineActivities"}
765
+ "pipelineActivities":{"shape":"PipelineActivities"},
766
+ "tags":{"shape":"TagList"}
710
767
  }
711
768
  },
712
769
  "CreatePipelineResponse":{
@@ -1213,6 +1270,23 @@
1213
1270
  "nextToken":{"shape":"NextToken"}
1214
1271
  }
1215
1272
  },
1273
+ "ListTagsForResourceRequest":{
1274
+ "type":"structure",
1275
+ "required":["resourceArn"],
1276
+ "members":{
1277
+ "resourceArn":{
1278
+ "shape":"ResourceArn",
1279
+ "location":"querystring",
1280
+ "locationName":"resourceArn"
1281
+ }
1282
+ }
1283
+ },
1284
+ "ListTagsForResourceResponse":{
1285
+ "type":"structure",
1286
+ "members":{
1287
+ "tags":{"shape":"TagList"}
1288
+ }
1289
+ },
1216
1290
  "LogResult":{"type":"string"},
1217
1291
  "LoggingEnabled":{"type":"boolean"},
1218
1292
  "LoggingLevel":{
@@ -1394,6 +1468,11 @@
1394
1468
  "error":{"httpStatusCode":409},
1395
1469
  "exception":true
1396
1470
  },
1471
+ "ResourceArn":{
1472
+ "type":"string",
1473
+ "max":2048,
1474
+ "min":20
1475
+ },
1397
1476
  "ResourceNotFoundException":{
1398
1477
  "type":"structure",
1399
1478
  "members":{
@@ -1524,6 +1603,59 @@
1524
1603
  }
1525
1604
  },
1526
1605
  "StartTime":{"type":"timestamp"},
1606
+ "Tag":{
1607
+ "type":"structure",
1608
+ "required":[
1609
+ "key",
1610
+ "value"
1611
+ ],
1612
+ "members":{
1613
+ "key":{"shape":"TagKey"},
1614
+ "value":{"shape":"TagValue"}
1615
+ }
1616
+ },
1617
+ "TagKey":{
1618
+ "type":"string",
1619
+ "max":256,
1620
+ "min":1
1621
+ },
1622
+ "TagKeyList":{
1623
+ "type":"list",
1624
+ "member":{"shape":"TagKey"},
1625
+ "max":50,
1626
+ "min":1
1627
+ },
1628
+ "TagList":{
1629
+ "type":"list",
1630
+ "member":{"shape":"Tag"},
1631
+ "max":50,
1632
+ "min":1
1633
+ },
1634
+ "TagResourceRequest":{
1635
+ "type":"structure",
1636
+ "required":[
1637
+ "resourceArn",
1638
+ "tags"
1639
+ ],
1640
+ "members":{
1641
+ "resourceArn":{
1642
+ "shape":"ResourceArn",
1643
+ "location":"querystring",
1644
+ "locationName":"resourceArn"
1645
+ },
1646
+ "tags":{"shape":"TagList"}
1647
+ }
1648
+ },
1649
+ "TagResourceResponse":{
1650
+ "type":"structure",
1651
+ "members":{
1652
+ }
1653
+ },
1654
+ "TagValue":{
1655
+ "type":"string",
1656
+ "max":256,
1657
+ "min":1
1658
+ },
1527
1659
  "ThrottlingException":{
1528
1660
  "type":"structure",
1529
1661
  "members":{
@@ -1534,6 +1666,30 @@
1534
1666
  },
1535
1667
  "Timestamp":{"type":"timestamp"},
1536
1668
  "UnlimitedRetentionPeriod":{"type":"boolean"},
1669
+ "UntagResourceRequest":{
1670
+ "type":"structure",
1671
+ "required":[
1672
+ "resourceArn",
1673
+ "tagKeys"
1674
+ ],
1675
+ "members":{
1676
+ "resourceArn":{
1677
+ "shape":"ResourceArn",
1678
+ "location":"querystring",
1679
+ "locationName":"resourceArn"
1680
+ },
1681
+ "tagKeys":{
1682
+ "shape":"TagKeyList",
1683
+ "location":"querystring",
1684
+ "locationName":"tagKeys"
1685
+ }
1686
+ }
1687
+ },
1688
+ "UntagResourceResponse":{
1689
+ "type":"structure",
1690
+ "members":{
1691
+ }
1692
+ },
1537
1693
  "UpdateChannelRequest":{
1538
1694
  "type":"structure",
1539
1695
  "required":["channelName"],
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.68'
2
+ VERSION = '2.11.69'
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.68
4
+ version: 2.11.69
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: 2018-06-13 00:00:00.000000000 Z
11
+ date: 2018-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -62,6 +62,7 @@ files:
62
62
  - apis/apigateway/2015-07-09/api-2.json
63
63
  - apis/apigateway/2015-07-09/examples-1.json
64
64
  - apis/apigateway/2015-07-09/paginators-1.json
65
+ - apis/apigateway/2015-07-09/smoke.json
65
66
  - apis/application-autoscaling/2016-02-06/api-2.json
66
67
  - apis/application-autoscaling/2016-02-06/examples-1.json
67
68
  - apis/application-autoscaling/2016-02-06/paginators-1.json