Google Ads API에서 업데이트는 필드 마스크를 사용하여 이루어집니다. 필드 마스크에는 업데이트로 변경하려는 모든 필드가 나열되며, 필드 마스크에 없는 지정된 필드는 서버로 전송되더라도 무시됩니다.
필드 마스크 도우미
필드 마스크를 생성하는 데 권장되는 방법은 google.api_core
패키지에 포함된 field_mask
도우미 함수를 사용하는 것입니다. 두 개의 protobuf를 허용합니다.
객체를 만들고 모든 새 객체가 포함된 list
필드가 있는 필드 마스크 객체를 반환합니다.
두 객체 간에 다른 필드의 값을 정의합니다.
None
가 첫 번째 매개변수로 전달되면 필드 마스크 목록이
에는 다음과 같이 설정되지 않은 두 번째 protobuf 객체의 모든 필드가 포함됩니다.
기본값입니다.
생성 후에는 필드 마스크 객체를 작업에 복사해야 합니다. 객체입니다.
다음은 캠페인을 업데이트하는 예입니다.
from google.api_core import protobuf_helpers
from google.ads.googleads.client import GoogleAdsClient
# Retrieve a GoogleAdsClient instance.
client = GoogleAdsClient.load_from_storage()
# Create a new campaign operation.
campaign_operation = client.get_type('CampaignOperation')
# Retrieve a new campaign object from its update field.
campaign = campaign_operation.update
# Mutate the campaign.
campaign.network_settings.target_search_network.value = False
# Create a field mask using the updated campaign.
# The field_mask helper is only compatible with raw protobuf message
# instances, which we can access using the ._pb attribute.
field_mask = protobuf_helpers.field_mask(None, campaign._pb)
# Copy the field_mask onto the operation's update_mask field.
client.copy_from(campaign_operation.update_mask, field_mask)
먼저 빈 CampaignOperation 객체를 만듭니다. 그런 다음
빈 캠페인 객체를 가져옵니다. 그런 다음 해당 캠페인 객체를 업데이트하고
새 필드 마스크를 None
와 비교하여 필드 마스크 목록을 생성합니다.
network_settings.target_search_network
필드만 포함된
변경할 수 있습니다.
다음은 기존 캠페인을 업데이트하는 예입니다. 여기서는 스크립트가
resource_name
매개변수가 제공된 경우
캠페인 및 유효한 customer_id
:
import proto
from google.api_core import protobuf_helpers
from google.ads.googleads.client import GoogleAdsClient
# Retrieve a GoogleAdsClient instance.
client = GoogleAdsClient.load_from_storage()
# Retrieve an instance of the GoogleAdsService.
googleads_service = client.get_service('GoogleAdsService')
# Search query to retrieve campaign.
query = f"""
SELECT
campaign.network_settings.target_search_network,
campaign.resource_name
FROM campaign
WHERE campaign.resource_name = {resource_name}"""
# Submit a query to retrieve a campaign instance.
response = googleads_service.search_stream(customer_id=customer_id, query=query)
# Iterate over results to retrieve the campaign.
for batch in response:
for row in batch.results:
initial_campaign = row.campaign
# Create a new campaign operation.
campaign_operation = client.get_type('CampaignOperation')
# Set the copied campaign object to a variable for easy reference.
updated_campaign = campaign_operation.update
# Copy the retrieved campaign into the new campaign.
# Here we use the proto.Message.copy_from method because of its simple
# compatibility with the protobuf message instances, which are wrapped
# by the proto-plus library.
proto.Message.copy_from(updated_campaign, initial_campaign)
# Mutate the new campaign.
updated_campaign.network_settings.target_search_network = False
# Create a field mask using the updated campaign.
field_mask = protobuf_helpers.field_mask(
initial_campaign._pb, updated_campaign._pb
)
# Copy the field mask onto the operation's update_mask field.
# Note that the client's copy_from method is designed to work with both native
# messages and messages wrapped by proto-plus, so it works here for the
# update_mask, even though it's an instance of the native message class
# google.protobuf.field_mask_pb2.FieldMask.
client.copy_from(campaign_operation.update_mask, field_mask)
이 전략을 사용하면 updated_campaign
가
API에서 가져온 initial_campaign
로, 리소스 이름입니다.
생성된 필드 마스크는
network_settings.target_search_network
필드를 변경해야 합니다.