123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- syntax = "proto3";
- package google.ads.googleads.v11.services;
- import "google/ads/googleads/v11/resources/account_budget_proposal.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";
- option csharp_namespace = "Google.Ads.GoogleAds.V11.Services";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/services;services";
- option java_multiple_files = true;
- option java_outer_classname = "AccountBudgetProposalServiceProto";
- option java_package = "com.google.ads.googleads.v11.services";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Services";
- option ruby_package = "Google::Ads::GoogleAds::V11::Services";
- service AccountBudgetProposalService {
- option (google.api.default_host) = "googleads.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/adwords";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc MutateAccountBudgetProposal(MutateAccountBudgetProposalRequest) returns (MutateAccountBudgetProposalResponse) {
- option (google.api.http) = {
- post: "/v11/customers/{customer_id=*}/accountBudgetProposals:mutate"
- body: "*"
- };
- option (google.api.method_signature) = "customer_id,operation";
- }
- }
- message MutateAccountBudgetProposalRequest {
-
- string customer_id = 1 [(google.api.field_behavior) = REQUIRED];
-
- AccountBudgetProposalOperation operation = 2 [(google.api.field_behavior) = REQUIRED];
-
-
- bool validate_only = 3;
- }
- message AccountBudgetProposalOperation {
-
-
-
-
-
-
- google.protobuf.FieldMask update_mask = 3;
-
- oneof operation {
-
-
-
-
- google.ads.googleads.v11.resources.AccountBudgetProposal create = 2;
-
-
-
-
-
- string remove = 1 [(google.api.resource_reference) = {
- type: "googleads.googleapis.com/AccountBudgetProposal"
- }];
- }
- }
- message MutateAccountBudgetProposalResponse {
-
- MutateAccountBudgetProposalResult result = 2;
- }
- message MutateAccountBudgetProposalResult {
-
- string resource_name = 1 [(google.api.resource_reference) = {
- type: "googleads.googleapis.com/AccountBudgetProposal"
- }];
- }
|