bulkEdit(advertiserId, negativeKeywordListId, body=None, x__xgafv=None)
Bulk edits negative keywords in a single negative keyword list. The operation will delete the negative keywords provided in BulkEditNegativeKeywordsRequest.deleted_negative_keywords and then create the negative keywords provided in BulkEditNegativeKeywordsRequest.created_negative_keywords. This operation is guaranteed to be atomic and will never result in a partial success or partial failure.
Close httplib2 connections.
create(advertiserId, negativeKeywordListId, body=None, x__xgafv=None)
Creates a negative keyword in a negative keyword list.
delete(advertiserId, negativeKeywordListId, keywordValue, x__xgafv=None)
Deletes a negative keyword from a negative keyword list.
Lists negative keywords in a negative keyword list.
Retrieves the next page of results.
replace(advertiserId, negativeKeywordListId, body=None, x__xgafv=None)
Replaces all negative keywords in a single negative keyword list. The operation will replace the keywords in a negative keyword list with keywords provided in ReplaceNegativeKeywordsRequest.new_negative_keywords.
bulkEdit(advertiserId, negativeKeywordListId, body=None, x__xgafv=None)
Bulk edits negative keywords in a single negative keyword list. The operation will delete the negative keywords provided in BulkEditNegativeKeywordsRequest.deleted_negative_keywords and then create the negative keywords provided in BulkEditNegativeKeywordsRequest.created_negative_keywords. This operation is guaranteed to be atomic and will never result in a partial success or partial failure. Args: advertiserId: string, Required. The ID of the DV360 advertiser to which the parent negative keyword list belongs. (required) negativeKeywordListId: string, Required. The ID of the parent negative keyword list to which the negative keywords belong. (required) body: object, The request body. The object takes the form of: { # Request message for NegativeKeywordService.BulkEditNegativeKeywords. "createdNegativeKeywords": [ # The negative keywords to create in batch, specified as a list of NegativeKeywords. { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. }, ], "deletedNegativeKeywords": [ # The negative keywords to delete in batch, specified as a list of keyword_values. "A String", ], } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response message for NegativeKeywordService.BulkEditNegativeKeywords. "negativeKeywords": [ # The list of negative keywords that have been successfully created. This list will be absent if empty. { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. }, ], }
close()
Close httplib2 connections.
create(advertiserId, negativeKeywordListId, body=None, x__xgafv=None)
Creates a negative keyword in a negative keyword list. Args: advertiserId: string, Required. The ID of the DV360 advertiser to which the parent negative keyword list belongs. (required) negativeKeywordListId: string, Required. The ID of the parent negative keyword list in which the negative keyword will be created. (required) body: object, The request body. The object takes the form of: { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. }
delete(advertiserId, negativeKeywordListId, keywordValue, x__xgafv=None)
Deletes a negative keyword from a negative keyword list. Args: advertiserId: string, Required. The ID of the DV360 advertiser to which the parent negative keyword list belongs. (required) negativeKeywordListId: string, Required. The ID of the parent negative keyword list to which the negative keyword belongs. (required) keywordValue: string, Required. The keyword value of the negative keyword to delete. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } }
list(advertiserId, negativeKeywordListId, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists negative keywords in a negative keyword list. Args: advertiserId: string, Required. The ID of the DV360 advertiser to which the parent negative keyword list belongs. (required) negativeKeywordListId: string, Required. The ID of the parent negative keyword list to which the requested negative keywords belong. (required) filter: string, Allows filtering by negative keyword fields. Supported syntax: * Filter expressions for negative keywords can only contain at most one restriction. * A restriction has the form of `{field} {operator} {value}`. * All fields must use the `HAS (:)` operator. Supported fields: * `keywordValue` Examples: * All negative keywords for which the keyword value contains "google": `keywordValue : "google"` The length of this field should be no more than 500 characters. Reference our [filter `LIST` requests](/display-video/api/guides/how-tos/filters) guide for more information. orderBy: string, Field by which to sort the list. Acceptable values are: * `keywordValue` (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: `keywordValue desc`. pageSize: integer, Requested page size. Must be between `1` and `1000`. If unspecified will default to `100`. Returns error code `INVALID_ARGUMENT` if an invalid value is specified. 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 `ListNegativeKeywords` method. If not specified, the first page of results will be returned. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response message for NegativeKeywordService.ListNegativeKeywords. "negativeKeywords": [ # The list of negative keywords. This list will be absent if empty. { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. }, ], "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 `ListNegativeKeywords` method to retrieve the next page of results. }
list_next()
Retrieves the next page of results. Args: previous_request: The request for the previous page. (required) previous_response: The response from the request for the previous page. (required) Returns: A request object that you can call 'execute()' on to request the next page. Returns None if there are no more items in the collection.
replace(advertiserId, negativeKeywordListId, body=None, x__xgafv=None)
Replaces all negative keywords in a single negative keyword list. The operation will replace the keywords in a negative keyword list with keywords provided in ReplaceNegativeKeywordsRequest.new_negative_keywords. Args: advertiserId: string, Required. The ID of the DV360 advertiser to which the parent negative keyword list belongs. (required) negativeKeywordListId: string, Required. The ID of the parent negative keyword list to which the negative keywords belong. (required) body: object, The request body. The object takes the form of: { # Request message for NegativeKeywordService.ReplaceNegativeKeywords. "newNegativeKeywords": [ # The negative keywords that will replace the existing keywords in the negative keyword list, specified as a list of NegativeKeywords. { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. }, ], } x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response message for NegativeKeywordService.ReplaceNegativeKeywords. "negativeKeywords": [ # The full list of negative keywords now present in the negative keyword list. { # A negatively targeted keyword that belongs to a negative keyword list. "keywordValue": "A String", # Required. Immutable. The negatively targeted keyword, for example `car insurance`. Must be UTF-8 encoded with a maximum size of 255 bytes. Maximum number of characters is 80. Maximum number of words is 10. Valid characters are restricted to ASCII characters only. The only URL-escaping permitted is for representing whitespace between words. Leading or trailing whitespace is ignored. "name": "A String", # Output only. The resource name of the negative keyword. }, ], }