git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

iam-2010-05-08.waiters2.json (754B)


      1 {
      2   "version": 2,
      3   "waiters": {
      4     "InstanceProfileExists": {
      5       "delay": 1,
      6       "operation": "GetInstanceProfile",
      7       "maxAttempts": 40,
      8       "acceptors": [
      9         {
     10           "expected": 200,
     11           "matcher": "status",
     12           "state": "success"
     13         },
     14         {
     15           "state": "retry",
     16           "matcher": "status",
     17           "expected": 404
     18         }
     19       ]
     20     },
     21     "UserExists": {
     22       "delay": 1,
     23       "operation": "GetUser",
     24       "maxAttempts": 20,
     25       "acceptors": [
     26         {
     27           "state": "success",
     28           "matcher": "status",
     29           "expected": 200
     30         },
     31         {
     32           "state": "retry",
     33           "matcher": "error",
     34           "expected": "NoSuchEntity"
     35         }
     36       ]
     37     }
     38   }
     39 }