aws-sdk-core 2.11.94 → 2.11.95

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: ac3765ddcfe4bb82046adc89ea47e5a297d7e3f7
4
- data.tar.gz: ebd924b9a6b8bac27f5ce9d802ea7c775acb471b
3
+ metadata.gz: ce1376ad91c0125162676ae4f47471ae9e665941
4
+ data.tar.gz: 021ace5322f4228faba78fd1303e515929febae5
5
5
  SHA512:
6
- metadata.gz: 506c6156eab3de47b91d5f3a03f898a332a5e82f7a45991fb63f4698154a83e06dd3da75cd0822acbb1130f03582d0e94fc1f0f90c79d201c7c1f1dc76b1e7e9
7
- data.tar.gz: 7da7cf80f4606fee45c0de9e20ba454775ab79ab90d0b6c7b9cab1ae9441aea48db631b0f8a5ed39a220bce015bd4509d2cdda2529d7dbda43ebe45eee0af218
6
+ metadata.gz: ecac56d146479d96fcc47ee9f61b4fac832fd5f9bf1f41a2dc4c346cc3c8d8242e518ed43e14ee94872297b2f93b50ddc626013d9ec862fe60731ef072f5d85b
7
+ data.tar.gz: 94d373485f3493028c39904e9bd69a616f78165e6fce8d6799f64ba37ae89cdc8938f6d84027d8bf73bae3afbd38973f4a1f17e1dd817c0c71ec3be24920fb97
@@ -11656,6 +11656,24 @@
11656
11656
  "r4.4xlarge",
11657
11657
  "r4.8xlarge",
11658
11658
  "r4.16xlarge",
11659
+ "r5.large",
11660
+ "r5.xlarge",
11661
+ "r5.2xlarge",
11662
+ "r5.4xlarge",
11663
+ "r5.8xlarge",
11664
+ "r5.12xlarge",
11665
+ "r5.16xlarge",
11666
+ "r5.24xlarge",
11667
+ "r5.metal",
11668
+ "r5d.large",
11669
+ "r5d.xlarge",
11670
+ "r5d.2xlarge",
11671
+ "r5d.4xlarge",
11672
+ "r5d.8xlarge",
11673
+ "r5d.12xlarge",
11674
+ "r5d.16xlarge",
11675
+ "r5d.24xlarge",
11676
+ "r5d.metal",
11659
11677
  "x1.16xlarge",
11660
11678
  "x1.32xlarge",
11661
11679
  "x1e.xlarge",
@@ -11736,7 +11754,13 @@
11736
11754
  "h1.2xlarge",
11737
11755
  "h1.4xlarge",
11738
11756
  "h1.8xlarge",
11739
- "h1.16xlarge"
11757
+ "h1.16xlarge",
11758
+ "z1d.large",
11759
+ "z1d.xlarge",
11760
+ "z1d.2xlarge",
11761
+ "z1d.3xlarge",
11762
+ "z1d.6xlarge",
11763
+ "z1d.12xlarge"
11740
11764
  ]
11741
11765
  },
11742
11766
  "InstanceTypeList":{
@@ -679,6 +679,7 @@
679
679
  "members":{
680
680
  "name":{"shape":"String"},
681
681
  "image":{"shape":"String"},
682
+ "repositoryCredentials":{"shape":"RepositoryCredentials"},
682
683
  "cpu":{"shape":"Integer"},
683
684
  "memory":{"shape":"BoxedInteger"},
684
685
  "memoryReservation":{"shape":"BoxedInteger"},
@@ -1474,6 +1475,13 @@
1474
1475
  "taskDefinition":{"shape":"TaskDefinition"}
1475
1476
  }
1476
1477
  },
1478
+ "RepositoryCredentials":{
1479
+ "type":"structure",
1480
+ "required":["credentialsParameter"],
1481
+ "members":{
1482
+ "credentialsParameter":{"shape":"String"}
1483
+ }
1484
+ },
1477
1485
  "RequiresAttributes":{
1478
1486
  "type":"list",
1479
1487
  "member":{"shape":"Attribute"}
@@ -633,7 +633,9 @@
633
633
  "TargetGroupArn":{"shape":"TargetGroupArn"},
634
634
  "AuthenticateOidcConfig":{"shape":"AuthenticateOidcActionConfig"},
635
635
  "AuthenticateCognitoConfig":{"shape":"AuthenticateCognitoActionConfig"},
636
- "Order":{"shape":"ActionOrder"}
636
+ "Order":{"shape":"ActionOrder"},
637
+ "RedirectConfig":{"shape":"RedirectActionConfig"},
638
+ "FixedResponseConfig":{"shape":"FixedResponseActionConfig"}
637
639
  }
638
640
  },
639
641
  "ActionOrder":{
@@ -646,7 +648,9 @@
646
648
  "enum":[
647
649
  "forward",
648
650
  "authenticate-oidc",
649
- "authenticate-cognito"
651
+ "authenticate-cognito",
652
+ "redirect",
653
+ "fixed-response"
650
654
  ]
651
655
  },
652
656
  "Actions":{
@@ -1218,6 +1222,29 @@
1218
1222
  },
1219
1223
  "exception":true
1220
1224
  },
1225
+ "FixedResponseActionConfig":{
1226
+ "type":"structure",
1227
+ "required":["StatusCode"],
1228
+ "members":{
1229
+ "MessageBody":{"shape":"FixedResponseActionMessage"},
1230
+ "StatusCode":{"shape":"FixedResponseActionStatusCode"},
1231
+ "ContentType":{"shape":"FixedResponseActionContentType"}
1232
+ }
1233
+ },
1234
+ "FixedResponseActionContentType":{
1235
+ "type":"string",
1236
+ "max":32,
1237
+ "min":0
1238
+ },
1239
+ "FixedResponseActionMessage":{
1240
+ "type":"string",
1241
+ "max":1024,
1242
+ "min":0
1243
+ },
1244
+ "FixedResponseActionStatusCode":{
1245
+ "type":"string",
1246
+ "pattern":"^(2|4|5)\\d\\d$"
1247
+ },
1221
1248
  "HealthCheckIntervalSeconds":{
1222
1249
  "type":"integer",
1223
1250
  "max":300,
@@ -1625,6 +1652,45 @@
1625
1652
  "TCP"
1626
1653
  ]
1627
1654
  },
1655
+ "RedirectActionConfig":{
1656
+ "type":"structure",
1657
+ "required":["StatusCode"],
1658
+ "members":{
1659
+ "Protocol":{"shape":"RedirectActionProtocol"},
1660
+ "Port":{"shape":"RedirectActionPort"},
1661
+ "Host":{"shape":"RedirectActionHost"},
1662
+ "Path":{"shape":"RedirectActionPath"},
1663
+ "Query":{"shape":"RedirectActionQuery"},
1664
+ "StatusCode":{"shape":"RedirectActionStatusCodeEnum"}
1665
+ }
1666
+ },
1667
+ "RedirectActionHost":{
1668
+ "type":"string",
1669
+ "max":128,
1670
+ "min":1
1671
+ },
1672
+ "RedirectActionPath":{
1673
+ "type":"string",
1674
+ "max":128,
1675
+ "min":1
1676
+ },
1677
+ "RedirectActionPort":{"type":"string"},
1678
+ "RedirectActionProtocol":{
1679
+ "type":"string",
1680
+ "pattern":"^(HTTPS?|#\\{protocol\\})$"
1681
+ },
1682
+ "RedirectActionQuery":{
1683
+ "type":"string",
1684
+ "max":128,
1685
+ "min":0
1686
+ },
1687
+ "RedirectActionStatusCodeEnum":{
1688
+ "type":"string",
1689
+ "enum":[
1690
+ "HTTP_301",
1691
+ "HTTP_302"
1692
+ ]
1693
+ },
1628
1694
  "RegisterTargetsInput":{
1629
1695
  "type":"structure",
1630
1696
  "required":[
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "DescribeLoadBalancers",
7
+ "input": {},
8
+ "errorExpectedFromService": false
9
+ },
10
+ {
11
+ "operationName": "DescribeLoadBalancers",
12
+ "input": {
13
+ "LoadBalancerArns": [
14
+ "fake_load_balancer"
15
+ ]
16
+ },
17
+ "errorExpectedFromService": true
18
+ }
19
+ ]
20
+ }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.94'
2
+ VERSION = '2.11.95'
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.94
4
+ version: 2.11.95
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-07-24 00:00:00.000000000 Z
11
+ date: 2018-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -279,6 +279,7 @@ files:
279
279
  - apis/elasticloadbalancingv2/2015-12-01/api-2.json
280
280
  - apis/elasticloadbalancingv2/2015-12-01/examples-1.json
281
281
  - apis/elasticloadbalancingv2/2015-12-01/paginators-1.json
282
+ - apis/elasticloadbalancingv2/2015-12-01/smoke.json
282
283
  - apis/elasticloadbalancingv2/2015-12-01/waiters-2.json
283
284
  - apis/elasticmapreduce/2009-03-31/api-2.json
284
285
  - apis/elasticmapreduce/2009-03-31/examples-1.json