diff --git a/gcloud/monitoring/metric.py b/gcloud/monitoring/metric.py index a6c3f3eae82d..2e6b43630a52 100644 --- a/gcloud/monitoring/metric.py +++ b/gcloud/monitoring/metric.py @@ -53,7 +53,6 @@ class ValueType(object): DOUBLE = 'DOUBLE' STRING = 'STRING' DISTRIBUTION = 'DISTRIBUTION' - MONEY = 'MONEY' class MetricDescriptor(object): @@ -84,8 +83,7 @@ class MetricDescriptor(object): :param value_type: The value type of the metric. It must be one of :data:`ValueType.BOOL`, :data:`ValueType.INT64`, :data:`ValueType.DOUBLE`, - :data:`ValueType.STRING`, :data:`ValueType.DISTRIBUTION`, - or :data:`ValueType.MONEY`. + :data:`ValueType.STRING`, or :data:`ValueType.DISTRIBUTION`. See :class:`ValueType`. :type unit: string diff --git a/gcloud/monitoring/timeseries.py b/gcloud/monitoring/timeseries.py index caa733a7cfc6..de5200301728 100644 --- a/gcloud/monitoring/timeseries.py +++ b/gcloud/monitoring/timeseries.py @@ -48,8 +48,7 @@ class TimeSeries(collections.namedtuple( :param value_type: The value type of the metric: :data:`ValueType.BOOL`, :data:`ValueType.INT64`, :data:`ValueType.DOUBLE`, - :data:`ValueType.STRING`, :data:`ValueType.DISTRIBUTION`, - or :data:`ValueType.MONEY`. + :data:`ValueType.STRING`, or :data:`ValueType.DISTRIBUTION`. See :class:`~gcloud.monitoring.metric.ValueType`. :type points: list of :class:`Point`