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

Unified Diff: generated/googleapis/lib/servicecontrol/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
Index: generated/googleapis/lib/servicecontrol/v1.dart
diff --git a/generated/googleapis/lib/servicecontrol/v1.dart b/generated/googleapis/lib/servicecontrol/v1.dart
index 63e53f3d203767f2b8bba0a0968757ee30fe5bd5..62761f4d76ad1c346dace0e43cc75373c4453917 100644
--- a/generated/googleapis/lib/servicecontrol/v1.dart
+++ b/generated/googleapis/lib/servicecontrol/v1.dart
@@ -14,7 +14,10 @@ export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
const core.String USER_AGENT = 'dart-api-client servicecontrol/v1';
-/** The Service Control API */
+/**
+ * Google Service Control provides control plane functionality to managed
+ * services, such as logging, monitoring, and status checks.
+ */
class ServicecontrolApi {
/** View and manage your data across Google Cloud Platform services */
static const CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform";
@@ -256,6 +259,8 @@ class CheckResponse {
* Used for logging and diagnostics purposes.
*/
core.String operationId;
+ /** The actual config id used to process the request. */
+ core.String serviceConfigId;
CheckResponse();
@@ -266,6 +271,9 @@ class CheckResponse {
if (_json.containsKey("operationId")) {
operationId = _json["operationId"];
}
+ if (_json.containsKey("serviceConfigId")) {
+ serviceConfigId = _json["serviceConfigId"];
+ }
}
core.Map toJson() {
@@ -276,6 +284,9 @@ class CheckResponse {
if (operationId != null) {
_json["operationId"] = operationId;
}
+ if (serviceConfigId != null) {
+ _json["serviceConfigId"] = serviceConfigId;
+ }
return _json;
}
}
@@ -798,18 +809,13 @@ class Operation {
*/
core.String endTime;
/**
- * The importance of the data contained in the operation.
+ * DO NOT USE. This is an experimental field.
* Possible string values are:
- * - "LOW" : The operation doesn't contain significant monetary value or audit
- * trail. The API implementation may cache and aggregate the data.
- * There is no deduplication based on `operation_id`. The data
- * may be lost when rare and unexpected system failures occur.
- * - "HIGH" : The operation contains significant monetary value or audit
- * trail.
- * The API implementation doesn't cache and aggregate the data.
- * Deduplication based on `operation_id` is performed for monetary
- * values. If the method returns successfully, it's guaranteed that
- * the data are persisted in durable storage.
+ * - "LOW" : The API implementation may cache and aggregate the data.
+ * The data may be lost when rare and unexpected system failures occur.
+ * - "HIGH" : The API implementation doesn't cache and aggregate the data.
+ * If the method returns successfully, it's guaranteed that the data has
+ * been persisted in durable storage.
*/
core.String importance;
/**
@@ -1008,6 +1014,8 @@ class ReportResponse {
* `Operations` in the request succeeded.
*/
core.List<ReportError> reportErrors;
+ /** The actual config id used to process the request. */
+ core.String serviceConfigId;
ReportResponse();
@@ -1015,6 +1023,9 @@ class ReportResponse {
if (_json.containsKey("reportErrors")) {
reportErrors = _json["reportErrors"].map((value) => new ReportError.fromJson(value)).toList();
}
+ if (_json.containsKey("serviceConfigId")) {
+ serviceConfigId = _json["serviceConfigId"];
+ }
}
core.Map toJson() {
@@ -1022,6 +1033,9 @@ class ReportResponse {
if (reportErrors != null) {
_json["reportErrors"] = reportErrors.map((value) => (value).toJson()).toList();
}
+ if (serviceConfigId != null) {
+ _json["serviceConfigId"] = serviceConfigId;
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/identitytoolkit/v3.dart ('k') | generated/googleapis/lib/servicemanagement/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698