OLD | NEW |
1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
2 | 2 |
3 library googleapis_beta.toolresults.v1beta3; | 3 library googleapis_beta.toolresults.v1beta3; |
4 | 4 |
5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
8 | 8 |
9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1728 } | 1728 } |
1729 | 1729 |
1730 /** | 1730 /** |
1731 * Encapsulates the metadata for basic sample series represented by a line chart | 1731 * Encapsulates the metadata for basic sample series represented by a line chart |
1732 */ | 1732 */ |
1733 class BasicPerfSampleSeries { | 1733 class BasicPerfSampleSeries { |
1734 /** | 1734 /** |
1735 * | 1735 * |
1736 * Possible string values are: | 1736 * Possible string values are: |
1737 * - "cpu" | 1737 * - "cpu" |
| 1738 * - "graphics" |
1738 * - "memory" | 1739 * - "memory" |
1739 * - "network" | 1740 * - "network" |
1740 * - "perfMetricTypeUnspecified" | 1741 * - "perfMetricTypeUnspecified" |
1741 */ | 1742 */ |
1742 core.String perfMetricType; | 1743 core.String perfMetricType; |
1743 /** | 1744 /** |
1744 * | 1745 * |
1745 * Possible string values are: | 1746 * Possible string values are: |
1746 * - "bytesPerSecond" | 1747 * - "bytesPerSecond" |
| 1748 * - "framesPerSecond" |
1747 * - "kibibyte" | 1749 * - "kibibyte" |
1748 * - "percent" | 1750 * - "percent" |
1749 * - "perfUnitUnspecified" | 1751 * - "perfUnitUnspecified" |
1750 */ | 1752 */ |
1751 core.String perfUnit; | 1753 core.String perfUnit; |
1752 /** | 1754 /** |
1753 * | 1755 * |
1754 * Possible string values are: | 1756 * Possible string values are: |
1755 * - "cpuKernel" | 1757 * - "cpuKernel" |
1756 * - "cpuTotal" | 1758 * - "cpuTotal" |
1757 * - "cpuUser" | 1759 * - "cpuUser" |
| 1760 * - "graphicsFrameRate" |
1758 * - "memoryRssPrivate" | 1761 * - "memoryRssPrivate" |
1759 * - "memoryRssShared" | 1762 * - "memoryRssShared" |
1760 * - "memoryRssTotal" | 1763 * - "memoryRssTotal" |
1761 * - "memoryTotal" | 1764 * - "memoryTotal" |
1762 * - "networkReceived" | 1765 * - "networkReceived" |
1763 * - "networkSent" | 1766 * - "networkSent" |
1764 * - "ntBytesReceived" | 1767 * - "ntBytesReceived" |
1765 * - "ntBytesTransferred" | 1768 * - "ntBytesTransferred" |
1766 * - "sampleSeriesTypeUnspecified" | 1769 * - "sampleSeriesTypeUnspecified" |
1767 */ | 1770 */ |
(...skipping 2324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4092 } | 4095 } |
4093 if (output != null) { | 4096 if (output != null) { |
4094 _json["output"] = (output).toJson(); | 4097 _json["output"] = (output).toJson(); |
4095 } | 4098 } |
4096 if (testCase != null) { | 4099 if (testCase != null) { |
4097 _json["testCase"] = (testCase).toJson(); | 4100 _json["testCase"] = (testCase).toJson(); |
4098 } | 4101 } |
4099 return _json; | 4102 return _json; |
4100 } | 4103 } |
4101 } | 4104 } |
OLD | NEW |