docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/fitness_v1.users.sessions.html b/docs/dyn/fitness_v1.users.sessions.html
index 57169eb..e05d7b4 100644
--- a/docs/dyn/fitness_v1.users.sessions.html
+++ b/docs/dyn/fitness_v1.users.sessions.html
@@ -72,86 +72,144 @@
</style>
-<h1><a href="fitness_v1.html">Fitness</a> . <a href="fitness_v1.users.html">users</a> . <a href="fitness_v1.users.sessions.html">sessions</a></h1>
+<h1><a href="fitness_v1.html">Fitness API</a> . <a href="fitness_v1.users.html">users</a> . <a href="fitness_v1.users.sessions.html">sessions</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#delete">delete(userId, sessionId, currentTimeMillis=None)</a></code></p>
+ <code><a href="#delete">delete(userId, sessionId, currentTimeMillis=None, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a session specified by the given session ID.</p>
<p class="toc_element">
- <code><a href="#list">list(userId, activityType=None, endTime=None, includeDeleted=None, pageToken=None, startTime=None)</a></code></p>
+ <code><a href="#list">list(userId, endTime=None, startTime=None, pageToken=None, includeDeleted=None, activityType=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists sessions previously created.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
- <code><a href="#update">update(userId, sessionId, body=None, currentTimeMillis=None)</a></code></p>
+ <code><a href="#update">update(userId, sessionId, body=None, currentTimeMillis=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates or insert a given session.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="delete">delete(userId, sessionId, currentTimeMillis=None)</code>
+ <code class="details" id="delete">delete(userId, sessionId, currentTimeMillis=None, x__xgafv=None)</code>
<pre>Deletes a session specified by the given session ID.
Args:
- userId: string, Delete a session for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. (required)
+ userId: string, Delete a session for the person identified. Use <code>me</code> to indicate
+the authenticated user. Only <code>me</code> is supported at this time. (required)
sessionId: string, The ID of the session to be deleted. (required)
currentTimeMillis: string, The client's current time in milliseconds since epoch.
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
</pre>
</div>
<div class="method">
- <code class="details" id="list">list(userId, activityType=None, endTime=None, includeDeleted=None, pageToken=None, startTime=None)</code>
+ <code class="details" id="list">list(userId, endTime=None, startTime=None, pageToken=None, includeDeleted=None, activityType=None, x__xgafv=None)</code>
<pre>Lists sessions previously created.
Args:
- userId: string, List sessions for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. (required)
+ userId: string, List sessions for the person identified. Use <code>me</code> to indicate
+the authenticated user. Only <code>me</code> is supported at this time. (required)
+ endTime: string, An <a href="https://www.ietf.org/rfc/rfc3339.txt">RFC3339</a> timestamp.
+Only sessions ending between the start and end times will be included in
+the response. If this time is omitted but <var>startTime</var> is
+specified, all sessions from <var>startTime</var> to the end of time will
+be returned.
+ startTime: string, An <a href="https://www.ietf.org/rfc/rfc3339.txt">RFC3339</a> timestamp.
+Only sessions ending between the start and end times will be included in
+the response. If this time is omitted but <var>endTime</var> is specified,
+all sessions from the start of time up to <var>endTime</var> will be
+returned.
+ pageToken: string, The continuation token, which is used for incremental syncing.
+To get the next batch of changes, set this parameter to the value of
+<code>nextPageToken</code> from the previous response. The page token is
+ignored if either start or end time is specified. If none of start time,
+end time, and the page token is specified, sessions modified in the last
+30 days are returned.
+ includeDeleted: boolean, If true, and if both <var>startTime</var> and <var>endTime</var> are
+omitted, session deletions will be returned.
activityType: integer, If non-empty, only sessions with these activity types should be returned. (repeated)
- endTime: string, An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the response.
- includeDeleted: boolean, If true, deleted sessions will be returned. When set to true, sessions returned in this response will only have an ID and will not have any other fields.
- pageToken: string, The continuation token, which is used for incremental syncing. To get the next batch of changes, set this parameter to the value of nextPageToken from the previous response. This token is treated as a timestamp (in millis since epoch). If specified, the API returns sessions modified since this time. The page token is ignored if either start or end time is specified. If none of start time, end time, and the page token is specified, sessions modified in the last 30 days are returned.
- startTime: string, An RFC3339 timestamp. Only sessions ending between the start and end times will be included in the response.
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
Returns:
An object of the form:
{
- "deletedSession": [ # If includeDeleted is set to true in the request, this list will contain sessions deleted with original end times that are within the startTime and endTime frame.
- { # Sessions contain metadata, such as a user-friendly name and time interval information.
- "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define the full session time, the active time can be shorter and specified by active_time_millis. If the inactive time during the session is known, it should also be inserted via a com.google.activity.segment data point with a STILL activity value
- "activityType": 42, # The type of activity this session represents.
+ "deletedSession": [ # If <code>includeDeleted</code> is set to true in the request, and
+ # <var>startTime</var> and <var>endTime</var> are omitted, this will include
+ # sessions which were deleted since the last sync.
+ { # Sessions contain metadata, such as a user-friendly name and time interval
+ # information.
+ "id": "A String", # A client-generated identifier that is unique across all sessions owned by
+ # this particular user.
+ "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
"application": { # The application that created the session.
+ "packageName": "A String", # Package name for this application. This is used as a unique
+ # identifier when created by Android applications, but cannot be specified
+ # by REST clients. REST clients will have their developer project number
+ # reflected into the Data Source data stream IDs, instead of the packageName.
+ "name": "A String", # The name of this application. This is required for REST clients, but we
+ # do not enforce uniqueness of this name. It is provided as a matter of
+ # convenience for other developers who would like to identify which REST
+ # created an Application or Data Source.
"detailsUrl": "A String", # An optional URI that can be used to link back to the application.
- "name": "A String", # The name of this application. This is required for REST clients, but we do not enforce uniqueness of this name. It is provided as a matter of convenience for other developers who would like to identify which REST created an Application or Data Source.
- "packageName": "A String", # Package name for this application. This is used as a unique identifier when created by Android applications, but cannot be specified by REST clients. REST clients will have their developer project number reflected into the Data Source data stream IDs, instead of the packageName.
- "version": "A String", # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+ "version": "A String", # Version of the application. You should update this field whenever the
+ # application changes in a way that affects the computation of the data.
},
"description": "A String", # A description for this session.
- "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
- "id": "A String", # A client-generated identifier that is unique across all sessions owned by this particular user.
+ "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activityType": 42, # The type of activity this session represents.
"modifiedTimeMillis": "A String", # A timestamp that indicates when the session was last modified.
"name": "A String", # A human readable name of the session.
- "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define
+ # the full session time, the active time can be shorter and specified by
+ # active_time_millis.
+ # If the inactive time during the session is known, it should also be
+ # inserted via a com.google.activity.segment data point with a STILL
+ # activity value
},
],
- "hasMoreData": True or False, # Flag to indicate server has more data to transfer
- "nextPageToken": "A String", # The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.
- "session": [ # Sessions with an end time that is between startTime and endTime of the request.
- { # Sessions contain metadata, such as a user-friendly name and time interval information.
- "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define the full session time, the active time can be shorter and specified by active_time_millis. If the inactive time during the session is known, it should also be inserted via a com.google.activity.segment data point with a STILL activity value
- "activityType": 42, # The type of activity this session represents.
+ "session": [ # Sessions with an end time that is between <var>startTime</var> and
+ # <var>endTime</var> of the request.
+ { # Sessions contain metadata, such as a user-friendly name and time interval
+ # information.
+ "id": "A String", # A client-generated identifier that is unique across all sessions owned by
+ # this particular user.
+ "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
"application": { # The application that created the session.
+ "packageName": "A String", # Package name for this application. This is used as a unique
+ # identifier when created by Android applications, but cannot be specified
+ # by REST clients. REST clients will have their developer project number
+ # reflected into the Data Source data stream IDs, instead of the packageName.
+ "name": "A String", # The name of this application. This is required for REST clients, but we
+ # do not enforce uniqueness of this name. It is provided as a matter of
+ # convenience for other developers who would like to identify which REST
+ # created an Application or Data Source.
"detailsUrl": "A String", # An optional URI that can be used to link back to the application.
- "name": "A String", # The name of this application. This is required for REST clients, but we do not enforce uniqueness of this name. It is provided as a matter of convenience for other developers who would like to identify which REST created an Application or Data Source.
- "packageName": "A String", # Package name for this application. This is used as a unique identifier when created by Android applications, but cannot be specified by REST clients. REST clients will have their developer project number reflected into the Data Source data stream IDs, instead of the packageName.
- "version": "A String", # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+ "version": "A String", # Version of the application. You should update this field whenever the
+ # application changes in a way that affects the computation of the data.
},
"description": "A String", # A description for this session.
- "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
- "id": "A String", # A client-generated identifier that is unique across all sessions owned by this particular user.
+ "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activityType": 42, # The type of activity this session represents.
"modifiedTimeMillis": "A String", # A timestamp that indicates when the session was last modified.
"name": "A String", # A human readable name of the session.
- "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define
+ # the full session time, the active time can be shorter and specified by
+ # active_time_millis.
+ # If the inactive time during the session is known, it should also be
+ # inserted via a com.google.activity.segment data point with a STILL
+ # activity value
},
],
+ "nextPageToken": "A String", # The sync token which is used to sync further changes. This will only be
+ # provided if both <var>startTime</var> and <var>endTime</var> are omitted
+ # from the request.
+ "hasMoreData": True or False, # Flag to indicate server has more data to transfer.
+ # DO NOT USE THIS FIELD. It is never populated in responses from the server.
}</pre>
</div>
@@ -170,52 +228,85 @@
</div>
<div class="method">
- <code class="details" id="update">update(userId, sessionId, body=None, currentTimeMillis=None)</code>
+ <code class="details" id="update">update(userId, sessionId, body=None, currentTimeMillis=None, x__xgafv=None)</code>
<pre>Updates or insert a given session.
Args:
- userId: string, Create sessions for the person identified. Use me to indicate the authenticated user. Only me is supported at this time. (required)
+ userId: string, Create sessions for the person identified. Use <code>me</code> to indicate
+the authenticated user. Only <code>me</code> is supported at this time. (required)
sessionId: string, The ID of the session to be created. (required)
body: object, The request body.
The object takes the form of:
-{ # Sessions contain metadata, such as a user-friendly name and time interval information.
- "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define the full session time, the active time can be shorter and specified by active_time_millis. If the inactive time during the session is known, it should also be inserted via a com.google.activity.segment data point with a STILL activity value
- "activityType": 42, # The type of activity this session represents.
+{ # Sessions contain metadata, such as a user-friendly name and time interval
+ # information.
+ "id": "A String", # A client-generated identifier that is unique across all sessions owned by
+ # this particular user.
+ "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
"application": { # The application that created the session.
+ "packageName": "A String", # Package name for this application. This is used as a unique
+ # identifier when created by Android applications, but cannot be specified
+ # by REST clients. REST clients will have their developer project number
+ # reflected into the Data Source data stream IDs, instead of the packageName.
+ "name": "A String", # The name of this application. This is required for REST clients, but we
+ # do not enforce uniqueness of this name. It is provided as a matter of
+ # convenience for other developers who would like to identify which REST
+ # created an Application or Data Source.
"detailsUrl": "A String", # An optional URI that can be used to link back to the application.
- "name": "A String", # The name of this application. This is required for REST clients, but we do not enforce uniqueness of this name. It is provided as a matter of convenience for other developers who would like to identify which REST created an Application or Data Source.
- "packageName": "A String", # Package name for this application. This is used as a unique identifier when created by Android applications, but cannot be specified by REST clients. REST clients will have their developer project number reflected into the Data Source data stream IDs, instead of the packageName.
- "version": "A String", # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+ "version": "A String", # Version of the application. You should update this field whenever the
+ # application changes in a way that affects the computation of the data.
},
"description": "A String", # A description for this session.
- "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
- "id": "A String", # A client-generated identifier that is unique across all sessions owned by this particular user.
+ "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activityType": 42, # The type of activity this session represents.
"modifiedTimeMillis": "A String", # A timestamp that indicates when the session was last modified.
"name": "A String", # A human readable name of the session.
- "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define
+ # the full session time, the active time can be shorter and specified by
+ # active_time_millis.
+ # If the inactive time during the session is known, it should also be
+ # inserted via a com.google.activity.segment data point with a STILL
+ # activity value
}
currentTimeMillis: string, The client's current time in milliseconds since epoch.
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
Returns:
An object of the form:
- { # Sessions contain metadata, such as a user-friendly name and time interval information.
- "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define the full session time, the active time can be shorter and specified by active_time_millis. If the inactive time during the session is known, it should also be inserted via a com.google.activity.segment data point with a STILL activity value
- "activityType": 42, # The type of activity this session represents.
+ { # Sessions contain metadata, such as a user-friendly name and time interval
+ # information.
+ "id": "A String", # A client-generated identifier that is unique across all sessions owned by
+ # this particular user.
+ "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
"application": { # The application that created the session.
+ "packageName": "A String", # Package name for this application. This is used as a unique
+ # identifier when created by Android applications, but cannot be specified
+ # by REST clients. REST clients will have their developer project number
+ # reflected into the Data Source data stream IDs, instead of the packageName.
+ "name": "A String", # The name of this application. This is required for REST clients, but we
+ # do not enforce uniqueness of this name. It is provided as a matter of
+ # convenience for other developers who would like to identify which REST
+ # created an Application or Data Source.
"detailsUrl": "A String", # An optional URI that can be used to link back to the application.
- "name": "A String", # The name of this application. This is required for REST clients, but we do not enforce uniqueness of this name. It is provided as a matter of convenience for other developers who would like to identify which REST created an Application or Data Source.
- "packageName": "A String", # Package name for this application. This is used as a unique identifier when created by Android applications, but cannot be specified by REST clients. REST clients will have their developer project number reflected into the Data Source data stream IDs, instead of the packageName.
- "version": "A String", # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+ "version": "A String", # Version of the application. You should update this field whenever the
+ # application changes in a way that affects the computation of the data.
},
"description": "A String", # A description for this session.
- "endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
- "id": "A String", # A client-generated identifier that is unique across all sessions owned by this particular user.
+ "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activityType": 42, # The type of activity this session represents.
"modifiedTimeMillis": "A String", # A timestamp that indicates when the session was last modified.
"name": "A String", # A human readable name of the session.
- "startTimeMillis": "A String", # A start time, in milliseconds since epoch, inclusive.
+ "activeTimeMillis": "A String", # Session active time. While start_time_millis and end_time_millis define
+ # the full session time, the active time can be shorter and specified by
+ # active_time_millis.
+ # If the inactive time during the session is known, it should also be
+ # inserted via a com.google.activity.segment data point with a STILL
+ # activity value
}</pre>
</div>