一括変更

異なるタイプのエンティティを同時に操作する必要がある場合や、 別のエンドポイントを使用するのではなく、単一のエンドポイントに対して書き込みたい リソースの種類ごとに設定する場合は、 GoogleAdsService.Mutate サポートされているすべての変更オペレーションのエンドポイントです。

mutate オペレーション

MutateGoogleAdsRequest 繰り返される MutateOperation を受け入れます。 1 つのリソースタイプに対して 1 つのオペレーションを含めることができます。アカウントを作成するには 1 つのキャンペーンと 1 つの広告グループを GoogleAdsService.Mutate の呼び出し、 この場合、2 つの MutateOperation を作成する必要があります。 エンティティ(1 つは CampaignOperation、 (AdGroupOperation) 両方を GoogleAdsService

Ruby

mutate_operation1 = client.operation(:Mutate)
mutate_operation2 = client.operation(:Mutate)

campaign_operation = client.operation(:Campaign)
ad_group_operation = client.operation(:AdGroup)

# Do some setup here to get campaign_operation and ad_group_operation into the
# state you would want them for a regular mutate call to their respective
# services.

mutate_operation1.campaign_operation = campaign_operation
mutate_operation2.ad_group_operation = ad_group_operation

google_ads_service.mutate(customer_id, [mutate_operation1, mutate_operation2])

他のサービスと同様に、このエンドポイントは Partial Failure という 検証のみです。