Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / google-proto-files / google / ads / googleads / v1 / services / campaign_criterion_service.proto
1 // Copyright 2019 Google LLC.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15
16 syntax = "proto3";
17
18 package google.ads.googleads.v1.services;
19
20 import "google/ads/googleads/v1/resources/campaign_criterion.proto";
21 import "google/api/annotations.proto";
22 import "google/protobuf/field_mask.proto";
23 import "google/protobuf/wrappers.proto";
24 import "google/rpc/status.proto";
25
26 option csharp_namespace = "Google.Ads.GoogleAds.V1.Services";
27 option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v1/services;services";
28 option java_multiple_files = true;
29 option java_outer_classname = "CampaignCriterionServiceProto";
30 option java_package = "com.google.ads.googleads.v1.services";
31 option objc_class_prefix = "GAA";
32 option php_namespace = "Google\\Ads\\GoogleAds\\V1\\Services";
33 option ruby_package = "Google::Ads::GoogleAds::V1::Services";
34 // Proto file describing the Campaign Criterion service.
35
36 // Service to manage campaign criteria.
37 service CampaignCriterionService {
38   // Returns the requested criterion in full detail.
39   rpc GetCampaignCriterion(GetCampaignCriterionRequest) returns (google.ads.googleads.v1.resources.CampaignCriterion) {
40     option (google.api.http) = {
41       get: "/v1/{resource_name=customers/*/campaignCriteria/*}"
42     };
43   }
44
45   // Creates, updates, or removes criteria. Operation statuses are returned.
46   rpc MutateCampaignCriteria(MutateCampaignCriteriaRequest) returns (MutateCampaignCriteriaResponse) {
47     option (google.api.http) = {
48       post: "/v1/customers/{customer_id=*}/campaignCriteria:mutate"
49       body: "*"
50     };
51   }
52 }
53
54 // Request message for [CampaignCriterionService.GetCampaignCriterion][google.ads.googleads.v1.services.CampaignCriterionService.GetCampaignCriterion].
55 message GetCampaignCriterionRequest {
56   // The resource name of the criterion to fetch.
57   string resource_name = 1;
58 }
59
60 // Request message for [CampaignCriterionService.MutateCampaignCriteria][google.ads.googleads.v1.services.CampaignCriterionService.MutateCampaignCriteria].
61 message MutateCampaignCriteriaRequest {
62   // The ID of the customer whose criteria are being modified.
63   string customer_id = 1;
64
65   // The list of operations to perform on individual criteria.
66   repeated CampaignCriterionOperation operations = 2;
67
68   // If true, successful operations will be carried out and invalid
69   // operations will return errors. If false, all operations will be carried
70   // out in one transaction if and only if they are all valid.
71   // Default is false.
72   bool partial_failure = 3;
73
74   // If true, the request is validated but not executed. Only errors are
75   // returned, not results.
76   bool validate_only = 4;
77 }
78
79 // A single operation (create, update, remove) on a campaign criterion.
80 message CampaignCriterionOperation {
81   // FieldMask that determines which resource fields are modified in an update.
82   google.protobuf.FieldMask update_mask = 4;
83
84   // The mutate operation.
85   oneof operation {
86     // Create operation: No resource name is expected for the new criterion.
87     google.ads.googleads.v1.resources.CampaignCriterion create = 1;
88
89     // Update operation: The criterion is expected to have a valid resource
90     // name.
91     google.ads.googleads.v1.resources.CampaignCriterion update = 2;
92
93     // Remove operation: A resource name for the removed criterion is expected,
94     // in this format:
95     //
96     // `customers/{customer_id}/campaignCriteria/{campaign_id}~{criterion_id}`
97     string remove = 3;
98   }
99 }
100
101 // Response message for campaign criterion mutate.
102 message MutateCampaignCriteriaResponse {
103   // Errors that pertain to operation failures in the partial failure mode.
104   // Returned only when partial_failure = true and all errors occur inside the
105   // operations. If any errors occur outside the operations (e.g. auth errors),
106   // we return an RPC level error.
107   google.rpc.Status partial_failure_error = 3;
108
109   // All results for the mutate.
110   repeated MutateCampaignCriterionResult results = 2;
111 }
112
113 // The result for the criterion mutate.
114 message MutateCampaignCriterionResult {
115   // Returned for successful operations.
116   string resource_name = 1;
117 }