aws-sdk-core 2.1.20 → 2.1.21

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: 90b232f483d560b4aff69b5101dc897a1a828456
4
- data.tar.gz: 51b221f4e6d9e14916b1f40c80801387e0878901
3
+ metadata.gz: 7937e7acff5f5ad0fc15ab35fad9c340823d3d70
4
+ data.tar.gz: 287b8405d091d13d0d66acd3d9bf46953d10bf73
5
5
  SHA512:
6
- metadata.gz: 21bc311269143cb0c1ac743414c3236f8597e513cfa92787bc4f551d627e1bcbb13d27aa3f89d21653852ba92acd18f89066ba91f0a7b3c15b34c37f118281c0
7
- data.tar.gz: 0c7ae50ed8140ebcc10481e0eb1c5c1048aba521642dfb4246d37a6260f88b8ded26d5dfcfd2cbdd436361d4cf237efc5217868a4d022c47eb118ccc3c4ff754
6
+ metadata.gz: cd5e89f2326689b92be689e580745bd4b5281d4bc09fbf9cbe796432218d6b8761812121b38bbd7ef32bcd7f409e14e70bfa66c82721952f1463a9e181c52079
7
+ data.tar.gz: ca7c631b1e339568c3c9d483e3a1b75cb725d803e4f1f9c8446c70e6216ecf3333e1c51af85b431e4480eb4ad01a48480727320d1c521a58ed147ed188667b66
@@ -1786,6 +1786,13 @@
1786
1786
  "locationName":"AllocationId"
1787
1787
  }
1788
1788
  },
1789
+ "AllocationStrategy":{
1790
+ "type":"string",
1791
+ "enum":[
1792
+ "lowestPrice",
1793
+ "diversified"
1794
+ ]
1795
+ },
1789
1796
  "ArchitectureValues":{
1790
1797
  "type":"string",
1791
1798
  "enum":[
@@ -10253,6 +10260,10 @@
10253
10260
  "shape":"SnapshotState",
10254
10261
  "locationName":"status"
10255
10262
  },
10263
+ "StateMessage":{
10264
+ "shape":"String",
10265
+ "locationName":"statusMessage"
10266
+ },
10256
10267
  "StartTime":{
10257
10268
  "shape":"DateTime",
10258
10269
  "locationName":"startTime"
@@ -10288,6 +10299,10 @@
10288
10299
  "KmsKeyId":{
10289
10300
  "shape":"String",
10290
10301
  "locationName":"kmsKeyId"
10302
+ },
10303
+ "DataEncryptionKeyId":{
10304
+ "shape":"String",
10305
+ "locationName":"dataEncryptionKeyId"
10291
10306
  }
10292
10307
  }
10293
10308
  },
@@ -10591,6 +10606,10 @@
10591
10606
  "LaunchSpecifications":{
10592
10607
  "shape":"LaunchSpecsList",
10593
10608
  "locationName":"launchSpecifications"
10609
+ },
10610
+ "AllocationStrategy":{
10611
+ "shape":"AllocationStrategy",
10612
+ "locationName":"allocationStrategy"
10594
10613
  }
10595
10614
  }
10596
10615
  },
@@ -109,15 +109,7 @@
109
109
  }
110
110
  },
111
111
  "CreateTags": {
112
- "request": { "operation": "CreateTags" },
113
- "resource": {
114
- "type": "Tag",
115
- "identifiers": [
116
- { "target": "ResourceId", "source": "requestParameter", "path": "Resources[]" },
117
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
118
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
119
- ]
120
- }
112
+ "request": { "operation": "CreateTags" }
121
113
  },
122
114
  "CreateVolume": {
123
115
  "request": { "operation": "CreateVolume" },
@@ -310,6 +310,11 @@
310
310
  "shape":"FileSystemNotFound",
311
311
  "error":{"httpStatusCode":404},
312
312
  "exception":true
313
+ },
314
+ {
315
+ "shape":"MountTargetNotFound",
316
+ "error":{"httpStatusCode":404},
317
+ "exception":true
313
318
  }
314
319
  ]
315
320
  },
@@ -383,10 +388,7 @@
383
388
  }
384
389
  },
385
390
  "shapes":{
386
- "AwsAccountId":{
387
- "type":"string",
388
- "pattern":"[0-9]{12}"
389
- },
391
+ "AwsAccountId":{"type":"string"},
390
392
  "BadRequest":{
391
393
  "type":"structure",
392
394
  "required":["ErrorCode"],
@@ -537,7 +539,6 @@
537
539
  },
538
540
  "DescribeMountTargetsRequest":{
539
541
  "type":"structure",
540
- "required":["FileSystemId"],
541
542
  "members":{
542
543
  "MaxItems":{
543
544
  "shape":"MaxItems",
@@ -553,6 +554,11 @@
553
554
  "shape":"FileSystemId",
554
555
  "location":"querystring",
555
556
  "locationName":"FileSystemId"
557
+ },
558
+ "MountTargetId":{
559
+ "shape":"MountTargetId",
560
+ "location":"querystring",
561
+ "locationName":"MountTargetId"
556
562
  }
557
563
  }
558
564
  },
@@ -639,10 +645,7 @@
639
645
  "type":"list",
640
646
  "member":{"shape":"FileSystemDescription"}
641
647
  },
642
- "FileSystemId":{
643
- "type":"string",
644
- "pattern":"fs-[0-9a-f]{8}"
645
- },
648
+ "FileSystemId":{"type":"string"},
646
649
  "FileSystemInUse":{
647
650
  "type":"structure",
648
651
  "required":["ErrorCode"],
@@ -715,10 +718,7 @@
715
718
  "error":{"httpStatusCode":500},
716
719
  "exception":true
717
720
  },
718
- "IpAddress":{
719
- "type":"string",
720
- "pattern":"[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}"
721
- },
721
+ "IpAddress":{"type":"string"},
722
722
  "IpAddressInUse":{
723
723
  "type":"structure",
724
724
  "required":["ErrorCode"],
@@ -791,10 +791,7 @@
791
791
  "type":"list",
792
792
  "member":{"shape":"MountTargetDescription"}
793
793
  },
794
- "MountTargetId":{
795
- "type":"string",
796
- "pattern":"fsmt-[0-9a-f]{8}"
797
- },
794
+ "MountTargetId":{"type":"string"},
798
795
  "MountTargetNotFound":{
799
796
  "type":"structure",
800
797
  "required":["ErrorCode"],
@@ -805,10 +802,7 @@
805
802
  "error":{"httpStatusCode":404},
806
803
  "exception":true
807
804
  },
808
- "NetworkInterfaceId":{
809
- "type":"string",
810
- "pattern":"eni-[0-9a-f]{8}"
811
- },
805
+ "NetworkInterfaceId":{"type":"string"},
812
806
  "NetworkInterfaceLimitExceeded":{
813
807
  "type":"structure",
814
808
  "required":["ErrorCode"],
@@ -829,10 +823,7 @@
829
823
  "error":{"httpStatusCode":409},
830
824
  "exception":true
831
825
  },
832
- "SecurityGroup":{
833
- "type":"string",
834
- "pattern":"sg-[0-9a-f]{8}"
835
- },
826
+ "SecurityGroup":{"type":"string"},
836
827
  "SecurityGroupLimitExceeded":{
837
828
  "type":"structure",
838
829
  "required":["ErrorCode"],
@@ -858,10 +849,7 @@
858
849
  "member":{"shape":"SecurityGroup"},
859
850
  "max":5
860
851
  },
861
- "SubnetId":{
862
- "type":"string",
863
- "pattern":"subnet-[0-9a-f]{8}"
864
- },
852
+ "SubnetId":{"type":"string"},
865
853
  "SubnetNotFound":{
866
854
  "type":"structure",
867
855
  "required":["ErrorCode"],
@@ -886,8 +874,7 @@
886
874
  "TagKey":{
887
875
  "type":"string",
888
876
  "min":1,
889
- "max":128,
890
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
877
+ "max":128
891
878
  },
892
879
  "TagKeys":{
893
880
  "type":"list",
@@ -895,8 +882,7 @@
895
882
  },
896
883
  "TagValue":{
897
884
  "type":"string",
898
- "max":256,
899
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
885
+ "max":256
900
886
  },
901
887
  "Tags":{
902
888
  "type":"list",
@@ -962,6 +962,14 @@
962
962
  "type":"list",
963
963
  "member":{"shape":"IPAddressCidr"}
964
964
  },
965
+ "ChildHealthCheckList":{
966
+ "type":"list",
967
+ "member":{
968
+ "shape":"HealthCheckId",
969
+ "locationName":"ChildHealthCheck"
970
+ },
971
+ "max":256
972
+ },
965
973
  "ConflictingDomainExists":{
966
974
  "type":"structure",
967
975
  "members":{
@@ -1469,7 +1477,11 @@
1469
1477
  "FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
1470
1478
  "SearchString":{"shape":"SearchString"},
1471
1479
  "RequestInterval":{"shape":"RequestInterval"},
1472
- "FailureThreshold":{"shape":"FailureThreshold"}
1480
+ "FailureThreshold":{"shape":"FailureThreshold"},
1481
+ "MeasureLatency":{"shape":"MeasureLatency"},
1482
+ "Inverted":{"shape":"Inverted"},
1483
+ "HealthThreshold":{"shape":"HealthThreshold"},
1484
+ "ChildHealthChecks":{"shape":"ChildHealthCheckList"}
1473
1485
  }
1474
1486
  },
1475
1487
  "HealthCheckCount":{"type":"long"},
@@ -1511,7 +1523,8 @@
1511
1523
  "HTTPS",
1512
1524
  "HTTP_STR_MATCH",
1513
1525
  "HTTPS_STR_MATCH",
1514
- "TCP"
1526
+ "TCP",
1527
+ "CALCULATED"
1515
1528
  ]
1516
1529
  },
1517
1530
  "HealthCheckVersion":{
@@ -1533,6 +1546,11 @@
1533
1546
  "locationName":"HealthCheck"
1534
1547
  }
1535
1548
  },
1549
+ "HealthThreshold":{
1550
+ "type":"integer",
1551
+ "min":0,
1552
+ "max":256
1553
+ },
1536
1554
  "HostedZone":{
1537
1555
  "type":"structure",
1538
1556
  "required":[
@@ -1639,6 +1657,7 @@
1639
1657
  "error":{"httpStatusCode":400},
1640
1658
  "exception":true
1641
1659
  },
1660
+ "Inverted":{"type":"boolean"},
1642
1661
  "IsPrivateZone":{"type":"boolean"},
1643
1662
  "LastVPCAssociation":{
1644
1663
  "type":"structure",
@@ -1926,6 +1945,7 @@
1926
1945
  "ResourceTagSets":{"shape":"ResourceTagSetList"}
1927
1946
  }
1928
1947
  },
1948
+ "MeasureLatency":{"type":"boolean"},
1929
1949
  "NoSuchChange":{
1930
1950
  "type":"structure",
1931
1951
  "members":{
@@ -2237,7 +2257,10 @@
2237
2257
  "ResourcePath":{"shape":"ResourcePath"},
2238
2258
  "FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
2239
2259
  "SearchString":{"shape":"SearchString"},
2240
- "FailureThreshold":{"shape":"FailureThreshold"}
2260
+ "FailureThreshold":{"shape":"FailureThreshold"},
2261
+ "Inverted":{"shape":"Inverted"},
2262
+ "HealthThreshold":{"shape":"HealthThreshold"},
2263
+ "ChildHealthChecks":{"shape":"ChildHealthCheckList"}
2241
2264
  }
2242
2265
  },
2243
2266
  "UpdateHealthCheckResponse":{
@@ -124,10 +124,7 @@ module Aws
124
124
  if bucket = params[:bucket]
125
125
  bucket = bucket.value
126
126
  ssl = endpoint.scheme == 'https'
127
- if Plugins::S3BucketDns.dns_compatible?(bucket, ssl) &&
128
- !@force_path_style &&
129
- !endpoint.path.match(/^\/#{Regexp.escape(bucket)}/)
130
- then
127
+ if Plugins::S3BucketDns.dns_compatible?(bucket, ssl) && !@force_path_style
131
128
  parts << "/#{bucket}"
132
129
  end
133
130
  end
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.1.20'
2
+ VERSION = '2.1.21'
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.1.20
4
+ version: 2.1.21
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: 2015-09-10 00:00:00.000000000 Z
11
+ date: 2015-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -404,7 +404,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
404
404
  version: '0'
405
405
  requirements: []
406
406
  rubyforge_project:
407
- rubygems_version: 2.4.6
407
+ rubygems_version: 2.5.0
408
408
  signing_key:
409
409
  specification_version: 4
410
410
  summary: AWS SDK for Ruby - Core