aws-sdk 2.1434.0 → 2.1436.0

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.
@@ -6,6 +6,12 @@
6
6
  "limit_key": "maxResults",
7
7
  "result_key": "annotationImportJobs"
8
8
  },
9
+ "ListAnnotationStoreVersions": {
10
+ "input_token": "nextToken",
11
+ "output_token": "nextToken",
12
+ "limit_key": "maxResults",
13
+ "result_key": "annotationStoreVersions"
14
+ },
9
15
  "ListAnnotationStores": {
10
16
  "input_token": "nextToken",
11
17
  "output_token": "nextToken",
@@ -90,6 +96,12 @@
90
96
  "limit_key": "maxResults",
91
97
  "result_key": "sequenceStores"
92
98
  },
99
+ "ListShares": {
100
+ "input_token": "nextToken",
101
+ "output_token": "nextToken",
102
+ "limit_key": "maxResults",
103
+ "result_key": "shares"
104
+ },
93
105
  "ListVariantImportJobs": {
94
106
  "input_token": "nextToken",
95
107
  "output_token": "nextToken",
@@ -81,6 +81,54 @@
81
81
  "expected" : "DELETING"
82
82
  } ]
83
83
  },
84
+ "AnnotationStoreVersionCreated" : {
85
+ "description" : "Wait until an annotation store version is created",
86
+ "delay" : 30,
87
+ "maxAttempts" : 20,
88
+ "operation" : "GetAnnotationStoreVersion",
89
+ "acceptors" : [ {
90
+ "matcher" : "path",
91
+ "argument" : "status",
92
+ "state" : "success",
93
+ "expected" : "ACTIVE"
94
+ }, {
95
+ "matcher" : "path",
96
+ "argument" : "status",
97
+ "state" : "retry",
98
+ "expected" : "CREATING"
99
+ }, {
100
+ "matcher" : "path",
101
+ "argument" : "status",
102
+ "state" : "retry",
103
+ "expected" : "UPDATING"
104
+ }, {
105
+ "matcher" : "path",
106
+ "argument" : "status",
107
+ "state" : "failure",
108
+ "expected" : "FAILED"
109
+ } ]
110
+ },
111
+ "AnnotationStoreVersionDeleted" : {
112
+ "description" : "Wait until an annotation store version is deleted.",
113
+ "delay" : 30,
114
+ "maxAttempts" : 20,
115
+ "operation" : "GetAnnotationStoreVersion",
116
+ "acceptors" : [ {
117
+ "matcher" : "path",
118
+ "argument" : "status",
119
+ "state" : "success",
120
+ "expected" : "DELETED"
121
+ }, {
122
+ "matcher" : "error",
123
+ "state" : "success",
124
+ "expected" : "ResourceNotFoundException"
125
+ }, {
126
+ "matcher" : "path",
127
+ "argument" : "status",
128
+ "state" : "retry",
129
+ "expected" : "DELETING"
130
+ } ]
131
+ },
84
132
  "ReadSetActivationJobCompleted" : {
85
133
  "description" : "Wait until a job is completed.",
86
134
  "delay" : 30,