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

Unified Diff: generated/googleapis_beta/lib/cloudmonitoring/v2beta1.dart

Issue 663113002: Api roll 4: 2014-10-20 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 2 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_beta/CHANGELOG.md ('k') | generated/googleapis_beta/lib/genomics/v1beta.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis_beta/lib/cloudmonitoring/v2beta1.dart
diff --git a/generated/googleapis_beta/lib/cloudmonitoring/v2beta1.dart b/generated/googleapis_beta/lib/cloudmonitoring/v2beta1.dart
index 5d4bcad1d234ff63d84f1e4afb124dac21db093a..89b2425a439028481e0642cfc651cf32857defdc 100644
--- a/generated/googleapis_beta/lib/cloudmonitoring/v2beta1.dart
+++ b/generated/googleapis_beta/lib/cloudmonitoring/v2beta1.dart
@@ -804,7 +804,7 @@ class Point {
* applies. For gauge metrics, whose values are instantaneous measurements,
* this interval should be empty (start should equal end). For cumulative
* metrics (of which deltas and rates are special cases), the interval should
- * be non-empty. Both start and end are RFC 3999 strings.
+ * be non-empty. Both start and end are RFC 3339 strings.
*/
core.DateTime end;
@@ -816,7 +816,7 @@ class Point {
* applies. For gauge metrics, whose values are instantaneous measurements,
* this interval should be empty (start should equal end). For cumulative
* metrics (of which deltas and rates are special cases), the interval should
- * be non-empty. Both start and end are RFC 3999 strings.
+ * be non-empty. Both start and end are RFC 3339 strings.
*/
core.DateTime start;
@@ -1095,10 +1095,7 @@ class Timeseries {
/** TimeseriesDescriptor identifies a single time series. */
class TimeseriesDescriptor {
- /**
- * The set of key-value pairs that describe this time series, including
- * target-specific labels and metric-specific labels.
- */
+ /** The label's name. */
core.Map<core.String, core.String> labels;
/** The name of the metric. */
@@ -1140,3 +1137,36 @@ class TimeseriesDescriptor {
}
+/** Not documented yet. */
+class TimeseriesDescriptorLabel {
+ /** The label's name. */
+ core.String key;
+
+ /** The label's value. */
+ core.String value;
+
+
+ TimeseriesDescriptorLabel();
+
+ TimeseriesDescriptorLabel.fromJson(core.Map _json) {
+ if (_json.containsKey("key")) {
+ key = _json["key"];
+ }
+ if (_json.containsKey("value")) {
+ value = _json["value"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (key != null) {
+ _json["key"] = key;
+ }
+ if (value != null) {
+ _json["value"] = value;
+ }
+ return _json;
+ }
+}
+
+
« no previous file with comments | « generated/googleapis_beta/CHANGELOG.md ('k') | generated/googleapis_beta/lib/genomics/v1beta.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698