إذا كنت بحاجة إلى تنفيذ عمليات على أنواع مختلفة من الكيانات في الوقت نفسه أو
كنت تفضّل الكتابة في نقطة نهاية واحدة بدلاً من استخدام نقطة نهاية منفصلة
لكل نوع من أنواع الموارد، يمكنك استخدام نقطة النهاية
GoogleAdsService.Mutate
لجميع عمليات التغيير المتاحة.
عمليات التغيير
يقبل كل MutateGoogleAdsRequest
عنصرًا متكرّرًا من MutateOperation، يمكن أن يتضمّن كلٌّ منها عملية واحدة لنوع مورد واحد. لإنشاء حملة واحدة ومجموعة إعلانية واحدة في طلب GoogleAdsService.Mutate واحد، عليك إنشاء كيانَين من MutateOperation (أحدهما لـ 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])
على غرار الخدمات الأخرى، تتيح نقطة النهاية هذه ميزة الفشل الجزئي و "التحقّق فقط".