com.google.ads.googleads.v17.services.AddBatchJobOperationsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/services/batch_job_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface AddBatchJobOperationsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.AddBatchJobOperationsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Required. The resource name of the batch job.
*
*
* string resource_name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return The sequenceToken.
*/
java.lang.String getSequenceToken();
/**
*
* A token used to enforce sequencing.
*
* The first AddBatchJobOperations request for a batch job should not set
* sequence_token. Subsequent requests must set sequence_token to the value of
* next_sequence_token received in the previous AddBatchJobOperations
* response.
*
*
* string sequence_token = 2;
* @return The bytes for sequenceToken.
*/
com.google.protobuf.ByteString
getSequenceTokenBytes();
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
java.util.List
getMutateOperationsList();
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.ads.googleads.v17.services.MutateOperation getMutateOperations(int index);
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
int getMutateOperationsCount();
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
java.util.List extends com.google.ads.googleads.v17.services.MutateOperationOrBuilder>
getMutateOperationsOrBuilderList();
/**
*
* Required. The list of mutates being added.
*
* Operations can use negative integers as temp ids to signify dependencies
* between entities created in this batch job. For example, a customer with
* id = 1234 can create a campaign and an ad group in that same campaign by
* creating a campaign in the first operation with the resource name
* explicitly set to "customers/1234/campaigns/-1", and creating an ad group
* in the second operation with the campaign field also set to
* "customers/1234/campaigns/-1".
*
*
* repeated .google.ads.googleads.v17.services.MutateOperation mutate_operations = 3 [(.google.api.field_behavior) = REQUIRED];
*/
com.google.ads.googleads.v17.services.MutateOperationOrBuilder getMutateOperationsOrBuilder(
int index);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy