123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- syntax = "proto3";
- package google.ads.googleads.v12.services;
- import "google/ads/googleads/v12/resources/remarketing_action.proto";
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/protobuf/field_mask.proto";
- import "google/rpc/status.proto";
- option csharp_namespace = "Google.Ads.GoogleAds.V12.Services";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v12/services;services";
- option java_multiple_files = true;
- option java_outer_classname = "RemarketingActionServiceProto";
- option java_package = "com.google.ads.googleads.v12.services";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V12\\Services";
- option ruby_package = "Google::Ads::GoogleAds::V12::Services";
- service RemarketingActionService {
- option (google.api.default_host) = "googleads.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
-
-
-
-
-
-
-
-
-
-
- rpc MutateRemarketingActions(MutateRemarketingActionsRequest) returns (MutateRemarketingActionsResponse) {
- option (google.api.http) = {
- post: "/v12/customers/{customer_id=*}/remarketingActions:mutate"
- body: "*"
- };
- option (google.api.method_signature) = "customer_id,operations";
- }
- }
- message MutateRemarketingActionsRequest {
-
- string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
-
- repeated RemarketingActionOperation operations = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- bool partial_failure = 3;
-
-
- bool validate_only = 4;
- }
- message RemarketingActionOperation {
-
- google.protobuf.FieldMask update_mask = 4;
-
- oneof operation {
-
-
- google.ads.googleads.v12.resources.RemarketingAction create = 1;
-
-
- google.ads.googleads.v12.resources.RemarketingAction update = 2;
- }
- }
- message MutateRemarketingActionsResponse {
-
-
-
-
- google.rpc.Status partial_failure_error = 3;
-
- repeated MutateRemarketingActionResult results = 2;
- }
- message MutateRemarketingActionResult {
-
- string resource_name = 1 [(google.api.resource_reference) = {
- type: "googleads.googleapis.com/RemarketingAction"
- }];
- }
|