aws-sdk-core 2.7.4 → 2.7.5

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: 16d349b6938717f0dd3949dd3a6eb25e74cff174
4
- data.tar.gz: 45e59efa5e75a417d2b530f56c6d258cf5b9e785
3
+ metadata.gz: a76712b6e9fa68dfa50f97e19dae89393eda0be4
4
+ data.tar.gz: ab5f338445ba693d9cfd26f3465da3df460c1883
5
5
  SHA512:
6
- metadata.gz: aa766fc54acd67c851a644c9d2ff6fb473c8975bbe5c5ad4d56391239653695c31e9d2581c85033d2c1d02228935525f9e0e3ef66785b99d98c7d9e7e6fa6bc3
7
- data.tar.gz: 642195c7987e3b4082a0094eb271db0f334ace4017e520ed8c53e9ac0afb399140305d9c065b00fcc600030fc441c5244e2622fb7ca2b969a22ddfc291c78575
6
+ metadata.gz: 25fecd17c12e76996b0529724a626932b5c25b99c83c840b7894b6995c7afe045753ebac3a76b742b47c9f0ff4052bf8965b4da380b52f960dceaa07f7ecc6e4
7
+ data.tar.gz: 2278add6260ebc7f2a88468d925c89bb182d0dd04cc645747e676cb1e68fbb602c19b555fef0a98fd898971cdf1812bf690196139530e2b4cab7c08903deb1a2
@@ -81,6 +81,15 @@
81
81
  },
82
82
  "input":{"shape":"AssociateDhcpOptionsRequest"}
83
83
  },
84
+ "AssociateIamInstanceProfile":{
85
+ "name":"AssociateIamInstanceProfile",
86
+ "http":{
87
+ "method":"POST",
88
+ "requestUri":"/"
89
+ },
90
+ "input":{"shape":"AssociateIamInstanceProfileRequest"},
91
+ "output":{"shape":"AssociateIamInstanceProfileResult"}
92
+ },
84
93
  "AssociateRouteTable":{
85
94
  "name":"AssociateRouteTable",
86
95
  "http":{
@@ -852,6 +861,15 @@
852
861
  "input":{"shape":"DescribeHostsRequest"},
853
862
  "output":{"shape":"DescribeHostsResult"}
854
863
  },
864
+ "DescribeIamInstanceProfileAssociations":{
865
+ "name":"DescribeIamInstanceProfileAssociations",
866
+ "http":{
867
+ "method":"POST",
868
+ "requestUri":"/"
869
+ },
870
+ "input":{"shape":"DescribeIamInstanceProfileAssociationsRequest"},
871
+ "output":{"shape":"DescribeIamInstanceProfileAssociationsResult"}
872
+ },
855
873
  "DescribeIdFormat":{
856
874
  "name":"DescribeIdFormat",
857
875
  "http":{
@@ -1387,6 +1405,15 @@
1387
1405
  },
1388
1406
  "input":{"shape":"DisassociateAddressRequest"}
1389
1407
  },
1408
+ "DisassociateIamInstanceProfile":{
1409
+ "name":"DisassociateIamInstanceProfile",
1410
+ "http":{
1411
+ "method":"POST",
1412
+ "requestUri":"/"
1413
+ },
1414
+ "input":{"shape":"DisassociateIamInstanceProfileRequest"},
1415
+ "output":{"shape":"DisassociateIamInstanceProfileResult"}
1416
+ },
1390
1417
  "DisassociateRouteTable":{
1391
1418
  "name":"DisassociateRouteTable",
1392
1419
  "http":{
@@ -1751,6 +1778,15 @@
1751
1778
  "input":{"shape":"ReleaseHostsRequest"},
1752
1779
  "output":{"shape":"ReleaseHostsResult"}
1753
1780
  },
1781
+ "ReplaceIamInstanceProfileAssociation":{
1782
+ "name":"ReplaceIamInstanceProfileAssociation",
1783
+ "http":{
1784
+ "method":"POST",
1785
+ "requestUri":"/"
1786
+ },
1787
+ "input":{"shape":"ReplaceIamInstanceProfileAssociationRequest"},
1788
+ "output":{"shape":"ReplaceIamInstanceProfileAssociationResult"}
1789
+ },
1754
1790
  "ReplaceNetworkAclAssociation":{
1755
1791
  "name":"ReplaceNetworkAclAssociation",
1756
1792
  "http":{
@@ -2323,6 +2359,26 @@
2323
2359
  "VpcId":{"shape":"String"}
2324
2360
  }
2325
2361
  },
2362
+ "AssociateIamInstanceProfileRequest":{
2363
+ "type":"structure",
2364
+ "required":[
2365
+ "IamInstanceProfile",
2366
+ "InstanceId"
2367
+ ],
2368
+ "members":{
2369
+ "IamInstanceProfile":{"shape":"IamInstanceProfileSpecification"},
2370
+ "InstanceId":{"shape":"String"}
2371
+ }
2372
+ },
2373
+ "AssociateIamInstanceProfileResult":{
2374
+ "type":"structure",
2375
+ "members":{
2376
+ "IamInstanceProfileAssociation":{
2377
+ "shape":"IamInstanceProfileAssociation",
2378
+ "locationName":"iamInstanceProfileAssociation"
2379
+ }
2380
+ }
2381
+ },
2326
2382
  "AssociateRouteTableRequest":{
2327
2383
  "type":"structure",
2328
2384
  "required":[
@@ -2410,6 +2466,13 @@
2410
2466
  }
2411
2467
  }
2412
2468
  },
2469
+ "AssociationIdList":{
2470
+ "type":"list",
2471
+ "member":{
2472
+ "shape":"String",
2473
+ "locationName":"AssociationId"
2474
+ }
2475
+ },
2413
2476
  "AttachClassicLinkVpcRequest":{
2414
2477
  "type":"structure",
2415
2478
  "required":[
@@ -4954,6 +5017,34 @@
4954
5017
  }
4955
5018
  }
4956
5019
  },
5020
+ "DescribeIamInstanceProfileAssociationsRequest":{
5021
+ "type":"structure",
5022
+ "members":{
5023
+ "AssociationIds":{
5024
+ "shape":"AssociationIdList",
5025
+ "locationName":"AssociationId"
5026
+ },
5027
+ "Filters":{
5028
+ "shape":"FilterList",
5029
+ "locationName":"Filter"
5030
+ },
5031
+ "MaxResults":{"shape":"MaxResults"},
5032
+ "NextToken":{"shape":"NextToken"}
5033
+ }
5034
+ },
5035
+ "DescribeIamInstanceProfileAssociationsResult":{
5036
+ "type":"structure",
5037
+ "members":{
5038
+ "IamInstanceProfileAssociations":{
5039
+ "shape":"IamInstanceProfileAssociationSet",
5040
+ "locationName":"iamInstanceProfileAssociationSet"
5041
+ },
5042
+ "NextToken":{
5043
+ "shape":"NextToken",
5044
+ "locationName":"nextToken"
5045
+ }
5046
+ }
5047
+ },
4957
5048
  "DescribeIdFormatRequest":{
4958
5049
  "type":"structure",
4959
5050
  "members":{
@@ -6712,6 +6803,22 @@
6712
6803
  "AssociationId":{"shape":"String"}
6713
6804
  }
6714
6805
  },
6806
+ "DisassociateIamInstanceProfileRequest":{
6807
+ "type":"structure",
6808
+ "required":["AssociationId"],
6809
+ "members":{
6810
+ "AssociationId":{"shape":"String"}
6811
+ }
6812
+ },
6813
+ "DisassociateIamInstanceProfileResult":{
6814
+ "type":"structure",
6815
+ "members":{
6816
+ "IamInstanceProfileAssociation":{
6817
+ "shape":"IamInstanceProfileAssociation",
6818
+ "locationName":"iamInstanceProfileAssociation"
6819
+ }
6820
+ }
6821
+ },
6715
6822
  "DisassociateRouteTableRequest":{
6716
6823
  "type":"structure",
6717
6824
  "required":["AssociationId"],
@@ -7709,6 +7816,47 @@
7709
7816
  }
7710
7817
  }
7711
7818
  },
7819
+ "IamInstanceProfileAssociation":{
7820
+ "type":"structure",
7821
+ "members":{
7822
+ "AssociationId":{
7823
+ "shape":"String",
7824
+ "locationName":"associationId"
7825
+ },
7826
+ "InstanceId":{
7827
+ "shape":"String",
7828
+ "locationName":"instanceId"
7829
+ },
7830
+ "IamInstanceProfile":{
7831
+ "shape":"IamInstanceProfile",
7832
+ "locationName":"iamInstanceProfile"
7833
+ },
7834
+ "State":{
7835
+ "shape":"IamInstanceProfileAssociationState",
7836
+ "locationName":"state"
7837
+ },
7838
+ "Timestamp":{
7839
+ "shape":"DateTime",
7840
+ "locationName":"timestamp"
7841
+ }
7842
+ }
7843
+ },
7844
+ "IamInstanceProfileAssociationSet":{
7845
+ "type":"list",
7846
+ "member":{
7847
+ "shape":"IamInstanceProfileAssociation",
7848
+ "locationName":"item"
7849
+ }
7850
+ },
7851
+ "IamInstanceProfileAssociationState":{
7852
+ "type":"string",
7853
+ "enum":[
7854
+ "associating",
7855
+ "associated",
7856
+ "disassociating",
7857
+ "disassociated"
7858
+ ]
7859
+ },
7712
7860
  "IamInstanceProfileSpecification":{
7713
7861
  "type":"structure",
7714
7862
  "members":{
@@ -11258,6 +11406,26 @@
11258
11406
  }
11259
11407
  }
11260
11408
  },
11409
+ "ReplaceIamInstanceProfileAssociationRequest":{
11410
+ "type":"structure",
11411
+ "required":[
11412
+ "IamInstanceProfile",
11413
+ "AssociationId"
11414
+ ],
11415
+ "members":{
11416
+ "IamInstanceProfile":{"shape":"IamInstanceProfileSpecification"},
11417
+ "AssociationId":{"shape":"String"}
11418
+ }
11419
+ },
11420
+ "ReplaceIamInstanceProfileAssociationResult":{
11421
+ "type":"structure",
11422
+ "members":{
11423
+ "IamInstanceProfileAssociation":{
11424
+ "shape":"IamInstanceProfileAssociation",
11425
+ "locationName":"iamInstanceProfileAssociation"
11426
+ }
11427
+ }
11428
+ },
11261
11429
  "ReplaceNetworkAclAssociationRequest":{
11262
11430
  "type":"structure",
11263
11431
  "required":[
@@ -288,7 +288,7 @@
288
288
  "acceptors": [
289
289
  {
290
290
  "expected": true,
291
- "matcher": "pathAll",
291
+ "matcher": "path",
292
292
  "state": "success",
293
293
  "argument": "length(KeyPairs[].KeyName) > `0`"
294
294
  },
@@ -220,6 +220,13 @@
220
220
  },
221
221
  "exception":true
222
222
  },
223
+ "AgeRange":{
224
+ "type":"structure",
225
+ "members":{
226
+ "Low":{"shape":"UInteger"},
227
+ "High":{"shape":"UInteger"}
228
+ }
229
+ },
223
230
  "Attribute":{
224
231
  "type":"string",
225
232
  "enum":[
@@ -440,6 +447,7 @@
440
447
  "type":"structure",
441
448
  "members":{
442
449
  "BoundingBox":{"shape":"BoundingBox"},
450
+ "AgeRange":{"shape":"AgeRange"},
443
451
  "Smile":{"shape":"Smile"},
444
452
  "Eyeglasses":{"shape":"Eyeglasses"},
445
453
  "Sunglasses":{"shape":"Sunglasses"},
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.7.4'
2
+ VERSION = '2.7.5'
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.7.4
4
+ version: 2.7.5
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: 2017-02-08 00:00:00.000000000 Z
11
+ date: 2017-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath