diff --git a/docs/dyn/realtimebidding_v1.bidders.endpoints.html b/docs/dyn/realtimebidding_v1.bidders.endpoints.html index bf576a137f3..01040388876 100644 --- a/docs/dyn/realtimebidding_v1.bidders.endpoints.html +++ b/docs/dyn/realtimebidding_v1.bidders.endpoints.html @@ -86,6 +86,9 @@
list_next(previous_request, previous_response)
Retrieves the next page of results.
+
+ patch(name, body=None, updateMask=None, x__xgafv=None)
Updates a bidder's endpoint.
close()
@@ -159,4 +162,39 @@ patch(name, body=None, updateMask=None, x__xgafv=None)
+ Updates a bidder'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. + "bidProtocol": "A String", # The protocol that the bidder endpoint is using. + "maximumQps": "A String", # The maximum number of queries per second allowed to be sent to this server. + "name": "A 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. + "tradingLocation": "A String", # 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. + "url": "A String", # 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. + "bidProtocol": "A String", # The protocol that the bidder endpoint is using. + "maximumQps": "A String", # The maximum number of queries per second allowed to be sent to this server. + "name": "A 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. + "tradingLocation": "A String", # 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. + "url": "A String", # Output only. The URL that bid requests should be sent to. +}+