Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: generated/googleapis/lib/genomics/v1.dart

Issue 2281923002: Api-roll 41: 2016-08-26 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/drive/v2.dart ('k') | generated/googleapis/lib/identitytoolkit/v3.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/genomics/v1.dart
diff --git a/generated/googleapis/lib/genomics/v1.dart b/generated/googleapis/lib/genomics/v1.dart
index 0856bfd9a3ff0ed25eecc7ee75c0d68e7294ba6b..383cafc03fe8c60d9ec25406710aaa510283bd39 100644
--- a/generated/googleapis/lib/genomics/v1.dart
+++ b/generated/googleapis/lib/genomics/v1.dart
@@ -3079,6 +3079,16 @@ class BatchCreateAnnotationsRequest {
* request.
*/
core.List<Annotation> annotations;
+ /**
+ * A unique request ID which enables the server to detect duplicated requests.
+ * If provided, duplicated requests will result in the same response; if not
+ * provided, duplicated requests may result in duplicated data. For a given
+ * annotation set, callers should not reuse `request_id`s when writing
+ * different batches of annotations - behavior in this case is undefined. A
+ * common approach is to use a UUID. For batch jobs where worker crashes are a
+ * possibility, consider using some unique variant of a worker or run ID.
+ */
+ core.String requestId;
BatchCreateAnnotationsRequest();
@@ -3086,6 +3096,9 @@ class BatchCreateAnnotationsRequest {
if (_json.containsKey("annotations")) {
annotations = _json["annotations"].map((value) => new Annotation.fromJson(value)).toList();
}
+ if (_json.containsKey("requestId")) {
+ requestId = _json["requestId"];
+ }
}
core.Map toJson() {
@@ -3093,6 +3106,9 @@ class BatchCreateAnnotationsRequest {
if (annotations != null) {
_json["annotations"] = annotations.map((value) => (value).toJson()).toList();
}
+ if (requestId != null) {
+ _json["requestId"] = requestId;
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/drive/v2.dart ('k') | generated/googleapis/lib/identitytoolkit/v3.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698