chore: update docs/dyn , add static discovery files to discovery_cache/documents (#1111)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/78f53313-0c78-4a29-8841-f031665a4c6a/targets
- [ ] To automatically regenerate this PR, check this box.
Source-Link: https://github.com/googleapis/synthtool/commit/c2de32114ec484aa708d32012d1fa8d75232daf5
diff --git a/docs/dyn/displayvideo_v1.partners.channels.sites.html b/docs/dyn/displayvideo_v1.partners.channels.sites.html
index 98e7336..a16b38f 100644
--- a/docs/dyn/displayvideo_v1.partners.channels.sites.html
+++ b/docs/dyn/displayvideo_v1.partners.channels.sites.html
@@ -87,7 +87,7 @@
<code><a href="#delete">delete(partnerId, channelId, urlOrAppId, advertiserId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a site from a channel.</p>
<p class="toc_element">
- <code><a href="#list">list(partnerId, channelId, advertiserId=None, pageToken=None, orderBy=None, pageSize=None, filter=None, x__xgafv=None)</a></code></p>
+ <code><a href="#list">list(partnerId, channelId, orderBy=None, pageToken=None, pageSize=None, filter=None, advertiserId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists sites in a channel.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
@@ -104,10 +104,10 @@
The object takes the form of:
{ # Request message for SiteService.BulkEditSites.
- "advertiserId": "A String", # The ID of the advertiser that owns the parent channel.
"deletedSites": [ # The sites to delete in batch, specified as a list of site url_or_app_ids.
"A String",
],
+ "advertiserId": "A String", # The ID of the advertiser that owns the parent channel.
"partnerId": "A String", # The ID of the partner that owns the parent channel.
"createdSites": [ # The sites to create in batch, specified as a list of Sites.
{ # A single site. Sites are apps or websites belonging to a channel.
@@ -192,17 +192,17 @@
</div>
<div class="method">
- <code class="details" id="list">list(partnerId, channelId, advertiserId=None, pageToken=None, orderBy=None, pageSize=None, filter=None, x__xgafv=None)</code>
+ <code class="details" id="list">list(partnerId, channelId, orderBy=None, pageToken=None, pageSize=None, filter=None, advertiserId=None, x__xgafv=None)</code>
<pre>Lists sites in a channel.
Args:
partnerId: string, The ID of the partner that owns the parent channel. (required)
channelId: string, Required. The ID of the parent channel to which the requested sites belong. (required)
- advertiserId: string, The ID of the advertiser that owns the parent channel.
- pageToken: string, A token identifying a page of results the server should return. Typically, this is the value of next_page_token returned from the previous call to `ListSites` method. If not specified, the first page of results will be returned.
orderBy: string, Field by which to sort the list. Acceptable values are: * `urlOrAppId` (default) The default sorting order is ascending. To specify descending order for a field, a suffix " desc" should be added to the field name. Example: `urlOrAppId desc`.
+ pageToken: string, A token identifying a page of results the server should return. Typically, this is the value of next_page_token returned from the previous call to `ListSites` method. If not specified, the first page of results will be returned.
pageSize: integer, Requested page size. Must be between `1` and `100`. If unspecified will default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is specified.
filter: string, Allows filtering by site fields. Supported syntax: * Filter expressions for site currently can only contain at most one * restriction. * A restriction has the form of `{field} {operator} {value}`. * The operator must be `CONTAINS (:)`. * Supported fields: - `urlOrAppId` Examples: * All sites for which the URL or app ID contains "google": `urlOrAppId : "google"`
+ advertiserId: string, The ID of the advertiser that owns the parent channel.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
@@ -212,13 +212,13 @@
An object of the form:
{ # Response message for SiteService.ListSites.
- "nextPageToken": "A String", # A token to retrieve the next page of results. Pass this value in the page_token field in the subsequent call to `ListSites` method to retrieve the next page of results.
"sites": [ # The list of sites. This list will be absent if empty.
{ # A single site. Sites are apps or websites belonging to a channel.
"urlOrAppId": "A String", # Required. The URL or app ID of the site. Must be UTF-8 encoded with a maximum length of 240 bytes.
"name": "A String", # Output only. The resource name of the site.
},
],
+ "nextPageToken": "A String", # A token to retrieve the next page of results. Pass this value in the page_token field in the subsequent call to `ListSites` method to retrieve the next page of results.
}</pre>
</div>