aws-sdk-core 2.6.6 → 2.6.7
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 +4 -4
- data/apis/ecr/2015-09-21/api-2.json +71 -1
- data/apis/elasticache/2015-02-02/api-2.json +52 -7
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 028e18c0b15cd244ef559291075108f883c20345
|
|
4
|
+
data.tar.gz: 2eee48978e4baaf502e3fe8450a84757148a8d99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4170183fe1a3d77051e784ba00aee5acca29609c9517d57a923449ccbdaa1958b26e60912f97360296521c7db3d00f1804672f965ca300276f9c63489fb4215d
|
|
7
|
+
data.tar.gz: 2d650252a014909a905ddc245cb9e26ec6c520c163e5c8f63182433503b749196e5c5a41091b22485550c8985a1adffa34b82a70eebce8d751e4d62ca969def4
|
|
@@ -117,6 +117,21 @@
|
|
|
117
117
|
{"shape":"RepositoryPolicyNotFoundException"}
|
|
118
118
|
]
|
|
119
119
|
},
|
|
120
|
+
"DescribeImages":{
|
|
121
|
+
"name":"DescribeImages",
|
|
122
|
+
"http":{
|
|
123
|
+
"method":"POST",
|
|
124
|
+
"requestUri":"/"
|
|
125
|
+
},
|
|
126
|
+
"input":{"shape":"DescribeImagesRequest"},
|
|
127
|
+
"output":{"shape":"DescribeImagesResponse"},
|
|
128
|
+
"errors":[
|
|
129
|
+
{"shape":"ServerException"},
|
|
130
|
+
{"shape":"InvalidParameterException"},
|
|
131
|
+
{"shape":"RepositoryNotFoundException"},
|
|
132
|
+
{"shape":"ImageNotFoundException"}
|
|
133
|
+
]
|
|
134
|
+
},
|
|
120
135
|
"DescribeRepositories":{
|
|
121
136
|
"name":"DescribeRepositories",
|
|
122
137
|
"http":{
|
|
@@ -374,6 +389,7 @@
|
|
|
374
389
|
"repository":{"shape":"Repository"}
|
|
375
390
|
}
|
|
376
391
|
},
|
|
392
|
+
"CreationTimestamp":{"type":"timestamp"},
|
|
377
393
|
"DeleteRepositoryPolicyRequest":{
|
|
378
394
|
"type":"structure",
|
|
379
395
|
"required":["repositoryName"],
|
|
@@ -405,6 +421,31 @@
|
|
|
405
421
|
"repository":{"shape":"Repository"}
|
|
406
422
|
}
|
|
407
423
|
},
|
|
424
|
+
"DescribeImagesFilter":{
|
|
425
|
+
"type":"structure",
|
|
426
|
+
"members":{
|
|
427
|
+
"tagStatus":{"shape":"TagStatus"}
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"DescribeImagesRequest":{
|
|
431
|
+
"type":"structure",
|
|
432
|
+
"required":["repositoryName"],
|
|
433
|
+
"members":{
|
|
434
|
+
"registryId":{"shape":"RegistryId"},
|
|
435
|
+
"repositoryName":{"shape":"RepositoryName"},
|
|
436
|
+
"imageIds":{"shape":"ImageIdentifierList"},
|
|
437
|
+
"nextToken":{"shape":"NextToken"},
|
|
438
|
+
"maxResults":{"shape":"MaxResults"},
|
|
439
|
+
"filter":{"shape":"DescribeImagesFilter"}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"DescribeImagesResponse":{
|
|
443
|
+
"type":"structure",
|
|
444
|
+
"members":{
|
|
445
|
+
"imageDetails":{"shape":"ImageDetailList"},
|
|
446
|
+
"nextToken":{"shape":"NextToken"}
|
|
447
|
+
}
|
|
448
|
+
},
|
|
408
449
|
"DescribeRepositoriesRequest":{
|
|
409
450
|
"type":"structure",
|
|
410
451
|
"members":{
|
|
@@ -500,6 +541,21 @@
|
|
|
500
541
|
},
|
|
501
542
|
"exception":true
|
|
502
543
|
},
|
|
544
|
+
"ImageDetail":{
|
|
545
|
+
"type":"structure",
|
|
546
|
+
"members":{
|
|
547
|
+
"registryId":{"shape":"RegistryId"},
|
|
548
|
+
"repositoryName":{"shape":"RepositoryName"},
|
|
549
|
+
"imageDigest":{"shape":"ImageDigest"},
|
|
550
|
+
"imageTags":{"shape":"ImageTagList"},
|
|
551
|
+
"imageSizeInBytes":{"shape":"ImageSizeInBytes"},
|
|
552
|
+
"imagePushedAt":{"shape":"PushTimestamp"}
|
|
553
|
+
}
|
|
554
|
+
},
|
|
555
|
+
"ImageDetailList":{
|
|
556
|
+
"type":"list",
|
|
557
|
+
"member":{"shape":"ImageDetail"}
|
|
558
|
+
},
|
|
503
559
|
"ImageDigest":{"type":"string"},
|
|
504
560
|
"ImageFailure":{
|
|
505
561
|
"type":"structure",
|
|
@@ -542,7 +598,19 @@
|
|
|
542
598
|
"member":{"shape":"Image"}
|
|
543
599
|
},
|
|
544
600
|
"ImageManifest":{"type":"string"},
|
|
601
|
+
"ImageNotFoundException":{
|
|
602
|
+
"type":"structure",
|
|
603
|
+
"members":{
|
|
604
|
+
"message":{"shape":"ExceptionMessage"}
|
|
605
|
+
},
|
|
606
|
+
"exception":true
|
|
607
|
+
},
|
|
608
|
+
"ImageSizeInBytes":{"type":"long"},
|
|
545
609
|
"ImageTag":{"type":"string"},
|
|
610
|
+
"ImageTagList":{
|
|
611
|
+
"type":"list",
|
|
612
|
+
"member":{"shape":"ImageTag"}
|
|
613
|
+
},
|
|
546
614
|
"InitiateLayerUploadRequest":{
|
|
547
615
|
"type":"structure",
|
|
548
616
|
"required":["repositoryName"],
|
|
@@ -704,6 +772,7 @@
|
|
|
704
772
|
"min":0
|
|
705
773
|
},
|
|
706
774
|
"ProxyEndpoint":{"type":"string"},
|
|
775
|
+
"PushTimestamp":{"type":"timestamp"},
|
|
707
776
|
"PutImageRequest":{
|
|
708
777
|
"type":"structure",
|
|
709
778
|
"required":[
|
|
@@ -732,7 +801,8 @@
|
|
|
732
801
|
"repositoryArn":{"shape":"Arn"},
|
|
733
802
|
"registryId":{"shape":"RegistryId"},
|
|
734
803
|
"repositoryName":{"shape":"RepositoryName"},
|
|
735
|
-
"repositoryUri":{"shape":"Url"}
|
|
804
|
+
"repositoryUri":{"shape":"Url"},
|
|
805
|
+
"createdAt":{"shape":"CreationTimestamp"}
|
|
736
806
|
}
|
|
737
807
|
},
|
|
738
808
|
"RepositoryAlreadyExistsException":{
|
|
@@ -173,6 +173,7 @@
|
|
|
173
173
|
{"shape":"CacheParameterGroupNotFoundFault"},
|
|
174
174
|
{"shape":"InvalidVPCNetworkStateFault"},
|
|
175
175
|
{"shape":"TagQuotaPerResourceExceeded"},
|
|
176
|
+
{"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
|
|
176
177
|
{"shape":"InvalidParameterValueException"},
|
|
177
178
|
{"shape":"InvalidParameterCombinationException"}
|
|
178
179
|
]
|
|
@@ -191,7 +192,9 @@
|
|
|
191
192
|
"errors":[
|
|
192
193
|
{"shape":"SnapshotAlreadyExistsFault"},
|
|
193
194
|
{"shape":"CacheClusterNotFoundFault"},
|
|
195
|
+
{"shape":"ReplicationGroupNotFoundFault"},
|
|
194
196
|
{"shape":"InvalidCacheClusterStateFault"},
|
|
197
|
+
{"shape":"InvalidReplicationGroupStateFault"},
|
|
195
198
|
{"shape":"SnapshotQuotaExceededFault"},
|
|
196
199
|
{"shape":"SnapshotFeatureNotSupportedFault"},
|
|
197
200
|
{"shape":"InvalidParameterCombinationException"},
|
|
@@ -1329,6 +1332,9 @@
|
|
|
1329
1332
|
"AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
|
|
1330
1333
|
"NumCacheClusters":{"shape":"IntegerOptional"},
|
|
1331
1334
|
"PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
|
|
1335
|
+
"NumNodeGroups":{"shape":"IntegerOptional"},
|
|
1336
|
+
"ReplicasPerNodeGroup":{"shape":"IntegerOptional"},
|
|
1337
|
+
"NodeGroupConfiguration":{"shape":"NodeGroupConfigurationList"},
|
|
1332
1338
|
"CacheNodeType":{"shape":"String"},
|
|
1333
1339
|
"Engine":{"shape":"String"},
|
|
1334
1340
|
"EngineVersion":{"shape":"String"},
|
|
@@ -1355,11 +1361,9 @@
|
|
|
1355
1361
|
},
|
|
1356
1362
|
"CreateSnapshotMessage":{
|
|
1357
1363
|
"type":"structure",
|
|
1358
|
-
"required":[
|
|
1359
|
-
"CacheClusterId",
|
|
1360
|
-
"SnapshotName"
|
|
1361
|
-
],
|
|
1364
|
+
"required":["SnapshotName"],
|
|
1362
1365
|
"members":{
|
|
1366
|
+
"ReplicationGroupId":{"shape":"String"},
|
|
1363
1367
|
"CacheClusterId":{"shape":"String"},
|
|
1364
1368
|
"SnapshotName":{"shape":"String"}
|
|
1365
1369
|
}
|
|
@@ -1557,11 +1561,13 @@
|
|
|
1557
1561
|
"DescribeSnapshotsMessage":{
|
|
1558
1562
|
"type":"structure",
|
|
1559
1563
|
"members":{
|
|
1564
|
+
"ReplicationGroupId":{"shape":"String"},
|
|
1560
1565
|
"CacheClusterId":{"shape":"String"},
|
|
1561
1566
|
"SnapshotName":{"shape":"String"},
|
|
1562
1567
|
"SnapshotSource":{"shape":"String"},
|
|
1563
1568
|
"Marker":{"shape":"String"},
|
|
1564
|
-
"MaxRecords":{"shape":"IntegerOptional"}
|
|
1569
|
+
"MaxRecords":{"shape":"IntegerOptional"},
|
|
1570
|
+
"ShowNodeGroupConfig":{"shape":"BooleanOptional"}
|
|
1565
1571
|
}
|
|
1566
1572
|
},
|
|
1567
1573
|
"Double":{"type":"double"},
|
|
@@ -1853,9 +1859,26 @@
|
|
|
1853
1859
|
"NodeGroupId":{"shape":"String"},
|
|
1854
1860
|
"Status":{"shape":"String"},
|
|
1855
1861
|
"PrimaryEndpoint":{"shape":"Endpoint"},
|
|
1862
|
+
"Slots":{"shape":"String"},
|
|
1856
1863
|
"NodeGroupMembers":{"shape":"NodeGroupMemberList"}
|
|
1857
1864
|
}
|
|
1858
1865
|
},
|
|
1866
|
+
"NodeGroupConfiguration":{
|
|
1867
|
+
"type":"structure",
|
|
1868
|
+
"members":{
|
|
1869
|
+
"Slots":{"shape":"String"},
|
|
1870
|
+
"ReplicaCount":{"shape":"IntegerOptional"},
|
|
1871
|
+
"PrimaryAvailabilityZone":{"shape":"String"},
|
|
1872
|
+
"ReplicaAvailabilityZones":{"shape":"AvailabilityZonesList"}
|
|
1873
|
+
}
|
|
1874
|
+
},
|
|
1875
|
+
"NodeGroupConfigurationList":{
|
|
1876
|
+
"type":"list",
|
|
1877
|
+
"member":{
|
|
1878
|
+
"shape":"NodeGroupConfiguration",
|
|
1879
|
+
"locationName":"NodeGroupConfiguration"
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1859
1882
|
"NodeGroupList":{
|
|
1860
1883
|
"type":"list",
|
|
1861
1884
|
"member":{
|
|
@@ -1880,6 +1903,17 @@
|
|
|
1880
1903
|
"locationName":"NodeGroupMember"
|
|
1881
1904
|
}
|
|
1882
1905
|
},
|
|
1906
|
+
"NodeGroupsPerReplicationGroupQuotaExceededFault":{
|
|
1907
|
+
"type":"structure",
|
|
1908
|
+
"members":{
|
|
1909
|
+
},
|
|
1910
|
+
"error":{
|
|
1911
|
+
"code":"NodeGroupsPerReplicationGroupQuotaExceeded",
|
|
1912
|
+
"httpStatusCode":400,
|
|
1913
|
+
"senderFault":true
|
|
1914
|
+
},
|
|
1915
|
+
"exception":true
|
|
1916
|
+
},
|
|
1883
1917
|
"NodeQuotaForClusterExceededFault":{
|
|
1884
1918
|
"type":"structure",
|
|
1885
1919
|
"members":{
|
|
@@ -1905,7 +1939,10 @@
|
|
|
1905
1939
|
"NodeSnapshot":{
|
|
1906
1940
|
"type":"structure",
|
|
1907
1941
|
"members":{
|
|
1942
|
+
"CacheClusterId":{"shape":"String"},
|
|
1943
|
+
"NodeGroupId":{"shape":"String"},
|
|
1908
1944
|
"CacheNodeId":{"shape":"String"},
|
|
1945
|
+
"NodeGroupConfiguration":{"shape":"NodeGroupConfiguration"},
|
|
1909
1946
|
"CacheSize":{"shape":"String"},
|
|
1910
1947
|
"CacheNodeCreateTime":{"shape":"TStamp"},
|
|
1911
1948
|
"SnapshotCreateTime":{"shape":"TStamp"}
|
|
@@ -2056,7 +2093,10 @@
|
|
|
2056
2093
|
"MemberClusters":{"shape":"ClusterIdList"},
|
|
2057
2094
|
"NodeGroups":{"shape":"NodeGroupList"},
|
|
2058
2095
|
"SnapshottingClusterId":{"shape":"String"},
|
|
2059
|
-
"AutomaticFailover":{"shape":"AutomaticFailoverStatus"}
|
|
2096
|
+
"AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
|
|
2097
|
+
"ConfigurationEndpoint":{"shape":"Endpoint"},
|
|
2098
|
+
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
|
|
2099
|
+
"SnapshotWindow":{"shape":"String"}
|
|
2060
2100
|
},
|
|
2061
2101
|
"wrapper":true
|
|
2062
2102
|
},
|
|
@@ -2257,6 +2297,8 @@
|
|
|
2257
2297
|
"type":"structure",
|
|
2258
2298
|
"members":{
|
|
2259
2299
|
"SnapshotName":{"shape":"String"},
|
|
2300
|
+
"ReplicationGroupId":{"shape":"String"},
|
|
2301
|
+
"ReplicationGroupDescription":{"shape":"String"},
|
|
2260
2302
|
"CacheClusterId":{"shape":"String"},
|
|
2261
2303
|
"SnapshotStatus":{"shape":"String"},
|
|
2262
2304
|
"SnapshotSource":{"shape":"String"},
|
|
@@ -2275,6 +2317,8 @@
|
|
|
2275
2317
|
"AutoMinorVersionUpgrade":{"shape":"Boolean"},
|
|
2276
2318
|
"SnapshotRetentionLimit":{"shape":"IntegerOptional"},
|
|
2277
2319
|
"SnapshotWindow":{"shape":"String"},
|
|
2320
|
+
"NumNodeGroups":{"shape":"IntegerOptional"},
|
|
2321
|
+
"AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
|
|
2278
2322
|
"NodeSnapshots":{"shape":"NodeSnapshotList"}
|
|
2279
2323
|
},
|
|
2280
2324
|
"wrapper":true
|
|
@@ -2343,7 +2387,8 @@
|
|
|
2343
2387
|
"cache-cluster",
|
|
2344
2388
|
"cache-parameter-group",
|
|
2345
2389
|
"cache-security-group",
|
|
2346
|
-
"cache-subnet-group"
|
|
2390
|
+
"cache-subnet-group",
|
|
2391
|
+
"replication-group"
|
|
2347
2392
|
]
|
|
2348
2393
|
},
|
|
2349
2394
|
"String":{"type":"string"},
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.6.
|
|
4
|
+
version: 2.6.7
|
|
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: 2016-10-
|
|
11
|
+
date: 2016-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|