aws-sdk-core 2.11.349 → 2.11.350

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "pagination": {
3
+ "ListJournalS3Exports": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
8
+ "ListJournalS3ExportsForLedger": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
13
+ "ListLedgers": {
14
+ "input_token": "NextToken",
15
+ "output_token": "NextToken",
16
+ "limit_key": "MaxResults"
17
+ }
18
+ }
19
+ }
@@ -1208,7 +1208,8 @@
1208
1208
  "simulationApplications":{"shape":"SimulationApplicationConfigs"},
1209
1209
  "dataSources":{"shape":"DataSources"},
1210
1210
  "tags":{"shape":"TagMap"},
1211
- "vpcConfig":{"shape":"VPCConfigResponse"}
1211
+ "vpcConfig":{"shape":"VPCConfigResponse"},
1212
+ "networkInterface":{"shape":"NetworkInterface"}
1212
1213
  }
1213
1214
  },
1214
1215
  "EnvironmentVariableKey":{
@@ -1321,7 +1322,8 @@
1321
1322
  "members":{
1322
1323
  "packageName":{"shape":"Command"},
1323
1324
  "launchFile":{"shape":"Command"},
1324
- "environmentVariables":{"shape":"EnvironmentVariableMap"}
1325
+ "environmentVariables":{"shape":"EnvironmentVariableMap"},
1326
+ "portForwardingConfig":{"shape":"PortForwardingConfig"}
1325
1327
  }
1326
1328
  },
1327
1329
  "LimitExceededException":{
@@ -1456,10 +1458,23 @@
1456
1458
  "min":1,
1457
1459
  "pattern":"[a-zA-Z0-9_\\-]*"
1458
1460
  },
1461
+ "NetworkInterface":{
1462
+ "type":"structure",
1463
+ "members":{
1464
+ "networkInterfaceId":{"shape":"GenericString"},
1465
+ "privateIpAddress":{"shape":"GenericString"},
1466
+ "publicIpAddress":{"shape":"GenericString"}
1467
+ }
1468
+ },
1459
1469
  "NonEmptyString":{
1460
1470
  "type":"string",
1461
1471
  "min":1
1462
1472
  },
1473
+ "NonSystemPort":{
1474
+ "type":"integer",
1475
+ "max":65535,
1476
+ "min":1024
1477
+ },
1463
1478
  "OutputLocation":{
1464
1479
  "type":"structure",
1465
1480
  "members":{
@@ -1488,6 +1503,35 @@
1488
1503
  "max":100,
1489
1504
  "min":1
1490
1505
  },
1506
+ "Port":{
1507
+ "type":"integer",
1508
+ "max":65535,
1509
+ "min":1
1510
+ },
1511
+ "PortForwardingConfig":{
1512
+ "type":"structure",
1513
+ "members":{
1514
+ "portMappings":{"shape":"PortMappingList"}
1515
+ }
1516
+ },
1517
+ "PortMapping":{
1518
+ "type":"structure",
1519
+ "required":[
1520
+ "jobPort",
1521
+ "applicationPort"
1522
+ ],
1523
+ "members":{
1524
+ "jobPort":{"shape":"Port"},
1525
+ "applicationPort":{"shape":"NonSystemPort"},
1526
+ "enableOnPublicIp":{"shape":"Boolean"}
1527
+ }
1528
+ },
1529
+ "PortMappingList":{
1530
+ "type":"list",
1531
+ "member":{"shape":"PortMapping"},
1532
+ "max":10,
1533
+ "min":0
1534
+ },
1491
1535
  "ProgressDetail":{
1492
1536
  "type":"structure",
1493
1537
  "members":{
@@ -1783,7 +1827,8 @@
1783
1827
  "simulationApplications":{"shape":"SimulationApplicationConfigs"},
1784
1828
  "dataSources":{"shape":"DataSources"},
1785
1829
  "tags":{"shape":"TagMap"},
1786
- "vpcConfig":{"shape":"VPCConfigResponse"}
1830
+ "vpcConfig":{"shape":"VPCConfigResponse"},
1831
+ "networkInterface":{"shape":"NetworkInterface"}
1787
1832
  }
1788
1833
  },
1789
1834
  "SimulationJobErrorCode":{
@@ -2362,6 +2362,15 @@
2362
2362
  "us-west-2" : { }
2363
2363
  }
2364
2364
  },
2365
+ "qldb" : {
2366
+ "endpoints" : {
2367
+ "ap-northeast-1" : { },
2368
+ "eu-west-1" : { },
2369
+ "us-east-1" : { },
2370
+ "us-east-2" : { },
2371
+ "us-west-2" : { }
2372
+ }
2373
+ },
2365
2374
  "ram" : {
2366
2375
  "endpoints" : {
2367
2376
  "ap-northeast-1" : { },
@@ -2979,6 +2988,15 @@
2979
2988
  "us-west-2" : { }
2980
2989
  }
2981
2990
  },
2991
+ "session.qldb" : {
2992
+ "endpoints" : {
2993
+ "ap-northeast-1" : { },
2994
+ "eu-west-1" : { },
2995
+ "us-east-1" : { },
2996
+ "us-east-2" : { },
2997
+ "us-west-2" : { }
2998
+ }
2999
+ },
2982
3000
  "shield" : {
2983
3001
  "defaults" : {
2984
3002
  "protocols" : [ "https" ],
@@ -165,6 +165,8 @@ module Aws
165
165
  PinpointSMSVoice
166
166
  Polly
167
167
  Pricing
168
+ QLDB
169
+ QLDBSession
168
170
  QuickSight
169
171
  RAM
170
172
  RDS
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:QLDB, {
2
+ api: "#{Aws::API_DIR}/qldb/2019-01-02/api-2.json",
3
+ docs: "#{Aws::API_DIR}/qldb/2019-01-02/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/qldb/2019-01-02/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/qldb/2019-01-02/paginators-1.json",
6
+ })
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:QLDBSession, {
2
+ api: "#{Aws::API_DIR}/qldb-session/2019-07-11/api-2.json",
3
+ docs: "#{Aws::API_DIR}/qldb-session/2019-07-11/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/qldb-session/2019-07-11/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/qldb-session/2019-07-11/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.349'
2
+ VERSION = '2.11.350'
3
3
  end
@@ -566,6 +566,14 @@
566
566
  "models": "pricing/2017-10-15",
567
567
  "endpoint": "api.pricing"
568
568
  },
569
+ "QLDB": {
570
+ "models": "qldb/2019-01-02",
571
+ "endpoint": "qldb"
572
+ },
573
+ "QLDBSession": {
574
+ "models": "qldb-session/2019-07-11",
575
+ "endpoint": "session.qldb"
576
+ },
569
577
  "QuickSight": {
570
578
  "models": "quicksight/2018-04-01",
571
579
  "endpoint": "quicksight"
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.349
4
+ version: 2.11.350
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-09-06 00:00:00.000000000 Z
11
+ date: 2019-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -526,6 +526,7 @@ files:
526
526
  - apis/marketplacecommerceanalytics/2015-07-01/api-2.json
527
527
  - apis/marketplacecommerceanalytics/2015-07-01/examples-1.json
528
528
  - apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json
529
+ - apis/marketplacecommerceanalytics/2015-07-01/smoke.json
529
530
  - apis/mediaconnect/2018-11-14/api-2.json
530
531
  - apis/mediaconnect/2018-11-14/paginators-1.json
531
532
  - apis/mediaconvert/2017-08-29/api-2.json
@@ -604,6 +605,12 @@ files:
604
605
  - apis/pricing/2017-10-15/api-2.json
605
606
  - apis/pricing/2017-10-15/examples-1.json
606
607
  - apis/pricing/2017-10-15/paginators-1.json
608
+ - apis/qldb-session/2019-07-11/api-2.json
609
+ - apis/qldb-session/2019-07-11/examples-1.json
610
+ - apis/qldb-session/2019-07-11/paginators-1.json
611
+ - apis/qldb/2019-01-02/api-2.json
612
+ - apis/qldb/2019-01-02/examples-1.json
613
+ - apis/qldb/2019-01-02/paginators-1.json
607
614
  - apis/quicksight/2018-04-01/api-2.json
608
615
  - apis/quicksight/2018-04-01/examples-1.json
609
616
  - apis/quicksight/2018-04-01/paginators-1.json
@@ -1053,6 +1060,8 @@ files:
1053
1060
  - lib/aws-sdk-core/polly.rb
1054
1061
  - lib/aws-sdk-core/polly/presigner.rb
1055
1062
  - lib/aws-sdk-core/pricing.rb
1063
+ - lib/aws-sdk-core/qldb.rb
1064
+ - lib/aws-sdk-core/qldbsession.rb
1056
1065
  - lib/aws-sdk-core/query/ec2_param_builder.rb
1057
1066
  - lib/aws-sdk-core/query/handler.rb
1058
1067
  - lib/aws-sdk-core/query/param.rb