@@ -100,13 +100,13 @@ class Query(object):
100
100
:meth:`~google.cloud.monitoring.query.Query.select_interval`
101
101
must be called before the query is executed.
102
102
103
- :type days: integer
103
+ :type days: int
104
104
:param days: The number of days in the time interval.
105
105
106
- :type hours: integer
106
+ :type hours: int
107
107
:param hours: The number of hours in the time interval.
108
108
109
- :type minutes: integer
109
+ :type minutes: int
110
110
:param minutes: The number of minutes in the time interval.
111
111
112
112
:raises: :exc:`ValueError` if ``end_time`` is specified but
@@ -368,13 +368,13 @@ def align(self, per_series_aligner, seconds=0, minutes=0, hours=0):
368
368
See :class:`Aligner` and the descriptions of the `supported
369
369
aligners`_.
370
370
371
- :type seconds: integer
371
+ :type seconds: int
372
372
:param seconds: The number of seconds in the alignment period.
373
373
374
- :type minutes: integer
374
+ :type minutes: int
375
375
:param minutes: The number of minutes in the alignment period.
376
376
377
- :type hours: integer
377
+ :type hours: int
378
378
:param hours: The number of hours in the alignment period.
379
379
380
380
:rtype: :class:`Query`
@@ -446,7 +446,7 @@ def iter(self, headers_only=False, page_size=None):
446
446
:param headers_only:
447
447
Whether to omit the point data from the time series objects.
448
448
449
- :type page_size: integer or None
449
+ :type page_size: int or None
450
450
:param page_size:
451
451
An optional positive number specifying the maximum number of
452
452
points to return per page. This can be used to control how far
@@ -510,7 +510,7 @@ def _build_query_params(self, headers_only=False,
510
510
Whether to omit the point data from the
511
511
:class:`~google.cloud.monitoring.timeseries.TimeSeries` objects.
512
512
513
- :type page_size: integer or None
513
+ :type page_size: int or None
514
514
:param page_size: A limit on the number of points to return per page.
515
515
516
516
:type page_token: str or None
0 commit comments