chore: regens API reference docs (#889)
diff --git a/docs/dyn/blogger_v2.posts.html b/docs/dyn/blogger_v2.posts.html
index fabb3de..84e8b37 100644
--- a/docs/dyn/blogger_v2.posts.html
+++ b/docs/dyn/blogger_v2.posts.html
@@ -72,53 +72,101 @@
</style>
-<h1><a href="blogger_v2.html">Blogger API</a> . <a href="blogger_v2.posts.html">posts</a></h1>
+<h1><a href="blogger_v2.html">Blogger API v3</a> . <a href="blogger_v2.posts.html">posts</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#get">get(blogId, postId)</a></code></p>
-<p class="firstline">Get a post by id.</p>
+ <code><a href="#get">get(blogId, postId, x__xgafv=None)</a></code></p>
+<p class="firstline">Gets a post by blog id and post id</p>
<p class="toc_element">
- <code><a href="#list">list(blogId, startDate=None, pageToken=None, maxResults=None, fetchBodies=None)</a></code></p>
-<p class="firstline">Retrieves a list of posts, possibly filtered.</p>
+ <code><a href="#list">list(blogId, startDate=None, maxResults=None, pageToken=None, x__xgafv=None, fetchBodies=None)</a></code></p>
+<p class="firstline">Lists posts.</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>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="get">get(blogId, postId)</code>
- <pre>Get a post by id.
+ <code class="details" id="get">get(blogId, postId, x__xgafv=None)</code>
+ <pre>Gets a post by blog id and post id
Args:
- blogId: string, ID of the blog to fetch the post from. (required)
- postId: string, The ID of the post (required)
+ blogId: string, A parameter (required)
+ postId: string, A parameter (required)
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
Returns:
An object of the form:
{
- "content": "A String", # The content of the Post. May contain HTML markup.
- "kind": "blogger#post", # The kind of this entity. Always blogger#post
- "author": { # The author of this Post.
- "url": "A String", # The URL of the Post creator's Profile page.
- "image": { # The Post author's avatar.
- "url": "A String", # The Post author's avatar URL.
- },
- "displayName": "A String", # The display name.
- "id": "A String", # The identifier of the Post creator.
- },
- "replies": { # The container of comments on this Post.
- "totalItems": "A String", # The count of comments on this post.
- "selfLink": "A String", # The URL of the comments on this post.
- },
- "labels": [ # The list of labels this Post was tagged with.
- "A String",
- ],
- "updated": "A String", # RFC 3339 date-time when this Post was last updated.
+ "status": "A String", # Status of the post. Only set for admin-level requests.
"blog": { # Data about the blog containing this Post.
"id": "A String", # The identifier of the Blog that contains this Post.
},
+ "updated": "A String", # RFC 3339 date-time when this Post was last updated.
+ "titleLink": "A String", # The title link URL, similar to atom's related link.
+ "author": { # The author of this Post.
+ "url": "A String", # The URL of the creator's Profile page.
+ "image": { # The creator's avatar.
+ "url": "A String", # The creator's avatar URL.
+ },
+ "displayName": "A String", # The display name.
+ "id": "A String", # The identifier of the creator.
+ },
"url": "A String", # The URL where this Post is displayed.
+ "readerComments": "A String", # Comment control and display setting for readers of this post.
+ "labels": [ # The list of labels this Post was tagged with.
+ "A String",
+ ],
+ "replies": { # The container of comments on this Post.
+ "totalItems": "A String", # The count of comments on this post.
+ "items": [ # The List of Comments for this Post.
+ {
+ "status": "A String", # The status of the comment (only populated for admin users).
+ "inReplyTo": { # Data about the comment this is in reply to.
+ "id": "A String", # The identified of the parent of this comment.
+ },
+ "kind": "A String", # The kind of this entry. Always blogger#comment.
+ "author": { # The author of this Comment.
+ "url": "A String", # The URL of the creator's Profile page.
+ "image": { # The creator's avatar.
+ "url": "A String", # The creator's avatar URL.
+ },
+ "displayName": "A String", # The display name.
+ "id": "A String", # The identifier of the creator.
+ },
+ "updated": "A String", # RFC 3339 date-time when this comment was last updated.
+ "blog": { # Data about the blog containing this comment.
+ "id": "A String", # The identifier of the blog containing this comment.
+ },
+ "published": "A String", # RFC 3339 date-time when this comment was published.
+ "post": { # Data about the post containing this comment.
+ "id": "A String", # The identifier of the post containing this comment.
+ },
+ "content": "A String", # The actual content of the comment. May include HTML markup.
+ "id": "A String", # The identifier for this resource.
+ "selfLink": "A String", # The API REST URL to fetch this resource from.
+ },
+ ],
+ "selfLink": "A String", # The URL of the comments on this post.
+ },
+ "customMetaData": "A String", # The JSON meta-data for the Post.
+ "kind": "A String", # The kind of this entity. Always blogger#post.
+ "content": "A String", # The content of the Post. May contain HTML markup.
+ "etag": "A String", # Etag of the resource.
+ "location": { # The location for geotagged posts.
+ "lat": 3.14, # Location's latitude.
+ "lng": 3.14, # Location's longitude.
+ "span": "A String", # Location's viewport span. Can be used when rendering a map preview.
+ "name": "A String", # Location name.
+ },
"published": "A String", # RFC 3339 date-time when this Post was published.
+ "images": [ # Display image for the Post.
+ {
+ "url": "A String",
+ },
+ ],
"title": "A String", # The title of the Post.
"id": "A String", # The identifier of this Post.
"selfLink": "A String", # The API REST URL to fetch this resource from.
@@ -126,15 +174,19 @@
</div>
<div class="method">
- <code class="details" id="list">list(blogId, startDate=None, pageToken=None, maxResults=None, fetchBodies=None)</code>
- <pre>Retrieves a list of posts, possibly filtered.
+ <code class="details" id="list">list(blogId, startDate=None, maxResults=None, pageToken=None, x__xgafv=None, fetchBodies=None)</code>
+ <pre>Lists posts.
Args:
- blogId: string, ID of the blog to fetch posts from. (required)
- startDate: string, Earliest post date to fetch, a date-time with RFC 3339 formatting.
- pageToken: string, Continuation token if the request is paged.
- maxResults: integer, Maximum number of posts to fetch.
- fetchBodies: boolean, Whether the body content of posts is included.
+ blogId: string, A parameter (required)
+ startDate: string, A parameter
+ maxResults: integer, A parameter
+ pageToken: string, A parameter
+ x__xgafv: string, V1 error format.
+ Allowed values
+ 1 - v1 error format
+ 2 - v2 error format
+ fetchBodies: boolean, A parameter
Returns:
An object of the form:
@@ -143,35 +195,80 @@
"nextPageToken": "A String", # Pagination token to fetch the next page, if one exists.
"items": [ # The list of Posts for this Blog.
{
- "content": "A String", # The content of the Post. May contain HTML markup.
- "kind": "blogger#post", # The kind of this entity. Always blogger#post
- "author": { # The author of this Post.
- "url": "A String", # The URL of the Post creator's Profile page.
- "image": { # The Post author's avatar.
- "url": "A String", # The Post author's avatar URL.
- },
- "displayName": "A String", # The display name.
- "id": "A String", # The identifier of the Post creator.
- },
- "replies": { # The container of comments on this Post.
- "totalItems": "A String", # The count of comments on this post.
- "selfLink": "A String", # The URL of the comments on this post.
- },
- "labels": [ # The list of labels this Post was tagged with.
- "A String",
- ],
- "updated": "A String", # RFC 3339 date-time when this Post was last updated.
+ "status": "A String", # Status of the post. Only set for admin-level requests.
"blog": { # Data about the blog containing this Post.
"id": "A String", # The identifier of the Blog that contains this Post.
},
+ "updated": "A String", # RFC 3339 date-time when this Post was last updated.
+ "titleLink": "A String", # The title link URL, similar to atom's related link.
+ "author": { # The author of this Post.
+ "url": "A String", # The URL of the creator's Profile page.
+ "image": { # The creator's avatar.
+ "url": "A String", # The creator's avatar URL.
+ },
+ "displayName": "A String", # The display name.
+ "id": "A String", # The identifier of the creator.
+ },
"url": "A String", # The URL where this Post is displayed.
+ "readerComments": "A String", # Comment control and display setting for readers of this post.
+ "labels": [ # The list of labels this Post was tagged with.
+ "A String",
+ ],
+ "replies": { # The container of comments on this Post.
+ "totalItems": "A String", # The count of comments on this post.
+ "items": [ # The List of Comments for this Post.
+ {
+ "status": "A String", # The status of the comment (only populated for admin users).
+ "inReplyTo": { # Data about the comment this is in reply to.
+ "id": "A String", # The identified of the parent of this comment.
+ },
+ "kind": "A String", # The kind of this entry. Always blogger#comment.
+ "author": { # The author of this Comment.
+ "url": "A String", # The URL of the creator's Profile page.
+ "image": { # The creator's avatar.
+ "url": "A String", # The creator's avatar URL.
+ },
+ "displayName": "A String", # The display name.
+ "id": "A String", # The identifier of the creator.
+ },
+ "updated": "A String", # RFC 3339 date-time when this comment was last updated.
+ "blog": { # Data about the blog containing this comment.
+ "id": "A String", # The identifier of the blog containing this comment.
+ },
+ "published": "A String", # RFC 3339 date-time when this comment was published.
+ "post": { # Data about the post containing this comment.
+ "id": "A String", # The identifier of the post containing this comment.
+ },
+ "content": "A String", # The actual content of the comment. May include HTML markup.
+ "id": "A String", # The identifier for this resource.
+ "selfLink": "A String", # The API REST URL to fetch this resource from.
+ },
+ ],
+ "selfLink": "A String", # The URL of the comments on this post.
+ },
+ "customMetaData": "A String", # The JSON meta-data for the Post.
+ "kind": "A String", # The kind of this entity. Always blogger#post.
+ "content": "A String", # The content of the Post. May contain HTML markup.
+ "etag": "A String", # Etag of the resource.
+ "location": { # The location for geotagged posts.
+ "lat": 3.14, # Location's latitude.
+ "lng": 3.14, # Location's longitude.
+ "span": "A String", # Location's viewport span. Can be used when rendering a map preview.
+ "name": "A String", # Location name.
+ },
"published": "A String", # RFC 3339 date-time when this Post was published.
+ "images": [ # Display image for the Post.
+ {
+ "url": "A String",
+ },
+ ],
"title": "A String", # The title of the Post.
"id": "A String", # The identifier of this Post.
"selfLink": "A String", # The API REST URL to fetch this resource from.
},
],
- "kind": "blogger#postList", # The kind of this entity. Always blogger#postList
+ "kind": "A String", # The kind of this entity. Always blogger#postList.
+ "etag": "A String", # Etag of the response.
"prevPageToken": "A String", # Pagination token to fetch the previous page, if one exists.
}</pre>
</div>