Skip to content

Commit

Permalink
feat(realtimebidding): update the api
Browse files Browse the repository at this point in the history
#### realtimebidding:v1

The following keys were added:
- resources.bidders.resources.endpoints.methods.patch (Total Keys: 15)
  • Loading branch information
yoshi-automation committed Oct 19, 2021
1 parent 09fd238 commit 716ded3
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 2 deletions.
38 changes: 38 additions & 0 deletions docs/dyn/realtimebidding_v1.bidders.endpoints.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ <h2>Instance Methods</h2>
<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="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates a bidder's endpoint.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
Expand Down Expand Up @@ -159,4 +162,39 @@ <h3>Method Details</h3>
</pre>
</div>

<div class="method">
<code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
<pre>Updates a bidder&#x27;s endpoint.

Args:
name: string, Output only. Name of the endpoint resource that must follow the pattern `bidders/{bidderAccountId}/endpoints/{endpointId}`, where {bidderAccountId} is the account ID of the bidder who operates this endpoint, and {endpointId} is a unique ID assigned by the server. (required)
body: object, The request body.
The object takes the form of:

{ # Bidder endpoint that receives bid requests.
&quot;bidProtocol&quot;: &quot;A String&quot;, # The protocol that the bidder endpoint is using.
&quot;maximumQps&quot;: &quot;A String&quot;, # The maximum number of queries per second allowed to be sent to this server.
&quot;name&quot;: &quot;A String&quot;, # Output only. Name of the endpoint resource that must follow the pattern `bidders/{bidderAccountId}/endpoints/{endpointId}`, where {bidderAccountId} is the account ID of the bidder who operates this endpoint, and {endpointId} is a unique ID assigned by the server.
&quot;tradingLocation&quot;: &quot;A String&quot;, # The trading location that bid requests should be sent from. See https://developers.google.com/authorized-buyers/rtb/peer-guide#trading-locations for further information.
&quot;url&quot;: &quot;A String&quot;, # Output only. The URL that bid requests should be sent to.
}

updateMask: string, Field mask to use for partial in-place updates.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format

Returns:
An object of the form:

{ # Bidder endpoint that receives bid requests.
&quot;bidProtocol&quot;: &quot;A String&quot;, # The protocol that the bidder endpoint is using.
&quot;maximumQps&quot;: &quot;A String&quot;, # The maximum number of queries per second allowed to be sent to this server.
&quot;name&quot;: &quot;A String&quot;, # Output only. Name of the endpoint resource that must follow the pattern `bidders/{bidderAccountId}/endpoints/{endpointId}`, where {bidderAccountId} is the account ID of the bidder who operates this endpoint, and {endpointId} is a unique ID assigned by the server.
&quot;tradingLocation&quot;: &quot;A String&quot;, # The trading location that bid requests should be sent from. See https://developers.google.com/authorized-buyers/rtb/peer-guide#trading-locations for further information.
&quot;url&quot;: &quot;A String&quot;, # Output only. The URL that bid requests should be sent to.
}</pre>
</div>

</body></html>
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,40 @@
"scopes": [
"https://www.googleapis.com/auth/realtime-bidding"
]
},
"patch": {
"description": "Updates a bidder's endpoint.",
"flatPath": "v1/bidders/{biddersId}/endpoints/{endpointsId}",
"httpMethod": "PATCH",
"id": "realtimebidding.bidders.endpoints.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Name of the endpoint resource that must follow the pattern `bidders/{bidderAccountId}/endpoints/{endpointId}`, where {bidderAccountId} is the account ID of the bidder who operates this endpoint, and {endpointId} is a unique ID assigned by the server.",
"location": "path",
"pattern": "^bidders/[^/]+/endpoints/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Field mask to use for partial in-place updates.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/{+name}",
"request": {
"$ref": "Endpoint"
},
"response": {
"$ref": "Endpoint"
},
"scopes": [
"https://www.googleapis.com/auth/realtime-bidding"
]
}
}
},
Expand Down Expand Up @@ -1140,7 +1174,7 @@
}
}
},
"revision": "20211008",
"revision": "20211016",
"rootUrl": "https://realtimebidding.googleapis.com/",
"schemas": {
"ActivatePretargetingConfigRequest": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@
}
}
},
"revision": "20211008",
"revision": "20211016",
"rootUrl": "https://realtimebidding.googleapis.com/",
"schemas": {
"ActivateBiddingFunctionRequest": {
Expand Down

0 comments on commit 716ded3

Please sign in to comment.