// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. syntax = "proto3"; package google.ads.googleads.v3.services; import "google/ads/googleads/v3/common/offline_user_data.proto"; import "google/ads/googleads/v3/resources/offline_user_data_job.proto"; import "google/api/annotations.proto"; import "google/api/client.proto"; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/longrunning/operations.proto"; import "google/protobuf/wrappers.proto"; import "google/rpc/status.proto"; option csharp_namespace = "Google.Ads.GoogleAds.V3.Services"; option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v3/services;services"; option java_multiple_files = true; option java_outer_classname = "OfflineUserDataJobServiceProto"; option java_package = "com.google.ads.googleads.v3.services"; option objc_class_prefix = "GAA"; option php_namespace = "Google\\Ads\\GoogleAds\\V3\\Services"; option ruby_package = "Google::Ads::GoogleAds::V3::Services"; // Proto file describing the OfflineUserDataJobService. // Service to manage offline user data jobs. service OfflineUserDataJobService { option (google.api.default_host) = "googleads.googleapis.com"; // Creates an offline user data job. rpc CreateOfflineUserDataJob(CreateOfflineUserDataJobRequest) returns (CreateOfflineUserDataJobResponse) { option (google.api.http) = { post: "/v3/customers/{customer_id=*}/offlineUserDataJobs:create" body: "*" }; option (google.api.method_signature) = "customer_id,job"; } // Returns the offline user data job. rpc GetOfflineUserDataJob(GetOfflineUserDataJobRequest) returns (google.ads.googleads.v3.resources.OfflineUserDataJob) { option (google.api.http) = { get: "/v3/{resource_name=customers/*/offlineUserDataJobs/*}" }; option (google.api.method_signature) = "resource_name"; } // Adds operations to the offline user data job. rpc AddOfflineUserDataJobOperations(AddOfflineUserDataJobOperationsRequest) returns (AddOfflineUserDataJobOperationsResponse) { option (google.api.http) = { post: "/v3/{resource_name=customers/*/offlineUserDataJobs/*}:addOperations" body: "*" }; option (google.api.method_signature) = "resource_name,operations"; } // Runs the offline user data job. // // When finished, the long running operation will contain the processing // result or failure information, if any. rpc RunOfflineUserDataJob(RunOfflineUserDataJobRequest) returns (google.longrunning.Operation) { option (google.api.http) = { post: "/v3/{resource_name=customers/*/offlineUserDataJobs/*}:run" body: "*" }; option (google.api.method_signature) = "resource_name"; option (google.longrunning.operation_info) = { response_type: "google.protobuf.Empty" metadata_type: "google.protobuf.Empty" }; } } // Request message for // [OfflineUserDataJobService.CreateOfflineUserDataJobRequest][] message CreateOfflineUserDataJobRequest { // Required. The ID of the customer for which to create an offline user data job. string customer_id = 1 [(google.api.field_behavior) = REQUIRED]; // Required. The offline user data job to be created. google.ads.googleads.v3.resources.OfflineUserDataJob job = 2 [(google.api.field_behavior) = REQUIRED]; } // Response message for // [OfflineUserDataJobService.CreateOfflineUserDataJobResponse][] message CreateOfflineUserDataJobResponse { // The resource name of the OfflineUserDataJob. string resource_name = 1; } // Request message for [OfflineUserDataJobService.GetOfflineUserDataJob][google.ads.googleads.v3.services.OfflineUserDataJobService.GetOfflineUserDataJob] message GetOfflineUserDataJobRequest { // Required. The resource name of the OfflineUserDataJob to get. string resource_name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { type: "googleads.googleapis.com/OfflineUserDataJob" } ]; } // Request message for [OfflineUserDataJobService.RunOfflineUserDataJob][google.ads.googleads.v3.services.OfflineUserDataJobService.RunOfflineUserDataJob] message RunOfflineUserDataJobRequest { // Required. The resource name of the OfflineUserDataJob to run. string resource_name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { type: "googleads.googleapis.com/OfflineUserDataJob" } ]; } // Request message for // [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v3.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations] message AddOfflineUserDataJobOperationsRequest { // Required. The resource name of the OfflineUserDataJob. string resource_name = 1 [ (google.api.field_behavior) = REQUIRED, (google.api.resource_reference) = { type: "googleads.googleapis.com/OfflineUserDataJob" } ]; // True to enable partial failure for the offline user data job. google.protobuf.BoolValue enable_partial_failure = 2; // Required. The list of operations to be done. repeated OfflineUserDataJobOperation operations = 3 [(google.api.field_behavior) = REQUIRED]; } // Operation to be made for the AddOfflineUserDataJobOperationsRequest. message OfflineUserDataJobOperation { // Operation to be made for the AddOfflineUserDataJobOperationsRequest. oneof operation { // Add the provided data to the transaction. Data cannot be retrieved after // being uploaded. google.ads.googleads.v3.common.UserData create = 1; // Remove the provided data from the transaction. Data cannot be retrieved // after being uploaded. google.ads.googleads.v3.common.UserData remove = 2; // Remove all previously provided data. This is only supported for Customer // Match. bool remove_all = 3; } } // Response message for // [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v3.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations] message AddOfflineUserDataJobOperationsResponse { // Errors that pertain to operation failures in the partial failure mode. // Returned only when partial_failure = true and all errors occur inside the // operations. If any errors occur outside the operations (e.g. auth errors), // we return an RPC level error. google.rpc.Status partial_failure_error = 1; }